diff --git a/audio/Makefile b/audio/Makefile index cabe42a8778..f5bcc242889 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -192,6 +192,7 @@ SUBDIR += fomp-lv2 SUBDIR += foo-yc20 SUBDIR += forked-daapd + SUBDIR += fossmixer SUBDIR += fpc-a52 SUBDIR += fpc-mad SUBDIR += fpc-modplug diff --git a/audio/fluidsynth/Makefile b/audio/fluidsynth/Makefile index 5df0923b730..ebac3e47a98 100644 --- a/audio/fluidsynth/Makefile +++ b/audio/fluidsynth/Makefile @@ -3,7 +3,7 @@ PORTNAME= fluidsynth DISTVERSIONPREFIX= v -DISTVERSION= 2.0.5 +DISTVERSION= 2.0.6 CATEGORIES= audio MAINTAINER= multimedia@FreeBSD.org diff --git a/audio/fluidsynth/distinfo b/audio/fluidsynth/distinfo index 70cf1761c17..065cfe40ec0 100644 --- a/audio/fluidsynth/distinfo +++ b/audio/fluidsynth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1555664296 -SHA256 (FluidSynth-fluidsynth-v2.0.5_GH0.tar.gz) = 69b244512883491e7e66b4d0151c61a0d6d867d4d2828c732563be0f78abcc51 -SIZE (FluidSynth-fluidsynth-v2.0.5_GH0.tar.gz) = 1314553 +TIMESTAMP = 1566311702 +SHA256 (FluidSynth-fluidsynth-v2.0.6_GH0.tar.gz) = e97e63c1045e102465f1aa848f9d712c5528c58685b8d40062e4aaf6af7edb75 +SIZE (FluidSynth-fluidsynth-v2.0.6_GH0.tar.gz) = 1315138 diff --git a/audio/fluidsynth/pkg-plist b/audio/fluidsynth/pkg-plist index 79f04201974..25405b4e221 100644 --- a/audio/fluidsynth/pkg-plist +++ b/audio/fluidsynth/pkg-plist @@ -19,6 +19,6 @@ include/fluidsynth/version.h include/fluidsynth/voice.h lib/libfluidsynth.so lib/libfluidsynth.so.2 -lib/libfluidsynth.so.2.1.2 +lib/libfluidsynth.so.2.1.3 libdata/pkgconfig/fluidsynth.pc man/man1/fluidsynth.1.gz diff --git a/audio/fossmixer/Makefile b/audio/fossmixer/Makefile new file mode 100644 index 00000000000..88e49061d2c --- /dev/null +++ b/audio/fossmixer/Makefile @@ -0,0 +1,73 @@ +# $FreeBSD$ + +PORTNAME= fossmixer +PORTVERSION= 0.0.2 +CATEGORIES= audio +MASTER_SITES= https://downloads.sourceforge.net/project/detroit/ +DISTNAME= detroit-0.2.1 +EXTRACT_SUFX= .tar.xz + +MAINTAINER= jani@lasipalatsi.fi +COMMENT= Graphical mixer application for OSS + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${LOCALBASE}/share/fonts/noto/NotoSans-Italic.ttf:x11-fonts/noto-basic \ + ${LOCALBASE}/share/fonts/noto/NotoSans-Regular.ttf:x11-fonts/noto-basic +LIB_DEPENDS= libao.so:audio/libao \ + libportaudio.so:audio/portaudio \ + libpulse-simple.so:audio/pulseaudio \ + libiconv.so:converters/libiconv \ + libltdl.so:devel/libltdl \ + libfreetype.so:print/freetype2 + +USES= gettext-runtime gl perl5 +USE_GL= gl +USE_PERL5= patch build +USE_XORG= x11 xext xrandr + +WRKSRC= ${WRKDIR}/${DISTNAME} + +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --disable-bob \ + --disable-color \ + --disable-coords \ + --disable-draw \ + --disable-image \ + --disable-math \ + --disable-menu \ + --disable-remote \ + --sysconfdir="${ETCDIR}" \ + --with-libiconv="${LOCALBASE}" \ + --with-libintl="${LOCALBASE}" \ + --with-libltdl="${LOCALBASE}" + +ALL_TARGET= +INSTALL_TARGET= install-strip + +post-patch: + @(cd ${WRKSRC}/apps && ./build.sh fossmixer) + + @for i in alsa flac samplerate gnutls openssl librsvg-2.0; do \ + ${REINPLACE_CMD} -e "s|$${i}|$${i}_EXCLUDE|g" ${WRKSRC}/configure ; \ + done + + @${REINPLACE_CMD} -e "s|^.*bobs.*$$||" ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e "s|@echo Compiling engine/$$< ; ||" ${WRKSRC}/engine/Makefile.in + +post-install: + @for i in conf res; do \ + if [ -e "${STAGEDIR}${PREFIX}/etc/fossmixer/fossmixer.$${i}" ]; then \ + ${MV} -f \ + ${STAGEDIR}${PREFIX}/etc/fossmixer/fossmixer.$${i} \ + ${STAGEDIR}${PREFIX}/etc/fossmixer/fossmixer.$${i}.sample ; \ + fi ; \ + done + + @for i in NotoSans-Italic NotoSans-Regular; do \ + ${LN} -sf \ + "${LOCALBASE}/share/fonts/noto/$${i}.ttf" \ + "${STAGEDIR}${PREFIX}/share/detroit/fonts/$${i}.ttf" ; \ + done + +.include diff --git a/audio/fossmixer/distinfo b/audio/fossmixer/distinfo new file mode 100644 index 00000000000..9cf13a2aa05 --- /dev/null +++ b/audio/fossmixer/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1566072730 +SHA256 (detroit-0.2.1.tar.xz) = 8916027b43806e1bce84e9823b5343f1091dd52f7fd80eb8ff299afc2ab72d8c +SIZE (detroit-0.2.1.tar.xz) = 22269292 diff --git a/audio/fossmixer/pkg-descr b/audio/fossmixer/pkg-descr new file mode 100644 index 00000000000..00737034fbf --- /dev/null +++ b/audio/fossmixer/pkg-descr @@ -0,0 +1,7 @@ +FOSS Mixer is a graphical mixer application for FreeBSD to control OSS +audio backend. Mixer can be use to control audio levels, set recording +source, and it includes white noise generator for testing the audio +output. It is pretty much what mixer(1) does. FOSS Mixer does not need +third party user interface library, it runs on plain X11/OpenGL. + +WWW: http://detroit.sourceforge.net/app_fossmixer.html diff --git a/audio/fossmixer/pkg-plist b/audio/fossmixer/pkg-plist new file mode 100644 index 00000000000..a0a56e6aacf --- /dev/null +++ b/audio/fossmixer/pkg-plist @@ -0,0 +1,26 @@ +@sample %%ETCDIR%%/fossmixer.conf.sample +@sample %%ETCDIR%%/fossmixer.res.sample +bin/fossmixer +share/detroit/fonts/KEEPME +share/detroit/fonts/NotoSans-Italic.ttf +share/detroit/fonts/NotoSans-Regular.ttf +share/detroit/widgets/button_1_1.widget +share/detroit/widgets/button_2_1.widget +share/detroit/widgets/button_3_1.widget +share/detroit/widgets/knob_1_1.widget +share/detroit/widgets/knob_1_2.widget +share/detroit/widgets/knob_2_1.widget +share/detroit/widgets/knob_2_2.widget +share/detroit/widgets/knob_3_1.widget +share/detroit/widgets/knob_3_2.widget +share/detroit/widgets/lamp_1_1.widget +share/detroit/widgets/led_1_1.widget +share/detroit/widgets/led_2_1.widget +share/detroit/widgets/led_3_1.widget +share/detroit/widgets/slide_1_1.widget +share/detroit/widgets/slide_1_2.widget +share/detroit/widgets/slide_2_1.widget +share/detroit/widgets/slide_2_2.widget +share/detroit/widgets/slide_3_1.widget +share/detroit/widgets/slide_3_2.widget +share/fossmixer/fossmixer_bg.tga diff --git a/audio/noson-app/Makefile b/audio/noson-app/Makefile index fa58d996d28..b1ebe6fe15a 100644 --- a/audio/noson-app/Makefile +++ b/audio/noson-app/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= noson-app -DISTVERSION= 3.11.10 +DISTVERSION= 3.13.1 CATEGORIES= audio net MAINTAINER= tcberner@FreeBSD.org diff --git a/audio/noson-app/distinfo b/audio/noson-app/distinfo index c28d212aa93..f9aaaf0dcb2 100644 --- a/audio/noson-app/distinfo +++ b/audio/noson-app/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1564602879 -SHA256 (janbar-noson-app-3.11.10_GH0.tar.gz) = 0e9baf91a1d4fc3e77077151c5cdf5c194fbd333ef65b1b9bf653082a9be6509 -SIZE (janbar-noson-app-3.11.10_GH0.tar.gz) = 8404416 +TIMESTAMP = 1566330399 +SHA256 (janbar-noson-app-3.13.1_GH0.tar.gz) = 4eeef75f1d857274eface5033b9f6f935eeeff970be3703a8a8b29ce1d17a38e +SIZE (janbar-noson-app-3.13.1_GH0.tar.gz) = 8665535 diff --git a/comms/Makefile b/comms/Makefile index 062b76b91e9..76165030f8f 100644 --- a/comms/Makefile +++ b/comms/Makefile @@ -72,6 +72,7 @@ SUBDIR += iwmbt-firmware SUBDIR += java-simple-serial-connector SUBDIR += jerm + SUBDIR += jpilot-picsnvideos SUBDIR += kb SUBDIR += kermit SUBDIR += klog diff --git a/palm/jpilot-picsnvideos/Makefile b/comms/jpilot-picsnvideos/Makefile similarity index 96% rename from palm/jpilot-picsnvideos/Makefile rename to comms/jpilot-picsnvideos/Makefile index 26df2daa419..3304f4953f4 100644 --- a/palm/jpilot-picsnvideos/Makefile +++ b/comms/jpilot-picsnvideos/Makefile @@ -4,7 +4,7 @@ PORTNAME= picsnvideos PORTVERSION= 0.2 PORTREVISION= 6 -CATEGORIES= palm comms graphics +CATEGORIES= comms graphics MASTER_SITES= SF/${PORTNAME}/source%20code/${PORTVERSION} PKGNAMEPREFIX= jpilot- diff --git a/palm/jpilot-picsnvideos/distinfo b/comms/jpilot-picsnvideos/distinfo similarity index 100% rename from palm/jpilot-picsnvideos/distinfo rename to comms/jpilot-picsnvideos/distinfo diff --git a/palm/jpilot-picsnvideos/pkg-descr b/comms/jpilot-picsnvideos/pkg-descr similarity index 100% rename from palm/jpilot-picsnvideos/pkg-descr rename to comms/jpilot-picsnvideos/pkg-descr diff --git a/databases/Makefile b/databases/Makefile index 7c5956b6331..12fffc32f25 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -128,6 +128,7 @@ SUBDIR += ldb12 SUBDIR += ldb13 SUBDIR += ldb14 + SUBDIR += ldb15 SUBDIR += leo_center SUBDIR += leofs SUBDIR += leveldb @@ -185,6 +186,7 @@ SUBDIR += mariadb104-server SUBDIR += mariadb55-client SUBDIR += mariadb55-server + SUBDIR += mdbconv SUBDIR += mdbtools SUBDIR += mdcached SUBDIR += memcached @@ -520,6 +522,7 @@ SUBDIR += p5-Xapian SUBDIR += p5-mysql-genocide SUBDIR += p5-tokyotyrant + SUBDIR += palm-db-tools SUBDIR += pear-DB SUBDIR += pear-DBA SUBDIR += pear-DBA_Relational diff --git a/databases/courier-authlib-pgsql/Makefile b/databases/courier-authlib-pgsql/Makefile index 22fb56727b0..31a1fdbd963 100644 --- a/databases/courier-authlib-pgsql/Makefile +++ b/databases/courier-authlib-pgsql/Makefile @@ -1,7 +1,7 @@ # Created by: Yarema # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 0 PKGNAMESUFFIX= -pgsql COMMENT= PostgreSQL support for the Courier authentication library diff --git a/databases/mantis/Makefile b/databases/mantis/Makefile index f9fc3d9ebbe..6150502f386 100644 --- a/databases/mantis/Makefile +++ b/databases/mantis/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mantis -PORTVERSION= 2.21.1 +PORTVERSION= 2.21.2 PORTEPOCH= 1 CATEGORIES= databases www MASTER_SITES= SF/mantisbt/mantis-stable/${PORTVERSION} diff --git a/databases/mantis/distinfo b/databases/mantis/distinfo index 8ac0712e7e3..83d6171cdd8 100644 --- a/databases/mantis/distinfo +++ b/databases/mantis/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1560511812 -SHA256 (mantisbt-2.21.1.tar.gz) = 6208d0347897a59e75a7c3e79713799bed6874a202518f5bb8d4a5c02bdb0fa4 -SIZE (mantisbt-2.21.1.tar.gz) = 16763244 +TIMESTAMP = 1566297812 +SHA256 (mantisbt-2.21.2.tar.gz) = 378eaf4661750ce69ab97eb893875bb9a128126dac6e7b51be3154b5592df5e5 +SIZE (mantisbt-2.21.2.tar.gz) = 16189564 SHA256 (mantisbt-plugins-Activity-99cf873396ebc3fec431c6746dae1a604768f322_GH0.tar.gz) = 7c9a2d08d98854c40e53ec5ae90aa84ea3849843e5dec8fceefd4cbfba6d4c88 SIZE (mantisbt-plugins-Activity-99cf873396ebc3fec431c6746dae1a604768f322_GH0.tar.gz) = 42861 SHA256 (mantisbt-plugins-Announce-v2.4.1_GH0.tar.gz) = b87b233afc70d61b4b6c1fdc574cbbd3f2997efdfd4b5cfde1cfebfb6097dbc3 diff --git a/databases/mantis/pkg-plist b/databases/mantis/pkg-plist index a13a47a6d65..81c8a8c01c0 100644 --- a/databases/mantis/pkg-plist +++ b/databases/mantis/pkg-plist @@ -324,10 +324,10 @@ %%WWWDIR%%/doc/ace-theme-license.txt %%WWWDIR%%/doc/en-US/Admin_Guide/Admin_Guide.pdf %%WWWDIR%%/doc/en-US/Admin_Guide/Admin_Guide.txt +%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/brand.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/common.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/pdf.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/epub.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/css/print.css %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/images/1.png %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/images/1.svg @@ -433,121 +433,121 @@ %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/Common_Content/images/yellow.png %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/images/mantis_logo.png %%WWWDIR%%/doc/en-US/Admin_Guide/html-desktop/index.html -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/common.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/pdf.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/css/print.css -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/1.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/1.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/10.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/10.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/11.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/11.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/12.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/12.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/13.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/13.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/14.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/14.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/15.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/15.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/16.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/16.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/17.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/17.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/18.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/18.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/19.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/19.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/2.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/2.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/20.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/20.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/21.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/21.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/22.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/22.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/23.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/23.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/24.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/24.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/25.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/25.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/26.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/26.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/27.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/27.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/28.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/28.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/29.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/29.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/3.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/3.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/30.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/30.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/31.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/31.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/32.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/32.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/33.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/33.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/34.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/34.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/35.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/35.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/36.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/36.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/37.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/37.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/38.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/38.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/39.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/39.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/4.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/4.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/40.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/40.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/5.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/5.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/6.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/6.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/7.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/7.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/8.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/8.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/9.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/9.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/dot.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/dot2.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/green.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/h1-bg.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/image_left.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/image_right.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/important.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/important.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/note.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/note.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/red.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/shine.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-go-back.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-go-forward.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-go-up.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/stock-home.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/title_logo.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/title_logo.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/warning.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/warning.svg -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/watermark-draft.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/Common_Content/images/yellow.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/images/mantis_logo.png -%%WWWDIR%%/doc/en-US/Admin_Guide/html-single/index.html +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/brand.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/common.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/default.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/epub.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/css/print.css +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/1.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/1.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/10.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/10.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/11.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/11.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/12.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/12.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/13.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/13.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/14.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/14.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/15.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/15.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/16.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/16.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/17.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/17.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/18.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/18.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/19.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/19.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/2.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/2.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/20.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/20.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/21.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/21.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/22.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/22.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/23.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/23.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/24.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/24.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/25.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/25.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/26.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/26.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/27.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/27.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/28.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/28.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/29.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/29.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/3.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/3.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/30.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/30.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/31.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/31.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/32.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/32.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/33.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/33.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/34.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/34.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/35.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/35.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/36.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/36.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/37.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/37.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/38.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/38.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/39.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/39.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/4.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/4.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/40.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/40.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/5.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/5.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/6.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/6.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/7.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/7.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/8.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/8.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/9.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/9.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/dot.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/dot2.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/green.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/h1-bg.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/image_left.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/image_right.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/important.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/important.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/note.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/note.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/red.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/shine.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-go-back.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-go-forward.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-go-up.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/stock-home.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/title_logo.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/title_logo.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/warning.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/warning.svg +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/watermark-draft.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/Common_Content/images/yellow.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/images/mantis_logo.png +%%WWWDIR%%/doc/en-US/Admin_Guide/html-single-plain/index.html %%WWWDIR%%/doc/en-US/Developers_Guide/Developers_Guide.pdf %%WWWDIR%%/doc/en-US/Developers_Guide/Developers_Guide.txt +%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/brand.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/common.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/pdf.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/epub.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/css/print.css %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/images/1.png %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/Common_Content/images/1.svg @@ -654,116 +654,116 @@ %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/images/erd.png %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/images/mantis_logo.png %%WWWDIR%%/doc/en-US/Developers_Guide/html-desktop/index.html -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/common.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/default.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/menu.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/pdf.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/css/print.css -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/1.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/1.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/10.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/10.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/11.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/11.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/12.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/12.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/13.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/13.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/14.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/14.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/15.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/15.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/16.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/16.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/17.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/17.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/18.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/18.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/19.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/19.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/2.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/2.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/20.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/20.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/21.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/21.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/22.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/22.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/23.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/23.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/24.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/24.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/25.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/25.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/26.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/26.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/27.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/27.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/28.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/28.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/29.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/29.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/3.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/3.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/30.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/30.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/31.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/31.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/32.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/32.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/33.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/33.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/34.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/34.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/35.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/35.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/36.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/36.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/37.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/37.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/38.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/38.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/39.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/39.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/4.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/4.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/40.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/40.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/5.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/5.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/6.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/6.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/7.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/7.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/8.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/8.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/9.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/9.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/dot.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/dot2.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/green.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/h1-bg.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/image_left.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/image_right.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/important.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/important.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/note.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/note.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/red.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/shine.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-go-back.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-go-forward.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-go-up.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/stock-home.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/title_logo.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/title_logo.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/warning.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/warning.svg -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/watermark-draft.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/Common_Content/images/yellow.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/images/erd.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/images/mantis_logo.png -%%WWWDIR%%/doc/en-US/Developers_Guide/html-single/index.html +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/brand.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/common.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/default.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/epub.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/css/print.css +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/1.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/1.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/10.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/10.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/11.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/11.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/12.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/12.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/13.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/13.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/14.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/14.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/15.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/15.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/16.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/16.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/17.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/17.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/18.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/18.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/19.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/19.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/2.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/2.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/20.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/20.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/21.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/21.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/22.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/22.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/23.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/23.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/24.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/24.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/25.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/25.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/26.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/26.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/27.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/27.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/28.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/28.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/29.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/29.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/3.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/3.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/30.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/30.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/31.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/31.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/32.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/32.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/33.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/33.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/34.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/34.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/35.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/35.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/36.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/36.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/37.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/37.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/38.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/38.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/39.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/39.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/4.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/4.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/40.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/40.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/5.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/5.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/6.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/6.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/7.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/7.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/8.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/8.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/9.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/9.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/dot.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/dot2.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/green.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/h1-bg.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/image_left.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/image_right.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/important.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/important.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/note.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/note.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/red.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/shine.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-go-back.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-go-forward.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-go-up.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/stock-home.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/title_logo.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/title_logo.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/warning.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/warning.svg +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/watermark-draft.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/Common_Content/images/yellow.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/images/erd.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/images/mantis_logo.png +%%WWWDIR%%/doc/en-US/Developers_Guide/html-single-plain/index.html %%WWWDIR%%/doc/modern_my_view.png %%WWWDIR%%/doc/modern_view_issue.png %%WWWDIR%%/doc/modern_view_issues.png diff --git a/palm/mdbconv/Makefile b/databases/mdbconv/Makefile similarity index 94% rename from palm/mdbconv/Makefile rename to databases/mdbconv/Makefile index 1bc8efe8310..6157fd95901 100644 --- a/palm/mdbconv/Makefile +++ b/databases/mdbconv/Makefile @@ -3,7 +3,7 @@ PORTNAME= mdbconv PORTVERSION= 1.6 -CATEGORIES= palm databases +CATEGORIES= databases MASTER_SITES= http://www.handmark.com/downloads/ DISTNAME= ${PORTNAME}freebsd3x diff --git a/palm/mdbconv/distinfo b/databases/mdbconv/distinfo similarity index 100% rename from palm/mdbconv/distinfo rename to databases/mdbconv/distinfo diff --git a/palm/mdbconv/files/Makefile b/databases/mdbconv/files/Makefile similarity index 100% rename from palm/mdbconv/files/Makefile rename to databases/mdbconv/files/Makefile diff --git a/palm/mdbconv/pkg-descr b/databases/mdbconv/pkg-descr similarity index 100% rename from palm/mdbconv/pkg-descr rename to databases/mdbconv/pkg-descr diff --git a/palm/palm-db-tools/Makefile b/databases/palm-db-tools/Makefile similarity index 96% rename from palm/palm-db-tools/Makefile rename to databases/palm-db-tools/Makefile index 430f31d4702..47d15428b0a 100644 --- a/palm/palm-db-tools/Makefile +++ b/databases/palm-db-tools/Makefile @@ -4,7 +4,7 @@ PORTNAME= palm-db-tools DISTVERSION= 0_3_6 PORTREVISION= 1 -CATEGORIES= palm +CATEGORIES= databases MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org diff --git a/palm/palm-db-tools/distinfo b/databases/palm-db-tools/distinfo similarity index 100% rename from palm/palm-db-tools/distinfo rename to databases/palm-db-tools/distinfo diff --git a/palm/palm-db-tools/files/patch-field_argumentf b/databases/palm-db-tools/files/patch-field_argumentf similarity index 100% rename from palm/palm-db-tools/files/patch-field_argumentf rename to databases/palm-db-tools/files/patch-field_argumentf diff --git a/palm/palm-db-tools/files/patch-flatfile-Makefile.in b/databases/palm-db-tools/files/patch-flatfile-Makefile.in similarity index 100% rename from palm/palm-db-tools/files/patch-flatfile-Makefile.in rename to databases/palm-db-tools/files/patch-flatfile-Makefile.in diff --git a/palm/palm-db-tools/files/patch-libflatfile-DB.cpp b/databases/palm-db-tools/files/patch-libflatfile-DB.cpp similarity index 100% rename from palm/palm-db-tools/files/patch-libflatfile-DB.cpp rename to databases/palm-db-tools/files/patch-libflatfile-DB.cpp diff --git a/palm/palm-db-tools/files/patch-libflatfile-Database.cpp b/databases/palm-db-tools/files/patch-libflatfile-Database.cpp similarity index 100% rename from palm/palm-db-tools/files/patch-libflatfile-Database.cpp rename to databases/palm-db-tools/files/patch-libflatfile-Database.cpp diff --git a/palm/palm-db-tools/files/patch-libflatfile_JFile3.cpp b/databases/palm-db-tools/files/patch-libflatfile_JFile3.cpp similarity index 100% rename from palm/palm-db-tools/files/patch-libflatfile_JFile3.cpp rename to databases/palm-db-tools/files/patch-libflatfile_JFile3.cpp diff --git a/palm/palm-db-tools/files/patch-libflatfile_MobileDB.cpp b/databases/palm-db-tools/files/patch-libflatfile_MobileDB.cpp similarity index 100% rename from palm/palm-db-tools/files/patch-libflatfile_MobileDB.cpp rename to databases/palm-db-tools/files/patch-libflatfile_MobileDB.cpp diff --git a/palm/palm-db-tools/files/patch-libpalm-Block.h b/databases/palm-db-tools/files/patch-libpalm-Block.h similarity index 100% rename from palm/palm-db-tools/files/patch-libpalm-Block.h rename to databases/palm-db-tools/files/patch-libpalm-Block.h diff --git a/palm/palm-db-tools/files/patch-libpalm-File.cpp b/databases/palm-db-tools/files/patch-libpalm-File.cpp similarity index 100% rename from palm/palm-db-tools/files/patch-libpalm-File.cpp rename to databases/palm-db-tools/files/patch-libpalm-File.cpp diff --git a/palm/palm-db-tools/files/patch-libpalm-File.h b/databases/palm-db-tools/files/patch-libpalm-File.h similarity index 100% rename from palm/palm-db-tools/files/patch-libpalm-File.h rename to databases/palm-db-tools/files/patch-libpalm-File.h diff --git a/palm/palm-db-tools/pkg-descr b/databases/palm-db-tools/pkg-descr similarity index 100% rename from palm/palm-db-tools/pkg-descr rename to databases/palm-db-tools/pkg-descr diff --git a/devel/Makefile b/devel/Makefile index bb66fd58cc1..c40edf87b85 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1270,6 +1270,7 @@ SUBDIR += libltdl SUBDIR += liblxqt SUBDIR += libmaa + SUBDIR += libmal SUBDIR += libmatheval SUBDIR += libmba SUBDIR += libmill diff --git a/palm/libmal/Makefile b/devel/libmal/Makefile similarity index 96% rename from palm/libmal/Makefile rename to devel/libmal/Makefile index dd34fe59bdc..083bd4f6031 100644 --- a/palm/libmal/Makefile +++ b/devel/libmal/Makefile @@ -4,7 +4,7 @@ PORTNAME= libmal PORTVERSION= 0.44.1 PORTREVISION= 2 -CATEGORIES= palm +CATEGORIES= devel MASTER_SITES= http://www.jlogday.com/code/libmal/ MAINTAINER= ports@FreeBSD.org diff --git a/palm/libmal/distinfo b/devel/libmal/distinfo similarity index 100% rename from palm/libmal/distinfo rename to devel/libmal/distinfo diff --git a/palm/libmal/files/patch-malsync__mal__client__unix__MAL31DBConfig.c b/devel/libmal/files/patch-malsync__mal__client__unix__MAL31DBConfig.c similarity index 100% rename from palm/libmal/files/patch-malsync__mal__client__unix__MAL31DBConfig.c rename to devel/libmal/files/patch-malsync__mal__client__unix__MAL31DBConfig.c diff --git a/palm/libmal/pkg-descr b/devel/libmal/pkg-descr similarity index 100% rename from palm/libmal/pkg-descr rename to devel/libmal/pkg-descr diff --git a/palm/libmal/pkg-plist b/devel/libmal/pkg-plist similarity index 100% rename from palm/libmal/pkg-plist rename to devel/libmal/pkg-plist diff --git a/devel/p5-Alien-Build/Makefile b/devel/p5-Alien-Build/Makefile index 6015021a085..46d5696bf68 100644 --- a/devel/p5-Alien-Build/Makefile +++ b/devel/p5-Alien-Build/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Alien-Build -PORTVERSION= 1.79 +PORTVERSION= 1.83 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-Alien-Build/distinfo b/devel/p5-Alien-Build/distinfo index a2208dd7865..0d08e05f725 100644 --- a/devel/p5-Alien-Build/distinfo +++ b/devel/p5-Alien-Build/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563303961 -SHA256 (Alien-Build-1.79.tar.gz) = 7122932d72618cd5001bdbb1e7075231160b9dc346cf9078b78d1ea3fa8f14a3 -SIZE (Alien-Build-1.79.tar.gz) = 266020 +TIMESTAMP = 1566324277 +SHA256 (Alien-Build-1.83.tar.gz) = 8076d4349cd250f1b18684b6b687b7ad146786cabc5451eb8edf3dd65dd7ca5a +SIZE (Alien-Build-1.83.tar.gz) = 269235 diff --git a/devel/p5-Alien-Build/pkg-plist b/devel/p5-Alien-Build/pkg-plist index 61945a7e2ab..dc7b1f639e8 100644 --- a/devel/p5-Alien-Build/pkg-plist +++ b/devel/p5-Alien-Build/pkg-plist @@ -7,6 +7,9 @@ %%SITE_PERL%%/Alien/Build/CommandSequence.pm %%SITE_PERL%%/Alien/Build/Interpolate.pm %%SITE_PERL%%/Alien/Build/Interpolate/Default.pm +%%SITE_PERL%%/Alien/Build/Log.pm +%%SITE_PERL%%/Alien/Build/Log/Abbreviate.pm +%%SITE_PERL%%/Alien/Build/Log/Default.pm %%SITE_PERL%%/Alien/Build/MM.pm %%SITE_PERL%%/Alien/Build/Manual/Alien.pod %%SITE_PERL%%/Alien/Build/Manual/AlienAuthor.pod @@ -67,6 +70,7 @@ %%SITE_PERL%%/Alien/Build/Plugin/Test/Mock.pm %%SITE_PERL%%/Alien/Build/Util.pm %%SITE_PERL%%/Alien/Build/Version/Basic.pm +%%SITE_PERL%%/Alien/Build/rc.pm %%SITE_PERL%%/Alien/Role.pm %%SITE_PERL%%/Test/Alien.pm %%SITE_PERL%%/Test/Alien/Build.pm @@ -84,6 +88,9 @@ %%PERL5_MAN3%%/Alien::Build::CommandSequence.3.gz %%PERL5_MAN3%%/Alien::Build::Interpolate.3.gz %%PERL5_MAN3%%/Alien::Build::Interpolate::Default.3.gz +%%PERL5_MAN3%%/Alien::Build::Log.3.gz +%%PERL5_MAN3%%/Alien::Build::Log::Abbreviate.3.gz +%%PERL5_MAN3%%/Alien::Build::Log::Default.3.gz %%PERL5_MAN3%%/Alien::Build::MM.3.gz %%PERL5_MAN3%%/Alien::Build::Manual::Alien.3.gz %%PERL5_MAN3%%/Alien::Build::Manual::AlienAuthor.3.gz @@ -144,6 +151,7 @@ %%PERL5_MAN3%%/Alien::Build::Plugin::Test::Mock.3.gz %%PERL5_MAN3%%/Alien::Build::Util.3.gz %%PERL5_MAN3%%/Alien::Build::Version::Basic.3.gz +%%PERL5_MAN3%%/Alien::Build::rc.3.gz %%PERL5_MAN3%%/Alien::Role.3.gz %%PERL5_MAN3%%/Test::Alien.3.gz %%PERL5_MAN3%%/Test::Alien::Build.3.gz diff --git a/devel/p5-Data-Object/Makefile b/devel/p5-Data-Object/Makefile index b2f218741a4..4e9eab97c87 100644 --- a/devel/p5-Data-Object/Makefile +++ b/devel/p5-Data-Object/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Data-Object -PORTVERSION= 0.98 +PORTVERSION= 0.99 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-Data-Object/distinfo b/devel/p5-Data-Object/distinfo index e6cc3188762..2b8180dd6e3 100644 --- a/devel/p5-Data-Object/distinfo +++ b/devel/p5-Data-Object/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1566229388 -SHA256 (Data-Object-0.98.tar.gz) = 66df6b676eeecea887577a5fad9d616da62e00438e6a30c951a248ca9f18327f -SIZE (Data-Object-0.98.tar.gz) = 247433 +TIMESTAMP = 1566324249 +SHA256 (Data-Object-0.99.tar.gz) = f2297021410fc9797dd348666ebc19c4878da3ffa863f886e6cc1764b3f9fed6 +SIZE (Data-Object-0.99.tar.gz) = 247504 diff --git a/devel/p5-FFI-Platypus/Makefile b/devel/p5-FFI-Platypus/Makefile index 93b9ce69e67..3b80010393c 100644 --- a/devel/p5-FFI-Platypus/Makefile +++ b/devel/p5-FFI-Platypus/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= FFI-Platypus -PORTVERSION= 0.94 +PORTVERSION= 0.96 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-FFI-Platypus/distinfo b/devel/p5-FFI-Platypus/distinfo index 8f60c67abd0..800e0f8ccae 100644 --- a/devel/p5-FFI-Platypus/distinfo +++ b/devel/p5-FFI-Platypus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563897189 -SHA256 (FFI-Platypus-0.94.tar.gz) = 212c6db7e69bac45acc251a096eb58ce849a906f1ccf9bdf53e6994a43b84bc9 -SIZE (FFI-Platypus-0.94.tar.gz) = 277687 +TIMESTAMP = 1566324251 +SHA256 (FFI-Platypus-0.96.tar.gz) = 2d231409181e8ff9eefc8a631a64c9ace15eee7ca06b77ef575ebb66e70b5182 +SIZE (FFI-Platypus-0.96.tar.gz) = 297898 diff --git a/devel/p5-FFI-Platypus/pkg-plist b/devel/p5-FFI-Platypus/pkg-plist index 3f16ca8e41f..8e0b6c34a98 100644 --- a/devel/p5-FFI-Platypus/pkg-plist +++ b/devel/p5-FFI-Platypus/pkg-plist @@ -9,7 +9,9 @@ %%SITE_ARCH%%/FFI/Platypus.pm %%SITE_ARCH%%/FFI/Platypus/API.pm %%SITE_ARCH%%/FFI/Platypus/Buffer.pm +%%SITE_ARCH%%/FFI/Platypus/Bundle.pm %%SITE_ARCH%%/FFI/Platypus/Closure.pm +%%SITE_ARCH%%/FFI/Platypus/Constant.pm %%SITE_ARCH%%/FFI/Platypus/DL.pm %%SITE_ARCH%%/FFI/Platypus/Declare.pm %%SITE_ARCH%%/FFI/Platypus/Function.pm @@ -18,6 +20,7 @@ %%SITE_ARCH%%/FFI/Platypus/Lang/ASM.pm %%SITE_ARCH%%/FFI/Platypus/Lang/C.pm %%SITE_ARCH%%/FFI/Platypus/Lang/Win32.pm +%%SITE_ARCH%%/FFI/Platypus/Legacy.pm %%SITE_ARCH%%/FFI/Platypus/Memory.pm %%SITE_ARCH%%/FFI/Platypus/Record.pm %%SITE_ARCH%%/FFI/Platypus/Record/Meta.pm @@ -34,11 +37,15 @@ %%SITE_ARCH%%/FFI/Probe/Runner.pm %%SITE_ARCH%%/FFI/Probe/Runner/Builder.pm %%SITE_ARCH%%/FFI/Probe/Runner/Result.pm +%%SITE_ARCH%%/FFI/Temp.pm %%SITE_ARCH%%/FFI/typemap +%%SITE_ARCH%%/auto/FFI/Platypus/Constant/Constant.txt %%SITE_ARCH%%/auto/FFI/Platypus/Memory/Memory.txt %%SITE_ARCH%%/auto/FFI/Platypus/Platypus.so %%SITE_ARCH%%/auto/FFI/Platypus/Record/Meta/Meta.txt %%SITE_ARCH%%/auto/share/dist/FFI-Platypus/config.pl +%%SITE_ARCH%%/auto/share/dist/FFI-Platypus/include/ffi_platypus_bundle.h +%%SITE_ARCH%%/auto/share/dist/FFI-Platypus/include/ffi_platypus_config.h %%SITE_ARCH%%/auto/share/dist/FFI-Platypus/lib/libplfill.so %%SITE_ARCH%%/auto/share/dist/FFI-Platypus/probe/bin/dlrun %%SITE_ARCH%%/auto/share/dist/FFI-Platypus/probe/probe.pl @@ -54,7 +61,9 @@ %%PERL5_MAN3%%/FFI::Platypus.3.gz %%PERL5_MAN3%%/FFI::Platypus::API.3.gz %%PERL5_MAN3%%/FFI::Platypus::Buffer.3.gz +%%PERL5_MAN3%%/FFI::Platypus::Bundle.3.gz %%PERL5_MAN3%%/FFI::Platypus::Closure.3.gz +%%PERL5_MAN3%%/FFI::Platypus::Constant.3.gz %%PERL5_MAN3%%/FFI::Platypus::DL.3.gz %%PERL5_MAN3%%/FFI::Platypus::Declare.3.gz %%PERL5_MAN3%%/FFI::Platypus::Function.3.gz @@ -63,6 +72,7 @@ %%PERL5_MAN3%%/FFI::Platypus::Lang::ASM.3.gz %%PERL5_MAN3%%/FFI::Platypus::Lang::C.3.gz %%PERL5_MAN3%%/FFI::Platypus::Lang::Win32.3.gz +%%PERL5_MAN3%%/FFI::Platypus::Legacy.3.gz %%PERL5_MAN3%%/FFI::Platypus::Memory.3.gz %%PERL5_MAN3%%/FFI::Platypus::Record.3.gz %%PERL5_MAN3%%/FFI::Platypus::Record::Meta.3.gz @@ -79,3 +89,4 @@ %%PERL5_MAN3%%/FFI::Probe::Runner.3.gz %%PERL5_MAN3%%/FFI::Probe::Runner::Builder.3.gz %%PERL5_MAN3%%/FFI::Probe::Runner::Result.3.gz +%%PERL5_MAN3%%/FFI::Temp.3.gz diff --git a/devel/p5-Rcs-Agent/Makefile b/devel/p5-Rcs-Agent/Makefile index 758520b967a..85db1a2a4ac 100644 --- a/devel/p5-Rcs-Agent/Makefile +++ b/devel/p5-Rcs-Agent/Makefile @@ -8,11 +8,14 @@ CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= nick@foobar.org +MAINTAINER= mats@dufberg.se COMMENT= Perl module for RCS archive manipulation BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= p5-String-ShellQuote>1.00:textproc/p5-String-ShellQuote +.if !exists(/usr/bin/rcs) +RUN_DEPENDS+= rcs:devel/rcs57 +.endif USES= perl5 USE_PERL5= configure diff --git a/devel/p5-Term-Choose-Util/Makefile b/devel/p5-Term-Choose-Util/Makefile index e2690e57ac9..467dd16494a 100644 --- a/devel/p5-Term-Choose-Util/Makefile +++ b/devel/p5-Term-Choose-Util/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Term-Choose-Util -PORTVERSION= 0.074 +PORTVERSION= 0.075 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-Term-Choose-Util/distinfo b/devel/p5-Term-Choose-Util/distinfo index 9601bbc8cca..ca9494e795e 100644 --- a/devel/p5-Term-Choose-Util/distinfo +++ b/devel/p5-Term-Choose-Util/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561988323 -SHA256 (Term-Choose-Util-0.074.tar.gz) = 901aaa3f0432ded3129b4456d65483683e92f3fc83d7f10a05764aab87e56555 -SIZE (Term-Choose-Util-0.074.tar.gz) = 20350 +TIMESTAMP = 1566324253 +SHA256 (Term-Choose-Util-0.075.tar.gz) = 8d1550dd52df96499582229ad94e9416601097147071aed95c072741f5047d5e +SIZE (Term-Choose-Util-0.075.tar.gz) = 20385 diff --git a/devel/p5-Test2-Plugin-DBIProfile/Makefile b/devel/p5-Test2-Plugin-DBIProfile/Makefile index aefe955ef64..16f931807e7 100644 --- a/devel/p5-Test2-Plugin-DBIProfile/Makefile +++ b/devel/p5-Test2-Plugin-DBIProfile/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test2-Plugin-DBIProfile -PORTVERSION= 0.002001 +PORTVERSION= 0.002002 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:EXODIST diff --git a/devel/p5-Test2-Plugin-DBIProfile/distinfo b/devel/p5-Test2-Plugin-DBIProfile/distinfo index c98cf229361..98286c0e1cc 100644 --- a/devel/p5-Test2-Plugin-DBIProfile/distinfo +++ b/devel/p5-Test2-Plugin-DBIProfile/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1566229308 -SHA256 (Test2-Plugin-DBIProfile-0.002001.tar.gz) = e4f197c969c7241fc5ab1fff6962dcf994fc6c0cdcb0395bd04f57adcf99bc9a -SIZE (Test2-Plugin-DBIProfile-0.002001.tar.gz) = 11046 +TIMESTAMP = 1566324255 +SHA256 (Test2-Plugin-DBIProfile-0.002002.tar.gz) = 602f56e778b611bfaa3d64ec74290c8afb90e18dffe38a8b94d342b8e6ff46cb +SIZE (Test2-Plugin-DBIProfile-0.002002.tar.gz) = 11221 diff --git a/devel/p5-Types-Core/Makefile b/devel/p5-Types-Core/Makefile index f85056b9c92..1dfa299ab90 100644 --- a/devel/p5-Types-Core/Makefile +++ b/devel/p5-Types-Core/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Types-Core -PORTVERSION= 0.2.4 +PORTVERSION= 0.2.5 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:LAWALSH diff --git a/devel/p5-Types-Core/distinfo b/devel/p5-Types-Core/distinfo index 29088e2c5c7..76723e8097a 100644 --- a/devel/p5-Types-Core/distinfo +++ b/devel/p5-Types-Core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1566229404 -SHA256 (Types-Core-0.2.4.tar.gz) = 8597e3896ccca24ea154764b8fa83ec8f3b73dac1b3bdf31c149030945c179dc -SIZE (Types-Core-0.2.4.tar.gz) = 19040 +TIMESTAMP = 1566324259 +SHA256 (Types-Core-0.2.5.tar.gz) = a8d406f3723f687e5df45e4c682401d7a9f415a1493796fa5fe913712beb494e +SIZE (Types-Core-0.2.5.tar.gz) = 19004 diff --git a/devel/protozero/Makefile b/devel/protozero/Makefile index 8d92220f721..3b725f40b44 100644 --- a/devel/protozero/Makefile +++ b/devel/protozero/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= protozero -PORTVERSION= 1.6.7 -PORTREVISION= 1 +PORTVERSION= 1.6.8 DISTVERSIONPREFIX= v CATEGORIES= devel diff --git a/devel/protozero/distinfo b/devel/protozero/distinfo index 1fcb33b4029..07fc708ce89 100644 --- a/devel/protozero/distinfo +++ b/devel/protozero/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1550755688 -SHA256 (mapbox-protozero-v1.6.7_GH0.tar.gz) = d8031d8b14867e0e90a8df07977348abcfa10a58d42e214fc7a69fb0db0f8111 -SIZE (mapbox-protozero-v1.6.7_GH0.tar.gz) = 1064755 +TIMESTAMP = 1566241440 +SHA256 (mapbox-protozero-v1.6.8_GH0.tar.gz) = 019a0f3789ad29d7e717cf2e0a7475b36dc180508867fb47e8c519885b431706 +SIZE (mapbox-protozero-v1.6.8_GH0.tar.gz) = 1065280 diff --git a/devel/rubygem-aws-sdk-core/Makefile b/devel/rubygem-aws-sdk-core/Makefile index 9904e231c1a..daa1d8bdbef 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.335 +DISTVERSION= 2.11.336 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-core/distinfo b/devel/rubygem-aws-sdk-core/distinfo index 66d4fdefab1..ad55babb6f8 100644 --- a/devel/rubygem-aws-sdk-core/distinfo +++ b/devel/rubygem-aws-sdk-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1566118076 -SHA256 (rubygem/aws-sdk-core-2.11.335.gem) = 10ac291cc010a5481b624c758f7a2b74a0d7feb6aff6e3f81d169f7d52e559ac -SIZE (rubygem/aws-sdk-core-2.11.335.gem) = 1637888 +TIMESTAMP = 1566324265 +SHA256 (rubygem/aws-sdk-core-2.11.336.gem) = 0334d54b5985abfbdd533f45d6445931e75bf094fd296e2e7c3406327af286de +SIZE (rubygem/aws-sdk-core-2.11.336.gem) = 1637888 diff --git a/devel/rubygem-aws-sdk-resources/Makefile b/devel/rubygem-aws-sdk-resources/Makefile index e52c267f681..c481b379673 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.335 +DISTVERSION= 2.11.336 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-resources/distinfo b/devel/rubygem-aws-sdk-resources/distinfo index aba1c125cc6..3196128e477 100644 --- a/devel/rubygem-aws-sdk-resources/distinfo +++ b/devel/rubygem-aws-sdk-resources/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1566118078 -SHA256 (rubygem/aws-sdk-resources-2.11.335.gem) = 446b874c93f5b0e4f0d748cf7899f3bff2ffc54b32a8b5664e1bafbd84586a7c -SIZE (rubygem/aws-sdk-resources-2.11.335.gem) = 48640 +TIMESTAMP = 1566324267 +SHA256 (rubygem/aws-sdk-resources-2.11.336.gem) = bc3ace24cb8913db36fbc20ecf3f2ede9bab8d7ba9006dbb0df6ab6af4843abe +SIZE (rubygem/aws-sdk-resources-2.11.336.gem) = 48640 diff --git a/devel/rubygem-aws-sdk/Makefile b/devel/rubygem-aws-sdk/Makefile index 02c0d995030..9c746620ac4 100644 --- a/devel/rubygem-aws-sdk/Makefile +++ b/devel/rubygem-aws-sdk/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.335 +DISTVERSION= 2.11.336 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk/distinfo b/devel/rubygem-aws-sdk/distinfo index 0cff44a8a55..e27901fea95 100644 --- a/devel/rubygem-aws-sdk/distinfo +++ b/devel/rubygem-aws-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1566118074 -SHA256 (rubygem/aws-sdk-2.11.335.gem) = 05ed3008c4513bafa86adc989506c2cf97e3ce933cd3b02b00a3253e4133e4d2 -SIZE (rubygem/aws-sdk-2.11.335.gem) = 4608 +TIMESTAMP = 1566324263 +SHA256 (rubygem/aws-sdk-2.11.336.gem) = e351c8d45e9dd229544d65cb11331bfb38308bd3cad11d3bd25f01d788c4ea12 +SIZE (rubygem/aws-sdk-2.11.336.gem) = 4608 diff --git a/devel/rubygem-devise-rails5/Makefile b/devel/rubygem-devise-rails5/Makefile index ce71c054faf..04cfdda6315 100644 --- a/devel/rubygem-devise-rails5/Makefile +++ b/devel/rubygem-devise-rails5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= devise -PORTVERSION= 4.6.2 +PORTVERSION= 4.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 @@ -13,11 +13,11 @@ COMMENT= Flexible authentication solution for Rails with Warden LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -RUN_DEPENDS= rubygem-bcrypt>=3.0:security/rubygem-bcrypt \ - rubygem-orm_adapter>=0.1:devel/rubygem-orm_adapter \ +RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ + rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties5>=4.1.0:www/rubygem-railties5 \ rubygem-responders-rails5>=0:www/rubygem-responders-rails5 \ - rubygem-warden>=1.2.3:devel/rubygem-warden + rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= gem USE_RUBY= yes diff --git a/devel/rubygem-devise-rails5/distinfo b/devel/rubygem-devise-rails5/distinfo index 335d381ea95..ce2f638bcc9 100644 --- a/devel/rubygem-devise-rails5/distinfo +++ b/devel/rubygem-devise-rails5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561199710 -SHA256 (rubygem/devise-4.6.2.gem) = 8e4d99335393140debd6c9aee96d949217d2a6dd1552a191a566395c83b96211 -SIZE (rubygem/devise-4.6.2.gem) = 88064 +TIMESTAMP = 1566324269 +SHA256 (rubygem/devise-4.7.0.gem) = b0283431db29de160600fa421dfe24a5fd7d68d6894ae15f05ca891c34841161 +SIZE (rubygem/devise-4.7.0.gem) = 88064 diff --git a/devel/rubygem-devise/Makefile b/devel/rubygem-devise/Makefile index 119dc1cb244..2ec1b3a91f3 100644 --- a/devel/rubygem-devise/Makefile +++ b/devel/rubygem-devise/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= devise -PORTVERSION= 4.6.2 +PORTVERSION= 4.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -12,11 +12,11 @@ COMMENT= Flexible authentication solution for Rails with Warden LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -RUN_DEPENDS= rubygem-bcrypt>=3.0:security/rubygem-bcrypt \ - rubygem-orm_adapter>=0.1:devel/rubygem-orm_adapter \ +RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ + rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties50>=4.1.0:www/rubygem-railties50 \ rubygem-responders>=0:www/rubygem-responders \ - rubygem-warden>=1.2.3:devel/rubygem-warden + rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= gem USE_RUBY= yes diff --git a/devel/rubygem-devise/distinfo b/devel/rubygem-devise/distinfo index 335d381ea95..ce2f638bcc9 100644 --- a/devel/rubygem-devise/distinfo +++ b/devel/rubygem-devise/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561199710 -SHA256 (rubygem/devise-4.6.2.gem) = 8e4d99335393140debd6c9aee96d949217d2a6dd1552a191a566395c83b96211 -SIZE (rubygem/devise-4.6.2.gem) = 88064 +TIMESTAMP = 1566324269 +SHA256 (rubygem/devise-4.7.0.gem) = b0283431db29de160600fa421dfe24a5fd7d68d6894ae15f05ca891c34841161 +SIZE (rubygem/devise-4.7.0.gem) = 88064 diff --git a/devel/rubygem-et-orbi/Makefile b/devel/rubygem-et-orbi/Makefile index ea0b037bd34..ad917590efc 100644 --- a/devel/rubygem-et-orbi/Makefile +++ b/devel/rubygem-et-orbi/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= et-orbi -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-et-orbi/distinfo b/devel/rubygem-et-orbi/distinfo index 37c891940dc..904f8cac097 100644 --- a/devel/rubygem-et-orbi/distinfo +++ b/devel/rubygem-et-orbi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1557680316 -SHA256 (rubygem/et-orbi-1.2.1.gem) = 4fbfe2bab5b4d7615258c6b0f49756558cb6013d0321b3a8eb454301c7928feb -SIZE (rubygem/et-orbi-1.2.1.gem) = 17408 +TIMESTAMP = 1566324271 +SHA256 (rubygem/et-orbi-1.2.2.gem) = 9d0847f2d14c6254852146e1a41212c41340b4d6b494025a1aa136e88fcd0e10 +SIZE (rubygem/et-orbi-1.2.2.gem) = 17408 diff --git a/devel/rubygem-fugit/Makefile b/devel/rubygem-fugit/Makefile index aabdc470060..04347c09ec4 100644 --- a/devel/rubygem-fugit/Makefile +++ b/devel/rubygem-fugit/Makefile @@ -12,8 +12,8 @@ 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 +RUN_DEPENDS= rubygem-et-orbi>=1.1.8<2:devel/rubygem-et-orbi \ + rubygem-raabro>=1.1<2:textproc/rubygem-raabro USES= gem USE_RUBY= yes diff --git a/devel/rubygem-fugit12/Makefile b/devel/rubygem-fugit12/Makefile index 56a962800a9..0e47c6bae97 100644 --- a/devel/rubygem-fugit12/Makefile +++ b/devel/rubygem-fugit12/Makefile @@ -13,8 +13,8 @@ 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 +RUN_DEPENDS= rubygem-et-orbi>=1.1.8<2:devel/rubygem-et-orbi \ + rubygem-raabro>=1.1<2:textproc/rubygem-raabro USES= gem USE_RUBY= yes diff --git a/devel/rubygem-jira-ruby/Makefile b/devel/rubygem-jira-ruby/Makefile index 9f5fdeaad66..3103aeddded 100644 --- a/devel/rubygem-jira-ruby/Makefile +++ b/devel/rubygem-jira-ruby/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jira-ruby -PORTVERSION= 1.7.0 +PORTVERSION= 1.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-jira-ruby/distinfo b/devel/rubygem-jira-ruby/distinfo index 497431b27f5..e13c197b19e 100644 --- a/devel/rubygem-jira-ruby/distinfo +++ b/devel/rubygem-jira-ruby/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563040214 -SHA256 (rubygem/jira-ruby-1.7.0.gem) = 3944a01d39afef26b68cbd1a2c5a14a0a5c144321d8b1b3d4948e01e8e2691c5 -SIZE (rubygem/jira-ruby-1.7.0.gem) = 62464 +TIMESTAMP = 1566324273 +SHA256 (rubygem/jira-ruby-1.7.1.gem) = 0513abd2f10586a74ecf6b80551f17c0ceb208162bb1c7709d6b5cd00b316341 +SIZE (rubygem/jira-ruby-1.7.1.gem) = 62976 diff --git a/devel/simgear/Makefile b/devel/simgear/Makefile index c5818986c1b..ad76e5abc84 100644 --- a/devel/simgear/Makefile +++ b/devel/simgear/Makefile @@ -2,7 +2,7 @@ PORTNAME= simgear PORTVERSION= 2018.3.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel games MASTER_SITES= SF/flightgear/release-${PORTVERSION:R} @@ -14,16 +14,22 @@ LICENSE= GPLv2 BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ - libosg.so:graphics/osg + libosg.so:graphics/osg \ + libexpat.so:textproc/expat2 \ + libcurl.so:ftp/curl USES= alias cmake compiler:c++11-lib cpe gl jpeg openal:al,alut \ tar:bzip2 USE_XORG= ice sm x11 xext xi xmu xt USE_GL= gl glu glut +USE_LDCONFIG= yes + LDFLAGS_gcc= -losgDB LDFLAGS+= ${LDFLAGS_${CHOSEN_COMPILER_TYPE}} +CMAKE_ARGS+= -DSYSTEM_EXPAT:BOOL=ON + post-patch: # Avoid conflict with C++20 by adding .txt suffix @${MV} ${WRKSRC}/version ${WRKSRC}/version.txt diff --git a/devel/simgear/pkg-plist b/devel/simgear/pkg-plist index c8b3823a57d..ed3fe6335fa 100644 --- a/devel/simgear/pkg-plist +++ b/devel/simgear/pkg-plist @@ -332,9 +332,11 @@ include/simgear/timing/timestamp.hxx include/simgear/timing/timezone.h include/simgear/version.h include/simgear/xml/easyxml.hxx -lib/libSimGearCore.a -lib/libSimGearScene.a lib/cmake/SimGear/SimGearConfig.cmake lib/cmake/SimGear/SimGearConfigVersion.cmake lib/cmake/SimGear/SimGearTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/SimGear/SimGearTargets.cmake +lib/libSimGearCore.so +lib/libSimGearCore.so.2018.3.2 +lib/libSimGearScene.so +lib/libSimGearScene.so.2018.3.2 diff --git a/distfiles/phalcon-cphalcon-v4.0.0-beta.2_GH0.tar.gz b/distfiles/phalcon-cphalcon-v4.0.0-beta.2_GH0.tar.gz new file mode 100644 index 00000000000..f68b1a2af4b Binary files /dev/null and b/distfiles/phalcon-cphalcon-v4.0.0-beta.2_GH0.tar.gz differ diff --git a/ftp/curlie/Makefile b/ftp/curlie/Makefile index 6fcd0728dea..9d2b4ab3285 100644 --- a/ftp/curlie/Makefile +++ b/ftp/curlie/Makefile @@ -3,6 +3,7 @@ PORTNAME= curlie DISTVERSIONPREFIX= v DISTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= ftp net www MAINTAINER= 0mp@FreeBSD.org @@ -11,6 +12,8 @@ COMMENT= Frontend to cURL that adds the ease of use of HTTPie LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +RUN_DEPENDS= curl:ftp/curl + USES= go:modules USE_GITHUB= yes GH_ACCOUNT= rs diff --git a/games/flightgear-terragear/Makefile b/games/flightgear-terragear/Makefile index 5559501f3bc..b1d9e9a6f4c 100644 --- a/games/flightgear-terragear/Makefile +++ b/games/flightgear-terragear/Makefile @@ -2,7 +2,7 @@ PORTNAME= flightgear-terragear PORTVERSION= 20171007 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MAINTAINER= mike.d.ft402@gmail.com @@ -10,7 +10,6 @@ COMMENT= Tools for building scenery for the FlightGear project LICENSE= GPLv2 -BUILD_DEPENDS= ${LOCALBASE}/lib/libSimGearCore.a:devel/simgear LIB_DEPENDS= libCGAL.so:math/cgal \ libgdal.so:graphics/gdal \ libmpfr.so:math/mpfr \ @@ -20,8 +19,8 @@ LIB_DEPENDS= libCGAL.so:math/cgal \ libboost_chrono.so:devel/boost-libs \ libboost_date_time.so:devel/boost-libs \ libboost_atomic.so:devel/boost-libs \ - libtiff.so:graphics/tiff -RUN_DEPENDS= ${LOCALBASE}/lib/libSimGearCore.a:devel/simgear + libtiff.so:graphics/tiff \ + libSimGearCore.so:devel/simgear USES= cmake compiler:c++11-lang diff --git a/games/flightgear/Makefile b/games/flightgear/Makefile index 9707566fe40..e54b85cc098 100644 --- a/games/flightgear/Makefile +++ b/games/flightgear/Makefile @@ -3,7 +3,7 @@ PORTNAME= flightgear PORTVERSION= 2018.3.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= games MASTER_SITES= SF/flightgear/release-${PORTVERSION:R} @@ -20,12 +20,12 @@ LIB_DEPENDS= libpng.so:graphics/png \ libspeex.so:audio/speex \ libspeexdsp.so:audio/speexdsp \ libcurl.so:ftp/curl \ - libudev.so:devel/libudev-devd + libudev.so:devel/libudev-devd \ + libexpat.so:textproc/expat2 \ + libSimGearCore.so:devel/simgear BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ - ${LOCALBASE}/lib/libSimGearCore.a:devel/simgear \ ${LOCALBASE}/include/linux/input.h:devel/evdev-proto RUN_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:x11-toolkits/plib \ - ${LOCALBASE}/lib/libSimGearCore.a:devel/simgear \ ${LOCALBASE}/share/flightgear/version:games/flightgear-data # Disable ninja, see https://sourceforge.net/p/flightgear/codetickets/2118/ diff --git a/graphics/Makefile b/graphics/Makefile index 5f991827fd8..9e1cb57e8dd 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -199,6 +199,7 @@ SUBDIR += fpc-rsvg SUBDIR += fpc-svgalib SUBDIR += fracplanet + SUBDIR += fractgen SUBDIR += fraqtive SUBDIR += freeglut SUBDIR += freeimage @@ -358,6 +359,7 @@ SUBDIR += imc SUBDIR += imgtops SUBDIR += imgv + SUBDIR += imgvtopgm SUBDIR += imlib2 SUBDIR += imlib2-webp SUBDIR += imlib2_loaders diff --git a/graphics/fractgen/Makefile b/graphics/fractgen/Makefile new file mode 100644 index 00000000000..1224b742b72 --- /dev/null +++ b/graphics/fractgen/Makefile @@ -0,0 +1,20 @@ +# Created by: Thomas Dreibholz +# $FreeBSD$ + +PORTNAME= fractgen +PORTVERSION= 2.1.7 +CATEGORIES= graphics +MASTER_SITES= https://www.uni-due.de/~be0001/fractalgenerator/download/ + +MAINTAINER= dreibh@iem.uni-due.de +COMMENT= Fractal Generator + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= tar:xz cmake qt:5 +USE_QT= core xml widgets printsupport buildtools_build qmake_build + +CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/man + +.include diff --git a/graphics/fractgen/distinfo b/graphics/fractgen/distinfo new file mode 100644 index 00000000000..ff2c0d8987a --- /dev/null +++ b/graphics/fractgen/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1565194937 +SHA256 (fractgen-2.1.7.tar.xz) = 733bc6d62afae87c39ad994f6b64caa8fbd5c004b94b45063452b5963278f33d +SIZE (fractgen-2.1.7.tar.xz) = 71852 diff --git a/graphics/fractgen/pkg-descr b/graphics/fractgen/pkg-descr new file mode 100644 index 00000000000..d3e17a301dc --- /dev/null +++ b/graphics/fractgen/pkg-descr @@ -0,0 +1,8 @@ +FractGen is a simple Qt-based fractal generator program for Mandelbrot +fractals. The image size is only limited by virtual memory. It is possible +to zoom into images. Image parameters can be saved in XML files and loaded +from XML files. Calculated images can be exported as PNG files. The intention +of this program is to generate graphics to be post-processed by other image +tools, e.g. in order to generate nice screen backgrounds or book covers. + +WWW: https://www.uni-due.de/~be0001/fractalgenerator/ diff --git a/graphics/fractgen/pkg-plist b/graphics/fractgen/pkg-plist new file mode 100644 index 00000000000..9c780a7c310 --- /dev/null +++ b/graphics/fractgen/pkg-plist @@ -0,0 +1,13 @@ +%%DATADIR%%/examples/alpha01.fsf +%%DATADIR%%/examples/alpha02.fsf +%%DATADIR%%/examples/alpha03.fsf +%%DATADIR%%/examples/alpha04.fsf +%%DATADIR%%/examples/alpha05.fsf +%%DATADIR%%/examples/alpha06.fsf +%%DATADIR%%/examples/alpha07.fsf +%%DATADIR%%/examples/alpha08.fsf +%%DATADIR%%/examples/demo-fractal.fsf +%%DATADIR%%/examples/test1.fsf +%%DATADIR%%/examples/test2.fsf +bin/fractgen +man/man1/fractgen.1.gz diff --git a/palm/imgvtopgm/Makefile b/graphics/imgvtopgm/Makefile similarity index 94% rename from palm/imgvtopgm/Makefile rename to graphics/imgvtopgm/Makefile index d7837115829..ca4ffef9bc1 100644 --- a/palm/imgvtopgm/Makefile +++ b/graphics/imgvtopgm/Makefile @@ -4,7 +4,7 @@ PORTNAME= imgvtopgm PORTVERSION= 2.0 PORTREVISION= 5 -CATEGORIES= palm graphics +CATEGORIES= graphics MASTER_SITES= http://linuxmafia.com/pub/palmos/other-os/ MAINTAINER= ports@FreeBSD.org diff --git a/palm/imgvtopgm/distinfo b/graphics/imgvtopgm/distinfo similarity index 100% rename from palm/imgvtopgm/distinfo rename to graphics/imgvtopgm/distinfo diff --git a/palm/imgvtopgm/files/patch-configure b/graphics/imgvtopgm/files/patch-configure similarity index 100% rename from palm/imgvtopgm/files/patch-configure rename to graphics/imgvtopgm/files/patch-configure diff --git a/palm/imgvtopgm/pkg-descr b/graphics/imgvtopgm/pkg-descr similarity index 100% rename from palm/imgvtopgm/pkg-descr rename to graphics/imgvtopgm/pkg-descr diff --git a/palm/imgvtopgm/pkg-plist b/graphics/imgvtopgm/pkg-plist similarity index 100% rename from palm/imgvtopgm/pkg-plist rename to graphics/imgvtopgm/pkg-plist diff --git a/graphics/pixmap/Makefile b/graphics/pixmap/Makefile index 12f8fd1427b..147b69e8601 100644 --- a/graphics/pixmap/Makefile +++ b/graphics/pixmap/Makefile @@ -14,6 +14,10 @@ COMMENT= Pixmap editor based on XPM library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYRIGHT +BROKEN= 'sys/dir.h' file not found +DEPRECATED= No longer maintained +EXPIRATION_DATE= 2019-09-20 + # requires rgb.txt BUILD_DEPENDS= showrgb:x11/rgb \ xrdb:x11/xrdb diff --git a/graphics/shotwell/Makefile b/graphics/shotwell/Makefile index 89b3f223e00..04e712979f5 100644 --- a/graphics/shotwell/Makefile +++ b/graphics/shotwell/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= shotwell -PORTVERSION= 0.30.5 +PORTVERSION= 0.30.6 CATEGORIES= graphics gnome MASTER_SITES= GNOME diff --git a/graphics/shotwell/distinfo b/graphics/shotwell/distinfo index beee0ec119f..979cb5e30e4 100644 --- a/graphics/shotwell/distinfo +++ b/graphics/shotwell/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1565775554 -SHA256 (shotwell-0.30.5.tar.xz) = af8be0396509c7a0ad435c9562d8ed29a496b97aa6fba5fc472c390a08fca4a5 -SIZE (shotwell-0.30.5.tar.xz) = 6455852 +TIMESTAMP = 1566313723 +SHA256 (shotwell-0.30.6.tar.xz) = b8560885948825401d9f4b728cf1a97ccb5da116d2d144c9695a6ceb4338ce48 +SIZE (shotwell-0.30.6.tar.xz) = 6455932 diff --git a/java/eclipse/Makefile b/java/eclipse/Makefile index 4fd8db4b40c..e3b31cc82b9 100644 --- a/java/eclipse/Makefile +++ b/java/eclipse/Makefile @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= eclipse -PORTVERSION= 4.11 -PORTREVISION= 1 +PORTVERSION= 4.12 CATEGORIES= java devel # Update to git-tag on git.eclipse.org -ECLIPSE_TAG= R4_11 -ECLIPSE_TSTAMP= 20190321-0023 +ECLIPSE_TAG= R4_12 +ECLIPSE_TSTAMP= 20190617-0403 ECLIPSE_SUFX= ${ECLIPSE_TAG}.tar.xz ECLIPSE_MODULES=jdt/eclipse.jdt \ @@ -38,14 +37,15 @@ ECLIPSE_MODULES=jdt/eclipse.jdt \ equinox/rt.equinox.p2 # Each Eclipse module has its own MASTER_SITE .for M in ${ECLIPSE_MODULES} -MASTER_SITES+= https://git.eclipse.org/c/${M}.git/snapshot/:${M:C/[\.\/]//g} +MASTER_SITES+= https://git.eclipse.org/c/${M}.git/snapshot/:${M:C/[\.\/]//g} \ + https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/${PORTVERSION}/:${M:C/[\.\/]//g} DISTFILES+= ${M:C/.*\///}-${ECLIPSE_SUFX}:${M:C/[\.\/]//g} .endfor DIST_SUBDIR= ${PORTNAME} MAINTAINER= jonc@chen.org.nz -COMMENT= Eclipse IDE 2019-03 +COMMENT= Eclipse IDE 2019-06 LICENSE= EPL @@ -62,8 +62,7 @@ USE_GITHUB= yes GH_ACCOUNT= daemonblade GH_PROJECT= eclipse-maven-repo -USE_JAVA= yes -JAVA_VERSION= 1.8 +USE_JAVA= 8 DESKTOP_ENTRIES="Eclipse" \ "${COMMENT}" \ @@ -74,7 +73,7 @@ DESKTOP_ENTRIES="Eclipse" \ SUB_FILES= ${PORTNAME} -MAVEN_ENV= MAVEN_OPTS=-Xmx1024m CC=${CC} +MAVEN_ENV= MAVEN_OPTS=-Xmx1024m CC=${CC} JAVA_HOME=${JAVA_HOME} MAVEN_REPO= -Dmaven.repo.local=${WRKDIR}/${GH_PROJECT}-${PORTVERSION} MAVEN_ECLIPSE= -Dnative=gtk.freebsd.${ARCH} -Dcomparator.repo=file://${WRKDIR}/${GH_PROJECT}-${PORTVERSION}/p2-stub -DforceContextQualifier=v${ECLIPSE_TSTAMP} diff --git a/java/eclipse/distinfo b/java/eclipse/distinfo index bd1186122f3..734599eef83 100644 --- a/java/eclipse/distinfo +++ b/java/eclipse/distinfo @@ -1,53 +1,53 @@ -TIMESTAMP = 1554503098 -SHA256 (eclipse/eclipse.jdt-R4_11.tar.xz) = 69cfb50655af18880880ef4292e2856ad12d847527553bb7d13f2a3443f566ce -SIZE (eclipse/eclipse.jdt-R4_11.tar.xz) = 37580 -SHA256 (eclipse/eclipse.jdt.core-R4_11.tar.xz) = 903c7591a4698badbd279d09b2aefd3604820aba54cf2958e4fd5cfa0d806f24 -SIZE (eclipse/eclipse.jdt.core-R4_11.tar.xz) = 8371984 -SHA256 (eclipse/eclipse.jdt.core.binaries-R4_11.tar.xz) = ddcf1962d1b869c22cc31d0634d280e68b91a6c8f5561f64a5072e558460e7a2 -SIZE (eclipse/eclipse.jdt.core.binaries-R4_11.tar.xz) = 34416600 -SHA256 (eclipse/eclipse.jdt.debug-R4_11.tar.xz) = 028222dbe3d2ebc4002b3b362e0500a791e86ef9e4fca9a5d7a1bed97f9bc395 -SIZE (eclipse/eclipse.jdt.debug-R4_11.tar.xz) = 1425276 -SHA256 (eclipse/eclipse.jdt.ui-R4_11.tar.xz) = 28ca01db7a12183125b9794cd56bb0dd6b5ba449014bc8bfe9ac6991e63b5a77 -SIZE (eclipse/eclipse.jdt.ui-R4_11.tar.xz) = 14117296 -SHA256 (eclipse/eclipse.pde.build-R4_11.tar.xz) = 32496ccf12e630762fd59fd18ebc1bae9f96437f012aaeab5797ba29f6b2ddd7 -SIZE (eclipse/eclipse.pde.build-R4_11.tar.xz) = 868176 -SHA256 (eclipse/eclipse.pde.ui-R4_11.tar.xz) = 7ac38d3c2b52c030d7011395c94fe6dbdacc735a308911c1c0689388e54f6e87 -SIZE (eclipse/eclipse.pde.ui-R4_11.tar.xz) = 29759352 -SHA256 (eclipse/eclipse.platform-R4_11.tar.xz) = f9512fc71c40c37703b89617efdbd48f1fac4d4558e705b9a13596a567241a5d -SIZE (eclipse/eclipse.platform-R4_11.tar.xz) = 952108 -SHA256 (eclipse/eclipse.platform.common-R4_11.tar.xz) = a3062ed00ebe342a98e1132449d42987e104b741e1b86201c456af47fdd004c3 -SIZE (eclipse/eclipse.platform.common-R4_11.tar.xz) = 34049880 -SHA256 (eclipse/eclipse.platform.debug-R4_11.tar.xz) = 2e2b675035e808b121a9cb38cd5c26e35a6f2c38853f9dbd9db37d5e2ef1b921 -SIZE (eclipse/eclipse.platform.debug-R4_11.tar.xz) = 1369408 -SHA256 (eclipse/eclipse.platform.releng-R4_11.tar.xz) = a550feae2316d591b0990460a053abc19dd87b80c86c351cce98bff33194ede9 -SIZE (eclipse/eclipse.platform.releng-R4_11.tar.xz) = 411064 -SHA256 (eclipse/eclipse.platform.releng.aggregator-R4_11.tar.xz) = c25d05c355585e5fcd6465a95899dd1eb6d2af92aab16d90bf0cdf3a6044c4fc -SIZE (eclipse/eclipse.platform.releng.aggregator-R4_11.tar.xz) = 690924 -SHA256 (eclipse/eclipse.platform.resources-R4_11.tar.xz) = 59be5020229e5053909194c55d416a384b2cf00b7a578d8df50d80c6bb8c6948 -SIZE (eclipse/eclipse.platform.resources-R4_11.tar.xz) = 857244 -SHA256 (eclipse/eclipse.platform.runtime-R4_11.tar.xz) = 70b9ea7151ea5c60feea289f3a8b7fcd66619f46f2ef2fde0a7ae2a034355330 -SIZE (eclipse/eclipse.platform.runtime-R4_11.tar.xz) = 432764 -SHA256 (eclipse/eclipse.platform.swt-R4_11.tar.xz) = b779fe217ac503b28b83fa1104b17cd99e8b6086bdb31be3f9efbd2f4135bc96 -SIZE (eclipse/eclipse.platform.swt-R4_11.tar.xz) = 3535864 -SHA256 (eclipse/eclipse.platform.swt.binaries-R4_11.tar.xz) = 805b830cb1cc45895594c1ac5fb96173a968fa954a33cb90dacf57215b651796 -SIZE (eclipse/eclipse.platform.swt.binaries-R4_11.tar.xz) = 1077336 -SHA256 (eclipse/eclipse.platform.team-R4_11.tar.xz) = f4f36cb722f393e25626ea5131b4d9017f3d47d69f33f2982f7a6bdeda5b3dad -SIZE (eclipse/eclipse.platform.team-R4_11.tar.xz) = 4665536 -SHA256 (eclipse/eclipse.platform.text-R4_11.tar.xz) = da6fad72804338e40efa7572bf162e7f88dac8dc8a14eb2fe4f733ed47b0c6be -SIZE (eclipse/eclipse.platform.text-R4_11.tar.xz) = 1247548 -SHA256 (eclipse/eclipse.platform.ua-R4_11.tar.xz) = a879ef849eaf4585832bd8203f167a031c4f05c9916dc5138ed541eba4f0a870 -SIZE (eclipse/eclipse.platform.ua-R4_11.tar.xz) = 4438264 -SHA256 (eclipse/eclipse.platform.ui-R4_11.tar.xz) = 00e5235b09106bd2f23c01257d50330ff2ed7511bb4dbdbbbe21929e2f25dc85 -SIZE (eclipse/eclipse.platform.ui-R4_11.tar.xz) = 6013124 -SHA256 (eclipse/eclipse.platform.ui.tools-R4_11.tar.xz) = 4cc9941e49bb5f10b9155649165643e9afe5b758b2d3e0807c7c368797963b03 -SIZE (eclipse/eclipse.platform.ui.tools-R4_11.tar.xz) = 316036 -SHA256 (eclipse/rt.equinox.binaries-R4_11.tar.xz) = a4476629efbd4f5063ff42e0aebb9b75e0f40f667fa7a90152e6e1b14934e8f7 -SIZE (eclipse/rt.equinox.binaries-R4_11.tar.xz) = 623604 -SHA256 (eclipse/rt.equinox.bundles-R4_11.tar.xz) = 4b1cada1dcb6b4cddd65f96a85740fcfe053722e836351f0e2ab53a54d531bc9 -SIZE (eclipse/rt.equinox.bundles-R4_11.tar.xz) = 1139768 -SHA256 (eclipse/rt.equinox.framework-R4_11.tar.xz) = 39ea7af8cb7c56e6b4819902de00f498f881c6b66599d5a5b275f2bd32765480 -SIZE (eclipse/rt.equinox.framework-R4_11.tar.xz) = 2812036 -SHA256 (eclipse/rt.equinox.p2-R4_11.tar.xz) = 019ec06efb58a12417c0a1ae9ecfdc368ab8e4ad25364970bd112dc03b9a53c8 -SIZE (eclipse/rt.equinox.p2-R4_11.tar.xz) = 45251216 -SHA256 (eclipse/daemonblade-eclipse-maven-repo-4.11_GH0.tar.gz) = ab9e83997cccc02c235c8d3aa67db6f9963b25ede3d22d961d9292925a2f6bfa -SIZE (eclipse/daemonblade-eclipse-maven-repo-4.11_GH0.tar.gz) = 167655977 +TIMESTAMP = 1564954773 +SHA256 (eclipse/eclipse.jdt-R4_12.tar.xz) = 45ae25fb2da5f0dabb0a3e661cd7c0bdb7e64c11ef022ef69634b78b7c0d53e2 +SIZE (eclipse/eclipse.jdt-R4_12.tar.xz) = 37540 +SHA256 (eclipse/eclipse.jdt.core-R4_12.tar.xz) = 5e2397a22ac6b4c8c4335da21c51c53f391b7aa22287e8c2a0a51d32ca56a735 +SIZE (eclipse/eclipse.jdt.core-R4_12.tar.xz) = 8454552 +SHA256 (eclipse/eclipse.jdt.core.binaries-R4_12.tar.xz) = e7ff8a3148707694b14140abdaa40feca610694f3b729c0851abaab321063b7d +SIZE (eclipse/eclipse.jdt.core.binaries-R4_12.tar.xz) = 34416416 +SHA256 (eclipse/eclipse.jdt.debug-R4_12.tar.xz) = a111fc4ff7f054a691cd27ae8999eac08d9a840a7dc44d09568573442ae1471a +SIZE (eclipse/eclipse.jdt.debug-R4_12.tar.xz) = 1431080 +SHA256 (eclipse/eclipse.jdt.ui-R4_12.tar.xz) = 375bce94a24c56a9ae23d3c0029b169abc3281feb4217678fdab0903684f4762 +SIZE (eclipse/eclipse.jdt.ui-R4_12.tar.xz) = 14583880 +SHA256 (eclipse/eclipse.pde.build-R4_12.tar.xz) = 891a4bcc90cd96514f318eee9eaf96fc15159d77d1fc409ed249906acb68022e +SIZE (eclipse/eclipse.pde.build-R4_12.tar.xz) = 868404 +SHA256 (eclipse/eclipse.pde.ui-R4_12.tar.xz) = cd075169014eaa1869c961bd1d5142289963639cbc7ba6d77807f94db660bea0 +SIZE (eclipse/eclipse.pde.ui-R4_12.tar.xz) = 29767800 +SHA256 (eclipse/eclipse.platform-R4_12.tar.xz) = ddf3a506a37cf8d9a3710075b3317e672e6be3c7b862d4040fdfbec79dd4ea8e +SIZE (eclipse/eclipse.platform-R4_12.tar.xz) = 1371240 +SHA256 (eclipse/eclipse.platform.common-R4_12.tar.xz) = 135bae9bde971e0d554baef0f7d5490856d328872aba4cbd6f4de6dd9ec45716 +SIZE (eclipse/eclipse.platform.common-R4_12.tar.xz) = 34509332 +SHA256 (eclipse/eclipse.platform.debug-R4_12.tar.xz) = 73794b36665ff3d5e91a9192580b0d13adf7465c84ecb348968ca1b442102b7e +SIZE (eclipse/eclipse.platform.debug-R4_12.tar.xz) = 1372736 +SHA256 (eclipse/eclipse.platform.releng-R4_12.tar.xz) = b881cdf06b04a8b540a4eb78284f6bdbf0dc6609558a4ab47ab985f0b806bece +SIZE (eclipse/eclipse.platform.releng-R4_12.tar.xz) = 410360 +SHA256 (eclipse/eclipse.platform.releng.aggregator-R4_12.tar.xz) = c7fe65208ca7e534305ea02b9121af7f1610aeb06d2699ccadd1df7aa0326d65 +SIZE (eclipse/eclipse.platform.releng.aggregator-R4_12.tar.xz) = 693384 +SHA256 (eclipse/eclipse.platform.resources-R4_12.tar.xz) = 5f52c24383d93097e4afbe4e7bd6219a503d3fb53d5753bef1e6788459f81790 +SIZE (eclipse/eclipse.platform.resources-R4_12.tar.xz) = 856912 +SHA256 (eclipse/eclipse.platform.runtime-R4_12.tar.xz) = 249076673934470080f0978561f88bce094e0c5d020e9e310925f8cd0a0d79ee +SIZE (eclipse/eclipse.platform.runtime-R4_12.tar.xz) = 432824 +SHA256 (eclipse/eclipse.platform.swt-R4_12.tar.xz) = e32661c3d7d1593fb38a3d0c19d015cf0e257cd25c80c74acbd95e2c5e7c0a29 +SIZE (eclipse/eclipse.platform.swt-R4_12.tar.xz) = 3526948 +SHA256 (eclipse/eclipse.platform.swt.binaries-R4_12.tar.xz) = 29959c650f57cc6fa93f301a3d4a3e4648ecfeeedcb9ad665f7bb35672f44d5d +SIZE (eclipse/eclipse.platform.swt.binaries-R4_12.tar.xz) = 579236 +SHA256 (eclipse/eclipse.platform.team-R4_12.tar.xz) = a4dae95b11dcdfec3f7481582be72ce5145e91096d6f2b654958a0afea601bab +SIZE (eclipse/eclipse.platform.team-R4_12.tar.xz) = 4633400 +SHA256 (eclipse/eclipse.platform.text-R4_12.tar.xz) = 5ce41cb1f01f4fd1960f6f12e8e4e78dd8140b45657ac911be8deedfc6ce9953 +SIZE (eclipse/eclipse.platform.text-R4_12.tar.xz) = 1248060 +SHA256 (eclipse/eclipse.platform.ua-R4_12.tar.xz) = 28a705e7ea2a0bb9739bfba031373215601c61e75f7d99e0635b5f08f30f8d98 +SIZE (eclipse/eclipse.platform.ua-R4_12.tar.xz) = 4510416 +SHA256 (eclipse/eclipse.platform.ui-R4_12.tar.xz) = dbd4e45afe474d149cc5a5bfd767a68caa3a24fe106004a55fca18e412a7f92a +SIZE (eclipse/eclipse.platform.ui-R4_12.tar.xz) = 5937024 +SHA256 (eclipse/eclipse.platform.ui.tools-R4_12.tar.xz) = 610cfc9ac0e57114ddd6985a5a1ce0179f54397d2a2295de29166ece08af2daf +SIZE (eclipse/eclipse.platform.ui.tools-R4_12.tar.xz) = 318476 +SHA256 (eclipse/rt.equinox.binaries-R4_12.tar.xz) = b439a66d4a28aad2bb4ea6ae5adddf39a95c9d1c348923c258f42c683f1ffb7f +SIZE (eclipse/rt.equinox.binaries-R4_12.tar.xz) = 624016 +SHA256 (eclipse/rt.equinox.bundles-R4_12.tar.xz) = 4e0a2c72e0f459231fc51607b03598274902e04b308d3028ba9d30b57cb8a81d +SIZE (eclipse/rt.equinox.bundles-R4_12.tar.xz) = 1141852 +SHA256 (eclipse/rt.equinox.framework-R4_12.tar.xz) = 8d154acf89d503cdd6ee8a83854a4a69d14f15430089a71f80bcb3a603d32b55 +SIZE (eclipse/rt.equinox.framework-R4_12.tar.xz) = 2813400 +SHA256 (eclipse/rt.equinox.p2-R4_12.tar.xz) = c3972cb745756fbea87ca0098803c538d1fc300637bbc1062fe359f0ca72dbc8 +SIZE (eclipse/rt.equinox.p2-R4_12.tar.xz) = 48502480 +SHA256 (eclipse/daemonblade-eclipse-maven-repo-4.12_GH0.tar.gz) = 43093df29b4ecbbabe8806ca24f1dcc4fa53b2b0d85a59d2664fc8f3fe8d8e90 +SIZE (eclipse/daemonblade-eclipse-maven-repo-4.12_GH0.tar.gz) = 182037029 diff --git a/java/eclipse/files/patch-eclipse-platform-parent b/java/eclipse/files/patch-eclipse-platform-parent index 76753df2935..d37c87c9a02 100644 --- a/java/eclipse/files/patch-eclipse-platform-parent +++ b/java/eclipse/files/patch-eclipse-platform-parent @@ -5,11 +5,11 @@ diff -ru eclipse-platform-parent/pom.xml eclipse-platform-parent/pom.xml 'eclipiserun-repo' repository, such as for computing .api-descriptions and generating API Tools reports. --> -- http://download.eclipse.org/eclipse/updates/4.11-I-builds/ -+ http://download.eclipse.org/eclipse/updates/4.11/ +- https://download.eclipse.org/eclipse/updates/4.12-I-builds/ ++ https://download.eclipse.org/eclipse/updates/4.12/ -- http://download.eclipse.org/eclipse/updates/4.11-I-builds -+ http://download.eclipse.org/eclipse/updates/4.11 +- https://download.eclipse.org/eclipse/updates/4.12-I-builds ++ https://download.eclipse.org/eclipse/updates/4.12 -- http://download.eclipse.org/modeling/emf/emf/builds/milestone/S201903030654/ -+ http://download.eclipse.org/modeling/emf/emf/builds/release/2.17/ +- https://download.eclipse.org/modeling/emf/emf/builds/milestone/S201905280646 ++ https://download.eclipse.org/modeling/emf/emf/builds/release/2.18 - http://download.eclipse.org/rt/ecf/3.14.4/site.p2/ + https://download.eclipse.org/rt/ecf/3.14.5/site.p2/ @@ -262,14 +262,14 @@ @@ -41,12 +41,3 @@ diff -ru eclipse-platform-parent/pom.xml eclipse-platform-parent/pom.xml win32 -@@ -639,7 +639,7 @@ - For maintenance streams should always be "M-builds". - Ideally, this value would be provided by the environment, see bug 489789. - --> -- http://download.eclipse.org/eclipse/updates/4.11-I-builds -+ http://download.eclipse.org/eclipse/updates/4.11 - - - diff --git a/java/eclipse/files/patch-eclipse.platform.releng.prereqs.sdk b/java/eclipse/files/patch-eclipse.platform.releng.prereqs.sdk index 1e8eb071b8a..c12474c134f 100644 --- a/java/eclipse/files/patch-eclipse.platform.releng.prereqs.sdk +++ b/java/eclipse/files/patch-eclipse.platform.releng.prereqs.sdk @@ -2,11 +2,11 @@ diff -ru eclipse.platform.releng.prereqs.sdk/eclipse-sdk-prereqs.target eclipse. --- eclipse.platform.releng.prereqs.sdk/eclipse-sdk-prereqs.target 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.releng.prereqs.sdk/eclipse-sdk-prereqs.target 0000-00-00 00:00:00.000000000 +0000 @@ -167,7 +167,7 @@ - + - -- -+ + +- ++ diff --git a/java/eclipse/files/patch-eclipse.platform.releng.tychoeclipsebuilder b/java/eclipse/files/patch-eclipse.platform.releng.tychoeclipsebuilder index a385cb2e16f..b571f921ee1 100644 --- a/java/eclipse/files/patch-eclipse.platform.releng.tychoeclipsebuilder +++ b/java/eclipse/files/patch-eclipse.platform.releng.tychoeclipsebuilder @@ -98,22 +98,20 @@ diff -ru eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/mai org.eclipse.equinox.p2.reconciler.tests.platform.archive.win32-x86_64=\${basedir}\\\\eclipse-platform-${buildId}-win32-x86_64.zip org.eclipse.equinox.p2.reconciler.tests.platform.archive.macosx-x86_64=\${basedir}/eclipse-platform-${buildId}-macosx-cocoa-x86_64.tar.gz --org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.linux-x86_64=\${basedir}/eclipse-platform-4.10-linux-gtk-x86_64.tar.gz -+org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.freebsd-x86_64=\${basedir}/eclipse-platform-4.10-freebsd-gtk-amd64.tar.gz - org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.win32-x86_64=\${basedir}\\\\eclipse-platform-4.10-win32-x86_64.zip - org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.macosx-x86_64=\${basedir}/eclipse-platform-4.10-macosx-cocoa-x86_64.tar.gz +-org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.linux-x86_64=\${basedir}/eclipse-platform-4.11-linux-gtk-x86_64.tar.gz ++org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.freebsd-amd64=\${basedir}/eclipse-platform-4.11-freebsd-gtk-amd64.tar.gz + org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.win32-x86_64=\${basedir}\\\\eclipse-platform-4.11-win32-x86_64.zip + org.eclipse.equinox.p2.reconciler.tests.lastrelease.platform.archive.macosx-x86_64=\${basedir}/eclipse-platform-4.11-macosx-cocoa-x86_64.tar.gz diff -ru eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh --- eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.releng.tychoeclipsebuilder/eclipse-junit-tests/src/main/scripts/getPreviousRelease.sh 0000-00-00 00:00:00.000000000 +0000 -@@ -7,10 +7,10 @@ - +@@ -8,9 +8,9 @@ mkdir -p workarea/${buildId}/eclipse-testing --#cp /home/files/buildzips/oxygen/R/R-4.10-201812060815/eclipse-SDK-4.10-linux-gtk-x86_64.tar.gz ./workarea/${buildId}/eclipse-testing/ --cp /home/files/buildzips/oxygen/R/R-4.10-201812060815/eclipse-platform-4.10-linux-gtk-x86_64.tar.gz ./workarea/${buildId}/eclipse-testing/platformLocation/ -+#cp /home/files/buildzips/oxygen/R/R-4.10-201812060815/eclipse-SDK-4.10-freebsd-gtk-amd64.tar.gz ./workarea/${buildId}/eclipse-testing/ -+cp /home/files/buildzips/oxygen/R/R-4.10-201812060815/eclipse-platform-4.10-freebsd-gtk-amd64.tar.gz ./workarea/${buildId}/eclipse-testing/platformLocation/ + #cp /home/files/buildzips/oxygen/R/R-4.11-201903070500/eclipse-SDK-4.11-linux-gtk-x86_64.tar.gz ./workarea/${buildId}/eclipse-testing/ +-cp /home/files/buildzips/oxygen/R/R-4.11-201903070500/eclipse-platform-4.11-linux-gtk-x86_64.tar.gz ./workarea/${buildId}/eclipse-testing/platformLocation/ ++cp /home/files/buildzips/oxygen/R/R-4.11-201903070500/eclipse-platform-4.11-freebsd-gtk-amd64.tar.gz ./workarea/${buildId}/eclipse-testing/platformLocation/ -cp ../../eclipse-SDK-${buildId}-linux-gtk-x86_64.tar.gz workarea/${buildId}/eclipse-testing/ +cp ../../eclipse-SDK-${buildId}-freebsd-gtk-amd64.tar.gz workarea/${buildId}/eclipse-testing/ diff --git a/java/eclipse/files/patch-eclipse.platform.runtime b/java/eclipse/files/patch-eclipse.platform.runtime index 8b2b3961ca7..30bde8b30ba 100644 --- a/java/eclipse/files/patch-eclipse.platform.runtime +++ b/java/eclipse/files/patch-eclipse.platform.runtime @@ -1,7 +1,7 @@ diff -ru eclipse.platform.runtime/bundles/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java eclipse.platform.runtime/bundles/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java --- eclipse.platform.runtime/bundles/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.runtime/bundles/org.eclipse.core.runtime/src/org/eclipse/core/internal/runtime/InternalPlatform.java 0000-00-00 00:00:00.000000000 +0000 -@@ -59,7 +59,7 @@ +@@ -63,7 +63,7 @@ //XXX This is not synchronized private Map logs = new HashMap<>(5); diff --git a/java/eclipse/files/patch-eclipse.platform.swt b/java/eclipse/files/patch-eclipse.platform.swt index d02a24c7f45..8d57e331eed 100644 --- a/java/eclipse/files/patch-eclipse.platform.swt +++ b/java/eclipse/files/patch-eclipse.platform.swt @@ -13,7 +13,7 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/.classpath_gtk eclipse.pla diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/common/org/eclipse/swt/internal/Library.java eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/common/org/eclipse/swt/internal/Library.java --- eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/common/org/eclipse/swt/internal/Library.java 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/common/org/eclipse/swt/internal/Library.java 0000-00-00 00:00:00.000000000 +0000 -@@ -68,12 +68,12 @@ +@@ -69,12 +69,12 @@ static String arch() { String osArch = System.getProperty("os.arch"); //$NON-NLS-1$ if (osArch.equals ("i386") || osArch.equals ("i686")) return "x86"; //$NON-NLS-1$ $NON-NLS-2$ $NON-NLS-3$ @@ -88,7 +88,7 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library "linux.x86") if [ "${CC}" = "" ]; then export CC=gcc -@@ -194,7 +202,7 @@ +@@ -194,7 +199,7 @@ # For 64-bit CPUs, we have a switch @@ -97,7 +97,7 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library SWT_PTR_CFLAGS=-DJNI64 if [ -d /lib64 ]; then XLIB64=-L/usr/X11R6/lib64 -@@ -205,6 +213,11 @@ +@@ -205,6 +210,11 @@ XLIB64="${XLIB64} -L/usr/lib64" SWT_LFLAGS=-m64 export SWT_LFLAGS @@ -109,13 +109,6 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library fi export SWT_PTR_CFLAGS fi -@@ -364,4 +377,4 @@ - elif [ "${GTK_VERSION}" = "3.0" -o "${GTK_VERSION}" = "" ]; then - export GTK_VERSION="3.0" - func_build_gtk3 "$@" --fi -\ No newline at end of file -+fi diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/make_linux.mak eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/make_linux.mak --- eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/make_linux.mak 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/make_linux.mak 0000-00-00 00:00:00.000000000 +0000 @@ -185,20 +178,6 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/META-INF/p2.inf eclipse.pl requires.5.range = [$version$,$version$] -requires.5.filter = (&(osgi.os=linux)(osgi.ws=gtk)(osgi.arch=ppc64le)(!(org.eclipse.swt.buildtime=true))) +requires.5.filter = (&(osgi.os=freebsd)(osgi.ws=gtk)(osgi.arch=powerpc64)(!(org.eclipse.swt.buildtime=true))) -diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/buildFragment.xml eclipse.platform.swt/bundles/org.eclipse.swt/buildFragment.xml ---- eclipse.platform.swt/bundles/org.eclipse.swt/buildFragment.xml 0000-00-00 00:00:00.000000000 +0000 -+++ eclipse.platform.swt/bundles/org.eclipse.swt/buildFragment.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -237,8 +237,9 @@ - - - -+ - -- -+ - - - diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/buildSWT.xml eclipse.platform.swt/bundles/org.eclipse.swt/buildSWT.xml --- eclipse.platform.swt/bundles/org.eclipse.swt/buildSWT.xml 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.swt/bundles/org.eclipse.swt/buildSWT.xml 0000-00-00 00:00:00.000000000 +0000 @@ -231,7 +210,7 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/buildSWT.xml eclipse.platf -@@ -122,13 +122,13 @@ +@@ -115,13 +115,13 @@ trust="true" outputproperty="m_linux_x86_64_output" command="hostname"/> @@ -247,7 +226,7 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/buildSWT.xml eclipse.platf command="hostname"/> @@ -261,20 +240,6 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/buildSWT.xml eclipse.platf -@@ -169,11 +169,11 @@ - - ${m_linux_x86} - ${m_linux_x86_test} - ${m_linux_x86_64} - ${m_linux_x86_64_test} -- ${m_linux_ppc64le} - ${m_linux_ppc64le_test} -+ ${m_linux_powerpc64} - ${m_linux_powerpc64_test} - ${m_mac} - ${m_mac_test} - ------------------------- - -- -+ - - - diff -ru eclipse.platform.swt/bundles/org.eclipse.swt.tools/Oomph/platformSwt.setup eclipse.platform.swt/bundles/org.eclipse.swt.tools/Oomph/platformSwt.setup --- eclipse.platform.swt/bundles/org.eclipse.swt.tools/Oomph/platformSwt.setup 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.swt/bundles/org.eclipse.swt.tools/Oomph/platformSwt.setup 0000-00-00 00:00:00.000000000 +0000 diff --git a/java/eclipse/files/patch-eclipse.platform.swt.binaries b/java/eclipse/files/patch-eclipse.platform.swt.binaries index 13e005e9cbf..bb8d79f6916 100644 --- a/java/eclipse/files/patch-eclipse.platform.swt.binaries +++ b/java/eclipse/files/patch-eclipse.platform.swt.binaries @@ -83,7 +83,7 @@ diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.amd64 Bundle-Vendor: %providerName -Bundle-SymbolicName: org.eclipse.swt.gtk.linux.x86_64; singleton:=true +Bundle-SymbolicName: org.eclipse.swt.gtk.freebsd.amd64; singleton:=true - Bundle-Version: 3.110.0.qualifier + Bundle-Version: 3.111.0.qualifier Bundle-ManifestVersion: 2 Bundle-Localization: fragment @@ -26,8 +26,8 @@ @@ -141,7 +141,7 @@ diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.amd64 org.eclipse.swt - org.eclipse.swt.gtk.linux.x86_64 + org.eclipse.swt.gtk.freebsd.amd64 - 3.110.0-SNAPSHOT + 3.111.0-SNAPSHOT eclipse-plugin @@ -162,146 +162,6 @@ diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.amd64 -diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/META-INF/MANIFEST.MF eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/META-INF/MANIFEST.MF ---- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/META-INF/MANIFEST.MF 0000-00-00 00:00:00.000000000 +0000 -+++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/META-INF/MANIFEST.MF 0000-00-00 00:00:00.000000000 +0000 -@@ -2,7 +2,7 @@ - Fragment-Host: org.eclipse.swt; bundle-version="[3.0.0,4.0.0)" - Bundle-Name: %fragmentName - Bundle-Vendor: %providerName --Bundle-SymbolicName: org.eclipse.swt.gtk.linux.arm; singleton:=true -+Bundle-SymbolicName: org.eclipse.swt.gtk.freebsd.armv7; singleton:=true - Bundle-Version: 3.109.0.qualifier - Bundle-ManifestVersion: 2 - Bundle-Localization: fragment -@@ -26,8 +26,8 @@ - org.eclipse.swt.internal.cairo; x-internal:=true, - org.eclipse.swt.internal.gtk; x-internal:=true, - org.eclipse.swt.internal.opengl.glx; x-internal:=true --Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=linux) (osgi.arch=arm)) -+Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=freebsd) (osgi.arch=armv7)) - SWT-WS: gtk --SWT-OS: linux --SWT-Arch: arm --Automatic-Module-Name: org.eclipse.swt.gtk.linux.arm -+SWT-OS: freebsd -+SWT-Arch: armv7 -+Automatic-Module-Name: org.eclipse.swt.gtk.freebsd.armv7 -diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/build.xml eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/build.xml ---- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/build.xml 0000-00-00 00:00:00.000000000 +0000 -+++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/build.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -1,9 +1,9 @@ - -- -+ - - -- -- -+ -+ - - - -diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/pom.xml eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/pom.xml ---- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/pom.xml 0000-00-00 00:00:00.000000000 +0000 -+++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.armv7/pom.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -20,14 +20,14 @@ - ../binaries-parent/ - - org.eclipse.swt -- org.eclipse.swt.gtk.linux.arm -+ org.eclipse.swt.gtk.freebsd.armv7 - 3.109.0-SNAPSHOT - eclipse-plugin - - -- linux -+ freebsd - gtk -- arm -+ armv7 - ${buildId} - - -@@ -61,7 +61,7 @@ - - - native -- gtk.linux.arm -+ gtk.freebsd.armv7 - - - -diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/META-INF/MANIFEST.MF eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/META-INF/MANIFEST.MF ---- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/META-INF/MANIFEST.MF 0000-00-00 00:00:00.000000000 +0000 -+++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/META-INF/MANIFEST.MF 0000-00-00 00:00:00.000000000 +0000 -@@ -2,7 +2,7 @@ - Fragment-Host: org.eclipse.swt; bundle-version="[3.0.0,4.0.0)" - Bundle-Name: %fragmentName - Bundle-Vendor: %providerName --Bundle-SymbolicName: org.eclipse.swt.gtk.linux.x86; singleton:=true -+Bundle-SymbolicName: org.eclipse.swt.gtk.freebsd.i386; singleton:=true - Bundle-Version: 3.109.0.qualifier - Bundle-ManifestVersion: 2 - Bundle-Localization: fragment -@@ -26,7 +26,7 @@ - org.eclipse.swt.internal.cairo; x-internal:=true, - org.eclipse.swt.internal.gtk; x-internal:=true, - org.eclipse.swt.internal.opengl.glx; x-internal:=true --Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=linux) (osgi.arch=x86)) -+Eclipse-PlatformFilter: (& (osgi.ws=gtk) (osgi.os=freebsd) (osgi.arch=i386)) - SWT-WS: gtk --SWT-OS: linux --SWT-Arch: x86 -+SWT-OS: freebsd -+SWT-Arch: i386 -diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/build.xml eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/build.xml ---- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/build.xml 0000-00-00 00:00:00.000000000 +0000 -+++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/build.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -1,9 +1,9 @@ - -- -+ - - -- -- -+ -+ - - - -diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/pom.xml eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/pom.xml ---- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/pom.xml 0000-00-00 00:00:00.000000000 +0000 -+++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.i386/pom.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -20,14 +20,14 @@ - ../binaries-parent/ - - org.eclipse.swt -- org.eclipse.swt.gtk.linux.x86 -+ org.eclipse.swt.gtk.freebsd.i386 - 3.109.0-SNAPSHOT - eclipse-plugin - - -- linux -+ freebsd - gtk -- x86 -+ i386 - ${buildId} - - -@@ -61,7 +61,7 @@ - - - native -- gtk.linux.x86 -+ gtk.freebsd.i386 - - - diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.powerpc64/META-INF/MANIFEST.MF eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.powerpc64/META-INF/MANIFEST.MF --- eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.powerpc64/META-INF/MANIFEST.MF 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.powerpc64/META-INF/MANIFEST.MF 0000-00-00 00:00:00.000000000 +0000 @@ -311,7 +171,7 @@ diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.power Bundle-Vendor: %providerName -Bundle-SymbolicName: org.eclipse.swt.gtk.linux.ppc64le;singleton:=true +Bundle-SymbolicName: org.eclipse.swt.gtk.freebsd.powerpc64;singleton:=true - Bundle-Version: 3.110.0.qualifier + Bundle-Version: 3.111.0.qualifier Bundle-ManifestVersion: 2 Bundle-Localization: fragment @@ -26,8 +26,8 @@ @@ -352,7 +212,7 @@ diff -ru eclipse.platform.swt.binaries/bundles/org.eclipse.swt.gtk.freebsd.power org.eclipse.swt - org.eclipse.swt.gtk.linux.ppc64le + org.eclipse.swt.gtk.freebsd.powerpc64 - 3.110.0-SNAPSHOT + 3.111.0-SNAPSHOT eclipse-plugin diff --git a/java/eclipse/files/patch-eclipse.platform.ui b/java/eclipse/files/patch-eclipse.platform.ui index 3c65c041681..1b3c00e0ba9 100644 --- a/java/eclipse/files/patch-eclipse.platform.ui +++ b/java/eclipse/files/patch-eclipse.platform.ui @@ -61,8 +61,8 @@ diff -ru eclipse.platform.ui/bundles/org.eclipse.ui.browser/plugin.xml eclipse.p diff -ru eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TitleRegion.java eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TitleRegion.java --- eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TitleRegion.java 0000-00-00 00:00:00.000000000 +0000 +++ eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TitleRegion.java 0000-00-00 00:00:00.000000000 +0000 -@@ -206,7 +206,8 @@ - if (titleLabel.getVisible()) { +@@ -210,7 +210,8 @@ + if (currentTitleControl.getVisible()) { int tw = width - HMARGIN * 2 - SPACING * 2; String os = System.getProperty("os.name"); //$NON-NLS-1$ - if (Constants.OS_LINUX.equalsIgnoreCase(os)) { @@ -71,7 +71,7 @@ diff -ru eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/int tw += 1; // See Bug 342610 } if (bsize != null) -@@ -543,4 +544,4 @@ +@@ -584,4 +585,4 @@ target.setTransfer(transferTypes); target.addDropListener(listener); } diff --git a/java/eclipse/files/patch-rt.equinox.framework b/java/eclipse/files/patch-rt.equinox.framework index b7d98091010..56716e64db3 100644 --- a/java/eclipse/files/patch-rt.equinox.framework +++ b/java/eclipse/files/patch-rt.equinox.framework @@ -229,7 +229,7 @@ diff -ru rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse private static final String INTERNAL_OS_MACOSX = "Mac OS"; //$NON-NLS-1$ private static final String INTERNAL_OS_AIX = "AIX"; //$NON-NLS-1$ private static final String INTERNAL_OS_HPUX = "HP-UX"; //$NON-NLS-1$ -@@ -734,7 +735,7 @@ +@@ -746,7 +747,7 @@ // setup default values for known OSes if nothing was specified if (osName.equals(Constants.OS_WIN32)) return Constants.WS_WIN32; @@ -238,7 +238,7 @@ diff -ru rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse return Constants.WS_GTK; if (osName.equals(Constants.OS_MACOSX)) return Constants.WS_COCOA; -@@ -757,6 +758,8 @@ +@@ -769,6 +770,8 @@ // EXCEPTION: All mappings of SunOS convert to Solaris if (osName.equalsIgnoreCase(INTERNAL_OS_SUNOS)) return Constants.OS_SOLARIS; @@ -423,9 +423,9 @@ diff -ru rt.equinox.framework/features/org.eclipse.equinox.executable.feature/li diff -ru rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml --- rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml 0000-00-00 00:00:00.000000000 +0000 +++ rt.equinox.framework/features/org.eclipse.equinox.executable.feature/pom.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -127,8 +127,8 @@ +@@ -123,8 +123,8 @@ - + - - @@ -546,7 +546,7 @@ diff -ru rt.equinox.framework/features/org.eclipse.equinox.executable.feature/re diff -ru rt.equinox.framework/pom.xml rt.equinox.framework/pom.xml --- rt.equinox.framework/pom.xml 0000-00-00 00:00:00.000000000 +0000 +++ rt.equinox.framework/pom.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -50,27 +50,27 @@ +@@ -54,27 +54,27 @@ @@ -580,7 +580,7 @@ diff -ru rt.equinox.framework/pom.xml rt.equinox.framework/pom.xml -@@ -84,8 +84,8 @@ +@@ -88,8 +88,8 @@ bundles/org.eclipse.equinox.launcher bundles/org.eclipse.equinox.launcher.cocoa.macosx.x86_64 diff --git a/java/eclipse/files/patch-rt.equinox.p2 b/java/eclipse/files/patch-rt.equinox.p2 index 2b64e693602..43f9df4a1a0 100644 --- a/java/eclipse/files/patch-rt.equinox.p2 +++ b/java/eclipse/files/patch-rt.equinox.p2 @@ -48,7 +48,7 @@ diff -ru rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests.reconciler.product/r -@@ -121,7 +121,7 @@ +@@ -120,7 +120,7 @@ @@ -57,7 +57,7 @@ diff -ru rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests.reconciler.product/r -@@ -135,7 +135,7 @@ +@@ -134,7 +134,7 @@ @@ -81,7 +81,7 @@ diff -ru rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests.ui/All p2 UI tests.l diff -ru rt.equinox.p2/features/org.eclipse.equinox.p2.core.feature/feature.xml rt.equinox.p2/features/org.eclipse.equinox.p2.core.feature/feature.xml --- rt.equinox.p2/features/org.eclipse.equinox.p2.core.feature/feature.xml 0000-00-00 00:00:00.000000000 +0000 +++ rt.equinox.p2/features/org.eclipse.equinox.p2.core.feature/feature.xml 0000-00-00 00:00:00.000000000 +0000 -@@ -185,9 +185,9 @@ +@@ -184,9 +184,9 @@ unpack="false"/> 0:java/intellij-fsnotifier +RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \ + intellij-pty4j>0:java/intellij-pty4j -USES= python:run shebangfix +USES= python:run shebangfix USE_JAVA= yes JAVA_VERSION= 1.8+ -SHEBANG_FILES= bin/printenv.py bin/restart.py + +SHEBANG_FILES= bin/printenv.py bin/restart.py \ + plugins/spy-js/server/node_modules/node-uuid/benchmark/bench.sh \ + plugins/spy-js/server/proxy-nix.sh \ + plugins/spy-js/server/proxy-osx.sh NO_ARCH= yes NO_BUILD= yes -WRKSRC= ${WRKDIR}/idea-IU-191.6707.61 +WRKSRC= ${WRKDIR}/idea-IU-192.5728.98 -.include "${.CURDIR}/../intellij/common.mk" - -PLIST_SUB+= IDEA_HOME=${IDEA_HOME} -SUB_FILES+= idea idea.desktop pkg-message -SUB_LIST+= IDEA_HOME=${IDEA_HOME} +SUB_FILES= idea idea.desktop pkg-message +SUB_LIST= DATADIR=${DATADIR} CONFLICTS= intellij-20* do-install: - ${MKDIR} ${STAGEDIR}${IDEA_HOME} - @${TAR} -czf - -C ${WRKSRC} . | ${TAR} xzf - -C ${STAGEDIR}${IDEA_HOME} # Linux/Windows/OS X only so remove them - @${RM} -f ${STAGEDIR}${IDEA_HOME}/bin/fsnotifier \ - ${STAGEDIR}${IDEA_HOME}/bin/fsnotifier-arm \ - ${STAGEDIR}${IDEA_HOME}/bin/fsnotifier64 \ - ${STAGEDIR}${IDEA_HOME}/bin/libdbm64.so \ - ${STAGEDIR}${IDEA_HOME}/bin/libyjpagent-linux.so \ - ${STAGEDIR}${IDEA_HOME}/bin/libyjpagent-linux64.so - @${RM} -rf ${STAGEDIR}${IDEA_HOME}/jre/jre/ \ - ${STAGEDIR}${IDEA_HOME}/lib/pty4j-native/ \ - ${STAGEDIR}${IDEA_HOME}/plugins/android/lib/libwebp/ + @${RM} -r ${WRKSRC}/bin/fsnotifier \ + ${WRKSRC}/bin/fsnotifier-arm \ + ${WRKSRC}/bin/fsnotifier64 \ + ${WRKSRC}/plugins/android/lib/libwebp \ + ${WRKSRC}/plugins/maven/lib/maven3/lib/jansi-native \ + ${WRKSRC}/plugins/performanceTesting/bin +# Remove the bundled native Pty4J support libraries, they are replaced +# by java/intellij-pty4j + @${RM} -r ${WRKSRC}/lib/pty4j-native +# Remove bundled linux JetBrains Runtime and OpenJDK + @${RM} -r ${WRKSRC}/jbr ${WRKSRC}/jre64 + ${MKDIR} ${STAGEDIR}${DATADIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} \ + "! -name *\.so ! -name *\.dll ! -name *\.dylib ! -name *\.pdb ! -name *\.sh") + @(cd ${WRKSRC} && ${COPYTREE_BIN} . ${STAGEDIR}${DATADIR} "-name *\.sh") ${INSTALL_SCRIPT} ${WRKDIR}/idea ${STAGEDIR}${PREFIX}/bin/idea ${INSTALL_MAN} ${FILESDIR}/idea.1 ${STAGEDIR}${PREFIX}/man/man1 ${INSTALL_DATA} ${WRKDIR}/idea.desktop ${STAGEDIR}${PREFIX}/share/applications/ # Use fsnotifier replacement provided by java/intellij-fsnotifier - ${ECHO} "idea.filewatcher.executable.path=${IDEA_HOME}/bin/fsnotifier" >> ${STAGEDIR}${IDEA_HOME}/bin/idea.properties + ${ECHO} "idea.filewatcher.executable.path=${PREFIX}/intellij/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties +# Fix slow render + ${ECHO} "-Dsun.java2d.xrender=false" >> ${STAGEDIR}${DATADIR}/bin/idea.vmoptions + ${ECHO} "-Dsun.java2d.xrender=false" >> ${STAGEDIR}${DATADIR}/bin/idea64.vmoptions .include diff --git a/java/intellij-ultimate/distinfo b/java/intellij-ultimate/distinfo index 5f7a1141253..17c23b005c0 100644 --- a/java/intellij-ultimate/distinfo +++ b/java/intellij-ultimate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1556533823 -SHA256 (ideaIU-2019.1.1-no-jbr.tar.gz) = d1f52f6fcd004d4c6faa0775e74969ca1d881de772397758bd8613b9e8dcf4dd -SIZE (ideaIU-2019.1.1-no-jbr.tar.gz) = 618114586 +TIMESTAMP = 1565558458 +SHA256 (jetbrains/ideaIU-2019.2-no-jbr.tar.gz) = 78588740bbd5c8054316d6b4217ff79a39cbecf3ca762db2b450b4cdbcc39f72 +SIZE (jetbrains/ideaIU-2019.2-no-jbr.tar.gz) = 665943132 diff --git a/java/intellij-ultimate/files/idea.1 b/java/intellij-ultimate/files/idea.1 index b4386407071..1fcbd340805 100644 --- a/java/intellij-ultimate/files/idea.1 +++ b/java/intellij-ultimate/files/idea.1 @@ -1,6 +1,6 @@ .\" $OpenBSD: mdoc.template,v 1.10 2007/05/31 22:10:19 jmc Exp $ .Dd $Mdocdate: April 9 2010 $ -.Dt IDEA 1 +.Dt idea 1 .Os .Sh NAME .Nm idea @@ -10,7 +10,7 @@ .Op jvm-args .Sh DESCRIPTION .Nm -starts up the IntelliJ IDEA Community Edition Java Integrated +starts up the IntelliJ IDEA Ultimate Edition Java Integrated Development Environment. .Sh SEE ALSO The web site diff --git a/java/intellij-ultimate/files/idea.desktop.in b/java/intellij-ultimate/files/idea.desktop.in index 6c3912d3ac4..4073b04d9f0 100644 --- a/java/intellij-ultimate/files/idea.desktop.in +++ b/java/intellij-ultimate/files/idea.desktop.in @@ -5,8 +5,8 @@ Type=Application Name=IntelliJ IDEA Ultimate Edition GenericName=IntelliJ IDEA Ultimate Edition Comment=IntelliJ Integrated Development Environment -Icon=%%IDEA_HOME%%/bin/idea.png -Exec=%%IDEA_HOME%%/bin/idea.sh +Icon=%%DATADIR%%/bin/idea.png +Exec=%%DATADIR%%/bin/idea.sh Terminal=false StartupNotify=true Categories=Application;Development; diff --git a/java/intellij-ultimate/files/idea.in b/java/intellij-ultimate/files/idea.in index 0b0ad81de31..4d4ee54b0cd 100644 --- a/java/intellij-ultimate/files/idea.in +++ b/java/intellij-ultimate/files/idea.in @@ -1,3 +1,3 @@ #!/bin/sh -exec "%%IDEA_HOME%%/bin/idea.sh" "$@" +exec "%%DATADIR%%/bin/idea.sh" "$@" diff --git a/java/intellij-ultimate/files/pkg-message.in b/java/intellij-ultimate/files/pkg-message.in index 19656dce982..ead7a904494 100644 --- a/java/intellij-ultimate/files/pkg-message.in +++ b/java/intellij-ultimate/files/pkg-message.in @@ -3,8 +3,8 @@ message: < -.if ${PORT_OPTIONS:MDOCS} -ALL_TARGET+= javadoc -.endif - do-install: - @${ECHO} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." - @${INSTALL_DATA} ${WRKSRC}/dist/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR}/ - @${ECHO} " [ DONE ]" + ${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${STAGEDIR}${JAVAJARDIR} + ${LN} -sf ${JARFILE} ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar .if ${PORT_OPTIONS:MDOCS} - @${ECHO} -n ">> Installing documentation in ${DOCSDIR}..." - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @cd ${WRKSRC}/dist/docs && ${FIND} api \ - | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR} > /dev/null 2>&1 - @${ECHO} " [ DONE ]" + cd ${WRKSRC} && ${COPYTREE_SHARE} apidocs ${STAGEDIR}${DOCSDIR} +.for FILE in ${DOCFILES} + ${INSTALL_MAN} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR} +.endfor .endif .include diff --git a/java/jakarta-commons-dbcp/distinfo b/java/jakarta-commons-dbcp/distinfo index 7ff4c333458..66f4f22db77 100644 --- a/java/jakarta-commons-dbcp/distinfo +++ b/java/jakarta-commons-dbcp/distinfo @@ -1,2 +1,3 @@ -SHA256 (commons-dbcp-1.4-src.tar.gz) = f5f10846e79fc71121fe7402c61d71575506b01b59e719e974ebc4d99e6df283 -SIZE (commons-dbcp-1.4-src.tar.gz) = 932507 +TIMESTAMP = 1566283829 +SHA256 (commons-dbcp2-2.7.0-bin.tar.gz) = 35a4b7c41382a643dcfe07592f93cf58b537abdddd0778c229b7e77d0bb5053f +SIZE (commons-dbcp2-2.7.0-bin.tar.gz) = 1869315 diff --git a/java/jakarta-commons-pool/Makefile b/java/jakarta-commons-pool/Makefile index badb32bfbf4..d0e03785d88 100644 --- a/java/jakarta-commons-pool/Makefile +++ b/java/jakarta-commons-pool/Makefile @@ -2,48 +2,44 @@ # $FreeBSD$ PORTNAME= commons-pool -PORTVERSION= 1.6 +PORTVERSION= 2.7.0 CATEGORIES= java devel -MASTER_SITES= APACHE_COMMONS_SOURCE +MASTER_SITES= APACHE_COMMONS_BINARIES PKGNAMEPREFIX= jakarta- -DISTNAME= ${PORTNAME}-${PORTVERSION}-src +DISTNAME= ${PORTNAME}2-${PORTVERSION}-bin MAINTAINER= ale@FreeBSD.org -COMMENT= Jakarta Object-pooling API +COMMENT= Apache Commons Object-pooling API LICENSE= APACHE20 OPTIONS_DEFINE= DOCS -USES= dos2unix -DOS2UNIX_GLOB= *.xml *.java USE_JAVA= yes -JAVA_VERSION= 1.6+ +JAVA_VERSION= 8+ +NO_BUILD= yes -USE_ANT= yes -ALL_TARGET= build-jar +WRKSRC= ${WRKDIR}/${PORTNAME}2-${PORTVERSION} -PLIST_FILES= ${JAVAJARDIR}/${PORTNAME}.jar +JARFILE= ${PORTNAME}2-${PORTVERSION}.jar +DOCFILES= LICENSE.txt \ + NOTICE.txt \ + RELEASE-NOTES.txt PORTDOCS= * +PLIST_FILES= ${JAVAJARDIR}/${PORTNAME}.jar \ + ${JAVAJARDIR}/${JARFILE} .include -.if ${PORT_OPTIONS:MDOCS} -ALL_TARGET+= javadoc -.endif - do-install: - @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." - @${INSTALL_DATA} ${WRKSRC}/dist/${PORTNAME}-${PORTVERSION}.jar \ - ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar - @${ECHO_MSG} " [ DONE ]" + ${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${STAGEDIR}${JAVAJARDIR} + ${LN} -sf ${JARFILE} ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar .if ${PORT_OPTIONS:MDOCS} - @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @cd ${WRKSRC}/dist/docs && ${FIND} api \ - | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR} > /dev/null 2>&1 - @${ECHO_MSG} " [ DONE ]" + cd ${WRKSRC} && ${COPYTREE_SHARE} apidocs ${STAGEDIR}${DOCSDIR} +.for FILE in ${DOCFILES} + ${INSTALL_MAN} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR} +.endfor .endif .include diff --git a/java/jakarta-commons-pool/distinfo b/java/jakarta-commons-pool/distinfo index f5e89a52916..e24eb4206e2 100644 --- a/java/jakarta-commons-pool/distinfo +++ b/java/jakarta-commons-pool/distinfo @@ -1,2 +1,3 @@ -SHA256 (commons-pool-1.6-src.tar.gz) = 31d182e5dc857666dba640caf9529158c679075f4f137deceff128e268d9195a -SIZE (commons-pool-1.6-src.tar.gz) = 321409 +TIMESTAMP = 1566237947 +SHA256 (commons-pool2-2.7.0-bin.tar.gz) = 0edb9416e7f0e3d7cd99801209fdcae10f6ad6bda52a4ec1b12f92b1c6721f51 +SIZE (commons-pool2-2.7.0-bin.tar.gz) = 1218113 diff --git a/java/jakarta-commons-pool/files/patch-build.xml b/java/jakarta-commons-pool/files/patch-build.xml deleted file mode 100644 index bb1ff678dfc..00000000000 --- a/java/jakarta-commons-pool/files/patch-build.xml +++ /dev/null @@ -1,11 +0,0 @@ ---- build.xml.orig 2016-06-20 15:05:02 UTC -+++ build.xml -@@ -40,7 +40,7 @@ - - - -- -+ - - - diff --git a/java/openjdk11/Makefile b/java/openjdk11/Makefile index 68db4939f51..54363458813 100644 --- a/java/openjdk11/Makefile +++ b/java/openjdk11/Makefile @@ -3,6 +3,7 @@ PORTNAME= openjdk DISTVERSIONPREFIX= jdk- DISTVERSION= ${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_PATCH_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION} +PORTREVISION= 1 CATEGORIES= java devel PKGNAMESUFFIX?= ${JDK_MAJOR_VERSION} diff --git a/java/openjdk11/files/cacerts b/java/openjdk11/files/cacerts index b71e522997f..c07b7abaf5e 100644 Binary files a/java/openjdk11/files/cacerts and b/java/openjdk11/files/cacerts differ diff --git a/java/openjdk12/Makefile b/java/openjdk12/Makefile index 8df32825c4e..cd860ddc1cc 100644 --- a/java/openjdk12/Makefile +++ b/java/openjdk12/Makefile @@ -3,6 +3,7 @@ PORTNAME= openjdk DISTVERSIONPREFIX= jdk- DISTVERSION= ${JDK_MAJOR_VERSION}.${JDK_MINOR_VERSION}.${JDK_PATCH_VERSION}+${JDK_BUILD_NUMBER}-${BSD_JDK_VERSION} +PORTREVISION= 1 CATEGORIES= java devel PKGNAMESUFFIX?= ${JDK_MAJOR_VERSION} diff --git a/java/openjdk12/files/cacerts b/java/openjdk12/files/cacerts index 02181bef7e3..c07b7abaf5e 100644 Binary files a/java/openjdk12/files/cacerts and b/java/openjdk12/files/cacerts differ diff --git a/java/openjdk6/Makefile b/java/openjdk6/Makefile index 2c6e97040e4..f30455e0b39 100644 --- a/java/openjdk6/Makefile +++ b/java/openjdk6/Makefile @@ -24,6 +24,9 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_DISTFILES= ${JDK_SRC_DISTFILE}${EXTRACT_SUFX} +DEPRECATED= Extended Support ended December 2018, please migrate to openjdk8 +EXPIRATION_DATE=2019-09-20 + BUILD_DEPENDS= ${LOCALBASE}/bin/zip:archivers/zip \ ${LOCALBASE}/bin/unzip:archivers/unzip \ ${LOCALBASE}/include/cups/cups.h:print/cups diff --git a/java/openjdk8/Makefile b/java/openjdk8/Makefile index c4068b3979f..c9c3a30b404 100644 --- a/java/openjdk8/Makefile +++ b/java/openjdk8/Makefile @@ -2,7 +2,7 @@ PORTNAME= openjdk PORTVERSION= ${JDK_MAJOR_VERSION}.${JDK_UPDATE_VERSION}.${JDK_BUILD_NUMBER:S/^0//}.${BSD_JDK_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= java devel MASTER_SITES= LOCAL/jkim:jtreg PKGNAMESUFFIX?= ${JDK_MAJOR_VERSION} @@ -14,6 +14,8 @@ LICENSE= GPLv2 USE_HARDENING= pie:java +ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 + BUILD_DEPENDS= zip:archivers/zip \ autoconf>0:devel/autoconf \ ${LOCALBASE}/include/cups/cups.h:print/cups \ @@ -25,13 +27,12 @@ RUN_DEPENDS= javavm:java/javavmwrapper \ dejavu>0:x11-fonts/dejavu USES= compiler:features gmake iconv pkgconfig shebangfix + USE_GITHUB= yes GH_ACCOUNT= battleblow GH_PROJECT= openjdk-jdk8u GH_TAGNAME= jdk${JDK_MAJOR_VERSION}u${JDK_UPDATE_VERSION}-b${JDK_BUILD_NUMBER}.${BSD_JDK_VERSION} -ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 - SHEBANG_FILES= configure _MAKE_JOBS= # diff --git a/java/openjdk8/files/cacerts b/java/openjdk8/files/cacerts index d7a1a532634..309afad6ff3 100644 Binary files a/java/openjdk8/files/cacerts and b/java/openjdk8/files/cacerts differ diff --git a/mail/meta1/Makefile b/mail/meta1/Makefile index f2215acc68f..e75ec9de11a 100644 --- a/mail/meta1/Makefile +++ b/mail/meta1/Makefile @@ -1,11 +1,11 @@ # $FreeBSD$ PORTNAME= meta1 -PORTVERSION= 1.1.0a.12.0 +PORTVERSION= 1.1.0a.13.0 CATEGORIES= mail ipv6 -MASTER_SITES= http://www.MeTA1.org/download/.alpha/edns0/ +MASTER_SITES= http://www.MeTA1.org/download/.alpha/bdblck/ PKGNAMESUFFIX?= ${TLS_SUFFIX}${SASL_SUFFIX}${BERKELEYDB_SUFFIX}${PMILTER_SUFFIX}${PKGNAMESUFFIX2} -DISTNAME= ${PORTNAME}-1.1.Alpha12.0 +DISTNAME= ${PORTNAME}-1.1.Alpha13.0 MAINTAINER= dinoex@FreeBSD.org COMMENT= Secure and efficient mail gateway diff --git a/mail/meta1/distinfo b/mail/meta1/distinfo index e7305c26acc..97f1bc75b73 100644 --- a/mail/meta1/distinfo +++ b/mail/meta1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1549294706 -SHA256 (meta1-1.1.Alpha12.0.tar.gz) = 11321e236023b4002d8461f9f11fe6aad258ff0672715c58ce6818f2d5441bb8 -SIZE (meta1-1.1.Alpha12.0.tar.gz) = 5226255 +TIMESTAMP = 1565088131 +SHA256 (meta1-1.1.Alpha13.0.tar.gz) = 140b5e7ca124c71bfacf1577ed91c7c5defbac42d86e61a02f4cdc0a1a74e942 +SIZE (meta1-1.1.Alpha13.0.tar.gz) = 5195500 diff --git a/mail/meta1/pkg-message b/mail/meta1/pkg-message index a006ea23524..29c37d39794 100644 --- a/mail/meta1/pkg-message +++ b/mail/meta1/pkg-message @@ -1,15 +1,13 @@ -[ -{ type: install - message: < diff --git a/multimedia/termplay/distinfo b/multimedia/termplay/distinfo new file mode 100644 index 00000000000..ea25a2dbc58 --- /dev/null +++ b/multimedia/termplay/distinfo @@ -0,0 +1,149 @@ +TIMESTAMP = 1566280842 +SHA256 (termplay-2.0.5.tar.gz) = b28a06faac79286aad62eed14806e623cc41bead526dd034ce71291db7f22b4d +SIZE (termplay-2.0.5.tar.gz) = 12997 +SHA256 (rust/crates/adler32-1.0.2.tar.gz) = 6cbd0b9af8587c72beadc9f72d35b9fbb070982c9e6203e46e93f10df25f8f45 +SIZE (rust/crates/adler32-1.0.2.tar.gz) = 5348 +SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b +SIZE (rust/crates/ansi_term-0.11.0.tar.gz) = 17087 +SHA256 (rust/crates/arrayvec-0.4.7.tar.gz) = a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef +SIZE (rust/crates/arrayvec-0.4.7.tar.gz) = 22946 +SHA256 (rust/crates/atty-0.2.11.tar.gz) = 9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652 +SIZE (rust/crates/atty-0.2.11.tar.gz) = 5916 +SHA256 (rust/crates/backtrace-0.3.8.tar.gz) = dbdd17cd962b570302f5297aea8648d5923e22e555c2ed2d8b2e34eca646bf6d +SIZE (rust/crates/backtrace-0.3.8.tar.gz) = 28516 +SHA256 (rust/crates/backtrace-sys-0.1.23.tar.gz) = bff67d0c06556c0b8e6b5f090f0eac52d950d9dfd1d35ba04e4ca3543eaf6a7e +SIZE (rust/crates/backtrace-sys-0.1.23.tar.gz) = 522263 +SHA256 (rust/crates/bitflags-1.0.3.tar.gz) = d0c54bb8f454c567f21197eefcdbf5679d0bd99f2ddbe52e84c77061952e6789 +SIZE (rust/crates/bitflags-1.0.3.tar.gz) = 13838 +SHA256 (rust/crates/byteorder-1.2.3.tar.gz) = 74c0b906e9446b0a2e4f760cdb3fa4b2c48cdc6db8766a845c54b6ff063fd2e9 +SIZE (rust/crates/byteorder-1.2.3.tar.gz) = 18805 +SHA256 (rust/crates/cc-1.0.17.tar.gz) = 49ec142f5768efb5b7622aebc3fdbdbb8950a4b9ba996393cb76ef7466e8747d +SIZE (rust/crates/cc-1.0.17.tar.gz) = 42064 +SHA256 (rust/crates/cfg-if-0.1.3.tar.gz) = 405216fd8fe65f718daa7102ea808a946b6ce40c742998fbfd3463645552de18 +SIZE (rust/crates/cfg-if-0.1.3.tar.gz) = 7115 +SHA256 (rust/crates/clap-2.33.0.tar.gz) = 5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9 +SIZE (rust/crates/clap-2.33.0.tar.gz) = 196458 +SHA256 (rust/crates/color_quant-1.0.0.tar.gz) = a475fc4af42d83d28adf72968d9bcfaf035a1a9381642d8e85d8a04957767b0d +SIZE (rust/crates/color_quant-1.0.0.tar.gz) = 5238 +SHA256 (rust/crates/crossbeam-deque-0.2.0.tar.gz) = f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3 +SIZE (rust/crates/crossbeam-deque-0.2.0.tar.gz) = 12638 +SHA256 (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150 +SIZE (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 33093 +SHA256 (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9 +SIZE (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 11901 +SHA256 (rust/crates/deflate-0.7.18.tar.gz) = 32c8120d981901a9970a3a1c97cf8b630e0fa8c3ca31e75b6fd6fd5f9f427b31 +SIZE (rust/crates/deflate-0.7.18.tar.gz) = 124935 +SHA256 (rust/crates/either-1.5.0.tar.gz) = 3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0 +SIZE (rust/crates/either-1.5.0.tar.gz) = 10900 +SHA256 (rust/crates/failure-0.1.1.tar.gz) = 934799b6c1de475a012a02dab0ace1ace43789ee4b99bcfbf1a2e3e8ced5de82 +SIZE (rust/crates/failure-0.1.1.tar.gz) = 26782 +SHA256 (rust/crates/failure_derive-0.1.1.tar.gz) = c7cdda555bb90c9bb67a3b670a0f42de8e73f5981524123ad8578aafec8ddb8b +SIZE (rust/crates/failure_derive-0.1.1.tar.gz) = 9312 +SHA256 (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82 +SIZE (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 22565 +SHA256 (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7 +SIZE (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 7191 +SHA256 (rust/crates/gif-0.10.0.tar.gz) = ff3414b424657317e708489d2857d9575f4403698428b040b609b9d1c1a84a2c +SIZE (rust/crates/gif-0.10.0.tar.gz) = 24984 +SHA256 (rust/crates/glib-0.5.0.tar.gz) = 5e0be1b1432e227bcd1a9b28db9dc1474a7e7fd4227e08e16f35304f32d09b61 +SIZE (rust/crates/glib-0.5.0.tar.gz) = 78786 +SHA256 (rust/crates/glib-sys-0.6.0.tar.gz) = 615bef979b5838526aee99241afc80cfb2e34a8735d4bcb8ec6072598c18a408 +SIZE (rust/crates/glib-sys-0.6.0.tar.gz) = 36233 +SHA256 (rust/crates/gobject-sys-0.6.0.tar.gz) = 70409d6405db8b1591602fcd0cbe8af52cd9976dd39194442b4c149ba343f86d +SIZE (rust/crates/gobject-sys-0.6.0.tar.gz) = 13142 +SHA256 (rust/crates/gstreamer-0.11.2.tar.gz) = 90d7cde9eae8f6bf4d41c254915976b236143935ec2c0b027636274e998e54b4 +SIZE (rust/crates/gstreamer-0.11.2.tar.gz) = 122007 +SHA256 (rust/crates/gstreamer-app-0.11.2.tar.gz) = 4e68d96a6a86fe4e4796d7ecb5a3cacd6b4680277da6daea7934612fa8c5c2bf +SIZE (rust/crates/gstreamer-app-0.11.2.tar.gz) = 18627 +SHA256 (rust/crates/gstreamer-app-sys-0.5.0.tar.gz) = a224d33c7780957c30f9280b1256b3882792dda6916f75b54bb30b5b71ed505a +SIZE (rust/crates/gstreamer-app-sys-0.5.0.tar.gz) = 6047 +SHA256 (rust/crates/gstreamer-base-0.11.0.tar.gz) = 05ec7a84b4160b61c72ea27ccf3f46eb9c8f996c5991746623e69e3e532e3cb5 +SIZE (rust/crates/gstreamer-base-0.11.0.tar.gz) = 19616 +SHA256 (rust/crates/gstreamer-base-sys-0.5.0.tar.gz) = 501a7add44f256aab6cb5b65ef121c449197cf55087d6a7586846c8d1e42e88b +SIZE (rust/crates/gstreamer-base-sys-0.5.0.tar.gz) = 13076 +SHA256 (rust/crates/gstreamer-sys-0.5.0.tar.gz) = 7b2f51e25a6f97dd4bfd640cba96f192f8759b8766afd66d6d9ea0f82ca14a37 +SIZE (rust/crates/gstreamer-sys-0.5.0.tar.gz) = 46003 +SHA256 (rust/crates/image-0.19.0.tar.gz) = ebdff791af04e30089bde8ad2a632b86af433b40c04db8d70ad4b21487db7a6a +SIZE (rust/crates/image-0.19.0.tar.gz) = 122423 +SHA256 (rust/crates/inflate-0.4.2.tar.gz) = 4ec18d981200fd14e65ee8e35fb60ed1ce55227a02407303f3a72517c6146dcc +SIZE (rust/crates/inflate-0.4.2.tar.gz) = 17739 +SHA256 (rust/crates/jpeg-decoder-0.1.14.tar.gz) = 0dfe27a6c0dabd772d0f9b9f8701c4ca12c4d1eebcadf2be1f6f70396f6a1434 +SIZE (rust/crates/jpeg-decoder-0.1.14.tar.gz) = 29142 +SHA256 (rust/crates/lazy_static-1.0.1.tar.gz) = e6412c5e2ad9584b0b8e979393122026cdd6d2a80b933f890dcd694ddbe73739 +SIZE (rust/crates/lazy_static-1.0.1.tar.gz) = 11380 +SHA256 (rust/crates/libc-0.2.49.tar.gz) = 413f3dfc802c5dc91dc570b05125b6cda9855edfaa9825c9849807876376e70e +SIZE (rust/crates/libc-0.2.49.tar.gz) = 375486 +SHA256 (rust/crates/lzw-0.10.0.tar.gz) = 7d947cbb889ed21c2a84be6ffbaebf5b4e0f4340638cba0444907e38b56be084 +SIZE (rust/crates/lzw-0.10.0.tar.gz) = 10744 +SHA256 (rust/crates/memoffset-0.2.1.tar.gz) = 0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3 +SIZE (rust/crates/memoffset-0.2.1.tar.gz) = 4618 +SHA256 (rust/crates/muldiv-0.1.1.tar.gz) = 1cbef5aa2e8cd82a18cc20e26434cc9843e1ef46e55bfabe5bddb022236c5b3e +SIZE (rust/crates/muldiv-0.1.1.tar.gz) = 7971 +SHA256 (rust/crates/nodrop-0.1.12.tar.gz) = 9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2 +SIZE (rust/crates/nodrop-0.1.12.tar.gz) = 3033 +SHA256 (rust/crates/num-derive-0.2.2.tar.gz) = 0d2c31b75c36a993d30c7a13d70513cb93f02acafdd5b7ba250f9b0e18615de7 +SIZE (rust/crates/num-derive-0.2.2.tar.gz) = 9622 +SHA256 (rust/crates/num-integer-0.1.38.tar.gz) = 6ac0ea58d64a89d9d6b7688031b3be9358d6c919badcf7fbb0527ccfd891ee45 +SIZE (rust/crates/num-integer-0.1.38.tar.gz) = 12929 +SHA256 (rust/crates/num-iter-0.1.37.tar.gz) = af3fdbbc3291a5464dc57b03860ec37ca6bf915ed6ee385e7c6c052c422b2124 +SIZE (rust/crates/num-iter-0.1.37.tar.gz) = 10201 +SHA256 (rust/crates/num-rational-0.1.42.tar.gz) = ee314c74bd753fc86b4780aa9475da469155f3848473a261d2d18e35245a784e +SIZE (rust/crates/num-rational-0.1.42.tar.gz) = 17253 +SHA256 (rust/crates/num-traits-0.2.4.tar.gz) = 775393e285254d2f5004596d69bb8bc1149754570dcc08cf30cabeba67955e28 +SIZE (rust/crates/num-traits-0.2.4.tar.gz) = 38463 +SHA256 (rust/crates/num_cpus-1.8.0.tar.gz) = c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30 +SIZE (rust/crates/num_cpus-1.8.0.tar.gz) = 10539 +SHA256 (rust/crates/pkg-config-0.3.11.tar.gz) = 110d5ee3593dbb73f56294327fe5668bcc997897097cbc76b51e7aed3f52452f +SIZE (rust/crates/pkg-config-0.3.11.tar.gz) = 13227 +SHA256 (rust/crates/png-0.12.0.tar.gz) = f54b9600d584d3b8a739e1662a595fab051329eff43f20e7d8cc22872962145b +SIZE (rust/crates/png-0.12.0.tar.gz) = 28345 +SHA256 (rust/crates/proc-macro2-0.4.4.tar.gz) = 1fa93823f53cfd0f5ac117b189aed6cfdfb2cfc0a9d82e956dd7927595ed7d46 +SIZE (rust/crates/proc-macro2-0.4.4.tar.gz) = 28564 +SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a +SIZE (rust/crates/quote-0.3.15.tar.gz) = 12041 +SHA256 (rust/crates/quote-0.6.3.tar.gz) = e44651a0dc4cdd99f71c83b561e221f714912d11af1a4dff0631f923d53af035 +SIZE (rust/crates/quote-0.6.3.tar.gz) = 14154 +SHA256 (rust/crates/rand-0.4.2.tar.gz) = eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5 +SIZE (rust/crates/rand-0.4.2.tar.gz) = 76170 +SHA256 (rust/crates/rayon-1.0.1.tar.gz) = 80e811e76f1dbf68abf87a759083d34600017fc4e10b6bd5ad84a700f9dba4b1 +SIZE (rust/crates/rayon-1.0.1.tar.gz) = 128340 +SHA256 (rust/crates/rayon-core-1.4.0.tar.gz) = 9d24ad214285a7729b174ed6d3bcfcb80177807f959d95fafd5bfc5c4f201ac8 +SIZE (rust/crates/rayon-core-1.4.0.tar.gz) = 51480 +SHA256 (rust/crates/redox_syscall-0.1.56.tar.gz) = 2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84 +SIZE (rust/crates/redox_syscall-0.1.56.tar.gz) = 17117 +SHA256 (rust/crates/redox_termios-0.1.1.tar.gz) = 7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76 +SIZE (rust/crates/redox_termios-0.1.1.tar.gz) = 3227 +SHA256 (rust/crates/rustc-demangle-0.1.8.tar.gz) = 76d7ba1feafada44f2d38eed812bd2489a03c0f5abb975799251518b68848649 +SIZE (rust/crates/rustc-demangle-0.1.8.tar.gz) = 10737 +SHA256 (rust/crates/scoped_threadpool-0.1.9.tar.gz) = 1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8 +SIZE (rust/crates/scoped_threadpool-0.1.9.tar.gz) = 7800 +SHA256 (rust/crates/scopeguard-0.3.3.tar.gz) = 94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27 +SIZE (rust/crates/scopeguard-0.3.3.tar.gz) = 9605 +SHA256 (rust/crates/strsim-0.8.0.tar.gz) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a +SIZE (rust/crates/strsim-0.8.0.tar.gz) = 9309 +SHA256 (rust/crates/syn-0.11.11.tar.gz) = d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad +SIZE (rust/crates/syn-0.11.11.tar.gz) = 63309 +SHA256 (rust/crates/syn-0.14.1.tar.gz) = 6dfd71b2be5a58ee30a6f8ea355ba8290d397131c00dfa55c3d34e6e13db5101 +SIZE (rust/crates/syn-0.14.1.tar.gz) = 133459 +SHA256 (rust/crates/synom-0.11.3.tar.gz) = a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6 +SIZE (rust/crates/synom-0.11.3.tar.gz) = 17120 +SHA256 (rust/crates/synstructure-0.6.1.tar.gz) = 3a761d12e6d8dcb4dcf952a7a89b475e3a9d69e4a69307e01a470977642914bd +SIZE (rust/crates/synstructure-0.6.1.tar.gz) = 11257 +SHA256 (rust/crates/termion-1.5.1.tar.gz) = 689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096 +SIZE (rust/crates/termion-1.5.1.tar.gz) = 20659 +SHA256 (rust/crates/textwrap-0.11.0.tar.gz) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 +SIZE (rust/crates/textwrap-0.11.0.tar.gz) = 17322 +SHA256 (rust/crates/unicode-width-0.1.5.tar.gz) = 882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526 +SIZE (rust/crates/unicode-width-0.1.5.tar.gz) = 15761 +SHA256 (rust/crates/unicode-xid-0.0.4.tar.gz) = 8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc +SIZE (rust/crates/unicode-xid-0.0.4.tar.gz) = 16034 +SHA256 (rust/crates/unicode-xid-0.1.0.tar.gz) = fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc +SIZE (rust/crates/unicode-xid-0.1.0.tar.gz) = 16000 +SHA256 (rust/crates/vec_map-0.8.1.tar.gz) = 05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a +SIZE (rust/crates/vec_map-0.8.1.tar.gz) = 14959 +SHA256 (rust/crates/winapi-0.3.4.tar.gz) = 04e3bd221fcbe8a271359c04f21a76db7d0c6028862d1bb5512d85e1e2eb5bb3 +SIZE (rust/crates/winapi-0.3.4.tar.gz) = 905247 +SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 +SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = 2918815 +SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f +SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 diff --git a/multimedia/termplay/pkg-descr b/multimedia/termplay/pkg-descr new file mode 100644 index 00000000000..fec76bca5a1 --- /dev/null +++ b/multimedia/termplay/pkg-descr @@ -0,0 +1,17 @@ +termplay is the tool to convert images to ANSI sequences. +It also supports playing videos. + +Features: +* Multiple modes + * Sixels: Only supported by a few terminals, like xterm. + * Unicode halfblock: This is the same as TrueColor below, but uses unicode + half-blocks for smaller pixels. + * TrueColor: Any RGB color, supported by most terminals. + * 256 color: The closest representation of a color that can be fit within + 1 byte. Use this if nothing else works. +* Flexible + * Change framerate, size and more using command line switches. +* Adapting size + * Automatically scales the image to fit your terminal. + +WWW: https://github.com/jD91mZM2/termplay diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 7607db5380b..681545b68b8 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= vlc -DISTVERSION= 3.0.7.1 -PORTREVISION= 6 +DISTVERSION= 3.0.8 PORTEPOCH= 4 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \ diff --git a/multimedia/vlc/distinfo b/multimedia/vlc/distinfo index 57622e6b0e8..03005d42adc 100644 --- a/multimedia/vlc/distinfo +++ b/multimedia/vlc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1560608081 -SHA256 (vlc-3.0.7.1.tar.xz) = 0655804371096772f06104b75c21cde8a76e3b6c8a2fdadc97914f082c6264f5 -SIZE (vlc-3.0.7.1.tar.xz) = 26052372 +TIMESTAMP = 1566290066 +SHA256 (vlc-3.0.8.tar.xz) = e0149ef4a20a19b9ecd87309c2d27787ee3f47dfd47c6639644bc1f6fd95bdf6 +SIZE (vlc-3.0.8.tar.xz) = 26041520 diff --git a/net-im/licq-icq/Makefile b/net-im/licq-icq/Makefile index a123a07cdf8..ab17d5aa0a7 100644 --- a/net-im/licq-icq/Makefile +++ b/net-im/licq-icq/Makefile @@ -6,7 +6,7 @@ PORTREVISION= 2 CATEGORIES= net-im PKGNAMEPREFIX= licq- -MAINTAINER= dinoex@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= ICQ plugin for Licq LICENSE= GPLv2 diff --git a/net-im/licq-jabber/Makefile b/net-im/licq-jabber/Makefile index 2b6ec3b896a..74519959a30 100644 --- a/net-im/licq-jabber/Makefile +++ b/net-im/licq-jabber/Makefile @@ -6,7 +6,7 @@ PORTREVISION= 3 CATEGORIES= net-im PKGNAMEPREFIX= licq- -MAINTAINER= dinoex@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Jabber (XMPP) plugin for Licq LICENSE= GPLv2 diff --git a/net-im/licq-osd/Makefile b/net-im/licq-osd/Makefile index 2ede590dfbf..98431c2b023 100644 --- a/net-im/licq-osd/Makefile +++ b/net-im/licq-osd/Makefile @@ -8,7 +8,7 @@ PORTEPOCH= 2 CATEGORIES= net-im PKGNAMEPREFIX= licq- -MAINTAINER= dinoex@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= OnScreenDisplay messages in licq BUILD_DEPENDS= licq:${LICQ_PORT} diff --git a/net-im/licq-qt-gui/Makefile b/net-im/licq-qt-gui/Makefile index d1f2cb27649..6d94f428792 100644 --- a/net-im/licq-qt-gui/Makefile +++ b/net-im/licq-qt-gui/Makefile @@ -8,7 +8,7 @@ CATEGORIES= net-im PKGNAMEPREFIX= licq- PKGNAMESUFFIX?= ${KDE_SUFFIX}${PKGNAMESUFFIX2} -MAINTAINER= dinoex@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Qt plugin for licq LICENSE= GPLv2 diff --git a/net-im/licq/Makefile b/net-im/licq/Makefile index e4176494b18..41492f60b6d 100644 --- a/net-im/licq/Makefile +++ b/net-im/licq/Makefile @@ -9,7 +9,7 @@ CATEGORIES= net-im PKGNAMEPREFIX= licq- PKGNAMESUFFIX= ${SOCKS_SUFFIX}${PKGNAMESUFFIX2} -MAINTAINER= dinoex@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Popular ICQ-compatible plugin-based program LICENSE= GPLv2 diff --git a/net-mgmt/icingaweb2/Makefile b/net-mgmt/icingaweb2/Makefile index c882ed227c2..875527a0996 100644 --- a/net-mgmt/icingaweb2/Makefile +++ b/net-mgmt/icingaweb2/Makefile @@ -2,7 +2,7 @@ PORTNAME= icingaweb2 DISTVERSIONPREFIX= v -DISTVERSION= 2.7.0 +DISTVERSION= 2.7.1 CATEGORIES= net-mgmt www MAINTAINER= lme@FreeBSD.org diff --git a/net-mgmt/icingaweb2/distinfo b/net-mgmt/icingaweb2/distinfo index f3828ebbe44..cbe578e9243 100644 --- a/net-mgmt/icingaweb2/distinfo +++ b/net-mgmt/icingaweb2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1564576170 -SHA256 (icinga-icingaweb2-v2.7.0_GH0.tar.gz) = 64d33f6f3e1a9eb95edd1685a789aa6f4b577047b55f51325a2962f6fe3dd629 -SIZE (icinga-icingaweb2-v2.7.0_GH0.tar.gz) = 8332315 +TIMESTAMP = 1566283732 +SHA256 (icinga-icingaweb2-v2.7.1_GH0.tar.gz) = f7ea515ace46e8d0f4bbfbed1eca7807a470bfffaa6843f5b581103cb2e837f5 +SIZE (icinga-icingaweb2-v2.7.1_GH0.tar.gz) = 8389123 diff --git a/net-mgmt/icingaweb2/pkg-plist b/net-mgmt/icingaweb2/pkg-plist index 4f19dce3211..86fded549f7 100644 --- a/net-mgmt/icingaweb2/pkg-plist +++ b/net-mgmt/icingaweb2/pkg-plist @@ -196,6 +196,8 @@ etc/bash_completion.d/icingacli %%WWWDIR%%/doc/accessibility/svg.html %%WWWDIR%%/doc/accessibility/text-cue-for-required-form-control-labels.html %%WWWDIR%%/doc/phpdoc.xml +%%WWWDIR%%/doc/res/gitlab-job-artifacts.png +%%WWWDIR%%/doc/res/gitlab-rpm-package-pipeline-jobs.png %%WWWDIR%%/doc/res/GraphExample#1.png %%WWWDIR%%/doc/res/GraphExample#2.png %%WWWDIR%%/doc/res/GraphExample#3.png diff --git a/net/daq/Makefile b/net/daq/Makefile index 17d47b5d646..edd4181af6b 100644 --- a/net/daq/Makefile +++ b/net/daq/Makefile @@ -18,16 +18,13 @@ LIB_DEPENDS= libdnet.so:net/libdnet \ libpcap.so.1:net/libpcap # avoid base libpcap BUILD_DEPENDS= flex:textproc/flex +USES= bison gmake libtool localbase GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= bison gmake libtool USE_LDCONFIG= yes PLIST_SUB= PORTVERSION="${PORTVERSION}" MAKE_JOBS_UNSAFE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib - CONFLICTS= libdaq-3* post-install: diff --git a/net/daq/pkg-descr b/net/daq/pkg-descr index 2efc959e163..4ca03e9bd1a 100644 --- a/net/daq/pkg-descr +++ b/net/daq/pkg-descr @@ -9,4 +9,4 @@ The DAQ library may be useful for other packet processing applications and the modular nature allows you to build new modules for other platforms. -WWW: http://www.snort.org/ +WWW: https://www.snort.org/ diff --git a/net/dshell/Makefile b/net/dshell/Makefile index 5f1f58e5079..d9f47cfaae1 100644 --- a/net/dshell/Makefile +++ b/net/dshell/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dshell -PORTVERSION= 3.0.20180914 +PORTVERSION= 3.0.${SNAPDATE} CATEGORIES= net MAINTAINER= nobutaka@FreeBSD.org @@ -12,8 +12,8 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= bash:shells/bash \ - ${PYTHON_PKGNAMEPREFIX}pygeoip>0:net/py-pygeoip@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pycrypto>0:security/py-pycrypto@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}GeoIP2>0:net/py-GeoIP2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pycryptodome>0:security/py-pycryptodome@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dpkt>0:net/py-dpkt@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ipy>0:net-mgmt/py-ipy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pypcap>0:net/py-pypcap@${PY_FLAVOR} @@ -27,7 +27,8 @@ SHEBANG_FILES= bin/*.py GH_ACCOUNT= USArmyResearchLab GH_PROJECT= Dshell -GH_TAGNAME= 709d087 +GH_TAGNAME= 695c891 +SNAPDATE= 20190523 OPTIONS_DEFINE= DOCS diff --git a/net/dshell/distinfo b/net/dshell/distinfo index fa637b4bd54..7159f991059 100644 --- a/net/dshell/distinfo +++ b/net/dshell/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1542435016 -SHA256 (USArmyResearchLab-Dshell-3.0.20180914-709d087_GH0.tar.gz) = c5ce6bafdd1b09cd70a3dfe1ab9fb3abc4e2204f8596bfbd5a2f7dfd3fb1a8bb -SIZE (USArmyResearchLab-Dshell-3.0.20180914-709d087_GH0.tar.gz) = 716622 +TIMESTAMP = 1566010007 +SHA256 (USArmyResearchLab-Dshell-3.0.20190523-695c891_GH0.tar.gz) = 47f768b230432688fda44f290da62672cef8dbdb1b6b2ee6cac60c0e4d75a145 +SIZE (USArmyResearchLab-Dshell-3.0.20190523-695c891_GH0.tar.gz) = 717040 diff --git a/net/dshell/files/patch-Makefile b/net/dshell/files/patch-Makefile index 0bd7d95f13d..9b35fbf56dd 100644 --- a/net/dshell/files/patch-Makefile +++ b/net/dshell/files/patch-Makefile @@ -1,9 +1,9 @@ ---- Makefile.orig 2018-09-13 18:19:05 UTC +--- Makefile.orig 2019-05-22 22:16:29 UTC +++ Makefile @@ -6,7 +6,7 @@ dshell: rc initpy pydoc rc: - # Generating .dshellrc and dshell files + # Generating .dshellrc and dshell files - python $(PWD)/bin/generate-dshellrc.py $(PWD) + $(PYTHON_CMD) $(PWD)/bin/generate-dshellrc.py $(PWD) chmod 755 $(PWD)/dshell @@ -15,6 +15,6 @@ -pydoc: +pydoc: rc - (cd $(PWD)/doc && ./generate-doc.sh $(PWD) ) + (cd $(PWD)/doc && ./generate-doc.sh $(PWD) ) - clean: clean_pyc + clean: clean_pyc clean_ln diff --git a/net/dshell/pkg-message b/net/dshell/pkg-message index ea68c0c0fdd..6131283f270 100644 --- a/net/dshell/pkg-message +++ b/net/dshell/pkg-message @@ -1,11 +1,12 @@ [ { type: install message: <0:devel/py-Pint@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pydantic>=0.30.1:devel/py-pydantic@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pydantic>=0.32:devel/py-pydantic@${PY_FLAVOR} USES= python:3.6+ USE_PYTHON= distutils autoplist diff --git a/science/py-qcelemental/distinfo b/science/py-qcelemental/distinfo index 05108f3940c..5556d7723c1 100644 --- a/science/py-qcelemental/distinfo +++ b/science/py-qcelemental/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1564554080 -SHA256 (qcelemental-0.5.0.tar.gz) = e8cef01b9608c744753355ab62744ccc0aeeabb3ab5c11513d9e66d95d0e4a03 -SIZE (qcelemental-0.5.0.tar.gz) = 183485 +TIMESTAMP = 1566282740 +SHA256 (qcelemental-0.6.1.tar.gz) = 92b648f90d4a0be91bb579ad4e733391eea682a5a8c728b33704a1592f2a2e2d +SIZE (qcelemental-0.6.1.tar.gz) = 195111 diff --git a/security/Makefile b/security/Makefile index 8a0e3d4c3eb..6750429a7bb 100644 --- a/security/Makefile +++ b/security/Makefile @@ -12,6 +12,7 @@ SUBDIR += R-cran-digest SUBDIR += R-cran-openssl SUBDIR += acme.sh + SUBDIR += acmed SUBDIR += acmetool SUBDIR += aescrypt SUBDIR += aespipe diff --git a/security/acmed/Makefile b/security/acmed/Makefile new file mode 100644 index 00000000000..40b5af90242 --- /dev/null +++ b/security/acmed/Makefile @@ -0,0 +1,146 @@ +# $FreeBSD$ + +PORTNAME= acmed +DISTVERSIONPREFIX= v +DISTVERSION= 0.6.0 +CATEGORIES= security + +MAINTAINER= greg@unrelenting.technology +COMMENT= ACME (RFC 8555) client daemon written in Rust + +LICENSE= APACHE20 MIT +LICENSE_COMB= dual +LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE-2.0.txt +LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT.txt + +USES= cargo gmake ssl +USE_GITHUB= yes +GH_ACCOUNT= breard-r + +CARGO_INSTALL_PATH= ./acmed ./tacd +CARGO_CRATES= aho-corasick-0.7.6 \ + ansi_term-0.11.0 \ + atty-0.2.13 \ + autocfg-0.1.5 \ + backtrace-0.3.34 \ + backtrace-sys-0.1.31 \ + base64-0.10.1 \ + bitflags-1.1.0 \ + block-buffer-0.7.3 \ + block-padding-0.1.4 \ + boxfnonce-0.1.1 \ + byte-tools-0.3.1 \ + byteorder-1.3.2 \ + c2-chacha-0.2.2 \ + cc-1.0.40 \ + cfg-if-0.1.9 \ + clap-2.33.0 \ + core-foundation-0.6.4 \ + core-foundation-sys-0.6.2 \ + daemonize-0.4.1 \ + digest-0.8.1 \ + env_logger-0.6.2 \ + error-chain-0.11.0 \ + fake-simd-0.1.2 \ + foreign-types-0.3.2 \ + foreign-types-shared-0.1.1 \ + generic-array-0.12.3 \ + getrandom-0.1.10 \ + handlebars-2.0.1 \ + hashbrown-0.5.0 \ + http_req-0.5.3 \ + humantime-1.2.0 \ + itoa-0.4.4 \ + lazy_static-1.3.0 \ + lexical-core-0.4.3 \ + libc-0.2.62 \ + log-0.4.8 \ + maplit-1.0.1 \ + memchr-2.2.1 \ + native-tls-0.2.3 \ + nix-0.14.1 \ + nom-5.0.0 \ + opaque-debug-0.2.3 \ + openssl-0.10.24 \ + openssl-probe-0.1.2 \ + openssl-sys-0.9.49 \ + pest-2.1.1 \ + pest_derive-2.1.0 \ + pest_generator-2.1.0 \ + pest_meta-2.1.1 \ + pkg-config-0.3.15 \ + ppv-lite86-0.2.5 \ + proc-macro2-0.4.30 \ + proc-macro2-1.0.1 \ + quick-error-1.2.2 \ + quote-0.6.13 \ + quote-1.0.2 \ + rand-0.7.0 \ + rand_chacha-0.2.1 \ + rand_core-0.5.0 \ + rand_hc-0.2.0 \ + redox_syscall-0.1.56 \ + regex-1.2.1 \ + regex-syntax-0.6.11 \ + remove_dir_all-0.5.2 \ + rustc-demangle-0.1.16 \ + rustc_version-0.2.3 \ + ryu-1.0.0 \ + same-file-1.0.5 \ + schannel-0.1.15 \ + security-framework-0.3.1 \ + security-framework-sys-0.3.1 \ + semver-0.9.0 \ + semver-parser-0.7.0 \ + serde-1.0.99 \ + serde_derive-1.0.99 \ + serde_json-1.0.40 \ + sha-1-0.8.1 \ + stackvector-1.0.6 \ + static_assertions-0.3.4 \ + strsim-0.8.0 \ + syn-0.15.44 \ + syn-1.0.3 \ + syslog-4.0.1 \ + tempfile-3.1.0 \ + termcolor-1.0.5 \ + textwrap-0.11.0 \ + thread_local-0.3.6 \ + time-0.1.42 \ + toml-0.5.3 \ + typenum-1.10.0 \ + ucd-trie-0.1.2 \ + unicase-2.4.0 \ + unicode-width-0.1.5 \ + unicode-xid-0.1.0 \ + unicode-xid-0.2.0 \ + unreachable-1.0.0 \ + vcpkg-0.2.7 \ + vec_map-0.8.1 \ + version_check-0.1.5 \ + void-1.0.2 \ + walkdir-2.2.9 \ + wasi-0.5.0 \ + winapi-0.3.7 \ + winapi-i686-pc-windows-gnu-0.4.0 \ + winapi-util-0.1.2 \ + winapi-x86_64-pc-windows-gnu-0.4.0 \ + wincolor-1.0.2 + +post-patch: + ${REINPLACE_CMD} -e 's|"/etc/acmed/acmed.toml"|"${PREFIX}/etc/acmed/acmed.toml"|' \ + -e 's|"/etc/acmed/accounts"|"${PREFIX}/etc/acmed/accounts"|' \ + -e 's|"/etc/acmed/certs"|"${PREFIX}/etc/acmed/certs"|' \ + ${WRKSRC}/acmed/src/main.rs + +post-install: + ${INSTALL_MAN} ${WRKSRC}/man/en/acmed.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/ + ${INSTALL_MAN} ${WRKSRC}/man/en/acmed.toml.5 ${STAGEDIR}${MAN5PREFIX}/man/man5/ + ${INSTALL_MAN} ${WRKSRC}/man/en/tacd.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/ + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/acmed + ${INSTALL_DATA} ${WRKSRC}/acmed/config/acmed.toml ${STAGEDIR}${PREFIX}/etc/acmed/ + ${INSTALL_DATA} ${WRKSRC}/acmed/config/default_hooks.toml ${STAGEDIR}${PREFIX}/etc/acmed/ + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/acmed/accounts + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/acmed/certs + +.include diff --git a/security/acmed/distinfo b/security/acmed/distinfo new file mode 100644 index 00000000000..d69735e310f --- /dev/null +++ b/security/acmed/distinfo @@ -0,0 +1,219 @@ +TIMESTAMP = 1566218390 +SHA256 (rust/crates/aho-corasick-0.7.6.tar.gz) = 58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d +SIZE (rust/crates/aho-corasick-0.7.6.tar.gz) = 108953 +SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b +SIZE (rust/crates/ansi_term-0.11.0.tar.gz) = 17087 +SHA256 (rust/crates/atty-0.2.13.tar.gz) = 1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90 +SIZE (rust/crates/atty-0.2.13.tar.gz) = 4764 +SHA256 (rust/crates/autocfg-0.1.5.tar.gz) = 22130e92352b948e7e82a49cdb0aa94f2211761117f29e052dd397c1ac33542b +SIZE (rust/crates/autocfg-0.1.5.tar.gz) = 11009 +SHA256 (rust/crates/backtrace-0.3.34.tar.gz) = b5164d292487f037ece34ec0de2fcede2faa162f085dd96d2385ab81b12765ba +SIZE (rust/crates/backtrace-0.3.34.tar.gz) = 54443 +SHA256 (rust/crates/backtrace-sys-0.1.31.tar.gz) = 82a830b4ef2d1124a711c71d263c5abdc710ef8e907bd508c88be475cebc422b +SIZE (rust/crates/backtrace-sys-0.1.31.tar.gz) = 518877 +SHA256 (rust/crates/base64-0.10.1.tar.gz) = 0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e +SIZE (rust/crates/base64-0.10.1.tar.gz) = 41988 +SHA256 (rust/crates/bitflags-1.1.0.tar.gz) = 3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd +SIZE (rust/crates/bitflags-1.1.0.tar.gz) = 16322 +SHA256 (rust/crates/block-buffer-0.7.3.tar.gz) = c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b +SIZE (rust/crates/block-buffer-0.7.3.tar.gz) = 7179 +SHA256 (rust/crates/block-padding-0.1.4.tar.gz) = 6d4dc3af3ee2e12f3e5d224e5e1e3d73668abbeb69e566d361f7d5563a4fdf09 +SIZE (rust/crates/block-padding-0.1.4.tar.gz) = 7209 +SHA256 (rust/crates/boxfnonce-0.1.1.tar.gz) = 5988cb1d626264ac94100be357308f29ff7cbdd3b36bda27f450a4ee3f713426 +SIZE (rust/crates/boxfnonce-0.1.1.tar.gz) = 9698 +SHA256 (rust/crates/byte-tools-0.3.1.tar.gz) = e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7 +SIZE (rust/crates/byte-tools-0.3.1.tar.gz) = 5526 +SHA256 (rust/crates/byteorder-1.3.2.tar.gz) = a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5 +SIZE (rust/crates/byteorder-1.3.2.tar.gz) = 21596 +SHA256 (rust/crates/c2-chacha-0.2.2.tar.gz) = 7d64d04786e0f528460fc884753cf8dddcc466be308f6026f8e355c41a0e4101 +SIZE (rust/crates/c2-chacha-0.2.2.tar.gz) = 13766 +SHA256 (rust/crates/cc-1.0.40.tar.gz) = b548a4ee81fccb95919d4e22cfea83c7693ebfd78f0495493178db20b3139da7 +SIZE (rust/crates/cc-1.0.40.tar.gz) = 45571 +SHA256 (rust/crates/cfg-if-0.1.9.tar.gz) = b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33 +SIZE (rust/crates/cfg-if-0.1.9.tar.gz) = 7353 +SHA256 (rust/crates/clap-2.33.0.tar.gz) = 5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9 +SIZE (rust/crates/clap-2.33.0.tar.gz) = 196458 +SHA256 (rust/crates/core-foundation-0.6.4.tar.gz) = 25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d +SIZE (rust/crates/core-foundation-0.6.4.tar.gz) = 25233 +SHA256 (rust/crates/core-foundation-sys-0.6.2.tar.gz) = e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b +SIZE (rust/crates/core-foundation-sys-0.6.2.tar.gz) = 16204 +SHA256 (rust/crates/daemonize-0.4.1.tar.gz) = 70c24513e34f53b640819f0ac9f705b673fcf4006d7aab8778bee72ebfc89815 +SIZE (rust/crates/daemonize-0.4.1.tar.gz) = 14494 +SHA256 (rust/crates/digest-0.8.1.tar.gz) = f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5 +SIZE (rust/crates/digest-0.8.1.tar.gz) = 9449 +SHA256 (rust/crates/env_logger-0.6.2.tar.gz) = aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3 +SIZE (rust/crates/env_logger-0.6.2.tar.gz) = 31078 +SHA256 (rust/crates/error-chain-0.11.0.tar.gz) = ff511d5dc435d703f4971bc399647c9bc38e20cb41452e3b9feb4765419ed3f3 +SIZE (rust/crates/error-chain-0.11.0.tar.gz) = 27207 +SHA256 (rust/crates/fake-simd-0.1.2.tar.gz) = e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed +SIZE (rust/crates/fake-simd-0.1.2.tar.gz) = 5398 +SHA256 (rust/crates/foreign-types-0.3.2.tar.gz) = f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1 +SIZE (rust/crates/foreign-types-0.3.2.tar.gz) = 7504 +SHA256 (rust/crates/foreign-types-shared-0.1.1.tar.gz) = 00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b +SIZE (rust/crates/foreign-types-shared-0.1.1.tar.gz) = 5672 +SHA256 (rust/crates/generic-array-0.12.3.tar.gz) = c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec +SIZE (rust/crates/generic-array-0.12.3.tar.gz) = 18017 +SHA256 (rust/crates/getrandom-0.1.10.tar.gz) = 6171a6cc63fbabbe27c2b5ee268e8b7fe5dc1eb0dd2dfad537c1dfed6f69117e +SIZE (rust/crates/getrandom-0.1.10.tar.gz) = 23567 +SHA256 (rust/crates/handlebars-2.0.1.tar.gz) = df044dd42cdb7e32f28557b661406fc0f2494be75199779998810dbc35030e0d +SIZE (rust/crates/handlebars-2.0.1.tar.gz) = 59732 +SHA256 (rust/crates/hashbrown-0.5.0.tar.gz) = e1de41fb8dba9714efd92241565cdff73f78508c95697dd56787d3cba27e2353 +SIZE (rust/crates/hashbrown-0.5.0.tar.gz) = 65631 +SHA256 (rust/crates/http_req-0.5.3.tar.gz) = 7a3235907ba93aeeb84419957956ab7055f1cc4aacfabd4cd1f32f49addab3ec +SIZE (rust/crates/http_req-0.5.3.tar.gz) = 65160 +SHA256 (rust/crates/humantime-1.2.0.tar.gz) = 3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114 +SIZE (rust/crates/humantime-1.2.0.tar.gz) = 16795 +SHA256 (rust/crates/itoa-0.4.4.tar.gz) = 501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f +SIZE (rust/crates/itoa-0.4.4.tar.gz) = 11147 +SHA256 (rust/crates/lazy_static-1.3.0.tar.gz) = bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14 +SIZE (rust/crates/lazy_static-1.3.0.tar.gz) = 10616 +SHA256 (rust/crates/lexical-core-0.4.3.tar.gz) = b8b0f90c979adde96d19eb10eb6431ba0c441e2f9e9bdff868b2f6f5114ff519 +SIZE (rust/crates/lexical-core-0.4.3.tar.gz) = 448604 +SHA256 (rust/crates/libc-0.2.62.tar.gz) = 34fcd2c08d2f832f376f4173a231990fa5aef4e99fb569867318a227ef4c06ba +SIZE (rust/crates/libc-0.2.62.tar.gz) = 433193 +SHA256 (rust/crates/log-0.4.8.tar.gz) = 14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7 +SIZE (rust/crates/log-0.4.8.tar.gz) = 31297 +SHA256 (rust/crates/maplit-1.0.1.tar.gz) = 08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43 +SIZE (rust/crates/maplit-1.0.1.tar.gz) = 8590 +SHA256 (rust/crates/memchr-2.2.1.tar.gz) = 88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e +SIZE (rust/crates/memchr-2.2.1.tar.gz) = 20862 +SHA256 (rust/crates/native-tls-0.2.3.tar.gz) = 4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e +SIZE (rust/crates/native-tls-0.2.3.tar.gz) = 29087 +SHA256 (rust/crates/nix-0.14.1.tar.gz) = 6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce +SIZE (rust/crates/nix-0.14.1.tar.gz) = 185227 +SHA256 (rust/crates/nom-5.0.0.tar.gz) = e9761d859320e381010a4f7f8ed425f2c924de33ad121ace447367c713ad561b +SIZE (rust/crates/nom-5.0.0.tar.gz) = 124441 +SHA256 (rust/crates/opaque-debug-0.2.3.tar.gz) = 2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c +SIZE (rust/crates/opaque-debug-0.2.3.tar.gz) = 5643 +SHA256 (rust/crates/openssl-0.10.24.tar.gz) = 8152bb5a9b5b721538462336e3bef9a539f892715e5037fda0f984577311af15 +SIZE (rust/crates/openssl-0.10.24.tar.gz) = 182149 +SHA256 (rust/crates/openssl-probe-0.1.2.tar.gz) = 77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de +SIZE (rust/crates/openssl-probe-0.1.2.tar.gz) = 6427 +SHA256 (rust/crates/openssl-sys-0.9.49.tar.gz) = f4fad9e54bd23bd4cbbe48fdc08a1b8091707ac869ef8508edea2fec77dcc884 +SIZE (rust/crates/openssl-sys-0.9.49.tar.gz) = 44767 +SHA256 (rust/crates/pest-2.1.1.tar.gz) = 933085deae3f32071f135d799d75667b63c8dc1f4537159756e3d4ceab41868c +SIZE (rust/crates/pest-2.1.1.tar.gz) = 77030 +SHA256 (rust/crates/pest_derive-2.1.0.tar.gz) = 833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0 +SIZE (rust/crates/pest_derive-2.1.0.tar.gz) = 14049 +SHA256 (rust/crates/pest_generator-2.1.0.tar.gz) = 63120576c4efd69615b5537d3d052257328a4ca82876771d6944424ccfd9f646 +SIZE (rust/crates/pest_generator-2.1.0.tar.gz) = 14046 +SHA256 (rust/crates/pest_meta-2.1.1.tar.gz) = f249ea6de7c7b7aba92b4ff4376a994c6dbd98fd2166c89d5c4947397ecb574d +SIZE (rust/crates/pest_meta-2.1.1.tar.gz) = 27698 +SHA256 (rust/crates/pkg-config-0.3.15.tar.gz) = a7c1d2cfa5a714db3b5f24f0915e74fcdf91d09d496ba61329705dda7774d2af +SIZE (rust/crates/pkg-config-0.3.15.tar.gz) = 14087 +SHA256 (rust/crates/ppv-lite86-0.2.5.tar.gz) = e3cbf9f658cdb5000fcf6f362b8ea2ba154b9f146a61c7a20d647034c6b6561b +SIZE (rust/crates/ppv-lite86-0.2.5.tar.gz) = 20606 +SHA256 (rust/crates/proc-macro2-0.4.30.tar.gz) = cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759 +SIZE (rust/crates/proc-macro2-0.4.30.tar.gz) = 34731 +SHA256 (rust/crates/proc-macro2-1.0.1.tar.gz) = 4c5c2380ae88876faae57698be9e9775e3544decad214599c3a6266cca6ac802 +SIZE (rust/crates/proc-macro2-1.0.1.tar.gz) = 34874 +SHA256 (rust/crates/quick-error-1.2.2.tar.gz) = 9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0 +SIZE (rust/crates/quick-error-1.2.2.tar.gz) = 15132 +SHA256 (rust/crates/quote-0.6.13.tar.gz) = 6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1 +SIZE (rust/crates/quote-0.6.13.tar.gz) = 17475 +SHA256 (rust/crates/quote-1.0.2.tar.gz) = 053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe +SIZE (rust/crates/quote-1.0.2.tar.gz) = 23023 +SHA256 (rust/crates/rand-0.7.0.tar.gz) = d47eab0e83d9693d40f825f86948aa16eff6750ead4bdffc4ab95b8b3a7f052c +SIZE (rust/crates/rand-0.7.0.tar.gz) = 104208 +SHA256 (rust/crates/rand_chacha-0.2.1.tar.gz) = 03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853 +SIZE (rust/crates/rand_chacha-0.2.1.tar.gz) = 11475 +SHA256 (rust/crates/rand_core-0.5.0.tar.gz) = 615e683324e75af5d43d8f7a39ffe3ee4a9dc42c5c701167a71dc59c3a493aca +SIZE (rust/crates/rand_core-0.5.0.tar.gz) = 19736 +SHA256 (rust/crates/rand_hc-0.2.0.tar.gz) = ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c +SIZE (rust/crates/rand_hc-0.2.0.tar.gz) = 11670 +SHA256 (rust/crates/redox_syscall-0.1.56.tar.gz) = 2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84 +SIZE (rust/crates/redox_syscall-0.1.56.tar.gz) = 17117 +SHA256 (rust/crates/regex-1.2.1.tar.gz) = 88c3d9193984285d544df4a30c23a4e62ead42edf70a4452ceb76dac1ce05c26 +SIZE (rust/crates/regex-1.2.1.tar.gz) = 227824 +SHA256 (rust/crates/regex-syntax-0.6.11.tar.gz) = b143cceb2ca5e56d5671988ef8b15615733e7ee16cd348e064333b251b89343f +SIZE (rust/crates/regex-syntax-0.6.11.tar.gz) = 283238 +SHA256 (rust/crates/remove_dir_all-0.5.2.tar.gz) = 4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e +SIZE (rust/crates/remove_dir_all-0.5.2.tar.gz) = 8907 +SHA256 (rust/crates/rustc-demangle-0.1.16.tar.gz) = 4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783 +SIZE (rust/crates/rustc-demangle-0.1.16.tar.gz) = 19137 +SHA256 (rust/crates/rustc_version-0.2.3.tar.gz) = 138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a +SIZE (rust/crates/rustc_version-0.2.3.tar.gz) = 10210 +SHA256 (rust/crates/ryu-1.0.0.tar.gz) = c92464b447c0ee8c4fb3824ecc8383b81717b9f1e74ba2e72540aef7b9f82997 +SIZE (rust/crates/ryu-1.0.0.tar.gz) = 40170 +SHA256 (rust/crates/same-file-1.0.5.tar.gz) = 585e8ddcedc187886a30fa705c47985c3fa88d06624095856b36ca0b82ff4421 +SIZE (rust/crates/same-file-1.0.5.tar.gz) = 9861 +SHA256 (rust/crates/schannel-0.1.15.tar.gz) = f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339 +SIZE (rust/crates/schannel-0.1.15.tar.gz) = 38901 +SHA256 (rust/crates/security-framework-0.3.1.tar.gz) = eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2 +SIZE (rust/crates/security-framework-0.3.1.tar.gz) = 46179 +SHA256 (rust/crates/security-framework-sys-0.3.1.tar.gz) = 9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56 +SIZE (rust/crates/security-framework-sys-0.3.1.tar.gz) = 9283 +SHA256 (rust/crates/semver-0.9.0.tar.gz) = 1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403 +SIZE (rust/crates/semver-0.9.0.tar.gz) = 17344 +SHA256 (rust/crates/semver-parser-0.7.0.tar.gz) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3 +SIZE (rust/crates/semver-parser-0.7.0.tar.gz) = 10268 +SHA256 (rust/crates/serde-1.0.99.tar.gz) = fec2851eb56d010dc9a21b89ca53ee75e6528bab60c11e89d38390904982da9f +SIZE (rust/crates/serde-1.0.99.tar.gz) = 72436 +SHA256 (rust/crates/serde_derive-1.0.99.tar.gz) = cb4dc18c61206b08dc98216c98faa0232f4337e1e1b8574551d5bad29ea1b425 +SIZE (rust/crates/serde_derive-1.0.99.tar.gz) = 49786 +SHA256 (rust/crates/serde_json-1.0.40.tar.gz) = 051c49229f282f7c6f3813f8286cc1e3323e8051823fce42c7ea80fe13521704 +SIZE (rust/crates/serde_json-1.0.40.tar.gz) = 69695 +SHA256 (rust/crates/sha-1-0.8.1.tar.gz) = 23962131a91661d643c98940b20fcaffe62d776a823247be80a48fcb8b6fce68 +SIZE (rust/crates/sha-1-0.8.1.tar.gz) = 10410 +SHA256 (rust/crates/stackvector-1.0.6.tar.gz) = 1c4725650978235083241fab0fdc8e694c3de37821524e7534a1a9061d1068af +SIZE (rust/crates/stackvector-1.0.6.tar.gz) = 15725 +SHA256 (rust/crates/static_assertions-0.3.4.tar.gz) = 7f3eb36b47e512f8f1c9e3d10c2c1965bc992bd9cdb024fa581e2194501c83d3 +SIZE (rust/crates/static_assertions-0.3.4.tar.gz) = 15034 +SHA256 (rust/crates/strsim-0.8.0.tar.gz) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a +SIZE (rust/crates/strsim-0.8.0.tar.gz) = 9309 +SHA256 (rust/crates/syn-0.15.44.tar.gz) = 9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5 +SIZE (rust/crates/syn-0.15.44.tar.gz) = 184212 +SHA256 (rust/crates/syn-1.0.3.tar.gz) = 158521e6f544e7e3dcfc370ac180794aa38cb34a1b1e07609376d4adcf429b93 +SIZE (rust/crates/syn-1.0.3.tar.gz) = 189842 +SHA256 (rust/crates/syslog-4.0.1.tar.gz) = a0641142b4081d3d44beffa4eefd7346a228cdf91ed70186db2ca2cef762d327 +SIZE (rust/crates/syslog-4.0.1.tar.gz) = 7131 +SHA256 (rust/crates/tempfile-3.1.0.tar.gz) = 7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9 +SIZE (rust/crates/tempfile-3.1.0.tar.gz) = 25823 +SHA256 (rust/crates/termcolor-1.0.5.tar.gz) = 96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e +SIZE (rust/crates/termcolor-1.0.5.tar.gz) = 14526 +SHA256 (rust/crates/textwrap-0.11.0.tar.gz) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 +SIZE (rust/crates/textwrap-0.11.0.tar.gz) = 17322 +SHA256 (rust/crates/thread_local-0.3.6.tar.gz) = c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b +SIZE (rust/crates/thread_local-0.3.6.tar.gz) = 12388 +SHA256 (rust/crates/time-0.1.42.tar.gz) = db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f +SIZE (rust/crates/time-0.1.42.tar.gz) = 30005 +SHA256 (rust/crates/toml-0.5.3.tar.gz) = c7aabe75941d914b72bf3e5d3932ed92ce0664d49d8432305a8b547c37227724 +SIZE (rust/crates/toml-0.5.3.tar.gz) = 51654 +SHA256 (rust/crates/typenum-1.10.0.tar.gz) = 612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169 +SIZE (rust/crates/typenum-1.10.0.tar.gz) = 30009 +SHA256 (rust/crates/ucd-trie-0.1.2.tar.gz) = 8f00ed7be0c1ff1e24f46c3d2af4859f7e863672ba3a6e92e7cff702bf9f06c2 +SIZE (rust/crates/ucd-trie-0.1.2.tar.gz) = 44984 +SHA256 (rust/crates/unicase-2.4.0.tar.gz) = a84e5511b2a947f3ae965dcb29b13b7b1691b6e7332cf5dbc1744138d5acb7f6 +SIZE (rust/crates/unicase-2.4.0.tar.gz) = 20143 +SHA256 (rust/crates/unicode-width-0.1.5.tar.gz) = 882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526 +SIZE (rust/crates/unicode-width-0.1.5.tar.gz) = 15761 +SHA256 (rust/crates/unicode-xid-0.1.0.tar.gz) = fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc +SIZE (rust/crates/unicode-xid-0.1.0.tar.gz) = 16000 +SHA256 (rust/crates/unicode-xid-0.2.0.tar.gz) = 826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c +SIZE (rust/crates/unicode-xid-0.2.0.tar.gz) = 14994 +SHA256 (rust/crates/unreachable-1.0.0.tar.gz) = 382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56 +SIZE (rust/crates/unreachable-1.0.0.tar.gz) = 6355 +SHA256 (rust/crates/vcpkg-0.2.7.tar.gz) = 33dd455d0f96e90a75803cfeb7f948768c08d70a6de9a8d2362461935698bf95 +SIZE (rust/crates/vcpkg-0.2.7.tar.gz) = 11012 +SHA256 (rust/crates/vec_map-0.8.1.tar.gz) = 05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a +SIZE (rust/crates/vec_map-0.8.1.tar.gz) = 14959 +SHA256 (rust/crates/version_check-0.1.5.tar.gz) = 914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd +SIZE (rust/crates/version_check-0.1.5.tar.gz) = 8173 +SHA256 (rust/crates/void-1.0.2.tar.gz) = 6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d +SIZE (rust/crates/void-1.0.2.tar.gz) = 2356 +SHA256 (rust/crates/walkdir-2.2.9.tar.gz) = 9658c94fa8b940eab2250bd5a457f9c48b748420d71293b165c8cdbe2f55f71e +SIZE (rust/crates/walkdir-2.2.9.tar.gz) = 22423 +SHA256 (rust/crates/wasi-0.5.0.tar.gz) = fd5442abcac6525a045cc8c795aedb60da7a2e5e89c7bf18a0d5357849bb23c7 +SIZE (rust/crates/wasi-0.5.0.tar.gz) = 31104 +SHA256 (rust/crates/winapi-0.3.7.tar.gz) = f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770 +SIZE (rust/crates/winapi-0.3.7.tar.gz) = 1075776 +SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 +SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = 2918815 +SHA256 (rust/crates/winapi-util-0.1.2.tar.gz) = 7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9 +SIZE (rust/crates/winapi-util-0.1.2.tar.gz) = 7810 +SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f +SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 +SHA256 (rust/crates/wincolor-1.0.2.tar.gz) = 96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9 +SIZE (rust/crates/wincolor-1.0.2.tar.gz) = 4821 +SHA256 (breard-r-acmed-v0.6.0_GH0.tar.gz) = a6e2836fd020f7abd0058254bed0d807e0c9c0039e0fb77ea5f81b6e9f98e7f9 +SIZE (breard-r-acmed-v0.6.0_GH0.tar.gz) = 48342 diff --git a/security/acmed/pkg-descr b/security/acmed/pkg-descr new file mode 100644 index 00000000000..4a7d42846b0 --- /dev/null +++ b/security/acmed/pkg-descr @@ -0,0 +1,5 @@ +ACMEd is one of the many clients for the Automatic Certificate Management +Environment (ACME), an internet standard (RFC 8555) which allows to +automate X.509 certificates signing by a Certification Authority (CA). + +WWW: https://github.com/breard-r/acmed diff --git a/security/acmed/pkg-plist b/security/acmed/pkg-plist new file mode 100644 index 00000000000..c5e352d9b32 --- /dev/null +++ b/security/acmed/pkg-plist @@ -0,0 +1,9 @@ +bin/acmed +bin/tacd +%%ETCDIR%%/acmed.toml +%%ETCDIR%%/default_hooks.toml +man/man5/acmed.toml.5.gz +man/man8/acmed.8.gz +man/man8/tacd.8.gz +@dir(,,0700) %%ETCDIR%%/accounts +@dir(,,0755) %%ETCDIR%%/certs diff --git a/security/courier-authlib/Makefile b/security/courier-authlib/Makefile index c3b3a429a32..c4ede3c1271 100644 --- a/security/courier-authlib/Makefile +++ b/security/courier-authlib/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= courier-authlib -PORTVERSION= 0.69.0 -PORTREVISION?= 2 +PORTVERSION= 0.69.1 CATEGORIES?= security mail .if defined(PKGNAMESUFFIX) MASTER_SITES= SF/courier/authlib/${PORTVERSION} diff --git a/security/courier-authlib/Makefile.opt b/security/courier-authlib/Makefile.opt index ae0b545d6e2..e9718aae245 100644 --- a/security/courier-authlib/Makefile.opt +++ b/security/courier-authlib/Makefile.opt @@ -11,7 +11,7 @@ #.include OPTIONS_DEFINE+= AUTH_LDAP AUTH_MYSQL AUTH_PGSQL AUTH_USERDB AUTH_VCHKPW DOCS -AUTH_LDAP_DESC= LDAP support +AUTH_LDAP_DESC= LDAP support AUTH_MYSQL_DESC= MySQL support AUTH_PGSQL_DESC= PostgreSQL support AUTH_USERDB_DESC= Userdb support diff --git a/security/courier-authlib/distinfo b/security/courier-authlib/distinfo index 67552c37f5a..5d5c00d41f3 100644 --- a/security/courier-authlib/distinfo +++ b/security/courier-authlib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537254940 -SHA256 (courier-authlib-0.69.0.tar.bz2) = fbbec283e620b3e5aab3bdeb0ec781df3c656d511168bfa23ec69f21af44b689 -SIZE (courier-authlib-0.69.0.tar.bz2) = 2197718 +TIMESTAMP = 1564304568 +SHA256 (courier-authlib-0.69.1.tar.bz2) = 50ced152fe849064d493c3cec3e6d78df77e3e39c6eb0e3f021b9fff874d187e +SIZE (courier-authlib-0.69.1.tar.bz2) = 2204546 diff --git a/security/courier-authlib/files/patch-Makefile.in b/security/courier-authlib/files/patch-Makefile.in index 8220c2314a7..098b9c1823b 100644 --- a/security/courier-authlib/files/patch-Makefile.in +++ b/security/courier-authlib/files/patch-Makefile.in @@ -1,4 +1,4 @@ ---- Makefile.in.orig 2018-09-13 23:11:36 UTC +--- Makefile.in.orig 2019-07-24 23:58:04 UTC +++ Makefile.in @@ -95,11 +95,10 @@ PRE_UNINSTALL = : POST_UNINSTALL = : @@ -16,20 +16,41 @@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac -@@ -219,6 +218,12 @@ libcourierauth_la_DEPENDENCIES = libs/libhmac/libhmac. +@@ -220,6 +219,13 @@ libcourierauth_la_DEPENDENCIES = libs/libhmac/libhmac. libs/md5/libmd5.la libs/sha1/libsha1.la \ libs/numlib/libnumlib.la libs/random128/librandom128.la \ libs/rfc822/libencode.la +am_libauthvchkpw_la_OBJECTS = authvchkpw.lo authvchkpwlib.lo \ + preauthvchkpw.lo +libauthvchkpw_la_OBJECTS = $(am_libauthvchkpw_la_OBJECTS) -+libauthvchkpw_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ -+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ -+ $(libauthvchkpw_la_LDFLAGS) $(LDFLAGS) -o $@ ++libauthvchkpw_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ ++ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ ++ $(AM_CFLAGS) $(CFLAGS) $(libauthvchkpw_la_LDFLAGS) $(LDFLAGS) \ ++ -o $@ am_libcourierauth_la_OBJECTS = authdaemon.lo authdaemonlib.lo \ preauthdaemon.lo authmoduser2.lo authmoduser3.lo debug.lo \ authoption.lo -@@ -350,6 +355,7 @@ SOURCES = $(libauthcustom_la_SOURCES) $(libauthldap_la +@@ -336,7 +342,9 @@ am__depfiles_remade = ./$(DEPDIR)/authconfigfile.Plo \ + ./$(DEPDIR)/authsqlite.Plo ./$(DEPDIR)/authsqlitelib.Plo \ + ./$(DEPDIR)/authsyschangepwd.Plo ./$(DEPDIR)/authsyscommon.Plo \ + ./$(DEPDIR)/authtest.Po ./$(DEPDIR)/authuserdb.Plo \ +- ./$(DEPDIR)/authuserdbpwd.Plo ./$(DEPDIR)/checkpassword.Plo \ ++ ./$(DEPDIR)/authuserdbpwd.Plo \ ++ ./$(DEPDIR)/authvchkpw.Plo ./$(DEPDIR)/authvchkpwlib.Plo \ ++ ./$(DEPDIR)/checkpassword.Plo \ + ./$(DEPDIR)/checkpasswordmd5.Plo \ + ./$(DEPDIR)/checkpasswordsha1.Plo ./$(DEPDIR)/cramlib.Plo \ + ./$(DEPDIR)/cryptpassword.Plo ./$(DEPDIR)/debug.Plo \ +@@ -344,7 +352,7 @@ am__depfiles_remade = ./$(DEPDIR)/authconfigfile.Plo \ + ./$(DEPDIR)/preauthldap.Plo ./$(DEPDIR)/preauthmysql.Plo \ + ./$(DEPDIR)/preauthpam.Plo ./$(DEPDIR)/preauthpwd.Plo \ + ./$(DEPDIR)/preauthshadow.Plo ./$(DEPDIR)/preauthuserdb.Plo \ +- ./$(DEPDIR)/preauthuserdbcommon.Plo ++ ./$(DEPDIR)/preauthuserdbcommon.Plo ./$(DEPDIR)/preauthvchkpw.Plo + am__mv = mv -f + COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +@@ -387,6 +395,7 @@ SOURCES = $(libauthcustom_la_SOURCES) $(libauthldap_la $(libauthpgsql_la_SOURCES) $(libauthpipe_la_SOURCES) \ $(libauthpwd_la_SOURCES) $(libauthshadow_la_SOURCES) \ $(libauthsqlite_la_SOURCES) $(libauthuserdb_la_SOURCES) \ @@ -37,7 +58,15 @@ $(libcourierauth_la_SOURCES) \ $(libcourierauthcommon_la_SOURCES) \ $(libcourierauthsasl_la_SOURCES) \ -@@ -532,6 +538,7 @@ LIBAUTHPWD = @LIBAUTHPWD@ +@@ -400,6 +409,7 @@ DIST_SOURCES = $(libauthcustom_la_SOURCES) $(libauthld + $(libauthpgsql_la_SOURCES) $(libauthpipe_la_SOURCES) \ + $(libauthpwd_la_SOURCES) $(libauthshadow_la_SOURCES) \ + $(libauthsqlite_la_SOURCES) $(libauthuserdb_la_SOURCES) \ ++ $(libauthvchkpw_la_SOURCES) \ + $(libcourierauth_la_SOURCES) \ + $(libcourierauthcommon_la_SOURCES) \ + $(libcourierauthsasl_la_SOURCES) \ +@@ -569,6 +579,7 @@ LIBAUTHPWD = @LIBAUTHPWD@ LIBAUTHSHADOW = @LIBAUTHSHADOW@ LIBAUTHSQLITE = @LIBAUTHSQLITE@ LIBAUTHUSERDB = @LIBAUTHUSERDB@ @@ -45,7 +74,7 @@ LIBDB = @LIBDB@ LIBDL = @LIBDL@ LIBGDBM = @LIBGDBM@ -@@ -657,21 +664,26 @@ top_builddir = @top_builddir@ +@@ -694,21 +705,26 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ userdb = @userdb@ AUTOMAKE_OPTIONS = dist-bzip2 @@ -53,7 +82,7 @@ +SUBDIRS = libs/gdbmobj libs/bdbobj libs/md5 libs/sha1 libs/libhmac libs/numlib +@HAVE_USERDB_TRUE@SUBDIRS += libs/makedat userdb +SUBDIRS += libs/rfc822 libs/random128 -+@HAVE_BASE_TRUE@ SUBDIRS += libs/liblock liblog ++@HAVE_BASE_TRUE@SUBDIRS += libs/liblock liblog AM_CPPFLAGS = -I liblock $(LTDLINCL) modules = @LIBAUTHUSERDB@ \ @LIBAUTHPAM@ @LIBAUTHPWD@ @LIBAUTHSHADOW@ \ @@ -77,7 +106,7 @@ libauthpgsql.la \ libauthldap.la \ libauthmysql.la \ -@@ -746,6 +758,13 @@ libauthshadow_la_DEPENDENCIES = $(commonlibdep) +@@ -783,6 +799,13 @@ libauthshadow_la_DEPENDENCIES = $(commonlibdep) libauthshadow_la_LIBADD = $(commonlibadd) $(libauthshadow_t) libauthshadow_la_LDFLAGS = $(commonldflags) @@ -91,7 +120,7 @@ # The authpgsql module libauthpgsql_t = @PGSQL_LIBS@ @LIBM@ @NETLIBS@ libauthpgsql_la_SOURCES = authpgsql.c authpgsqllib.cpp authpgsql.h -@@ -827,8 +846,8 @@ libcourierauthsaslclient_la_SOURCES = courierauthsaslc +@@ -864,8 +887,8 @@ libcourierauthsaslclient_la_SOURCES = courierauthsaslc libcourierauthsaslclient_la_LIBADD = libcourierauth.la libcourierauthsaslclient_la_LDFLAGS = -export-symbols-regex '^auth_sasl_client$$' -avoid-version @@ -102,7 +131,7 @@ courierauthconfig_SOURCES = authinfo.c authpasswd_SOURCES = authpasswd.c -@@ -870,7 +889,7 @@ authmksock_LDADD = @NETLIBS@ +@@ -907,7 +930,7 @@ authmksock_LDADD = @NETLIBS@ man3 = authlib.3 auth_generic.3 auth_login.3 auth_getuserinfo.3 auth_mkhomedir.3 \ auth_enumerate.3 auth_passwd.3 auth_getoption.3 auth_sasl.3 @@ -111,7 +140,7 @@ man_MANS = $(man1) $(man3) auth_sasl_ex.3 BUILT1 = authlib.html authldaprc.h authmysqlrc.h authpgsqlrc.h authpiperc.h \ authdaemonrc.h packageversion.h \ -@@ -1028,6 +1047,9 @@ libauthsqlite.la: $(libauthsqlite_la_OBJECTS) $(libaut +@@ -1172,6 +1195,9 @@ libauthsqlite.la: $(libauthsqlite_la_OBJECTS) $(libaut libauthuserdb.la: $(libauthuserdb_la_OBJECTS) $(libauthuserdb_la_DEPENDENCIES) $(EXTRA_libauthuserdb_la_DEPENDENCIES) $(AM_V_CCLD)$(libauthuserdb_la_LINK) $(libauthuserdb_la_OBJECTS) $(libauthuserdb_la_LIBADD) $(LIBS) @@ -121,24 +150,41 @@ libcourierauth.la: $(libcourierauth_la_OBJECTS) $(libcourierauth_la_DEPENDENCIES) $(EXTRA_libcourierauth_la_DEPENDENCIES) $(AM_V_CCLD)$(libcourierauth_la_LINK) -rpath $(pkglibdir) $(libcourierauth_la_OBJECTS) $(libcourierauth_la_LIBADD) $(LIBS) -@@ -1298,6 +1320,8 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authtest.Po@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authuserdb.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authuserdbpwd.Plo@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authvchkpw.Plo@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authvchkpwlib.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkpassword.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkpasswordmd5.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkpasswordsha1.Plo@am__quote@ -@@ -1313,6 +1337,7 @@ distclean-compile: - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthshadow.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthuserdb.Plo@am__quote@ - @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthuserdbcommon.Plo@am__quote@ -+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthvchkpw.Plo@am__quote@ +@@ -1335,6 +1361,8 @@ distclean-compile: + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authtest.Po@am__quote@ # am--include-marker + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authuserdb.Plo@am__quote@ # am--include-marker + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authuserdbpwd.Plo@am__quote@ # am--include-marker ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authvchkpw.Plo@am__quote@ # am--include-marker ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/authvchkpwlib.Plo@am__quote@ # am--include-marker + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkpassword.Plo@am__quote@ # am--include-marker + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkpasswordmd5.Plo@am__quote@ # am--include-marker + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkpasswordsha1.Plo@am__quote@ # am--include-marker +@@ -1350,6 +1378,7 @@ distclean-compile: + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthshadow.Plo@am__quote@ # am--include-marker + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthuserdb.Plo@am__quote@ # am--include-marker + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthuserdbcommon.Plo@am__quote@ # am--include-marker ++@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preauthvchkpw.Plo@am__quote@ # am--include-marker - .c.o: - @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@@ -1837,18 +1862,26 @@ info: info-recursive + $(am__depfiles_remade): + @$(MKDIR_P) $(@D) +@@ -1913,6 +1942,8 @@ distclean: distclean-recursive + -rm -f ./$(DEPDIR)/authtest.Po + -rm -f ./$(DEPDIR)/authuserdb.Plo + -rm -f ./$(DEPDIR)/authuserdbpwd.Plo ++ -rm -f ./$(DEPDIR)/authvchkpw.Plo ++ -rm -f ./$(DEPDIR)/authvchkpwlib.Plo + -rm -f ./$(DEPDIR)/checkpassword.Plo + -rm -f ./$(DEPDIR)/checkpasswordmd5.Plo + -rm -f ./$(DEPDIR)/checkpasswordsha1.Plo +@@ -1928,6 +1959,7 @@ distclean: distclean-recursive + -rm -f ./$(DEPDIR)/preauthshadow.Plo + -rm -f ./$(DEPDIR)/preauthuserdb.Plo + -rm -f ./$(DEPDIR)/preauthuserdbcommon.Plo ++ -rm -f ./$(DEPDIR)/preauthvchkpw.Plo + -rm -f Makefile + distclean-am: clean-am distclean-compile distclean-generic \ + distclean-hdr distclean-libtool distclean-tags +@@ -1944,18 +1976,26 @@ info: info-recursive info-am: @@ -173,16 +219,16 @@ install-html: install-html-recursive install-html-am: -@@ -1929,13 +1962,16 @@ uninstall-man: uninstall-man1 uninstall-man3 +@@ -2097,13 +2137,16 @@ uninstall-man: uninstall-man1 uninstall-man3 .PRECIOUS: Makefile +authvchkpw.lo: authvchkpw.c vpopmail_config.h +preauthvchkpw.lo: preauthvchkpw.c vpopmail_config.h - ++ +vpopmail_config.h: + echo '#include "@vpopmail_home@/include/config.h"' >vpopmail_config.h -+ + @HAVE_AUTHPGSQL_TRUE@install-authpgsqlrc: @HAVE_AUTHPGSQL_TRUE@ $(mkinstalldirs) $(DESTDIR)`dirname @authpgsqlrc@` || : @HAVE_AUTHPGSQL_TRUE@ $(INSTALL_DATA) -m 660 $(srcdir)/authpgsqlrc \ @@ -192,7 +238,7 @@ @HAVE_AUTHPGSQL_TRUE@uninstall-authpgsqlrc: @HAVE_AUTHPGSQL_TRUE@ rm -f $(DESTDIR)@authpgsqlrc@.dist -@@ -1953,8 +1989,6 @@ authpgsqlrc.h: +@@ -2121,8 +2164,6 @@ authpgsqlrc.h: @HAVE_LDAP_TRUE@ $(mkinstalldirs) $(DESTDIR)`dirname @authldaprc@` || : @HAVE_LDAP_TRUE@ $(INSTALL_DATA) -m 660 $(srcdir)/authldaprc \ @HAVE_LDAP_TRUE@ $(DESTDIR)@authldaprc@.dist @@ -201,7 +247,7 @@ @HAVE_LDAP_TRUE@uninstall-authldaprc: @HAVE_LDAP_TRUE@ rm -f $(DESTDIR)@authldaprc@.dist -@@ -1965,6 +1999,18 @@ authpgsqlrc.h: +@@ -2133,6 +2174,18 @@ authpgsqlrc.h: @HAVE_LDAP_FALSE@uninstall-authldaprc: @HAVE_LDAP_FALSE@ @: @@ -211,7 +257,7 @@ +@HAVE_LDAP_TRUE@ ${DESTDIR}${sysconfdir}/openldap/schema/authldap.schema.dist +@HAVE_LDAP_TRUE@# if test ! -f ${sysconfdir}/openldap/schema/authldap.schema ; then \ +@HAVE_LDAP_TRUE@# $(INSTALL_DATA) -m 0444 $(srcdir)/authldap.schema \ -+@HAVE_LDAP_TRUE@# ${sysconfdir}/openldap/schema/authldap.schema ; \ ++@HAVE_LDAP_TRUE@# ${sysconfdir}/openldap/schema/authldap.schema ; \ +@HAVE_LDAP_TRUE@# fi + +@HAVE_LDAP_FALSE@install-ldapschema: @@ -220,7 +266,7 @@ authldaprc.h: echo "#define AUTHLDAPRC \"@authldaprc@\"" >authldaprc.h -@@ -1972,8 +2018,6 @@ authldaprc.h: +@@ -2140,8 +2193,6 @@ authldaprc.h: @HAVE_AUTHMYSQL_TRUE@ $(mkinstalldirs) $(DESTDIR)`dirname @authmysqlrc@` || : @HAVE_AUTHMYSQL_TRUE@ $(INSTALL_DATA) -m 660 $(srcdir)/authmysqlrc \ @HAVE_AUTHMYSQL_TRUE@ $(DESTDIR)@authmysqlrc@.dist @@ -229,7 +275,7 @@ @HAVE_AUTHMYSQL_TRUE@uninstall-authmysqlrc: @HAVE_AUTHMYSQL_TRUE@ rm -f $(DESTDIR)@authmysqlrc@.dist -@@ -1991,8 +2035,6 @@ authmysqlrc.h: +@@ -2159,8 +2210,6 @@ authmysqlrc.h: @HAVE_AUTHSQLITE_TRUE@ $(mkinstalldirs) $(DESTDIR)`dirname @authsqliterc@` || : @HAVE_AUTHSQLITE_TRUE@ $(INSTALL_DATA) -m 660 $(srcdir)/authsqliterc \ @HAVE_AUTHSQLITE_TRUE@ $(DESTDIR)@authsqliterc@.dist @@ -238,7 +284,7 @@ @HAVE_AUTHSQLITE_TRUE@uninstall-authsqliterc: @HAVE_AUTHSQLITE_TRUE@ rm -f $(DESTDIR)@authsqliterc@.dist -@@ -2011,17 +2053,21 @@ authpipelib.lo: authpipelib.c authpipelib.h authpiperc +@@ -2179,17 +2228,21 @@ authpipelib.lo: authpipelib.c authpipelib.h authpiperc authpiperc.h: echo "#define PIPE_PROGRAM \"@authProg@\"" >authpiperc.h @@ -259,17 +305,17 @@ - rm -f $(DESTDIR)@authdaemonrc@.dist +@HAVE_BASE_FALSE@install-authdaemonrc: +@HAVE_BASE_FALSE@ @: - ++ +@HAVE_BASE_TRUE@uninstall-authdaemonrc: +@HAVE_BASE_TRUE@ rm -f $(DESTDIR)@authdaemonrc@.dist -+ + +@HAVE_BASE_FALSE@uninstall-authdaemonrc: +@HAVE_BASE_FALSE@ @: + authdaemonrc.h: echo "#define AUTHDAEMONRC \"@authdaemonrc@\"" >authdaemonrc.h echo "#define AUTHDAEMONVAR \"@authdaemonvar@\"" >>authdaemonrc.h -@@ -2067,24 +2113,24 @@ dist-hook: +@@ -2235,24 +2288,24 @@ dist-hook: # automake still a bit stupid... install-data-hook: install-authdaemonrc install-authpgsqlrc \ @@ -306,7 +352,7 @@ $(INSTALL_SCRIPT) userdb/pw2userdb \ $(DESTDIR)$(sbindir)/pw2userdb ; \ $(INSTALL_SCRIPT) userdb/makeuserdb \ -@@ -2097,9 +2143,10 @@ install-exec-hook: +@@ -2265,9 +2318,10 @@ install-exec-hook: $(DESTDIR)$(sbindir)/userdb-test-cram-md5 uninstall-hook: uninstall-authldaprc uninstall-authdaemonrc uninstall-authmysqlrc uninstall-authpgsqlrc uninstall-authsqliterc @@ -318,7 +364,7 @@ $(DESTDIR)$(sbindir)/pw2userdb \ $(DESTDIR)$(sbindir)/makeuserdb \ $(DESTDIR)$(sbindir)/userdb \ -@@ -2110,7 +2157,7 @@ authlib.html: authlib.html.in +@@ -2278,7 +2332,7 @@ authlib.html: authlib.html.in $(SHELL) ./config.status --file=authlib.html authlib.3: authlib.3.in diff --git a/security/courier-authlib/pkg-plist-base b/security/courier-authlib/pkg-plist-base index 90cdd6bb961..e42a2792b81 100644 --- a/security/courier-authlib/pkg-plist-base +++ b/security/courier-authlib/pkg-plist-base @@ -1,5 +1,5 @@ bin/courierauthconfig -@postunexec if cmp -s %D/etc/authlib/authdaemonrc.dist %D/etc/authlib/authdaemonrc; then rm -f %D/etc/authlib/authdaemonrc; fi +@preunexec if cmp -s %D/etc/authlib/authdaemonrc.dist %D/etc/authlib/authdaemonrc; then rm -f %D/etc/authlib/authdaemonrc; fi @(%%MAILOWN%%,%%MAILGRP%%,660) etc/authlib/authdaemonrc.dist @postexec %%LOCALBASE%%/share/sysconftool/sysconftool %D/etc/authlib/authdaemonrc include/courier_auth_config.h diff --git a/security/courier-authlib/pkg-plist-ldap b/security/courier-authlib/pkg-plist-ldap index 9a0964c2c97..132290713c4 100644 --- a/security/courier-authlib/pkg-plist-ldap +++ b/security/courier-authlib/pkg-plist-ldap @@ -1,6 +1,7 @@ -@postunexec if cmp -s %D/etc/authlib/authldaprc.dist %D/etc/authlib/authldaprc; then rm -f %D/etc/authlib/authldaprc; fi +@preunexec if cmp -s %D/etc/authlib/authldaprc.dist %D/etc/authlib/authldaprc; then rm -f %D/etc/authlib/authldaprc; fi @(%%MAILOWN%%,%%MAILGRP%%,660) etc/authlib/authldaprc.dist @postexec %%LOCALBASE%%/share/sysconftool/sysconftool %D/etc/authlib/authldaprc @sample etc/openldap/schema/authldap.schema.dist lib/courier-authlib/libauthldap.so %%PORTDOCS%%%%DOCSDIR%%/README.ldap +@dir etc/openldap/schema diff --git a/security/courier-authlib/pkg-plist-mysql b/security/courier-authlib/pkg-plist-mysql index 983e7e6b5c7..5ff71659393 100644 --- a/security/courier-authlib/pkg-plist-mysql +++ b/security/courier-authlib/pkg-plist-mysql @@ -1,4 +1,4 @@ -@postunexec if cmp -s %D/etc/authlib/authmysqlrc.dist %D/etc/authlib/authmysqlrc; then rm -f %D/etc/authlib/authmysqlrc; fi +@preunexec if cmp -s %D/etc/authlib/authmysqlrc.dist %D/etc/authlib/authmysqlrc; then rm -f %D/etc/authlib/authmysqlrc; fi @(%%MAILOWN%%,%%MAILGRP%%,660) etc/authlib/authmysqlrc.dist @postexec %%LOCALBASE%%/share/sysconftool/sysconftool %D/etc/authlib/authmysqlrc lib/courier-authlib/libauthmysql.so diff --git a/security/courier-authlib/pkg-plist-pgsql b/security/courier-authlib/pkg-plist-pgsql index b5f4074c585..cc2ecae299b 100644 --- a/security/courier-authlib/pkg-plist-pgsql +++ b/security/courier-authlib/pkg-plist-pgsql @@ -1,4 +1,4 @@ -@postunexec if cmp -s %D/etc/authlib/authpgsqlrc.dist %D/etc/authlib/authpgsqlrc; then rm -f %D/etc/authlib/authpgsqlrc; fi +@preunexec if cmp -s %D/etc/authlib/authpgsqlrc.dist %D/etc/authlib/authpgsqlrc; then rm -f %D/etc/authlib/authpgsqlrc; fi @(%%MAILOWN%%,%%MAILGRP%%,660) etc/authlib/authpgsqlrc.dist @postexec %%LOCALBASE%%/share/sysconftool/sysconftool %D/etc/authlib/authpgsqlrc lib/courier-authlib/libauthpgsql.so diff --git a/security/rubygem-airbrussh/Makefile b/security/rubygem-airbrussh/Makefile index bc093b5aec4..61968b8f4b6 100644 --- a/security/rubygem-airbrussh/Makefile +++ b/security/rubygem-airbrussh/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= airbrussh -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.3 CATEGORIES= security rubygems MASTER_SITES= RG diff --git a/security/rubygem-airbrussh/distinfo b/security/rubygem-airbrussh/distinfo index fcc2148323b..3fcc8f8c121 100644 --- a/security/rubygem-airbrussh/distinfo +++ b/security/rubygem-airbrussh/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1560671651 -SHA256 (rubygem/airbrussh-1.3.2.gem) = 87ffbc6403e77d97e8448cc915a19aa967111c35ed15d5cae7fa30c3b235a436 -SIZE (rubygem/airbrussh-1.3.2.gem) = 22528 +TIMESTAMP = 1566324275 +SHA256 (rubygem/airbrussh-1.3.3.gem) = 88697dd124b4ff0fc193370d3f645452492a3aa3b90c67d425bdc96269c804d8 +SIZE (rubygem/airbrussh-1.3.3.gem) = 20480 diff --git a/sysutils/Makefile b/sysutils/Makefile index ee57442aefc..44741093e51 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -104,6 +104,7 @@ SUBDIR += bfs SUBDIR += bhyve-firmware SUBDIR += bhyve-rc + SUBDIR += bibelot SUBDIR += biosfont SUBDIR += bkpupsd SUBDIR += bksh @@ -630,6 +631,7 @@ SUBDIR += mac_nonet SUBDIR += mac_rtprio SUBDIR += magicrescue + SUBDIR += makeztxt SUBDIR += manck SUBDIR += mapchan SUBDIR += mapdir diff --git a/palm/bibelot/Makefile b/sysutils/bibelot/Makefile similarity index 96% rename from palm/bibelot/Makefile rename to sysutils/bibelot/Makefile index 1ffb9db8154..0261209b376 100644 --- a/palm/bibelot/Makefile +++ b/sysutils/bibelot/Makefile @@ -3,7 +3,7 @@ PORTNAME= bibelot PORTVERSION= 0.9.4 -CATEGORIES= palm +CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME}/Bibelot/${PORTVERSION} MAINTAINER= ports@FreeBSD.org diff --git a/palm/bibelot/distinfo b/sysutils/bibelot/distinfo similarity index 100% rename from palm/bibelot/distinfo rename to sysutils/bibelot/distinfo diff --git a/palm/bibelot/pkg-descr b/sysutils/bibelot/pkg-descr similarity index 100% rename from palm/bibelot/pkg-descr rename to sysutils/bibelot/pkg-descr diff --git a/sysutils/debhelper/Makefile b/sysutils/debhelper/Makefile index 2650c871977..74bed2decd2 100644 --- a/sysutils/debhelper/Makefile +++ b/sysutils/debhelper/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= debhelper -PORTVERSION= 12.5.1 +PORTVERSION= 12.5.3 CATEGORIES= sysutils MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION} diff --git a/sysutils/debhelper/distinfo b/sysutils/debhelper/distinfo index 7505fac7af0..40d1e173b27 100644 --- a/sysutils/debhelper/distinfo +++ b/sysutils/debhelper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1566229380 -SHA256 (debhelper_12.5.1.tar.xz) = a4a0caaedd5c47609ddab2de56ed22c312530838ffcefcf9fee377d324e56204 -SIZE (debhelper_12.5.1.tar.xz) = 499660 +TIMESTAMP = 1566324247 +SHA256 (debhelper_12.5.3.tar.xz) = ee70aa302270f6235b9603c5707faed5ec1d19234705567c5c1cf27a690d8020 +SIZE (debhelper_12.5.3.tar.xz) = 500304 diff --git a/palm/makeztxt/Makefile b/sysutils/makeztxt/Makefile similarity index 96% rename from palm/makeztxt/Makefile rename to sysutils/makeztxt/Makefile index 06031a6211d..ce064d2ac39 100644 --- a/palm/makeztxt/Makefile +++ b/sysutils/makeztxt/Makefile @@ -3,7 +3,7 @@ PORTNAME= makeztxt PORTVERSION= 1.62 -CATEGORIES= palm +CATEGORIES= sysutils MASTER_SITES= SF/gutenpalm/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}-src diff --git a/palm/makeztxt/distinfo b/sysutils/makeztxt/distinfo similarity index 100% rename from palm/makeztxt/distinfo rename to sysutils/makeztxt/distinfo diff --git a/palm/makeztxt/files/patch-Makefile b/sysutils/makeztxt/files/patch-Makefile similarity index 100% rename from palm/makeztxt/files/patch-Makefile rename to sysutils/makeztxt/files/patch-Makefile diff --git a/palm/makeztxt/pkg-descr b/sysutils/makeztxt/pkg-descr similarity index 100% rename from palm/makeztxt/pkg-descr rename to sysutils/makeztxt/pkg-descr diff --git a/sysutils/pot/Makefile b/sysutils/pot/Makefile index 926781ac4a0..caf528970b1 100644 --- a/sysutils/pot/Makefile +++ b/sysutils/pot/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pot -PORTVERSION= 0.9.0 +PORTVERSION= 0.9.1 CATEGORIES= sysutils MAINTAINER= pizzamig@FreeBSD.org @@ -12,7 +12,8 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= potnet:sysutils/potnet \ - ${LOCALBASE}/share/freebsd/MANIFESTS/amd64-amd64-11.2-RELEASE:misc/freebsd-release-manifests + ncat:security/nmap \ + ${LOCALBASE}/share/freebsd/MANIFESTS/amd64-amd64-11.2-RELEASE:misc/freebsd-release-manifests USE_RC_SUBR= pot diff --git a/sysutils/pot/distinfo b/sysutils/pot/distinfo index f5a0890e1bb..3876e4b748d 100644 --- a/sysutils/pot/distinfo +++ b/sysutils/pot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1565694596 -SHA256 (pizzamig-pot-0.9.0_GH0.tar.gz) = b54e7b2adab04e4bcada6fbcd6d3a5adc6ea2012ddf11c7a8f59354ec9f4e15c -SIZE (pizzamig-pot-0.9.0_GH0.tar.gz) = 130964 +TIMESTAMP = 1566308392 +SHA256 (pizzamig-pot-0.9.1_GH0.tar.gz) = ae32630cba7acb89da4323f806758c6af65939e5606bd7687dfa947c7097f388 +SIZE (pizzamig-pot-0.9.1_GH0.tar.gz) = 131905 diff --git a/sysutils/rubygem-r10k/Makefile b/sysutils/rubygem-r10k/Makefile index 9f4605a4064..91c4d64939a 100644 --- a/sysutils/rubygem-r10k/Makefile +++ b/sysutils/rubygem-r10k/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= r10k -PORTVERSION= 3.3.0 +PORTVERSION= 3.3.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG diff --git a/sysutils/rubygem-r10k/distinfo b/sysutils/rubygem-r10k/distinfo index e937f68a5e5..669d41f93fc 100644 --- a/sysutils/rubygem-r10k/distinfo +++ b/sysutils/rubygem-r10k/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1560015358 -SHA256 (rubygem/r10k-3.3.0.gem) = e50eb955be198fda25a1c3704793f8dbc9eb0caac25039727027dd80b8b97a9c -SIZE (rubygem/r10k-3.3.0.gem) = 206848 +TIMESTAMP = 1566317482 +SHA256 (rubygem/r10k-3.3.1.gem) = 5ff1307ecbf22f416b62d3b804becd5618ee51e967511bf90f2e6554774066d9 +SIZE (rubygem/r10k-3.3.1.gem) = 208384 diff --git a/www/node10/Makefile b/www/node10/Makefile index a09e361b330..446ce62c05a 100644 --- a/www/node10/Makefile +++ b/www/node10/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 10.16.2 +PORTVERSION= 10.16.3 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -68,7 +68,7 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ BUILD_DEPENDS+= c-ares>=1.15.0:dns/c-ares\ libuv>=1.28.0:devel/libuv \ - libnghttp2>=1.34.0:www/libnghttp2 + libnghttp2>=1.39.2:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 diff --git a/www/node10/distinfo b/www/node10/distinfo index 18879275a2b..9c7ae4db94d 100644 --- a/www/node10/distinfo +++ b/www/node10/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1565153509 -SHA256 (node-v10.16.2.tar.gz) = 5936ef12ab3f0ce5fbb6751c1bb41f626b6058f414a297b3d8c5eb418a27e8fe -SIZE (node-v10.16.2.tar.gz) = 45866780 +TIMESTAMP = 1565994495 +SHA256 (node-v10.16.3.tar.gz) = db5a5e03a815b84a1266a4b48bb6a6d887175705f84fd2472f0d28e5e305a1f8 +SIZE (node-v10.16.3.tar.gz) = 45870800 diff --git a/www/node8/Makefile b/www/node8/Makefile index 71394cc67d9..9e8cd581b84 100644 --- a/www/node8/Makefile +++ b/www/node8/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 8.16.0 -PORTREVISION= 1 +PORTVERSION= 8.16.1 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ @@ -67,7 +66,7 @@ MAKE_ENV+= CC.host=${CC} CFLAGS.host="${CFLAGS}" \ BUILD_DEPENDS+= c-ares>=1.10.0:dns/c-ares\ libuv>1.23.2:devel/libuv \ - libnghttp2>=1.33.0:www/libnghttp2 + libnghttp2>=1.39.2:www/libnghttp2 LIB_DEPENDS+= libcares.so:dns/c-ares\ libuv.so:devel/libuv \ libnghttp2.so:www/libnghttp2 diff --git a/www/node8/distinfo b/www/node8/distinfo index aba0db6cdff..a6744650ae4 100644 --- a/www/node8/distinfo +++ b/www/node8/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1555485506 -SHA256 (node-v8.16.0.tar.gz) = a1a885add3e511177f05676f0834df710886b68cb559b893169f8674a23adfcf -SIZE (node-v8.16.0.tar.gz) = 30661334 +TIMESTAMP = 1565994483 +SHA256 (node-v8.16.1.tar.gz) = 7666207212ac5cbd766b052951f57da62aaa641fedf83fabcb31dbb19f61169d +SIZE (node-v8.16.1.tar.gz) = 30666987 diff --git a/x11-wm/sway/Makefile b/x11-wm/sway/Makefile index 4f2b63b3665..d2c76366d43 100644 --- a/x11-wm/sway/Makefile +++ b/x11-wm/sway/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sway -DISTVERSION= 1.2-rc1 +DISTVERSION= 1.2-rc2 CATEGORIES= x11-wm MAINTAINER= jbeich@FreeBSD.org diff --git a/x11-wm/sway/distinfo b/x11-wm/sway/distinfo index 854ff01d29b..25a5ea80079 100644 --- a/x11-wm/sway/distinfo +++ b/x11-wm/sway/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1565312384 -SHA256 (swaywm-sway-1.2-rc1_GH0.tar.gz) = b5099a648a076f8bba0f67afdf6b040f927b5a9f2c7abc68ed37541f73702727 -SIZE (swaywm-sway-1.2-rc1_GH0.tar.gz) = 5491894 +TIMESTAMP = 1566280402 +SHA256 (swaywm-sway-1.2-rc2_GH0.tar.gz) = abf690b4f6fc1a89c156ac6318efeddcc7f0612c51e2b43e9964413666cfe3d0 +SIZE (swaywm-sway-1.2-rc2_GH0.tar.gz) = 5493343