diff --git a/audio/stk/Makefile b/audio/stk/Makefile index 795da754cad..05fb3da1fd9 100644 --- a/audio/stk/Makefile +++ b/audio/stk/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= stk -PORTVERSION= 4.5.1 +PORTVERSION= 4.6.0 CATEGORIES= audio MASTER_SITES= http://ccrma.stanford.edu/software/stk/release/ @@ -17,10 +17,13 @@ LIB_DEPENDS= libjack.so:audio/jack USES= autoreconf dos2unix gmake pkgconfig localbase USE_LDCONFIG= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-jack -DOS2UNIX_GLOB= *.cpp *.h +CONFIGURE_ARGS= --with-jack --with-oss +DOS2UNIX_GLOB= *.cpp *.h +MAKE_ARGS= RAWWAVES=${DATADIR}/rawwaves/ post-install: + @cd ${WRKSRC} && ${COPYTREE_SHARE} rawwaves ${STAGEDIR}${DATADIR} + @${RM} ${STAGEDIR}${DATADIR}/rawwaves/._* ${STAGEDIR}${DATADIR}/rawwaves/*.c @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libstk-${PORTVERSION}.so .include diff --git a/audio/stk/distinfo b/audio/stk/distinfo index b72a8faebb4..e80f9d11e5b 100644 --- a/audio/stk/distinfo +++ b/audio/stk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502358993 -SHA256 (stk-4.5.1.tar.gz) = 3466860901a181120d3bd0407e4aeb5ab24127a4350c314af106778c1db88594 -SIZE (stk-4.5.1.tar.gz) = 2413113 +TIMESTAMP = 1504376994 +SHA256 (stk-4.6.0.tar.gz) = 648fcb9a0a4243d2d93fc72b29955953f4e794edf04c31f2ed0ed720d05287d2 +SIZE (stk-4.6.0.tar.gz) = 2403223 diff --git a/audio/stk/files/patch-configure.ac b/audio/stk/files/patch-configure.ac index 92b8f950ed6..92b5739b525 100644 --- a/audio/stk/files/patch-configure.ac +++ b/audio/stk/files/patch-configure.ac @@ -1,4 +1,4 @@ ---- configure.ac.orig 2016-02-23 01:51:06 UTC +--- configure.ac.orig 2017-09-01 00:28:55 UTC +++ configure.ac @@ -85,7 +85,6 @@ if test "$debug" = "yes"; then else @@ -17,50 +17,44 @@ # Check compiler and use -Wall if gnu. if [test $GXX = "yes" ;] then -@@ -127,31 +126,31 @@ if test $realtime = yes; then - # Checks for package options and external software - AC_MSG_CHECKING(for audio API) +@@ -134,27 +133,27 @@ api="$api -D__UNIX_JACK__" + AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))]) + case $host in - *-*-linux*) -+ *-*-freebsd*) - AC_ARG_WITH(jack, [ --with-jack = choose JACK server support (mac and linux only)], [ - api="$api -D__UNIX_JACK__" - AC_MSG_RESULT(using JACK) - AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!)) -- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(Jack support also requires the asound library!))], ) -+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(Jack support also requires the asound library!))], ) - ++ *-*-linux*|*-*-freebsd*) # Look for ALSA flag -- AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)], [ +- AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)]) +- AS_IF([test "x$with_alsa" == "xyes"], [ - api="$api -D__LINUX_ALSA__" - AC_MSG_RESULT(using ALSA) -- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], ) -+ #AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)], [ +- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))]) ++ #AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)]) ++ #AS_IF([test "x$with_alsa" == "xyes"], [ + #api="$api -D__LINUX_ALSA__" + #AC_MSG_RESULT(using ALSA) -+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))], ) ++ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!))]) # Look for OSS flag -- AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (linux only)], [ + AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (unixes only)]) + AS_IF([test "x$with_oss" == "xyes"], [ - api="$api -D__LINUX_OSS__ -D__LINUX_ALSA__" -- AC_MSG_RESULT(using OSS) -- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))], ) -+ #AC_ARG_WITH(oss, [ --with-oss = choose OSS API support (linux only)], [ -+ #api="$api -D__LINUX_OSS__" -+ #AC_MSG_RESULT(using OSS) -+ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))], ) ++ api="$api -D__LINUX_OSS__" + AC_MSG_RESULT(using OSS) +- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))]) ++ #AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(OSS support requires ALSA for RtMidi!))]) # If no audio api flags specified, use ALSA -- if [test "$api" == "";] then +- AS_IF([test "$api" == ""], [ - AC_MSG_RESULT(using ALSA) - AC_SUBST( api, [-D__LINUX_ALSA__] ) - AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!)) -- fi -+ #if [test "$api" == "";] then +- ]) ++ #AS_IF([test "$api" == ""], [ + # AC_MSG_RESULT(using ALSA) + # AC_SUBST( api, [-D__LINUX_ALSA__] ) + # AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(ALSA support requires the asound library!)) -+ #fi ++ #]) AC_CHECK_LIB(pthread, pthread_create, , AC_MSG_ERROR(RtAudio requires the pthread library!)) ;; diff --git a/audio/stk/files/patch-src_RtAudio.cpp b/audio/stk/files/patch-src_RtAudio.cpp deleted file mode 100644 index 0cfd68e6734..00000000000 --- a/audio/stk/files/patch-src_RtAudio.cpp +++ /dev/null @@ -1,23 +0,0 @@ ---- src/RtAudio.cpp.orig 2016-02-23 01:51:06 UTC -+++ src/RtAudio.cpp -@@ -47,6 +47,11 @@ - #include - #include - -+#if defined(__FreeBSD__) -+#include -+#define AFMT_FLOAT 0x00004000 -+#endif -+ - // Static variable definitions. - const unsigned int RtApi::MAX_SAMPLE_RATES = 14; - const unsigned int RtApi::SAMPLE_RATES[] = { -@@ -9023,7 +9028,7 @@ bool RtApiOss :: probeDeviceOpen( unsign - } - - // Verify the sample rate setup worked. -- if ( abs( srate - sampleRate ) > 100 ) { -+ if ( abs( (int)(srate - sampleRate) ) > 100 ) { - close( fd ); - errorStream_ << "RtApiOss::probeDeviceOpen: device (" << ainfo.name << ") does not support sample rate (" << sampleRate << ")."; - errorText_ = errorStream_.str(); diff --git a/audio/stk/pkg-plist b/audio/stk/pkg-plist index 975074edde5..c14af15516f 100644 --- a/audio/stk/pkg-plist +++ b/audio/stk/pkg-plist @@ -101,5 +101,46 @@ include/stk/Whistle.h include/stk/Wurley.h include/stk/WvIn.h include/stk/WvOut.h -lib/libstk-4.5.1.so +lib/libstk-4.6.0.so lib/libstk.so +%%DATADIR%%/rawwaves/ahh.raw +%%DATADIR%%/rawwaves/bassdrum.raw +%%DATADIR%%/rawwaves/britestk.raw +%%DATADIR%%/rawwaves/cowbell1.raw +%%DATADIR%%/rawwaves/crashcym.raw +%%DATADIR%%/rawwaves/dope.raw +%%DATADIR%%/rawwaves/eee.raw +%%DATADIR%%/rawwaves/fwavblnk.raw +%%DATADIR%%/rawwaves/halfwave.raw +%%DATADIR%%/rawwaves/hihatcym.raw +%%DATADIR%%/rawwaves/impuls10.raw +%%DATADIR%%/rawwaves/impuls20.raw +%%DATADIR%%/rawwaves/impuls40.raw +%%DATADIR%%/rawwaves/mand1.raw +%%DATADIR%%/rawwaves/mand10.raw +%%DATADIR%%/rawwaves/mand11.raw +%%DATADIR%%/rawwaves/mand12.raw +%%DATADIR%%/rawwaves/mand2.raw +%%DATADIR%%/rawwaves/mand3.raw +%%DATADIR%%/rawwaves/mand4.raw +%%DATADIR%%/rawwaves/mand5.raw +%%DATADIR%%/rawwaves/mand6.raw +%%DATADIR%%/rawwaves/mand7.raw +%%DATADIR%%/rawwaves/mand8.raw +%%DATADIR%%/rawwaves/mand9.raw +%%DATADIR%%/rawwaves/mandpluk.raw +%%DATADIR%%/rawwaves/marmstk1.raw +%%DATADIR%%/rawwaves/ooo.raw +%%DATADIR%%/rawwaves/peksblnk.raw +%%DATADIR%%/rawwaves/ppksblnk.raw +%%DATADIR%%/rawwaves/ridecymb.raw +%%DATADIR%%/rawwaves/silence.raw +%%DATADIR%%/rawwaves/sineblnk.raw +%%DATADIR%%/rawwaves/sinewave.raw +%%DATADIR%%/rawwaves/snardrum.raw +%%DATADIR%%/rawwaves/snglpeak.raw +%%DATADIR%%/rawwaves/tambourn.raw +%%DATADIR%%/rawwaves/tomhidrm.raw +%%DATADIR%%/rawwaves/tomlowdr.raw +%%DATADIR%%/rawwaves/tommiddr.raw +%%DATADIR%%/rawwaves/twopeaks.raw diff --git a/databases/cego/Makefile b/databases/cego/Makefile index 86833c01410..5ce0af4d5c9 100644 --- a/databases/cego/Makefile +++ b/databases/cego/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.35.4 +PORTVERSION= 2.35.8 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ diff --git a/databases/cego/distinfo b/databases/cego/distinfo index 96c0f3b324e..43c6183d851 100644 --- a/databases/cego/distinfo +++ b/databases/cego/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504431444 -SHA256 (cego-2.35.4.tar.gz) = 09c365b29d7acc113e7f9d0b68eadfd4f8e10a271e46665e68536ab8ae3c865f -SIZE (cego-2.35.4.tar.gz) = 1415732 +TIMESTAMP = 1504989098 +SHA256 (cego-2.35.8.tar.gz) = 46356414492f8e114d301043e607c3b6821d4ceac24eb49746947fbf7a705307 +SIZE (cego-2.35.8.tar.gz) = 1415296 diff --git a/databases/dalmp/Makefile b/databases/dalmp/Makefile index 4e80861924a..bec9923f468 100644 --- a/databases/dalmp/Makefile +++ b/databases/dalmp/Makefile @@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v PORTREVISION= 1 CATEGORIES= databases -MAINTAINER= nbari@dalmp.com +MAINTAINER= nbari@tequila.io COMMENT= Database Abstraction Layer for MySQL using PHP LICENSE= BSD3CLAUSE diff --git a/databases/elixir-ecto/Makefile b/databases/elixir-ecto/Makefile index 6b04ef4f9c0..59da1e8960a 100644 --- a/databases/elixir-ecto/Makefile +++ b/databases/elixir-ecto/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ecto -PORTVERSION= 2.2.1 +PORTVERSION= 2.2.2 DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= elixir- diff --git a/databases/elixir-ecto/distinfo b/databases/elixir-ecto/distinfo index 194cf5b6098..ff3bf31b6b0 100644 --- a/databases/elixir-ecto/distinfo +++ b/databases/elixir-ecto/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504379308 -SHA256 (elixir-ecto-ecto-v2.2.1_GH0.tar.gz) = b7072e48d9f9ca0b4a5527d3c68d3ee385e5bbba2ddc60570bc73790f384fd68 -SIZE (elixir-ecto-ecto-v2.2.1_GH0.tar.gz) = 354032 +TIMESTAMP = 1505049179 +SHA256 (elixir-ecto-ecto-v2.2.2_GH0.tar.gz) = 0898f534210c40ff34cdad0fc9f9faaa0aa14301fe1b2950dcdaa30e13064a5c +SIZE (elixir-ecto-ecto-v2.2.2_GH0.tar.gz) = 356170 diff --git a/databases/mydumper/Makefile b/databases/mydumper/Makefile index 5fdfb4210aa..26c5deb095b 100644 --- a/databases/mydumper/Makefile +++ b/databases/mydumper/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mydumper -PORTVERSION= 0.9.1 +PORTVERSION= 0.9.3 DISTVERSIONPREFIX= v CATEGORIES= databases diff --git a/databases/mydumper/distinfo b/databases/mydumper/distinfo index 79bb4de37f3..d16b1d62801 100644 --- a/databases/mydumper/distinfo +++ b/databases/mydumper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1481642232 -SHA256 (maxbube-mydumper-v0.9.1_GH0.tar.gz) = 662ae410dbc5072136a9db3476514dc243c2f64189e1074a811ff03af1c05d79 -SIZE (maxbube-mydumper-v0.9.1_GH0.tar.gz) = 44692 +TIMESTAMP = 1505043409 +SHA256 (maxbube-mydumper-v0.9.3_GH0.tar.gz) = 2cd6a074bac7072905bd044ec20955c53c81b10e877ac9c644509940a8d201fb +SIZE (maxbube-mydumper-v0.9.3_GH0.tar.gz) = 45320 diff --git a/databases/rubygem-activemodel5/Makefile b/databases/rubygem-activemodel5/Makefile index 8da4e41e865..9c7d8b31f34 100644 --- a/databases/rubygem-activemodel5/Makefile +++ b/databases/rubygem-activemodel5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activemodel -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/databases/rubygem-activemodel5/distinfo b/databases/rubygem-activemodel5/distinfo index b42270b76da..c4a0de67608 100644 --- a/databases/rubygem-activemodel5/distinfo +++ b/databases/rubygem-activemodel5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862665 -SHA256 (rubygem/activemodel-5.1.3.gem) = ad3aa2e0dd9a003ea530e0806dd685e9c5574bfa36bb28aa3d182577c121babb -SIZE (rubygem/activemodel-5.1.3.gem) = 51200 +TIMESTAMP = 1504891636 +SHA256 (rubygem/activemodel-5.1.4.gem) = 4008ad8f54e149ddf3a7173aba743bf8b39e4eba517e91ba8704aea739129a63 +SIZE (rubygem/activemodel-5.1.4.gem) = 51200 diff --git a/databases/rubygem-activemodel50/Makefile b/databases/rubygem-activemodel50/Makefile index bcb242eadbd..1199e407572 100644 --- a/databases/rubygem-activemodel50/Makefile +++ b/databases/rubygem-activemodel50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activemodel -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/databases/rubygem-activemodel50/distinfo b/databases/rubygem-activemodel50/distinfo index 03bbe3508e8..d7baab6d6a1 100644 --- a/databases/rubygem-activemodel50/distinfo +++ b/databases/rubygem-activemodel50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604005 -SHA256 (rubygem/activemodel-5.0.5.gem) = e6b8fc4ffb6ab748b28e5a234d1d2f3e49689b0655166e188014a582b50cdee2 -SIZE (rubygem/activemodel-5.0.5.gem) = 53760 +TIMESTAMP = 1504891726 +SHA256 (rubygem/activemodel-5.0.6.gem) = f8f7d7e18df7fef01c1c299619c60e9b2becafc141450c3482b95ea85b6eebd6 +SIZE (rubygem/activemodel-5.0.6.gem) = 53760 diff --git a/databases/rubygem-activerecord5/Makefile b/databases/rubygem-activerecord5/Makefile index db0f004fd02..e16e2e23aba 100644 --- a/databases/rubygem-activerecord5/Makefile +++ b/databases/rubygem-activerecord5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activerecord -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/databases/rubygem-activerecord5/distinfo b/databases/rubygem-activerecord5/distinfo index 3d53d83a434..ab490ef9967 100644 --- a/databases/rubygem-activerecord5/distinfo +++ b/databases/rubygem-activerecord5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862673 -SHA256 (rubygem/activerecord-5.1.3.gem) = e83b04f42519e94a0aa51af06e61ea8aaacfa5cb8d67a1aebaf6f11d96ba7725 -SIZE (rubygem/activerecord-5.1.3.gem) = 352768 +TIMESTAMP = 1504891643 +SHA256 (rubygem/activerecord-5.1.4.gem) = 89be7874c962070c47ce52ea1182b9920c40f74f27da6d43670ed976aeb2413e +SIZE (rubygem/activerecord-5.1.4.gem) = 353280 diff --git a/databases/rubygem-activerecord50/Makefile b/databases/rubygem-activerecord50/Makefile index 1652f0b4cf4..222005c58ca 100644 --- a/databases/rubygem-activerecord50/Makefile +++ b/databases/rubygem-activerecord50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activerecord -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/databases/rubygem-activerecord50/distinfo b/databases/rubygem-activerecord50/distinfo index d72348204bb..39aa4f377e8 100644 --- a/databases/rubygem-activerecord50/distinfo +++ b/databases/rubygem-activerecord50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604013 -SHA256 (rubygem/activerecord-5.0.5.gem) = 89651a138aaf0755d2a9db7cda3e914e93f86b4504bcb31b41fb379e2dde28de -SIZE (rubygem/activerecord-5.0.5.gem) = 361984 +TIMESTAMP = 1504891734 +SHA256 (rubygem/activerecord-5.0.6.gem) = f0065962596bb8d483e0e308bca2611357e4844e86a9d53a99bbee826aa85a19 +SIZE (rubygem/activerecord-5.0.6.gem) = 361984 diff --git a/databases/tarantool/Makefile b/databases/tarantool/Makefile index ba8ecc1f5ee..f0e2ef9ffd1 100644 --- a/databases/tarantool/Makefile +++ b/databases/tarantool/Makefile @@ -3,6 +3,7 @@ PORTNAME= tarantool PORTVERSION= 1.7.4.260 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://download.tarantool.org/tarantool/1.7/src/ diff --git a/databases/tarantool/files/tarantool.in b/databases/tarantool/files/tarantool.in index 68a440cd3b4..ad8b5645e29 100644 --- a/databases/tarantool/files/tarantool.in +++ b/databases/tarantool/files/tarantool.in @@ -24,7 +24,7 @@ start_cmd="${name}_start" stop_cmd="${name}_stop" restart_cmd="${name}_restart" -INSTANCES=$(find ${tarantool_instances} -type l -name '*.lua') +INSTANCES=$(find ${tarantool_instances} -type l -name '*.lua' 2>/dev/null) TDAEMON=%%PREFIX%%/bin/tarantool TCTL=%%PREFIX%%/bin/tarantoolctl diff --git a/deskutils/py-vobject/Makefile b/deskutils/py-vobject/Makefile index 3cf435077ba..913b0710ae2 100644 --- a/deskutils/py-vobject/Makefile +++ b/deskutils/py-vobject/Makefile @@ -2,18 +2,27 @@ # $FreeBSD$ PORTNAME= vobject -PORTVERSION= 0.8.1c -PORTREVISION= 2 +PORTVERSION= 0.9.5 CATEGORIES= deskutils python -MASTER_SITES= http://vobject.skyhouseconsulting.com/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= jun-g@daemonfreaks.com COMMENT= ICalendar library -RUN_DEPENDS= py*-dateutil>=1.1:devel/py-dateutil +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE-2.0.txt +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=2.4.0:devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +NO_ARCH= yes USES= python USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= eventable + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} tests.py + .include diff --git a/deskutils/py-vobject/distinfo b/deskutils/py-vobject/distinfo index 9763b8c5d2a..aefcfd21b45 100644 --- a/deskutils/py-vobject/distinfo +++ b/deskutils/py-vobject/distinfo @@ -1,2 +1,3 @@ -SHA256 (vobject-0.8.1c.tar.gz) = 594113117f2017ed837c8f3ce727616f9053baa5a5463a7420c8249b8fc556f5 -SIZE (vobject-0.8.1c.tar.gz) = 59925 +TIMESTAMP = 1502588702 +SHA256 (eventable-vobject-0.9.5_GH0.tar.gz) = 344bd0e2b95c507a1b99fee44f4f2bf3e12991f14b6f181bf98eed42162db764 +SIZE (eventable-vobject-0.9.5_GH0.tar.gz) = 215577 diff --git a/deskutils/py-vobject/pkg-descr b/deskutils/py-vobject/pkg-descr index 70c39272ca8..de93a649952 100644 --- a/deskutils/py-vobject/pkg-descr +++ b/deskutils/py-vobject/pkg-descr @@ -2,4 +2,4 @@ Vobject parses iCalendar and vCard files into Python data structures, decoding the relevant encodings. Also serializes vobject data structures to iCalendar, vCard, or (expirementally) hCalendar unicode strings. -WWW: http://vobject.skyhouseconsulting.com/ +WWW: http://eventable.github.io/vobject/ diff --git a/devel/Makefile b/devel/Makefile index 71aaec1c516..668600cb748 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -38,6 +38,7 @@ SUBDIR += R-cran-hms SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools + SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark @@ -5205,6 +5206,7 @@ SUBDIR += qtscriptgenerator SUBDIR += quickcheck++ SUBDIR += quilt + SUBDIR += R-cran-withr SUBDIR += racer SUBDIR += radare2 SUBDIR += ragel diff --git a/devel/R-cran-lubridate/Makefile b/devel/R-cran-lubridate/Makefile new file mode 100644 index 00000000000..f5ee33e5c48 --- /dev/null +++ b/devel/R-cran-lubridate/Makefile @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= lubridate +PORTVERSION= 1.6.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Make Dealing with Dates a Little Easier + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-stringr>0:textproc/R-cran-stringr +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/devel/R-cran-lubridate/distinfo b/devel/R-cran-lubridate/distinfo new file mode 100644 index 00000000000..b74cbd6c886 --- /dev/null +++ b/devel/R-cran-lubridate/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505036380 +SHA256 (lubridate_1.6.0.tar.gz) = 1a87edfc2c57b22b6d9b49354545dd063e6c03a415544090b531c42423cf2632 +SIZE (lubridate_1.6.0.tar.gz) = 317672 diff --git a/devel/R-cran-lubridate/pkg-descr b/devel/R-cran-lubridate/pkg-descr new file mode 100644 index 00000000000..ac6097c415d --- /dev/null +++ b/devel/R-cran-lubridate/pkg-descr @@ -0,0 +1,8 @@ +Functions to work with date-times and time-spans: fast and user +friendly parsing of date-time data, extraction and updating of +components of a date-time (years, months, days, hours, minutes, and +seconds), algebraic manipulation on date-time and time-span objects. +The 'lubridate' package has a consistent and memorable syntax that +makes working with dates easy and fun. + +WWW: https://cran.r-project.org/web/packages/lubridate/ diff --git a/devel/R-cran-withr/Makefile b/devel/R-cran-withr/Makefile new file mode 100644 index 00000000000..714044339eb --- /dev/null +++ b/devel/R-cran-withr/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= withr +PORTVERSION= 2.0.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Run Code 'With' Temporarily Modified Global State + +LICENSE= GPLv2+ + +USES= cran:auto-plist + +.include diff --git a/devel/R-cran-withr/distinfo b/devel/R-cran-withr/distinfo new file mode 100644 index 00000000000..94d9f9b9185 --- /dev/null +++ b/devel/R-cran-withr/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505053715 +SHA256 (withr_2.0.0.tar.gz) = 36be55ca44cdf30517677f2e6e32d8bde4b581027714fb953a3d8fd19f4f9859 +SIZE (withr_2.0.0.tar.gz) = 16956 diff --git a/devel/R-cran-withr/pkg-descr b/devel/R-cran-withr/pkg-descr new file mode 100644 index 00000000000..e8e28fb1fb3 --- /dev/null +++ b/devel/R-cran-withr/pkg-descr @@ -0,0 +1,6 @@ +A set of functions to run code 'with' safely and temporarily modified +global state. Many of these functions were originally a part of the +'devtools' package, this provides a simple package with limited +dependencies to provide access to these functions. + +WWW: https://cran.r-project.org/web/packages/withr/ diff --git a/devel/elixir-paratize/Makefile b/devel/elixir-paratize/Makefile index d1fe450acaf..7944a9ef7de 100644 --- a/devel/elixir-paratize/Makefile +++ b/devel/elixir-paratize/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= elixir-paratize -PORTVERSION= 2.1.4 +PORTVERSION= 2.1.5 DISTVERSIONPREFIX= v CATEGORIES= devel diff --git a/devel/elixir-paratize/distinfo b/devel/elixir-paratize/distinfo index 715951386cf..ad2dc7898fd 100644 --- a/devel/elixir-paratize/distinfo +++ b/devel/elixir-paratize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1483977502 -SHA256 (seantanly-elixir-paratize-v2.1.4_GH0.tar.gz) = a21533b55bc1c8b73ce56ac5db6f1a1aeee290e5b5e30d3be0bd70cd5ade6d04 -SIZE (seantanly-elixir-paratize-v2.1.4_GH0.tar.gz) = 80036 +TIMESTAMP = 1505049278 +SHA256 (seantanly-elixir-paratize-v2.1.5_GH0.tar.gz) = c74552987c7522b1745f560bfe0ea2913a3a86d4db1c29dc2f88b2968ab95a87 +SIZE (seantanly-elixir-paratize-v2.1.5_GH0.tar.gz) = 7523 diff --git a/devel/elixir-smppex/Makefile b/devel/elixir-smppex/Makefile index 341a66062c9..11e2a217aa2 100644 --- a/devel/elixir-smppex/Makefile +++ b/devel/elixir-smppex/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= smppex -PORTVERSION= 2.0.1 +PORTVERSION= 2.1.0 DISTVERSIONPREFIX= v CATEGORIES= devel PKGNAMEPREFIX= elixir- diff --git a/devel/elixir-smppex/distinfo b/devel/elixir-smppex/distinfo index cd4cdf23f74..28c04eb668f 100644 --- a/devel/elixir-smppex/distinfo +++ b/devel/elixir-smppex/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504372112 -SHA256 (savonarola-smppex-v2.0.1_GH0.tar.gz) = 902d8fca8cecb2f5ad7abadbbf0f2e2f9a80fc5a183936f2b5399864a44c4a4f -SIZE (savonarola-smppex-v2.0.1_GH0.tar.gz) = 47209 +TIMESTAMP = 1505048803 +SHA256 (savonarola-smppex-v2.1.0_GH0.tar.gz) = c5e5f71f27820606dcf81e0aa7b5a8ca5336d2afe58121cf50604106fe4ba194 +SIZE (savonarola-smppex-v2.1.0_GH0.tar.gz) = 48371 diff --git a/devel/elixir-smppex/pkg-plist b/devel/elixir-smppex/pkg-plist index f2d701bbb1a..ced15b10f83 100644 --- a/devel/elixir-smppex/pkg-plist +++ b/devel/elixir-smppex/pkg-plist @@ -24,6 +24,7 @@ lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Protocol.Unpack.beam lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Protocol.beam lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.RawPdu.beam lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.SMPPTimers.beam +lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Session.AutoPduHandler.beam lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Session.Defaults.beam lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.Session.beam lib/elixir/lib/smppex/ebin/Elixir.SMPPEX.TransportSession.beam @@ -56,6 +57,7 @@ lib/elixir/lib/smppex/lib/smppex/protocol/unpack.ex lib/elixir/lib/smppex/lib/smppex/protocol/unpack/helpers.ex lib/elixir/lib/smppex/lib/smppex/raw_pdu.ex lib/elixir/lib/smppex/lib/smppex/session.ex +lib/elixir/lib/smppex/lib/smppex/session/auto_pdu_handler.ex lib/elixir/lib/smppex/lib/smppex/session/defaults.ex lib/elixir/lib/smppex/lib/smppex/smpp_timers.ex lib/elixir/lib/smppex/lib/smppex/transport_session.ex diff --git a/devel/git-modes/Makefile b/devel/git-modes/Makefile index ecf5945e4bd..4a55873fbca 100644 --- a/devel/git-modes/Makefile +++ b/devel/git-modes/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= git-modes -PORTVERSION= 1.2.4 +PORTVERSION= 1.2.6 PORTEPOCH= 1 CATEGORIES= devel elisp PKGNAMESUFFIX= -${EMACS_PORT_NAME} diff --git a/devel/git-modes/distinfo b/devel/git-modes/distinfo index e192c6381e6..35ae8d50c03 100644 --- a/devel/git-modes/distinfo +++ b/devel/git-modes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1497344364 -SHA256 (magit-git-modes-1.2.4_GH0.tar.gz) = 149d91b52ca222e360a9d22bdb6898243e8a3650580846e9ee927a2b81abb977 -SIZE (magit-git-modes-1.2.4_GH0.tar.gz) = 18087 +TIMESTAMP = 1504978180 +SHA256 (magit-git-modes-1.2.6_GH0.tar.gz) = fc02cbf6a152ba51a7c2492e31d038b27d3fc13ea91b6b20a0a9e5582c27e0a3 +SIZE (magit-git-modes-1.2.6_GH0.tar.gz) = 18086 diff --git a/devel/gitflow/Makefile b/devel/gitflow/Makefile index c67e3947cee..0f53c03d2c8 100644 --- a/devel/gitflow/Makefile +++ b/devel/gitflow/Makefile @@ -5,7 +5,7 @@ PORTNAME= gitflow PORTVERSION= 1.8.0 CATEGORIES= devel -MAINTAINER= nbari@dalmp.com +MAINTAINER= nbari@tequila.io COMMENT= Git extensions to provide high-level repository operations LICENSE= BSD2CLAUSE diff --git a/devel/gnatpython/Makefile b/devel/gnatpython/Makefile index 808fbacf934..570161ce4e9 100644 --- a/devel/gnatpython/Makefile +++ b/devel/gnatpython/Makefile @@ -9,12 +9,11 @@ MASTER_SITES= http://downloads.dragonlace.net/src/ MAINTAINER= ports@FreeBSD.org COMMENT= Python package used in Ada testsuites -LICENSE= GPLv3 +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING3 SNAPSHOT= 20140224 USES= python tar:bzip2 USE_PYTHON= distutils autoplist -NO_LICENSES_INSTALL= yes - .include diff --git a/devel/gnatpython/files/patch-setup__helpers.py b/devel/gnatpython/files/patch-setup__helpers.py index 51aa80ddbac..f2f2d841b2f 100644 --- a/devel/gnatpython/files/patch-setup__helpers.py +++ b/devel/gnatpython/files/patch-setup__helpers.py @@ -1,4 +1,4 @@ ---- setup_helpers.py.orig 2014-02-14 10:41:26.000000000 +0000 +--- setup_helpers.py.orig 2015-06-21 09:00:45 UTC +++ setup_helpers.py @@ -28,7 +28,7 @@ def build_scripts_gnatpython(root_dir='' os.system('gcc -o %sscripts/rlimit %ssrc/rlimit/rlimit-NT.c' % diff --git a/devel/gnatpython/pkg-descr b/devel/gnatpython/pkg-descr index 16ac9976d5a..6be9b6b2d19 100644 --- a/devel/gnatpython/pkg-descr +++ b/devel/gnatpython/pkg-descr @@ -2,4 +2,4 @@ GNATPython is a python package to ease development of testsuites and/or build scripts in a portable way. It is an extension to Ada which exports GNAT.Expect.TTY and requires the GNAT AUX compiler. -WWW: http://forge.open-do.org/projects/gnatpython +WWW: https://forge.open-do.org/projects/gnatpython diff --git a/devel/libvirt/Makefile b/devel/libvirt/Makefile index 6ad0ab3de57..63d8af55a77 100644 --- a/devel/libvirt/Makefile +++ b/devel/libvirt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 3.6.0 +PORTVERSION= 3.7.0 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ diff --git a/devel/libvirt/distinfo b/devel/libvirt/distinfo index c6a5f2e4047..300b0dbf39e 100644 --- a/devel/libvirt/distinfo +++ b/devel/libvirt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501681119 -SHA256 (libvirt-3.6.0.tar.xz) = 3a2c97f6950796f300f6a2e0404f4de8e51c3b9430cdb82738439adb0ac59e3d -SIZE (libvirt-3.6.0.tar.xz) = 14797704 +TIMESTAMP = 1504619135 +SHA256 (libvirt-3.7.0.tar.xz) = 4e7bcb209eeef99f026484293abc733e30ed06dabcdde62c4c3e95f71b2b67ba +SIZE (libvirt-3.7.0.tar.xz) = 14803752 diff --git a/devel/libvirt/pkg-plist b/devel/libvirt/pkg-plist index 748db0a105b..4d07270b4b5 100644 --- a/devel/libvirt/pkg-plist +++ b/devel/libvirt/pkg-plist @@ -35,6 +35,7 @@ man/man8/virtlogd.8.gz %%XEN%%@sample %%ETCDIR%%/libxl.conf.sample %%QEMU%%%%ETCDIR%%/qemu-lockd.conf %%XEN%%%%ETCDIR%%/libxl-lockd.conf +%%SASL%%etc/sasl2/libvirt.conf etc/logrotate.d/libvirtd etc/logrotate.d/libvirtd.lxc etc/logrotate.d/libvirtd.qemu @@ -220,6 +221,7 @@ share/augeas/lenses/tests/test_virtlogd.aug %%DOCSDIR%%%%PORTVERSION%%/html/migration-tunnel.png %%DOCSDIR%%%%PORTVERSION%%/html/migration-unmanaged-direct.png %%DOCSDIR%%%%PORTVERSION%%/html/migration.html +%%DOCSDIR%%%%PORTVERSION%%/html/mobile.css %%DOCSDIR%%%%PORTVERSION%%/html/news-2005.html %%DOCSDIR%%%%PORTVERSION%%/html/news-2006.html %%DOCSDIR%%%%PORTVERSION%%/html/news-2007.html @@ -235,6 +237,7 @@ share/augeas/lenses/tests/test_virtlogd.aug %%DOCSDIR%%%%PORTVERSION%%/html/news.html %%DOCSDIR%%%%PORTVERSION%%/html/node.gif %%DOCSDIR%%%%PORTVERSION%%/html/nss.html +%%DOCSDIR%%%%PORTVERSION%%/html/pci-hotplug.html %%DOCSDIR%%%%PORTVERSION%%/html/php.html %%DOCSDIR%%%%PORTVERSION%%/html/python.html %%DOCSDIR%%%%PORTVERSION%%/html/remote.html diff --git a/devel/py-libvirt/Makefile b/devel/py-libvirt/Makefile index f22cca629d8..21a91d28009 100644 --- a/devel/py-libvirt/Makefile +++ b/devel/py-libvirt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 3.6.0 +PORTVERSION= 3.7.0 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/python/ \ ftp://libvirt.org/libvirt/python/ diff --git a/devel/py-libvirt/distinfo b/devel/py-libvirt/distinfo index c3c552ce7b8..4f57a40fe70 100644 --- a/devel/py-libvirt/distinfo +++ b/devel/py-libvirt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501681470 -SHA256 (libvirt-python-3.6.0.tar.gz) = ecb9cbc8b1f33b245b04e3a937d8483584ab7a18258b217be96661343a4b1ad0 -SIZE (libvirt-python-3.6.0.tar.gz) = 181778 +TIMESTAMP = 1504927640 +SHA256 (libvirt-python-3.7.0.tar.gz) = 1e4a8a8b08ef8f2502088f26ce3aced415d55ef808d8301dfed023f45154c06f +SIZE (libvirt-python-3.7.0.tar.gz) = 182372 diff --git a/devel/py-pefile/Makefile b/devel/py-pefile/Makefile index 0f226569729..65e71c487b8 100644 --- a/devel/py-pefile/Makefile +++ b/devel/py-pefile/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pefile -PORTVERSION= 2017.8.1 +PORTVERSION= 2017.9.3 CATEGORIES= devel python MASTER_SITES= https://github.com/erocarrera/pefile/releases/download/v${PORTVERSION}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pefile/distinfo b/devel/py-pefile/distinfo index 71a875dbfc5..4ac687cba59 100644 --- a/devel/py-pefile/distinfo +++ b/devel/py-pefile/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502010353 -SHA256 (pefile-2017.8.1.tar.gz) = 363f7d1f4d58b7bf8a46dd8b1d48805d270d1ea4dab2526ce183d71ed89075b1 -SIZE (pefile-2017.8.1.tar.gz) = 60809 +TIMESTAMP = 1504533185 +SHA256 (pefile-2017.9.3.tar.gz) = 99d45ef48c290fb74e30507e259b77e2a3ce3a4f4eea35e8089cb24e2c514e4d +SIZE (pefile-2017.9.3.tar.gz) = 61722 diff --git a/devel/py-robotframework-pabot/Makefile b/devel/py-robotframework-pabot/Makefile index 772f9fd5469..4c2905f010e 100644 --- a/devel/py-robotframework-pabot/Makefile +++ b/devel/py-robotframework-pabot/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= robotframework-pabot -PORTVERSION= 0.37 +PORTVERSION= 0.38 CATEGORIES= devel www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-robotframework-pabot/distinfo b/devel/py-robotframework-pabot/distinfo index db33b3c73ce..6b9d23b4cf9 100644 --- a/devel/py-robotframework-pabot/distinfo +++ b/devel/py-robotframework-pabot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502406789 -SHA256 (robotframework-pabot-0.37.tar.gz) = 3665055fc59a4df64d7044ebb390191269117033b19133ee0ba36527c1aa4034 -SIZE (robotframework-pabot-0.37.tar.gz) = 11282 +TIMESTAMP = 1504958830 +SHA256 (robotframework-pabot-0.38.tar.gz) = 77bdb7f9794513b50728069f149e1b70697f69fc3836d6ac93af812a7110ca32 +SIZE (robotframework-pabot-0.38.tar.gz) = 11560 diff --git a/devel/py-twilio/Makefile b/devel/py-twilio/Makefile index 63d727837dd..4dcfc05cc05 100644 --- a/devel/py-twilio/Makefile +++ b/devel/py-twilio/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= twilio -PORTVERSION= 6.6.1 +PORTVERSION= 6.6.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-twilio/distinfo b/devel/py-twilio/distinfo index bce04aa2e40..3125446aead 100644 --- a/devel/py-twilio/distinfo +++ b/devel/py-twilio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504343233 -SHA256 (twilio-6.6.1.tar.gz) = 78e54ed9736a1a1c5b72018246cafd70d6d08aea6727f904404bec080c981e03 -SIZE (twilio-6.6.1.tar.gz) = 223886 +TIMESTAMP = 1504942535 +SHA256 (twilio-6.6.2.tar.gz) = f5bf2a2dbed16cfc3a67567d4cf28d74a7b3634789c1e5f13fcdb1d18f5eea34 +SIZE (twilio-6.6.2.tar.gz) = 225614 diff --git a/devel/rubygem-actionview5/Makefile b/devel/rubygem-actionview5/Makefile index 5bbdf853649..34ba37bee3f 100644 --- a/devel/rubygem-actionview5/Makefile +++ b/devel/rubygem-actionview5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionview -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/devel/rubygem-actionview5/distinfo b/devel/rubygem-actionview5/distinfo index 6b29dcd7e33..380f8858b2f 100644 --- a/devel/rubygem-actionview5/distinfo +++ b/devel/rubygem-actionview5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862680 -SHA256 (rubygem/actionview-5.1.3.gem) = b744e9cbb2760754fa4c3c2b57c68916756a5f032fa6307ca362379e02a48857 -SIZE (rubygem/actionview-5.1.3.gem) = 161280 +TIMESTAMP = 1504891652 +SHA256 (rubygem/actionview-5.1.4.gem) = 302f398a86337818e6f4225934b136436cab5fdfe2fcd6dd7509b1f595a417c2 +SIZE (rubygem/actionview-5.1.4.gem) = 161792 diff --git a/devel/rubygem-actionview50/Makefile b/devel/rubygem-actionview50/Makefile index b3c6dcc5f58..209d56bdabc 100644 --- a/devel/rubygem-actionview50/Makefile +++ b/devel/rubygem-actionview50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionview -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/devel/rubygem-actionview50/distinfo b/devel/rubygem-actionview50/distinfo index 67b0549218a..e595e862f75 100644 --- a/devel/rubygem-actionview50/distinfo +++ b/devel/rubygem-actionview50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604022 -SHA256 (rubygem/actionview-5.0.5.gem) = cb4d2928b63f29931a6d05adde78bcf7dac83bf79a05911547068af2da765a6b -SIZE (rubygem/actionview-5.0.5.gem) = 152576 +TIMESTAMP = 1504891742 +SHA256 (rubygem/actionview-5.0.6.gem) = 6d256fba84733b0dc8a22de7264ceb77ef2ddeae2913632300c76182ecd6d36d +SIZE (rubygem/actionview-5.0.6.gem) = 152576 diff --git a/devel/rubygem-activejob5/Makefile b/devel/rubygem-activejob5/Makefile index a8ed16d8797..a7865b35efa 100644 --- a/devel/rubygem-activejob5/Makefile +++ b/devel/rubygem-activejob5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activejob -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/devel/rubygem-activejob5/distinfo b/devel/rubygem-activejob5/distinfo index 8500fae005b..6c8d0d4e243 100644 --- a/devel/rubygem-activejob5/distinfo +++ b/devel/rubygem-activejob5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862687 -SHA256 (rubygem/activejob-5.1.3.gem) = 15e98c4bf71941ae81f7e4e7c5d9627c09cd9b4d0c1a36bf94b42910eb8874a3 -SIZE (rubygem/activejob-5.1.3.gem) = 25600 +TIMESTAMP = 1504891658 +SHA256 (rubygem/activejob-5.1.4.gem) = f7814fdf4a7592f7f6774f68c5adec53cbcbf825a61bae91219c730ba1cb6bca +SIZE (rubygem/activejob-5.1.4.gem) = 25600 diff --git a/devel/rubygem-activejob50/Makefile b/devel/rubygem-activejob50/Makefile index 8dbcbe54a0e..f4cdc5fbdaa 100644 --- a/devel/rubygem-activejob50/Makefile +++ b/devel/rubygem-activejob50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activejob -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/devel/rubygem-activejob50/distinfo b/devel/rubygem-activejob50/distinfo index db600a2a185..7896a962dfc 100644 --- a/devel/rubygem-activejob50/distinfo +++ b/devel/rubygem-activejob50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604028 -SHA256 (rubygem/activejob-5.0.5.gem) = af79fc954e9ddece35ef4975b9a244b2bb48a76e17a19c0dff7233fc75852877 -SIZE (rubygem/activejob-5.0.5.gem) = 25088 +TIMESTAMP = 1504891748 +SHA256 (rubygem/activejob-5.0.6.gem) = 78190e9f3ab0185734a123907cfa1b847e96d4b1303dcb8304e8bb0d26e64bcd +SIZE (rubygem/activejob-5.0.6.gem) = 25088 diff --git a/devel/rubygem-activesupport5/Makefile b/devel/rubygem-activesupport5/Makefile index 1dabf6b6cd3..6b82a99df5d 100644 --- a/devel/rubygem-activesupport5/Makefile +++ b/devel/rubygem-activesupport5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activesupport -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/devel/rubygem-activesupport5/distinfo b/devel/rubygem-activesupport5/distinfo index a8dbb7ee053..cfe4ef49732 100644 --- a/devel/rubygem-activesupport5/distinfo +++ b/devel/rubygem-activesupport5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862659 -SHA256 (rubygem/activesupport-5.1.3.gem) = b01fa04345c87526fd22affc4e46dd22bf125c608853d13bf093dab08c45219b -SIZE (rubygem/activesupport-5.1.3.gem) = 369664 +TIMESTAMP = 1504891630 +SHA256 (rubygem/activesupport-5.1.4.gem) = 9969d4fdc7e1fad82f02f457b03995baa74928e99f73d035564c9eec7426ee69 +SIZE (rubygem/activesupport-5.1.4.gem) = 370176 diff --git a/devel/rubygem-activesupport50/Makefile b/devel/rubygem-activesupport50/Makefile index 76011c38528..d88ac4772b0 100644 --- a/devel/rubygem-activesupport50/Makefile +++ b/devel/rubygem-activesupport50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= activesupport -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/devel/rubygem-activesupport50/distinfo b/devel/rubygem-activesupport50/distinfo index 6d20c30ea10..0c9c661cbde 100644 --- a/devel/rubygem-activesupport50/distinfo +++ b/devel/rubygem-activesupport50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501603999 -SHA256 (rubygem/activesupport-5.0.5.gem) = 00c714979fffa05846a2d044f24f9569a5ae471b2e20c73fdf3172f1d81edfb1 -SIZE (rubygem/activesupport-5.0.5.gem) = 363520 +TIMESTAMP = 1504891720 +SHA256 (rubygem/activesupport-5.0.6.gem) = e6f98107623edb19cc25ca2aab134b857f291529ab37a1d00b47560d30a6053d +SIZE (rubygem/activesupport-5.0.6.gem) = 363520 diff --git a/ftp/net2ftp/Makefile b/ftp/net2ftp/Makefile index 58163fe8ca9..83be7b4e113 100644 --- a/ftp/net2ftp/Makefile +++ b/ftp/net2ftp/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= net2ftp -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= ftp MASTER_SITES= http://www.net2ftp.com/download/ DISTNAME= ${PORTNAME}_v${PORTVERSION} @@ -12,11 +12,10 @@ COMMENT= Web-based FTP client written in PHP LICENSE= GPLv2 -USES= zip -IGNORE_WITH_PHP= 70 +USES= php zip NO_BUILD= YES .if !defined(WITHOUT_PHP_DEPENDS) -USE_PHP= ftp mysql pcre session zlib +USE_PHP= ftp mysqli pcre session zlib .endif SUB_FILES+= pkg-message diff --git a/ftp/net2ftp/distinfo b/ftp/net2ftp/distinfo index c0ab6bca92a..3b2efad01db 100644 --- a/ftp/net2ftp/distinfo +++ b/ftp/net2ftp/distinfo @@ -1,2 +1,3 @@ -SHA256 (net2ftp_v1.0.zip) = c0071ccec8fd0f1309904f5cacc7d5173b5a3b57bede70ea078d892c676c9c31 -SIZE (net2ftp_v1.0.zip) = 4460502 +TIMESTAMP = 1504983980 +SHA256 (net2ftp_v1.1.zip) = 25b5655dc3df7fa86b5973f88d0e9b14996d0c239ab9d689bd9612997a87c770 +SIZE (net2ftp_v1.1.zip) = 6302110 diff --git a/ftp/net2ftp/pkg-plist b/ftp/net2ftp/pkg-plist index c3230c0f60e..d7a1277e810 100644 --- a/ftp/net2ftp/pkg-plist +++ b/ftp/net2ftp/pkg-plist @@ -6,12 +6,6 @@ %%WWWDIR%%/favicon.png %%WWWDIR%%/help.html %%WWWDIR%%/htaccess.txt -%%WWWDIR%%/includes/StonePhpSafeCrypt.php -%%WWWDIR%%/includes/StonePhpSafeCrypt_blockscramble.php -%%WWWDIR%%/includes/StonePhpSafeCrypt_compressors.php -%%WWWDIR%%/includes/StonePhpSafeCrypt_config.php -%%WWWDIR%%/includes/StonePhpSafeCrypt_packcrypt.php -%%WWWDIR%%/includes/StonePhpSafeCrypt_testconfig.php %%WWWDIR%%/includes/authorizations.inc.php %%WWWDIR%%/includes/before430.inc.php %%WWWDIR%%/includes/browse.inc.php @@ -30,6 +24,7 @@ %%WWWDIR%%/includes/registerglobals.inc.php %%WWWDIR%%/includes/zip.lib.php %%WWWDIR%%/index.php +%%WWWDIR%%/index.xml.php %%WWWDIR%%/languages/ar-utf.inc.php %%WWWDIR%%/languages/ar.inc.php %%WWWDIR%%/languages/cs.inc.php @@ -37,6 +32,7 @@ %%WWWDIR%%/languages/de.inc.php %%WWWDIR%%/languages/en-utf.inc.php %%WWWDIR%%/languages/en.inc.php +%%WWWDIR%%/languages/en_raw.inc.php %%WWWDIR%%/languages/es.inc.php %%WWWDIR%%/languages/fi.inc.php %%WWWDIR%%/languages/fr.inc.php @@ -68,7 +64,7 @@ %%WWWDIR%%/modules/advanced_webserver/advanced_webserver.inc.php %%WWWDIR%%/modules/bookmark/bookmark.inc.php %%WWWDIR%%/modules/browse/browse.inc.php -%%WWWDIR%%/modules/browse/browse_main.js.php +%%WWWDIR%%/modules/browse/browse_main.js %%WWWDIR%%/modules/browse/browse_main_mobile.js %%WWWDIR%%/modules/browse/browse_popup.js %%WWWDIR%%/modules/calculatesize/calculatesize.inc.php @@ -96,6 +92,7 @@ %%WWWDIR%%/modules/newdir/newdir.inc.php %%WWWDIR%%/modules/raw/raw.inc.php %%WWWDIR%%/modules/rename/rename.inc.php +%%WWWDIR%%/modules/serverfingerprint/serverfingerprint.inc.php %%WWWDIR%%/modules/unzip/unzip.inc.php %%WWWDIR%%/modules/upload/upload.inc.php %%WWWDIR%%/modules/upload/upload.js @@ -103,60 +100,134 @@ %%WWWDIR%%/modules/zip/zip.inc.php %%WWWDIR%%/package_list.txt %%WWWDIR%%/plugins/ace/ace.js +%%WWWDIR%%/plugins/ace/ext-beautify.js +%%WWWDIR%%/plugins/ace/ext-chromevox.js +%%WWWDIR%%/plugins/ace/ext-elastic_tabstops_lite.js +%%WWWDIR%%/plugins/ace/ext-emmet.js +%%WWWDIR%%/plugins/ace/ext-error_marker.js +%%WWWDIR%%/plugins/ace/ext-keybinding_menu.js +%%WWWDIR%%/plugins/ace/ext-language_tools.js +%%WWWDIR%%/plugins/ace/ext-linking.js +%%WWWDIR%%/plugins/ace/ext-modelist.js +%%WWWDIR%%/plugins/ace/ext-old_ie.js +%%WWWDIR%%/plugins/ace/ext-searchbox.js +%%WWWDIR%%/plugins/ace/ext-settings_menu.js +%%WWWDIR%%/plugins/ace/ext-spellcheck.js +%%WWWDIR%%/plugins/ace/ext-split.js %%WWWDIR%%/plugins/ace/ext-static_highlight.js +%%WWWDIR%%/plugins/ace/ext-statusbar.js %%WWWDIR%%/plugins/ace/ext-textarea.js +%%WWWDIR%%/plugins/ace/ext-themelist.js +%%WWWDIR%%/plugins/ace/ext-whitespace.js %%WWWDIR%%/plugins/ace/keybinding-emacs.js %%WWWDIR%%/plugins/ace/keybinding-vim.js %%WWWDIR%%/plugins/ace/mode-abap.js +%%WWWDIR%%/plugins/ace/mode-abc.js +%%WWWDIR%%/plugins/ace/mode-actionscript.js +%%WWWDIR%%/plugins/ace/mode-ada.js +%%WWWDIR%%/plugins/ace/mode-apache_conf.js +%%WWWDIR%%/plugins/ace/mode-applescript.js %%WWWDIR%%/plugins/ace/mode-asciidoc.js +%%WWWDIR%%/plugins/ace/mode-assembly_x86.js +%%WWWDIR%%/plugins/ace/mode-autohotkey.js +%%WWWDIR%%/plugins/ace/mode-batchfile.js %%WWWDIR%%/plugins/ace/mode-c9search.js %%WWWDIR%%/plugins/ace/mode-c_cpp.js +%%WWWDIR%%/plugins/ace/mode-cirru.js %%WWWDIR%%/plugins/ace/mode-clojure.js +%%WWWDIR%%/plugins/ace/mode-cobol.js %%WWWDIR%%/plugins/ace/mode-coffee.js %%WWWDIR%%/plugins/ace/mode-coldfusion.js %%WWWDIR%%/plugins/ace/mode-csharp.js %%WWWDIR%%/plugins/ace/mode-css.js +%%WWWDIR%%/plugins/ace/mode-curly.js +%%WWWDIR%%/plugins/ace/mode-d.js %%WWWDIR%%/plugins/ace/mode-dart.js %%WWWDIR%%/plugins/ace/mode-diff.js +%%WWWDIR%%/plugins/ace/mode-django.js +%%WWWDIR%%/plugins/ace/mode-dockerfile.js %%WWWDIR%%/plugins/ace/mode-dot.js +%%WWWDIR%%/plugins/ace/mode-eiffel.js +%%WWWDIR%%/plugins/ace/mode-ejs.js +%%WWWDIR%%/plugins/ace/mode-elixir.js +%%WWWDIR%%/plugins/ace/mode-elm.js +%%WWWDIR%%/plugins/ace/mode-erlang.js +%%WWWDIR%%/plugins/ace/mode-forth.js +%%WWWDIR%%/plugins/ace/mode-ftl.js +%%WWWDIR%%/plugins/ace/mode-gcode.js +%%WWWDIR%%/plugins/ace/mode-gherkin.js +%%WWWDIR%%/plugins/ace/mode-gitignore.js %%WWWDIR%%/plugins/ace/mode-glsl.js %%WWWDIR%%/plugins/ace/mode-golang.js %%WWWDIR%%/plugins/ace/mode-groovy.js %%WWWDIR%%/plugins/ace/mode-haml.js +%%WWWDIR%%/plugins/ace/mode-handlebars.js +%%WWWDIR%%/plugins/ace/mode-haskell.js %%WWWDIR%%/plugins/ace/mode-haxe.js %%WWWDIR%%/plugins/ace/mode-html.js +%%WWWDIR%%/plugins/ace/mode-html_ruby.js +%%WWWDIR%%/plugins/ace/mode-ini.js +%%WWWDIR%%/plugins/ace/mode-io.js +%%WWWDIR%%/plugins/ace/mode-jack.js %%WWWDIR%%/plugins/ace/mode-jade.js %%WWWDIR%%/plugins/ace/mode-java.js %%WWWDIR%%/plugins/ace/mode-javascript.js %%WWWDIR%%/plugins/ace/mode-json.js +%%WWWDIR%%/plugins/ace/mode-jsoniq.js %%WWWDIR%%/plugins/ace/mode-jsp.js %%WWWDIR%%/plugins/ace/mode-jsx.js +%%WWWDIR%%/plugins/ace/mode-julia.js %%WWWDIR%%/plugins/ace/mode-latex.js +%%WWWDIR%%/plugins/ace/mode-lean.js %%WWWDIR%%/plugins/ace/mode-less.js %%WWWDIR%%/plugins/ace/mode-liquid.js %%WWWDIR%%/plugins/ace/mode-lisp.js +%%WWWDIR%%/plugins/ace/mode-live_script.js +%%WWWDIR%%/plugins/ace/mode-livescript.js +%%WWWDIR%%/plugins/ace/mode-logiql.js +%%WWWDIR%%/plugins/ace/mode-lsl.js %%WWWDIR%%/plugins/ace/mode-lua.js -%%WWWDIR%%/plugins/ace/mode-luahtml.js %%WWWDIR%%/plugins/ace/mode-luapage.js %%WWWDIR%%/plugins/ace/mode-lucene.js %%WWWDIR%%/plugins/ace/mode-makefile.js %%WWWDIR%%/plugins/ace/mode-markdown.js +%%WWWDIR%%/plugins/ace/mode-mask.js +%%WWWDIR%%/plugins/ace/mode-matlab.js +%%WWWDIR%%/plugins/ace/mode-mel.js +%%WWWDIR%%/plugins/ace/mode-mips_assembler.js +%%WWWDIR%%/plugins/ace/mode-mipsassembler.js +%%WWWDIR%%/plugins/ace/mode-mushcode.js +%%WWWDIR%%/plugins/ace/mode-mysql.js +%%WWWDIR%%/plugins/ace/mode-nix.js %%WWWDIR%%/plugins/ace/mode-objectivec.js %%WWWDIR%%/plugins/ace/mode-ocaml.js +%%WWWDIR%%/plugins/ace/mode-pascal.js %%WWWDIR%%/plugins/ace/mode-perl.js %%WWWDIR%%/plugins/ace/mode-pgsql.js %%WWWDIR%%/plugins/ace/mode-php.js +%%WWWDIR%%/plugins/ace/mode-plain_text.js %%WWWDIR%%/plugins/ace/mode-powershell.js +%%WWWDIR%%/plugins/ace/mode-praat.js +%%WWWDIR%%/plugins/ace/mode-prolog.js +%%WWWDIR%%/plugins/ace/mode-properties.js +%%WWWDIR%%/plugins/ace/mode-protobuf.js %%WWWDIR%%/plugins/ace/mode-python.js %%WWWDIR%%/plugins/ace/mode-r.js %%WWWDIR%%/plugins/ace/mode-rdoc.js %%WWWDIR%%/plugins/ace/mode-rhtml.js %%WWWDIR%%/plugins/ace/mode-ruby.js +%%WWWDIR%%/plugins/ace/mode-rust.js %%WWWDIR%%/plugins/ace/mode-sass.js %%WWWDIR%%/plugins/ace/mode-scad.js %%WWWDIR%%/plugins/ace/mode-scala.js +%%WWWDIR%%/plugins/ace/mode-scheme.js %%WWWDIR%%/plugins/ace/mode-scss.js %%WWWDIR%%/plugins/ace/mode-sh.js +%%WWWDIR%%/plugins/ace/mode-sjs.js +%%WWWDIR%%/plugins/ace/mode-smarty.js +%%WWWDIR%%/plugins/ace/mode-snippets.js +%%WWWDIR%%/plugins/ace/mode-soy_template.js +%%WWWDIR%%/plugins/ace/mode-space.js %%WWWDIR%%/plugins/ace/mode-sql.js %%WWWDIR%%/plugins/ace/mode-stylus.js %%WWWDIR%%/plugins/ace/mode-svg.js @@ -164,69 +235,292 @@ %%WWWDIR%%/plugins/ace/mode-tex.js %%WWWDIR%%/plugins/ace/mode-text.js %%WWWDIR%%/plugins/ace/mode-textile.js +%%WWWDIR%%/plugins/ace/mode-toml.js +%%WWWDIR%%/plugins/ace/mode-twig.js %%WWWDIR%%/plugins/ace/mode-typescript.js +%%WWWDIR%%/plugins/ace/mode-vala.js +%%WWWDIR%%/plugins/ace/mode-vbscript.js +%%WWWDIR%%/plugins/ace/mode-velocity.js +%%WWWDIR%%/plugins/ace/mode-verilog.js +%%WWWDIR%%/plugins/ace/mode-vhdl.js %%WWWDIR%%/plugins/ace/mode-xml.js %%WWWDIR%%/plugins/ace/mode-xquery.js %%WWWDIR%%/plugins/ace/mode-yaml.js +%%WWWDIR%%/plugins/ace/snippets/abap.js +%%WWWDIR%%/plugins/ace/snippets/abc.js +%%WWWDIR%%/plugins/ace/snippets/actionscript.js +%%WWWDIR%%/plugins/ace/snippets/ada.js +%%WWWDIR%%/plugins/ace/snippets/apache_conf.js +%%WWWDIR%%/plugins/ace/snippets/applescript.js +%%WWWDIR%%/plugins/ace/snippets/asciidoc.js +%%WWWDIR%%/plugins/ace/snippets/assembly_x86.js +%%WWWDIR%%/plugins/ace/snippets/autohotkey.js +%%WWWDIR%%/plugins/ace/snippets/batchfile.js +%%WWWDIR%%/plugins/ace/snippets/c9search.js +%%WWWDIR%%/plugins/ace/snippets/c_cpp.js +%%WWWDIR%%/plugins/ace/snippets/cirru.js +%%WWWDIR%%/plugins/ace/snippets/clojure.js +%%WWWDIR%%/plugins/ace/snippets/cobol.js +%%WWWDIR%%/plugins/ace/snippets/coffee.js +%%WWWDIR%%/plugins/ace/snippets/coldfusion.js +%%WWWDIR%%/plugins/ace/snippets/csharp.js +%%WWWDIR%%/plugins/ace/snippets/css.js +%%WWWDIR%%/plugins/ace/snippets/curly.js +%%WWWDIR%%/plugins/ace/snippets/d.js +%%WWWDIR%%/plugins/ace/snippets/dart.js +%%WWWDIR%%/plugins/ace/snippets/diff.js +%%WWWDIR%%/plugins/ace/snippets/django.js +%%WWWDIR%%/plugins/ace/snippets/dockerfile.js +%%WWWDIR%%/plugins/ace/snippets/dot.js +%%WWWDIR%%/plugins/ace/snippets/eiffel.js +%%WWWDIR%%/plugins/ace/snippets/ejs.js +%%WWWDIR%%/plugins/ace/snippets/elixir.js +%%WWWDIR%%/plugins/ace/snippets/elm.js +%%WWWDIR%%/plugins/ace/snippets/erlang.js +%%WWWDIR%%/plugins/ace/snippets/forth.js +%%WWWDIR%%/plugins/ace/snippets/ftl.js +%%WWWDIR%%/plugins/ace/snippets/gcode.js +%%WWWDIR%%/plugins/ace/snippets/gherkin.js +%%WWWDIR%%/plugins/ace/snippets/gitignore.js +%%WWWDIR%%/plugins/ace/snippets/glsl.js +%%WWWDIR%%/plugins/ace/snippets/golang.js +%%WWWDIR%%/plugins/ace/snippets/groovy.js +%%WWWDIR%%/plugins/ace/snippets/haml.js +%%WWWDIR%%/plugins/ace/snippets/handlebars.js +%%WWWDIR%%/plugins/ace/snippets/haskell.js +%%WWWDIR%%/plugins/ace/snippets/haxe.js +%%WWWDIR%%/plugins/ace/snippets/html.js +%%WWWDIR%%/plugins/ace/snippets/html_ruby.js +%%WWWDIR%%/plugins/ace/snippets/ini.js +%%WWWDIR%%/plugins/ace/snippets/io.js +%%WWWDIR%%/plugins/ace/snippets/jack.js +%%WWWDIR%%/plugins/ace/snippets/jade.js +%%WWWDIR%%/plugins/ace/snippets/java.js +%%WWWDIR%%/plugins/ace/snippets/javascript.js +%%WWWDIR%%/plugins/ace/snippets/json.js +%%WWWDIR%%/plugins/ace/snippets/jsoniq.js +%%WWWDIR%%/plugins/ace/snippets/jsp.js +%%WWWDIR%%/plugins/ace/snippets/jsx.js +%%WWWDIR%%/plugins/ace/snippets/julia.js +%%WWWDIR%%/plugins/ace/snippets/latex.js +%%WWWDIR%%/plugins/ace/snippets/lean.js +%%WWWDIR%%/plugins/ace/snippets/less.js +%%WWWDIR%%/plugins/ace/snippets/liquid.js +%%WWWDIR%%/plugins/ace/snippets/lisp.js +%%WWWDIR%%/plugins/ace/snippets/live_script.js +%%WWWDIR%%/plugins/ace/snippets/livescript.js +%%WWWDIR%%/plugins/ace/snippets/logiql.js +%%WWWDIR%%/plugins/ace/snippets/lsl.js +%%WWWDIR%%/plugins/ace/snippets/lua.js +%%WWWDIR%%/plugins/ace/snippets/luapage.js +%%WWWDIR%%/plugins/ace/snippets/lucene.js +%%WWWDIR%%/plugins/ace/snippets/makefile.js +%%WWWDIR%%/plugins/ace/snippets/markdown.js +%%WWWDIR%%/plugins/ace/snippets/mask.js +%%WWWDIR%%/plugins/ace/snippets/matlab.js +%%WWWDIR%%/plugins/ace/snippets/mel.js +%%WWWDIR%%/plugins/ace/snippets/mips_assembler.js +%%WWWDIR%%/plugins/ace/snippets/mipsassembler.js +%%WWWDIR%%/plugins/ace/snippets/mushcode.js +%%WWWDIR%%/plugins/ace/snippets/mysql.js +%%WWWDIR%%/plugins/ace/snippets/nix.js +%%WWWDIR%%/plugins/ace/snippets/objectivec.js +%%WWWDIR%%/plugins/ace/snippets/ocaml.js +%%WWWDIR%%/plugins/ace/snippets/pascal.js +%%WWWDIR%%/plugins/ace/snippets/perl.js +%%WWWDIR%%/plugins/ace/snippets/pgsql.js +%%WWWDIR%%/plugins/ace/snippets/php.js +%%WWWDIR%%/plugins/ace/snippets/plain_text.js +%%WWWDIR%%/plugins/ace/snippets/powershell.js +%%WWWDIR%%/plugins/ace/snippets/praat.js +%%WWWDIR%%/plugins/ace/snippets/prolog.js +%%WWWDIR%%/plugins/ace/snippets/properties.js +%%WWWDIR%%/plugins/ace/snippets/protobuf.js +%%WWWDIR%%/plugins/ace/snippets/python.js +%%WWWDIR%%/plugins/ace/snippets/r.js +%%WWWDIR%%/plugins/ace/snippets/rdoc.js +%%WWWDIR%%/plugins/ace/snippets/rhtml.js +%%WWWDIR%%/plugins/ace/snippets/ruby.js +%%WWWDIR%%/plugins/ace/snippets/rust.js +%%WWWDIR%%/plugins/ace/snippets/sass.js +%%WWWDIR%%/plugins/ace/snippets/scad.js +%%WWWDIR%%/plugins/ace/snippets/scala.js +%%WWWDIR%%/plugins/ace/snippets/scheme.js +%%WWWDIR%%/plugins/ace/snippets/scss.js +%%WWWDIR%%/plugins/ace/snippets/sh.js +%%WWWDIR%%/plugins/ace/snippets/sjs.js +%%WWWDIR%%/plugins/ace/snippets/smarty.js +%%WWWDIR%%/plugins/ace/snippets/snippets.js +%%WWWDIR%%/plugins/ace/snippets/soy_template.js +%%WWWDIR%%/plugins/ace/snippets/space.js +%%WWWDIR%%/plugins/ace/snippets/sql.js +%%WWWDIR%%/plugins/ace/snippets/stylus.js +%%WWWDIR%%/plugins/ace/snippets/svg.js +%%WWWDIR%%/plugins/ace/snippets/tcl.js +%%WWWDIR%%/plugins/ace/snippets/tex.js +%%WWWDIR%%/plugins/ace/snippets/text.js +%%WWWDIR%%/plugins/ace/snippets/textile.js +%%WWWDIR%%/plugins/ace/snippets/toml.js +%%WWWDIR%%/plugins/ace/snippets/twig.js +%%WWWDIR%%/plugins/ace/snippets/typescript.js +%%WWWDIR%%/plugins/ace/snippets/vala.js +%%WWWDIR%%/plugins/ace/snippets/vbscript.js +%%WWWDIR%%/plugins/ace/snippets/velocity.js +%%WWWDIR%%/plugins/ace/snippets/verilog.js +%%WWWDIR%%/plugins/ace/snippets/vhdl.js +%%WWWDIR%%/plugins/ace/snippets/xml.js +%%WWWDIR%%/plugins/ace/snippets/xquery.js +%%WWWDIR%%/plugins/ace/snippets/yaml.js +%%WWWDIR%%/plugins/ace/theme-ambiance.js +%%WWWDIR%%/plugins/ace/theme-chaos.js +%%WWWDIR%%/plugins/ace/theme-chrome.js +%%WWWDIR%%/plugins/ace/theme-clouds.js +%%WWWDIR%%/plugins/ace/theme-clouds_midnight.js +%%WWWDIR%%/plugins/ace/theme-cobalt.js +%%WWWDIR%%/plugins/ace/theme-crimson_editor.js +%%WWWDIR%%/plugins/ace/theme-dawn.js +%%WWWDIR%%/plugins/ace/theme-dreamweaver.js %%WWWDIR%%/plugins/ace/theme-eclipse.js +%%WWWDIR%%/plugins/ace/theme-github.js +%%WWWDIR%%/plugins/ace/theme-idle_fingers.js +%%WWWDIR%%/plugins/ace/theme-katzenmilch.js +%%WWWDIR%%/plugins/ace/theme-kr_theme.js +%%WWWDIR%%/plugins/ace/theme-kuroir.js +%%WWWDIR%%/plugins/ace/theme-merbivore.js +%%WWWDIR%%/plugins/ace/theme-merbivore_soft.js +%%WWWDIR%%/plugins/ace/theme-mono_industrial.js +%%WWWDIR%%/plugins/ace/theme-monokai.js +%%WWWDIR%%/plugins/ace/theme-pastel_on_dark.js +%%WWWDIR%%/plugins/ace/theme-solarized_dark.js +%%WWWDIR%%/plugins/ace/theme-solarized_light.js +%%WWWDIR%%/plugins/ace/theme-terminal.js +%%WWWDIR%%/plugins/ace/theme-textmate.js +%%WWWDIR%%/plugins/ace/theme-tomorrow.js +%%WWWDIR%%/plugins/ace/theme-tomorrow_night.js +%%WWWDIR%%/plugins/ace/theme-tomorrow_night_blue.js +%%WWWDIR%%/plugins/ace/theme-tomorrow_night_bright.js +%%WWWDIR%%/plugins/ace/theme-tomorrow_night_eighties.js +%%WWWDIR%%/plugins/ace/theme-twilight.js +%%WWWDIR%%/plugins/ace/theme-vibrant_ink.js +%%WWWDIR%%/plugins/ace/theme-xcode.js %%WWWDIR%%/plugins/ace/worker-coffee.js %%WWWDIR%%/plugins/ace/worker-css.js +%%WWWDIR%%/plugins/ace/worker-html.js %%WWWDIR%%/plugins/ace/worker-javascript.js %%WWWDIR%%/plugins/ace/worker-json.js +%%WWWDIR%%/plugins/ace/worker-lua.js +%%WWWDIR%%/plugins/ace/worker-php.js +%%WWWDIR%%/plugins/ace/worker-xml.js %%WWWDIR%%/plugins/ace/worker-xquery.js %%WWWDIR%%/plugins/ckeditor/CHANGES.md %%WWWDIR%%/plugins/ckeditor/LICENSE.md %%WWWDIR%%/plugins/ckeditor/README.md +%%WWWDIR%%/plugins/ckeditor/adapters/jquery.js %%WWWDIR%%/plugins/ckeditor/build-config.js %%WWWDIR%%/plugins/ckeditor/ckeditor.js %%WWWDIR%%/plugins/ckeditor/config.js %%WWWDIR%%/plugins/ckeditor/contents.css +%%WWWDIR%%/plugins/ckeditor/lang/af.js %%WWWDIR%%/plugins/ckeditor/lang/ar.js +%%WWWDIR%%/plugins/ckeditor/lang/bg.js +%%WWWDIR%%/plugins/ckeditor/lang/bn.js +%%WWWDIR%%/plugins/ckeditor/lang/bs.js +%%WWWDIR%%/plugins/ckeditor/lang/ca.js %%WWWDIR%%/plugins/ckeditor/lang/cs.js +%%WWWDIR%%/plugins/ckeditor/lang/cy.js %%WWWDIR%%/plugins/ckeditor/lang/da.js +%%WWWDIR%%/plugins/ckeditor/lang/de-ch.js %%WWWDIR%%/plugins/ckeditor/lang/de.js +%%WWWDIR%%/plugins/ckeditor/lang/el.js +%%WWWDIR%%/plugins/ckeditor/lang/en-au.js +%%WWWDIR%%/plugins/ckeditor/lang/en-ca.js +%%WWWDIR%%/plugins/ckeditor/lang/en-gb.js %%WWWDIR%%/plugins/ckeditor/lang/en.js +%%WWWDIR%%/plugins/ckeditor/lang/eo.js %%WWWDIR%%/plugins/ckeditor/lang/es.js +%%WWWDIR%%/plugins/ckeditor/lang/et.js +%%WWWDIR%%/plugins/ckeditor/lang/eu.js +%%WWWDIR%%/plugins/ckeditor/lang/fa.js %%WWWDIR%%/plugins/ckeditor/lang/fi.js +%%WWWDIR%%/plugins/ckeditor/lang/fo.js +%%WWWDIR%%/plugins/ckeditor/lang/fr-ca.js %%WWWDIR%%/plugins/ckeditor/lang/fr.js +%%WWWDIR%%/plugins/ckeditor/lang/gl.js +%%WWWDIR%%/plugins/ckeditor/lang/gu.js %%WWWDIR%%/plugins/ckeditor/lang/he.js +%%WWWDIR%%/plugins/ckeditor/lang/hi.js +%%WWWDIR%%/plugins/ckeditor/lang/hr.js %%WWWDIR%%/plugins/ckeditor/lang/hu.js +%%WWWDIR%%/plugins/ckeditor/lang/id.js %%WWWDIR%%/plugins/ckeditor/lang/is.js %%WWWDIR%%/plugins/ckeditor/lang/it.js %%WWWDIR%%/plugins/ckeditor/lang/ja.js +%%WWWDIR%%/plugins/ckeditor/lang/ka.js +%%WWWDIR%%/plugins/ckeditor/lang/km.js +%%WWWDIR%%/plugins/ckeditor/lang/ko.js +%%WWWDIR%%/plugins/ckeditor/lang/ku.js +%%WWWDIR%%/plugins/ckeditor/lang/lt.js +%%WWWDIR%%/plugins/ckeditor/lang/lv.js +%%WWWDIR%%/plugins/ckeditor/lang/mk.js +%%WWWDIR%%/plugins/ckeditor/lang/mn.js +%%WWWDIR%%/plugins/ckeditor/lang/ms.js +%%WWWDIR%%/plugins/ckeditor/lang/nb.js %%WWWDIR%%/plugins/ckeditor/lang/nl.js +%%WWWDIR%%/plugins/ckeditor/lang/no.js %%WWWDIR%%/plugins/ckeditor/lang/pl.js +%%WWWDIR%%/plugins/ckeditor/lang/pt-br.js %%WWWDIR%%/plugins/ckeditor/lang/pt.js +%%WWWDIR%%/plugins/ckeditor/lang/ro.js %%WWWDIR%%/plugins/ckeditor/lang/ru.js +%%WWWDIR%%/plugins/ckeditor/lang/si.js +%%WWWDIR%%/plugins/ckeditor/lang/sk.js +%%WWWDIR%%/plugins/ckeditor/lang/sl.js +%%WWWDIR%%/plugins/ckeditor/lang/sq.js +%%WWWDIR%%/plugins/ckeditor/lang/sr-latn.js +%%WWWDIR%%/plugins/ckeditor/lang/sr.js %%WWWDIR%%/plugins/ckeditor/lang/sv.js +%%WWWDIR%%/plugins/ckeditor/lang/th.js %%WWWDIR%%/plugins/ckeditor/lang/tr.js +%%WWWDIR%%/plugins/ckeditor/lang/tt.js +%%WWWDIR%%/plugins/ckeditor/lang/ug.js +%%WWWDIR%%/plugins/ckeditor/lang/uk.js %%WWWDIR%%/plugins/ckeditor/lang/vi.js %%WWWDIR%%/plugins/ckeditor/lang/zh-cn.js %%WWWDIR%%/plugins/ckeditor/lang/zh.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/af.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/da.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/de-ch.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/de.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/el.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/en.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/es.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/et.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/he.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/id.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/it.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/km.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js @@ -240,57 +534,97 @@ %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/si.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/th.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js %%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js +%%WWWDIR%%/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js %%WWWDIR%%/plugins/ckeditor/plugins/about/dialogs/about.js +%%WWWDIR%%/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png %%WWWDIR%%/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png %%WWWDIR%%/plugins/ckeditor/plugins/clipboard/dialogs/paste.js %%WWWDIR%%/plugins/ckeditor/plugins/dialog/dialogDefinition.js -%%WWWDIR%%/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif %%WWWDIR%%/plugins/ckeditor/plugins/icons.png +%%WWWDIR%%/plugins/ckeditor/plugins/icons_hidpi.png %%WWWDIR%%/plugins/ckeditor/plugins/image/dialogs/image.js %%WWWDIR%%/plugins/ckeditor/plugins/image/images/noimage.png %%WWWDIR%%/plugins/ckeditor/plugins/link/dialogs/anchor.js %%WWWDIR%%/plugins/ckeditor/plugins/link/dialogs/link.js %%WWWDIR%%/plugins/ckeditor/plugins/link/images/anchor.png +%%WWWDIR%%/plugins/ckeditor/plugins/link/images/hidpi/anchor.png +%%WWWDIR%%/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png +%%WWWDIR%%/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png +%%WWWDIR%%/plugins/ckeditor/plugins/magicline/images/icon-rtl.png %%WWWDIR%%/plugins/ckeditor/plugins/magicline/images/icon.png %%WWWDIR%%/plugins/ckeditor/plugins/pastefromword/filter/default.js +%%WWWDIR%%/plugins/ckeditor/plugins/scayt/CHANGELOG.md %%WWWDIR%%/plugins/ckeditor/plugins/scayt/LICENSE.md %%WWWDIR%%/plugins/ckeditor/plugins/scayt/README.md %%WWWDIR%%/plugins/ckeditor/plugins/scayt/dialogs/options.js %%WWWDIR%%/plugins/ckeditor/plugins/scayt/dialogs/toolbar.css %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/af.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/ar.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/bg.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/ca.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/cs.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/cy.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/da.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/de.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/el.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/en.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/eo.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/es.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/et.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/eu.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/fa.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/fi.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/fr.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/gl.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/he.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/hr.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/hu.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/id.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/it.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/ja.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/km.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/ko.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/ku.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/lt.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/lv.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/nb.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/nl.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/no.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/pl.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/ru.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/si.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/sk.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/sl.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/sq.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/sv.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/th.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/tr.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/tt.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/ug.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/uk.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/vi.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js +%%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh.js %%WWWDIR%%/plugins/ckeditor/plugins/specialchar/dialogs/specialchar.js %%WWWDIR%%/plugins/ckeditor/plugins/table/dialogs/table.js %%WWWDIR%%/plugins/ckeditor/plugins/tabletools/dialogs/tableCell.js @@ -300,12 +634,76 @@ %%WWWDIR%%/plugins/ckeditor/plugins/wsc/dialogs/tmpFrameset.html %%WWWDIR%%/plugins/ckeditor/plugins/wsc/dialogs/wsc.css %%WWWDIR%%/plugins/ckeditor/plugins/wsc/dialogs/wsc.js +%%WWWDIR%%/plugins/ckeditor/plugins/wsc/dialogs/wsc_ie.js +%%WWWDIR%%/plugins/ckeditor/samples/css/samples.css +%%WWWDIR%%/plugins/ckeditor/samples/img/github-top.png +%%WWWDIR%%/plugins/ckeditor/samples/img/header-bg.png +%%WWWDIR%%/plugins/ckeditor/samples/img/header-separator.png +%%WWWDIR%%/plugins/ckeditor/samples/img/logo.png +%%WWWDIR%%/plugins/ckeditor/samples/img/navigation-tip.png +%%WWWDIR%%/plugins/ckeditor/samples/index.html +%%WWWDIR%%/plugins/ckeditor/samples/js/sample.js +%%WWWDIR%%/plugins/ckeditor/samples/js/sf.js +%%WWWDIR%%/plugins/ckeditor/samples/old/ajax.html +%%WWWDIR%%/plugins/ckeditor/samples/old/api.html +%%WWWDIR%%/plugins/ckeditor/samples/old/appendto.html +%%WWWDIR%%/plugins/ckeditor/samples/old/assets/inlineall/logo.png +%%WWWDIR%%/plugins/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css +%%WWWDIR%%/plugins/ckeditor/samples/old/assets/posteddata.php +%%WWWDIR%%/plugins/ckeditor/samples/old/assets/sample.jpg +%%WWWDIR%%/plugins/ckeditor/samples/old/assets/uilanguages/languages.js +%%WWWDIR%%/plugins/ckeditor/samples/old/datafiltering.html +%%WWWDIR%%/plugins/ckeditor/samples/old/dialog/assets/my_dialog.js +%%WWWDIR%%/plugins/ckeditor/samples/old/dialog/dialog.html +%%WWWDIR%%/plugins/ckeditor/samples/old/divreplace.html +%%WWWDIR%%/plugins/ckeditor/samples/old/enterkey/enterkey.html +%%WWWDIR%%/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla +%%WWWDIR%%/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf +%%WWWDIR%%/plugins/ckeditor/samples/old/htmlwriter/assets/outputforflash/swfobject.js +%%WWWDIR%%/plugins/ckeditor/samples/old/htmlwriter/outputforflash.html +%%WWWDIR%%/plugins/ckeditor/samples/old/htmlwriter/outputhtml.html +%%WWWDIR%%/plugins/ckeditor/samples/old/index.html +%%WWWDIR%%/plugins/ckeditor/samples/old/inlineall.html +%%WWWDIR%%/plugins/ckeditor/samples/old/inlinebycode.html +%%WWWDIR%%/plugins/ckeditor/samples/old/inlinetextarea.html +%%WWWDIR%%/plugins/ckeditor/samples/old/jquery.html +%%WWWDIR%%/plugins/ckeditor/samples/old/magicline/magicline.html +%%WWWDIR%%/plugins/ckeditor/samples/old/readonly.html +%%WWWDIR%%/plugins/ckeditor/samples/old/replacebyclass.html +%%WWWDIR%%/plugins/ckeditor/samples/old/replacebycode.html +%%WWWDIR%%/plugins/ckeditor/samples/old/sample.css +%%WWWDIR%%/plugins/ckeditor/samples/old/sample.js +%%WWWDIR%%/plugins/ckeditor/samples/old/sample_posteddata.php +%%WWWDIR%%/plugins/ckeditor/samples/old/tabindex.html +%%WWWDIR%%/plugins/ckeditor/samples/old/toolbar/toolbar.html +%%WWWDIR%%/plugins/ckeditor/samples/old/uicolor.html +%%WWWDIR%%/plugins/ckeditor/samples/old/uilanguages.html +%%WWWDIR%%/plugins/ckeditor/samples/old/wysiwygarea/fullpage.html +%%WWWDIR%%/plugins/ckeditor/samples/old/xhtmlstyle.html +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/css/fontello.css +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/font/config.json +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.svg +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/index.html +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.css +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.js +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/lib/codemirror/javascript.js +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css +%%WWWDIR%%/plugins/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.js %%WWWDIR%%/plugins/ckeditor/skins/moono/dialog.css %%WWWDIR%%/plugins/ckeditor/skins/moono/dialog_ie.css %%WWWDIR%%/plugins/ckeditor/skins/moono/dialog_ie7.css %%WWWDIR%%/plugins/ckeditor/skins/moono/dialog_ie8.css %%WWWDIR%%/plugins/ckeditor/skins/moono/dialog_iequirks.css -%%WWWDIR%%/plugins/ckeditor/skins/moono/dialog_opera.css %%WWWDIR%%/plugins/ckeditor/skins/moono/editor.css %%WWWDIR%%/plugins/ckeditor/skins/moono/editor_gecko.css %%WWWDIR%%/plugins/ckeditor/skins/moono/editor_ie.css @@ -313,9 +711,17 @@ %%WWWDIR%%/plugins/ckeditor/skins/moono/editor_ie8.css %%WWWDIR%%/plugins/ckeditor/skins/moono/editor_iequirks.css %%WWWDIR%%/plugins/ckeditor/skins/moono/icons.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/icons_hidpi.png %%WWWDIR%%/plugins/ckeditor/skins/moono/images/arrow.png %%WWWDIR%%/plugins/ckeditor/skins/moono/images/close.png -%%WWWDIR%%/plugins/ckeditor/skins/moono/images/mini.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/hidpi/close.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/hidpi/lock.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/hidpi/refresh.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/lock-open.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/lock.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/refresh.png +%%WWWDIR%%/plugins/ckeditor/skins/moono/images/spinner.gif %%WWWDIR%%/plugins/ckeditor/skins/moono/readme.md %%WWWDIR%%/plugins/ckeditor/styles.js %%WWWDIR%%/plugins/jscalendar/ChangeLog @@ -458,583 +864,118 @@ %%WWWDIR%%/plugins/luminous/style/zenophilia.css %%WWWDIR%%/plugins/luminous/supported.php %%WWWDIR%%/plugins/luminous/versioncheck.php +%%WWWDIR%%/plugins/phpseclib/Crypt/AES.php +%%WWWDIR%%/plugins/phpseclib/Crypt/Base.php +%%WWWDIR%%/plugins/phpseclib/Crypt/Blowfish.php +%%WWWDIR%%/plugins/phpseclib/Crypt/DES.php +%%WWWDIR%%/plugins/phpseclib/Crypt/Hash.php +%%WWWDIR%%/plugins/phpseclib/Crypt/RC2.php +%%WWWDIR%%/plugins/phpseclib/Crypt/RC4.php +%%WWWDIR%%/plugins/phpseclib/Crypt/RSA.php +%%WWWDIR%%/plugins/phpseclib/Crypt/Random.php +%%WWWDIR%%/plugins/phpseclib/Crypt/Rijndael.php +%%WWWDIR%%/plugins/phpseclib/Crypt/TripleDES.php +%%WWWDIR%%/plugins/phpseclib/Crypt/Twofish.php +%%WWWDIR%%/plugins/phpseclib/File/ANSI.php +%%WWWDIR%%/plugins/phpseclib/File/ASN1.php +%%WWWDIR%%/plugins/phpseclib/File/X509.php +%%WWWDIR%%/plugins/phpseclib/Math/BigInteger.php +%%WWWDIR%%/plugins/phpseclib/Net/SCP.php +%%WWWDIR%%/plugins/phpseclib/Net/SFTP.php +%%WWWDIR%%/plugins/phpseclib/Net/SFTP/Stream.php +%%WWWDIR%%/plugins/phpseclib/Net/SSH1.php +%%WWWDIR%%/plugins/phpseclib/Net/SSH2.php +%%WWWDIR%%/plugins/phpseclib/System/SSH/Agent.php +%%WWWDIR%%/plugins/phpseclib/System/SSH_Agent.php +%%WWWDIR%%/plugins/phpseclib/bootstrap.php +%%WWWDIR%%/plugins/phpseclib/openssl.cnf %%WWWDIR%%/plugins/plugins.inc.php -%%WWWDIR%%/plugins/tinymce/langs/ar.js -%%WWWDIR%%/plugins/tinymce/langs/cs.js -%%WWWDIR%%/plugins/tinymce/langs/da.js -%%WWWDIR%%/plugins/tinymce/langs/de.js -%%WWWDIR%%/plugins/tinymce/langs/en.js -%%WWWDIR%%/plugins/tinymce/langs/fi.js -%%WWWDIR%%/plugins/tinymce/langs/fr.js -%%WWWDIR%%/plugins/tinymce/langs/he.js -%%WWWDIR%%/plugins/tinymce/langs/hu.js -%%WWWDIR%%/plugins/tinymce/langs/it.js -%%WWWDIR%%/plugins/tinymce/langs/ja.js -%%WWWDIR%%/plugins/tinymce/langs/nl.js -%%WWWDIR%%/plugins/tinymce/langs/pl.js -%%WWWDIR%%/plugins/tinymce/langs/pt.js -%%WWWDIR%%/plugins/tinymce/langs/ru.js -%%WWWDIR%%/plugins/tinymce/langs/sv.js -%%WWWDIR%%/plugins/tinymce/langs/tr.js -%%WWWDIR%%/plugins/tinymce/langs/uk.js -%%WWWDIR%%/plugins/tinymce/langs/vi.js -%%WWWDIR%%/plugins/tinymce/langs/zh-cn.js -%%WWWDIR%%/plugins/tinymce/langs/zh-tw.js +%%WWWDIR%%/plugins/tinymce/jquery.tinymce.min.js +%%WWWDIR%%/plugins/tinymce/langs/readme.md %%WWWDIR%%/plugins/tinymce/license.txt -%%WWWDIR%%/plugins/tinymce/plugins/advhr/css/advhr.css -%%WWWDIR%%/plugins/tinymce/plugins/advhr/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/js/rule.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advhr/rule.htm -%%WWWDIR%%/plugins/tinymce/plugins/advimage/css/advimage.css -%%WWWDIR%%/plugins/tinymce/plugins/advimage/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/image.htm -%%WWWDIR%%/plugins/tinymce/plugins/advimage/img/sample.gif -%%WWWDIR%%/plugins/tinymce/plugins/advimage/js/image.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advimage/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/css/advlink.css -%%WWWDIR%%/plugins/tinymce/plugins/advlink/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/js/advlink.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/advlink/link.htm -%%WWWDIR%%/plugins/tinymce/plugins/advlist/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/advlist/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/autolink/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/autolink/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/autoresize/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/autoresize/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/autosave/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/autosave/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/bbcode/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/bbcode/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/contextmenu/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/contextmenu/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/directionality/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/directionality/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/emotions.htm -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-cool.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-cry.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-embarassed.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-frown.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-innocent.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-kiss.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-laughing.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-money-mouth.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-sealed.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-smile.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-surprised.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-tongue-out.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-undecided.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-wink.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/img/smiley-yell.gif -%%WWWDIR%%/plugins/tinymce/plugins/emotions/js/emotions.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/emotions/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/example/dialog.htm -%%WWWDIR%%/plugins/tinymce/plugins/example/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/example/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/example/img/example.gif -%%WWWDIR%%/plugins/tinymce/plugins/example/js/dialog.js -%%WWWDIR%%/plugins/tinymce/plugins/example/langs/en.js -%%WWWDIR%%/plugins/tinymce/plugins/example/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/example_dependency/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/example_dependency/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/css/fullpage.css -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/fullpage.htm -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/js/fullpage.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullpage/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/fullscreen/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/fullscreen/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/fullscreen/fullscreen.htm -%%WWWDIR%%/plugins/tinymce/plugins/iespell/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/iespell/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css -%%WWWDIR%%/plugins/tinymce/plugins/inlinepopups/template.htm -%%WWWDIR%%/plugins/tinymce/plugins/insertdatetime/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/insertdatetime/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/layer/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/layer/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/legacyoutput/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/legacyoutput/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/lists/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/lists/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/media/css/media.css -%%WWWDIR%%/plugins/tinymce/plugins/media/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/media/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/media/js/embed.js -%%WWWDIR%%/plugins/tinymce/plugins/media/js/media.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/media/media.htm +%%WWWDIR%%/plugins/tinymce/plugins/advlist/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/anchor/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/autolink/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/autoresize/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/autosave/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/bbcode/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/charmap/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/code/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/codesample/css/prism.css +%%WWWDIR%%/plugins/tinymce/plugins/codesample/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/colorpicker/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/contextmenu/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/directionality/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-cool.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-cry.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-embarassed.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-frown.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-innocent.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-kiss.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-laughing.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-money-mouth.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-sealed.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-smile.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-surprised.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-tongue-out.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-undecided.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-wink.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/img/smiley-yell.gif +%%WWWDIR%%/plugins/tinymce/plugins/emoticons/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/example/dialog.html +%%WWWDIR%%/plugins/tinymce/plugins/example/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/example_dependency/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/fullpage/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/fullscreen/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/hr/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/image/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/imagetools/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/importcss/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/insertdatetime/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/layer/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/legacyoutput/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/link/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/lists/plugin.min.js %%WWWDIR%%/plugins/tinymce/plugins/media/moxieplayer.swf -%%WWWDIR%%/plugins/tinymce/plugins/nonbreaking/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/nonbreaking/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/noneditable/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/noneditable/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/pagebreak/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/pagebreak/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/js/pastetext.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/js/pasteword.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/paste/pastetext.htm -%%WWWDIR%%/plugins/tinymce/plugins/paste/pasteword.htm -%%WWWDIR%%/plugins/tinymce/plugins/preview/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/preview/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/preview/example.html -%%WWWDIR%%/plugins/tinymce/plugins/preview/jscripts/embed.js -%%WWWDIR%%/plugins/tinymce/plugins/preview/preview.html -%%WWWDIR%%/plugins/tinymce/plugins/print/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/print/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/save/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/save/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/css/searchreplace.css -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/js/searchreplace.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/searchreplace.htm -%%WWWDIR%%/plugins/tinymce/plugins/spellchecker/css/content.css -%%WWWDIR%%/plugins/tinymce/plugins/spellchecker/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/spellchecker/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/spellchecker/img/wline.gif -%%WWWDIR%%/plugins/tinymce/plugins/style/css/props.css -%%WWWDIR%%/plugins/tinymce/plugins/style/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/style/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/style/js/props.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/style/props.htm -%%WWWDIR%%/plugins/tinymce/plugins/style/readme.txt -%%WWWDIR%%/plugins/tinymce/plugins/tabfocus/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/tabfocus/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/table/cell.htm -%%WWWDIR%%/plugins/tinymce/plugins/table/css/cell.css -%%WWWDIR%%/plugins/tinymce/plugins/table/css/row.css -%%WWWDIR%%/plugins/tinymce/plugins/table/css/table.css -%%WWWDIR%%/plugins/tinymce/plugins/table/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/table/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/table/js/cell.js -%%WWWDIR%%/plugins/tinymce/plugins/table/js/merge_cells.js -%%WWWDIR%%/plugins/tinymce/plugins/table/js/row.js -%%WWWDIR%%/plugins/tinymce/plugins/table/js/table.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/table/merge_cells.htm -%%WWWDIR%%/plugins/tinymce/plugins/table/row.htm -%%WWWDIR%%/plugins/tinymce/plugins/table/table.htm -%%WWWDIR%%/plugins/tinymce/plugins/template/blank.htm -%%WWWDIR%%/plugins/tinymce/plugins/template/css/template.css -%%WWWDIR%%/plugins/tinymce/plugins/template/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/template/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/template/js/template.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/template/template.htm +%%WWWDIR%%/plugins/tinymce/plugins/media/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/nonbreaking/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/noneditable/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/pagebreak/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/paste/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/preview/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/print/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/save/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/searchreplace/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/spellchecker/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/tabfocus/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/table/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/template/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/textcolor/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/textpattern/plugin.min.js %%WWWDIR%%/plugins/tinymce/plugins/visualblocks/css/visualblocks.css -%%WWWDIR%%/plugins/tinymce/plugins/visualblocks/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/visualblocks/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/visualchars/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/visualchars/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/wordcount/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/wordcount/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/abbr.htm -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/acronym.htm -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/attributes.htm -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/cite.htm -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/css/attributes.css -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/css/popup.css -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/del.htm -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/editor_plugin.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/editor_plugin_src.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/ins.htm -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/js/abbr.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/js/acronym.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/js/attributes.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/js/cite.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/js/del.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/js/element_common.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/js/ins.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/plugins/xhtmlxtras/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/about.htm -%%WWWDIR%%/plugins/tinymce/themes/advanced/anchor.htm -%%WWWDIR%%/plugins/tinymce/themes/advanced/charmap.htm -%%WWWDIR%%/plugins/tinymce/themes/advanced/color_picker.htm -%%WWWDIR%%/plugins/tinymce/themes/advanced/editor_template.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/editor_template_src.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/image.htm -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/colorpicker.jpg -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/flash.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/icons.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/iframe.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/pagebreak.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/quicktime.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/realmedia.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/shockwave.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/trans.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/video.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/img/windowsmedia.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/js/about.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/js/anchor.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/js/charmap.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/js/color_picker.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/js/image.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/js/link.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/js/source_editor.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/ar.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/ar_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/cs.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/cs_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/da.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/da_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/de.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/de_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/en.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/en_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/fi.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/fi_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/fr.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/fr_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/he.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/he_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/hu.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/hu_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/it.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/it_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/ja.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/ja_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/nl.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/nl_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/pl.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/pl_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/pt.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/pt_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/ru.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/ru_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/sv.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/sv_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/tr.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/tr_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/uk.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/uk_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/vi.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/vi_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/zh-cn.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/zh-cn_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/zh-tw.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/langs/zh-tw_dlg.js -%%WWWDIR%%/plugins/tinymce/themes/advanced/link.htm -%%WWWDIR%%/plugins/tinymce/themes/advanced/shortcuts.htm -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/content.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/dialog.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/img/buttons.png -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/img/items.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/img/menu_arrow.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/img/menu_check.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/img/progress.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/img/tabs.gif -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/default/ui.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/highcontrast/content.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/highcontrast/dialog.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/highcontrast/ui.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/content.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/dialog.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/img/button_bg.png -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/ui.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/ui_black.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/skins/o2k7/ui_silver.css -%%WWWDIR%%/plugins/tinymce/themes/advanced/source_editor.htm -%%WWWDIR%%/plugins/tinymce/themes/simple/editor_template.js -%%WWWDIR%%/plugins/tinymce/themes/simple/editor_template_src.js -%%WWWDIR%%/plugins/tinymce/themes/simple/img/icons.gif -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/ar.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/cs.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/da.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/de.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/en.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/fi.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/fr.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/he.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/hu.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/it.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/ja.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/nl.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/pl.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/pt.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/ru.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/sv.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/tr.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/uk.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/vi.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/zh-cn.js -%%WWWDIR%%/plugins/tinymce/themes/simple/langs/zh-tw.js -%%WWWDIR%%/plugins/tinymce/themes/simple/skins/default/content.css -%%WWWDIR%%/plugins/tinymce/themes/simple/skins/default/ui.css -%%WWWDIR%%/plugins/tinymce/themes/simple/skins/o2k7/content.css -%%WWWDIR%%/plugins/tinymce/themes/simple/skins/o2k7/img/button_bg.png -%%WWWDIR%%/plugins/tinymce/themes/simple/skins/o2k7/ui.css -%%WWWDIR%%/plugins/tinymce/tiny_mce.js -%%WWWDIR%%/plugins/tinymce/tiny_mce_popup.js -%%WWWDIR%%/plugins/tinymce/tiny_mce_src.js -%%WWWDIR%%/plugins/tinymce/utils/editable_selects.js -%%WWWDIR%%/plugins/tinymce/utils/form_utils.js -%%WWWDIR%%/plugins/tinymce/utils/mctabs.js -%%WWWDIR%%/plugins/tinymce/utils/validate.js +%%WWWDIR%%/plugins/tinymce/plugins/visualblocks/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/visualchars/plugin.min.js +%%WWWDIR%%/plugins/tinymce/plugins/wordcount/plugin.min.js +%%WWWDIR%%/plugins/tinymce/skins/lightgray/content.inline.min.css +%%WWWDIR%%/plugins/tinymce/skins/lightgray/content.min.css +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce-small.eot +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce-small.svg +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce-small.ttf +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce-small.woff +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce.eot +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce.svg +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce.ttf +%%WWWDIR%%/plugins/tinymce/skins/lightgray/fonts/tinymce.woff +%%WWWDIR%%/plugins/tinymce/skins/lightgray/img/anchor.gif +%%WWWDIR%%/plugins/tinymce/skins/lightgray/img/loader.gif +%%WWWDIR%%/plugins/tinymce/skins/lightgray/img/object.gif +%%WWWDIR%%/plugins/tinymce/skins/lightgray/img/trans.gif +%%WWWDIR%%/plugins/tinymce/skins/lightgray/skin.ie7.min.css +%%WWWDIR%%/plugins/tinymce/skins/lightgray/skin.min.css +%%WWWDIR%%/plugins/tinymce/themes/inlite/theme.min.js +%%WWWDIR%%/plugins/tinymce/themes/modern/theme.min.js +%%WWWDIR%%/plugins/tinymce/tinymce.min.js %%WWWDIR%%/robots.txt %%WWWDIR%%/skins/iphone/advanced1.template.php %%WWWDIR%%/skins/iphone/advanced_ftpserver1.template.php @@ -1418,6 +1359,7 @@ %%WWWDIR%%/skins/shinra/raw1.template.php %%WWWDIR%%/skins/shinra/rename1.template.php %%WWWDIR%%/skins/shinra/rename2.template.php +%%WWWDIR%%/skins/shinra/serverfingerprint.template.php %%WWWDIR%%/skins/shinra/skins/glossy/balloon.png %%WWWDIR%%/skins/shinra/skins/glossy/gloss.png %%WWWDIR%%/skins/shinra/skins/glossy/glossy-bottom.png @@ -1439,6 +1381,4 @@ %%WWWDIR%%/temp/chmod_this_dir_to_777.txt %%WWWDIR%%/temp/index.php %%WWWDIR%%/version.js -@dir %%WWWDIR%%/plugins/tinymce/plugins/spellchecker/classes/utils -@dir %%WWWDIR%%/plugins/tinymce/plugins/spellchecker/includes @dir %%WWWDIR%%/plugins/versioncheck diff --git a/games/assaultcube/pkg-descr b/games/assaultcube/pkg-descr index 9c46536c1dc..1f8f54fb1a9 100644 --- a/games/assaultcube/pkg-descr +++ b/games/assaultcube/pkg-descr @@ -3,4 +3,4 @@ game Cube. Set in a realistic looking environment, as far as that's possible with this engine, while gameplay stays fast and arcade. This game is all about team oriented multiplayer fun. -WWW: http://assault.cubers.net/ +WWW: https://assault.cubers.net/ diff --git a/graphics/appleseed/Makefile b/graphics/appleseed/Makefile index 0252de05f57..a104fa8ec3b 100644 --- a/graphics/appleseed/Makefile +++ b/graphics/appleseed/Makefile @@ -3,7 +3,7 @@ PORTNAME= appleseed DISTVERSION= 1.5.2-beta -PORTREVISION= 5 +PORTREVISION= 7 CATEGORIES= graphics MAINTAINER= danfe@FreeBSD.org @@ -45,7 +45,7 @@ SUB_FILES= pkg-message SUB_LIST:= ${PLIST_SUB} OPTIONS_DEFINE= EXAMPLES OSL DISNEY -OPTIONS_DEFAULT= OSL DISNEY +OPTIONS_DEFAULT= DISNEY OPTIONS_SUB= yes OSL_DESC= Open Shading Language support @@ -55,6 +55,8 @@ EXAMPLES_CMAKE_OFF= -DWITH_SAMPLES:BOOL=OFF OSL_CMAKE_ON= -DWITH_OSL:BOOL=ON OSL_LIB_DEPENDS= liboslexec.so:graphics/openshadinglanguage +# src/appleseed/libappleseed.so: undefined reference to `typeinfo for OSL::RendererServices' +OSL_BROKEN= fails to build against openshadinglanguage-1.8.10 DISNEY_CMAKE_ON= -DWITH_DISNEY_MATERIAL:BOOL=ON DISNEY_LIB_DEPENDS= libOpenImageIO.so:graphics/openimageio \ diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index 79a1ed1e09a..40648d2d0ef 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -3,7 +3,7 @@ PORTNAME= blender PORTVERSION= 2.78c -PORTREVISION= 3 +PORTREVISION= 5 CATEGORIES= graphics games MASTER_SITES= http://download.blender.org/source/ \ http://mirror.cs.umn.edu/blender.org/source/ \ diff --git a/graphics/luxrender/Makefile b/graphics/luxrender/Makefile index 84e0967d4e6..eda390a5a7d 100644 --- a/graphics/luxrender/Makefile +++ b/graphics/luxrender/Makefile @@ -3,7 +3,7 @@ PORTNAME= luxrender DISTVERSION?= 1.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= https://bitbucket.org/luxrender/lux/get/ \ https://bitbucket.org/luxrender/luxrays/get/:lr diff --git a/graphics/opencolorio/Makefile b/graphics/opencolorio/Makefile index a76d4b37465..31be0fa48ef 100644 --- a/graphics/opencolorio/Makefile +++ b/graphics/opencolorio/Makefile @@ -3,7 +3,7 @@ PORTNAME= opencolorio PORTVERSION= 1.0.9 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= graphics multimedia MAINTAINER?= FreeBSD@Shaneware.biz diff --git a/graphics/openimageio/Makefile b/graphics/openimageio/Makefile index 939c392391a..b842f65c08d 100644 --- a/graphics/openimageio/Makefile +++ b/graphics/openimageio/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openimageio -PORTVERSION= 1.7.10 +PORTVERSION= 1.7.17 DISTVERSIONPREFIX= Release- CATEGORIES?= graphics multimedia @@ -107,9 +107,9 @@ post-patch: post-install: .if ${SLAVE_PORT} == no - ${LN} -sf libOpenImageIO.so.1.6 \ + ${LN} -sf libOpenImageIO.so.1.7 \ ${STAGEDIR}${PREFIX}/lib/libOpenImageIO.so.1 - ${LN} -sf libOpenImageIO_Util.so.1.6 \ + ${LN} -sf libOpenImageIO_Util.so.1.7 \ ${STAGEDIR}${PREFIX}/lib/libOpenImageIO_Util.so.1 .endif diff --git a/graphics/openimageio/distinfo b/graphics/openimageio/distinfo index 38ccf08cb73..1ca55c82c9a 100644 --- a/graphics/openimageio/distinfo +++ b/graphics/openimageio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1484843803 -SHA256 (OpenImageIO-oiio-Release-1.7.10_GH0.tar.gz) = ec5c567b6b4078d17df22262b764ebb7c09ce5b69f0bc2095b51e56c7070f5b7 -SIZE (OpenImageIO-oiio-Release-1.7.10_GH0.tar.gz) = 26188475 +TIMESTAMP = 1504403179 +SHA256 (OpenImageIO-oiio-Release-1.7.17_GH0.tar.gz) = 669c59d06399dd882c3e2469bb3a4b33d537db150f6fe056495c3429b5c3838f +SIZE (OpenImageIO-oiio-Release-1.7.17_GH0.tar.gz) = 27164765 diff --git a/graphics/openshadinglanguage/Makefile b/graphics/openshadinglanguage/Makefile index 911d84ea4eb..c9eaab30742 100644 --- a/graphics/openshadinglanguage/Makefile +++ b/graphics/openshadinglanguage/Makefile @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= openshadinglanguage -PORTVERSION= 1.7.5 +PORTVERSION= 1.8.10 DISTVERSIONPREFIX= Release- -PORTREVISION= 2 CATEGORIES= graphics devel MAINTAINER= FreeBSD@Shaneware.biz @@ -12,21 +11,20 @@ COMMENT= Advanced shading language for production GI renderers LICENSE= BSD3CLAUSE -BUILD_DEPENDS= llvm-config34:devel/llvm34 \ - clang34>=3.4_1:lang/clang34 +BUILD_DEPENDS= llvm-config40:devel/llvm40 LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libIlmImf.so:graphics/OpenEXR \ libImath.so:graphics/ilmbase \ libOpenImageIO.so:graphics/openimageio -RUN_DEPENDS= llvm-config34:devel/llvm34 +RUN_DEPENDS= llvm-config40:devel/llvm40 -USES= bison cmake:outsource compiler:c++11-lib ncurses +USES= bison cmake:outsource compiler:c++11-lang ncurses USE_GITHUB= yes GH_ACCOUNT= imageworks GH_PROJECT= OpenShadingLanguage -CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config34" \ - -DENABLERTTI:BOOL=ON +CMAKE_ARGS= -DLLVM_CONFIG:STRING="${LOCALBASE}/bin/llvm-config40" \ + -DENABLERTTI:BOOL=OFF -DUSE_BOOST_WAVE:BOOL=OFF USE_LDCONFIG= yes post-patch: diff --git a/graphics/openshadinglanguage/distinfo b/graphics/openshadinglanguage/distinfo index cd713a89871..a15fbfcbb14 100644 --- a/graphics/openshadinglanguage/distinfo +++ b/graphics/openshadinglanguage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1478806482 -SHA256 (imageworks-OpenShadingLanguage-Release-1.7.5_GH0.tar.gz) = 46226af0592297172e856635eac50327255f1a307244162c1feb47581e72a109 -SIZE (imageworks-OpenShadingLanguage-Release-1.7.5_GH0.tar.gz) = 13739852 +TIMESTAMP = 1503300284 +SHA256 (imageworks-OpenShadingLanguage-Release-1.8.10_GH0.tar.gz) = 5b9ad6814fd55e68f4ac50e4214120629ab9175142dc93aac350d0f54bea745a +SIZE (imageworks-OpenShadingLanguage-Release-1.8.10_GH0.tar.gz) = 14572479 diff --git a/graphics/openshadinglanguage/files/patch-src_doc_CMakeLists.txt b/graphics/openshadinglanguage/files/patch-src_doc_CMakeLists.txt index f8c0de05658..2838db711e4 100644 --- a/graphics/openshadinglanguage/files/patch-src_doc_CMakeLists.txt +++ b/graphics/openshadinglanguage/files/patch-src_doc_CMakeLists.txt @@ -1,16 +1,21 @@ ---- src/doc/CMakeLists.txt.orig 2015-03-10 21:57:05 UTC +--- src/doc/CMakeLists.txt.orig 2017-07-01 03:52:54 UTC +++ src/doc/CMakeLists.txt -@@ -1,11 +1,11 @@ - set (public_docs osl-languagespec.pdf) - # Some day: CLA-INDIVIDUAL CLA-CORPORATE +@@ -3,15 +3,15 @@ set (public_docs osl-languagespec.pdf + markdeep.min.js + ) -install (FILES ${public_docs} DESTINATION doc COMPONENT documentation) +install (FILES ${public_docs} DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage COMPONENT documentation) install ( FILES "${PROJECT_SOURCE_DIR}/LICENSE" - "${PROJECT_SOURCE_DIR}/INSTALL" - "${PROJECT_SOURCE_DIR}/CHANGES" + "${PROJECT_SOURCE_DIR}/INSTALL.md" + "${PROJECT_SOURCE_DIR}/CHANGES.md" "${PROJECT_SOURCE_DIR}/README.md" -- DESTINATION . ) +- DESTINATION doc ) + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage ) + + file (GLOB testshade_figures "Figures/testshade/*.jpg") + install (FILES ${testshade_figures} +- DESTINATION doc/Figures/testshade ) ++ DESTINATION ${CMAKE_INSTALL_PREFIX}/share/openshadinglanguage/Figures/testshade ) diff --git a/graphics/openshadinglanguage/pkg-plist b/graphics/openshadinglanguage/pkg-plist index abeddf8d70f..8c0ce53e1e7 100644 --- a/graphics/openshadinglanguage/pkg-plist +++ b/graphics/openshadinglanguage/pkg-plist @@ -16,20 +16,31 @@ include/OSL/oslclosure.h include/OSL/oslcomp.h include/OSL/oslconfig.h include/OSL/oslexec.h +include/OSL/oslnoise.h include/OSL/oslquery.h include/OSL/oslversion.h include/OSL/rendererservices.h include/OSL/shaderglobals.h lib/liboslcomp.so lib/liboslexec.so +lib/liboslnoise.so lib/liboslquery.so lib/libtestshade.so lib/osl.imageio.so -%%DATADIR%%/CHANGES -%%DATADIR%%/INSTALL +%%DATADIR%%/CHANGES.md +%%DATADIR%%/Figures/testshade/fBm_default.jpg +%%DATADIR%%/Figures/testshade/fBm_freq.jpg +%%DATADIR%%/Figures/testshade/fBm_gain.jpg +%%DATADIR%%/Figures/testshade/fBm_lac.jpg +%%DATADIR%%/Figures/testshade/fBm_octaves.jpg +%%DATADIR%%/Figures/testshade/makenoise.jpg +%%DATADIR%%/Figures/testshade/noisetex.jpg +%%DATADIR%%/Figures/testshade/show_uv.jpg +%%DATADIR%%/INSTALL.md %%DATADIR%%/LICENSE -%%DATADIR%%/README.md +%%DATADIR%%/markdeep.min.js %%DATADIR%%/osl-languagespec.pdf +%%DATADIR%%/README.md %%DATADIR%%/shaders/emitter.osl %%DATADIR%%/shaders/emitter.oso %%DATADIR%%/shaders/glass.osl @@ -44,3 +55,4 @@ lib/osl.imageio.so %%DATADIR%%/shaders/stdosl.h %%DATADIR%%/shaders/ubersurface.osl %%DATADIR%%/shaders/ubersurface.oso +%%DATADIR%%/testshade.md.html diff --git a/graphics/wayland-protocols/Makefile b/graphics/wayland-protocols/Makefile index b2f102c5fa3..d6f9e3304dc 100644 --- a/graphics/wayland-protocols/Makefile +++ b/graphics/wayland-protocols/Makefile @@ -1,23 +1,21 @@ # $FreeBSD$ PORTNAME= wayland-protocols -PORTVERSION= 1.7 +PORTVERSION= 1.10 CATEGORIES= graphics wayland MASTER_SITES= https://wayland.freedesktop.org/releases/ MAINTAINER= kwm@FreeBSD.org COMMENT= Wayland protocols -BUILD_DEPENDS= wayland-scanner:graphics/wayland - LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USES= tar:xz pathfix -GNU_CONFIGURE= yes +BUILD_DEPENDS= wayland-scanner:graphics/wayland -post-patch: - @${REINPLACE_CMD} -e 's|$${datadir}/pkgconfig|$${prefix}/libdata/pkgconfig|g' \ - ${WRKSRC}/configure +USES= tar:xz +NO_ARCH= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-noarch-pkgconfigdir='$${prefix}/libdata/pkgconfig' .include diff --git a/graphics/wayland-protocols/distinfo b/graphics/wayland-protocols/distinfo index b65aa5fb1e1..446d7c805aa 100644 --- a/graphics/wayland-protocols/distinfo +++ b/graphics/wayland-protocols/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1486828668 -SHA256 (wayland-protocols-1.7.tar.xz) = 635f2a937d318f1fecb97b54074ca211486e38af943868dd0fa82ea38d091c1f -SIZE (wayland-protocols-1.7.tar.xz) = 113220 +TIMESTAMP = 1499756006 +SHA256 (wayland-protocols-1.10.tar.xz) = 5719c51d7354864983171c5083e93a72ac99229e2b460c4bb10513de08839c0a +SIZE (wayland-protocols-1.10.tar.xz) = 117652 diff --git a/graphics/wayland-protocols/pkg-plist b/graphics/wayland-protocols/pkg-plist index afd9c3c92eb..0449e8354bd 100644 --- a/graphics/wayland-protocols/pkg-plist +++ b/graphics/wayland-protocols/pkg-plist @@ -4,6 +4,7 @@ libdata/pkgconfig/wayland-protocols.pc %%DATADIR%%/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml %%DATADIR%%/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml %%DATADIR%%/unstable/input-method/input-method-unstable-v1.xml +%%DATADIR%%/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml %%DATADIR%%/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml %%DATADIR%%/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml %%DATADIR%%/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml @@ -12,5 +13,7 @@ libdata/pkgconfig/wayland-protocols.pc %%DATADIR%%/unstable/tablet/tablet-unstable-v2.xml %%DATADIR%%/unstable/text-input/text-input-unstable-v1.xml %%DATADIR%%/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml +%%DATADIR%%/unstable/xdg-output/xdg-output-unstable-v1.xml %%DATADIR%%/unstable/xdg-shell/xdg-shell-unstable-v5.xml %%DATADIR%%/unstable/xdg-shell/xdg-shell-unstable-v6.xml +%%DATADIR%%/unstable/xwayland-keyboard-grab/xwayland-keyboard-grab-unstable-v1.xml diff --git a/japanese/ajaxzip2-data/Makefile b/japanese/ajaxzip2-data/Makefile index 72c078504c0..4c7c6d11169 100644 --- a/japanese/ajaxzip2-data/Makefile +++ b/japanese/ajaxzip2-data/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ajaxzip2 -PORTVERSION= 20170630 +PORTVERSION= 20170831 CATEGORIES= japanese MASTER_SITES= LOCAL/kuriyama PKGNAMESUFFIX= -data diff --git a/japanese/ajaxzip2-data/distinfo b/japanese/ajaxzip2-data/distinfo index b89f7cc1fd5..f68db106eb1 100644 --- a/japanese/ajaxzip2-data/distinfo +++ b/japanese/ajaxzip2-data/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1499468838 -SHA256 (ken_all-20170630.zip) = 4f011125c3858be43984339507c387fb3128ca82eca88b6b4298050603c81513 -SIZE (ken_all-20170630.zip) = 1685486 -SHA256 (jigyosyo-20170630.zip) = c97770f181344cd07acec7c3d91ef2c62e6ce29c75fda01beedd6d436fc851cd -SIZE (jigyosyo-20170630.zip) = 757266 +TIMESTAMP = 1505048912 +SHA256 (ken_all-20170831.zip) = 872cbaf8294d0260ed0f093ff041d4489c55869669e3964d0c89d291d066329e +SIZE (ken_all-20170831.zip) = 1685767 +SHA256 (jigyosyo-20170831.zip) = 30a8b941aa67b3dff99e9ae210dd31f0a9c9db542f83075dc2759f55e70d5966 +SIZE (jigyosyo-20170831.zip) = 758015 diff --git a/japanese/zipcodes/Makefile b/japanese/zipcodes/Makefile index f4ba51a3eb2..59c21c4ce12 100644 --- a/japanese/zipcodes/Makefile +++ b/japanese/zipcodes/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= zipcodes -PORTVERSION= 20170630 +PORTVERSION= 20170831 CATEGORIES= japanese MASTER_SITES= LOCAL/kuriyama DISTFILES= ken_all-${PORTVERSION_K}.zip jigyosyo-${PORTVERSION_J}.zip diff --git a/japanese/zipcodes/distinfo b/japanese/zipcodes/distinfo index 8caaa82a1e5..4c39a7a148e 100644 --- a/japanese/zipcodes/distinfo +++ b/japanese/zipcodes/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1499468775 -SHA256 (ken_all-20170630.zip) = 4f011125c3858be43984339507c387fb3128ca82eca88b6b4298050603c81513 -SIZE (ken_all-20170630.zip) = 1685486 -SHA256 (jigyosyo-20170630.zip) = c97770f181344cd07acec7c3d91ef2c62e6ce29c75fda01beedd6d436fc851cd -SIZE (jigyosyo-20170630.zip) = 757266 +TIMESTAMP = 1505048918 +SHA256 (ken_all-20170831.zip) = 872cbaf8294d0260ed0f093ff041d4489c55869669e3964d0c89d291d066329e +SIZE (ken_all-20170831.zip) = 1685767 +SHA256 (jigyosyo-20170831.zip) = 30a8b941aa67b3dff99e9ae210dd31f0a9c9db542f83075dc2759f55e70d5966 +SIZE (jigyosyo-20170831.zip) = 758015 diff --git a/lang/gcc5-devel/Makefile b/lang/gcc5-devel/Makefile index 4f303dbe9f1..8cf18f360be 100644 --- a/lang/gcc5-devel/Makefile +++ b/lang/gcc5-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 5.4.1.s20170829 +PORTVERSION= 5.4.1.s20170905 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel @@ -15,6 +15,7 @@ LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64 + LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr \ libmpc.so:math/mpc diff --git a/lang/gcc5-devel/distinfo b/lang/gcc5-devel/distinfo index 6f1befd3d1a..b2abae739e8 100644 --- a/lang/gcc5-devel/distinfo +++ b/lang/gcc5-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504125205 -SHA256 (gcc-5-20170829.tar.xz) = db247faf2738f85a002ee9e7b5941bf1f8a4b45d81703535188918ca9b48fcd4 -SIZE (gcc-5-20170829.tar.xz) = 69373312 +TIMESTAMP = 1504873792 +SHA256 (gcc-5-20170905.tar.xz) = ae7aa2d791329599bdebaf6f3a1aa4ec56194e8b0a6f5bcb5bca2154a6a17bec +SIZE (gcc-5-20170905.tar.xz) = 69376996 diff --git a/lang/gcc6-devel/Makefile b/lang/gcc6-devel/Makefile index c433f8dabf5..6e264f8ff82 100644 --- a/lang/gcc6-devel/Makefile +++ b/lang/gcc6-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 6.4.1.s20170830 +PORTVERSION= 6.4.1.s20170906 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel @@ -15,6 +15,7 @@ LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64 + LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr \ libmpc.so:math/mpc diff --git a/lang/gcc6-devel/distinfo b/lang/gcc6-devel/distinfo index c60e8b3f334..2e4e3c08299 100644 --- a/lang/gcc6-devel/distinfo +++ b/lang/gcc6-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504350601 -SHA256 (gcc-6-20170830.tar.xz) = 169a3bd16c43ed55b820fe50ee603671b4003956abc1cbed7ca4df51f23f404a -SIZE (gcc-6-20170830.tar.xz) = 72586392 +TIMESTAMP = 1504873750 +SHA256 (gcc-6-20170906.tar.xz) = dd3f78d357a3dd88b6a6cd338fd03b844ada4e8e732257ad4135d153cac37585 +SIZE (gcc-6-20170906.tar.xz) = 72592608 diff --git a/lang/gcc7/Makefile b/lang/gcc7/Makefile index d3380627394..ffdaeabed7e 100644 --- a/lang/gcc7/Makefile +++ b/lang/gcc7/Makefile @@ -13,6 +13,8 @@ COMMENT= GNU Compiler Collection 7 LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi +ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64 + LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr \ libmpc.so:math/mpc @@ -27,7 +29,6 @@ CPE_VENDOR= gnu GCC_VERSION= ${PORTVERSION} SUFFIX= ${PORTVERSION:C/([0-9]+).*/\1/} -ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 i386 powerpc powerpc64 sparc64 USES= compiler cpe gmake iconv libtool makeinfo perl5 tar:xz USE_BINUTILS= yes USE_PERL5= build diff --git a/lang/tcbasic/Makefile b/lang/tcbasic/Makefile index 573ae2030f3..c2839567172 100644 --- a/lang/tcbasic/Makefile +++ b/lang/tcbasic/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tcbasic -PORTVERSION= 2.1.0 +PORTVERSION= 2.2.0 CATEGORIES= lang MASTER_SITES= https://github.com/tcort/${PORTNAME}/releases/download/v${PORTVERSION}/ diff --git a/lang/tcbasic/distinfo b/lang/tcbasic/distinfo index 654202d1701..f02a611fdb4 100644 --- a/lang/tcbasic/distinfo +++ b/lang/tcbasic/distinfo @@ -1,2 +1,3 @@ -SHA256 (tcbasic-2.1.0.tar.gz) = 00b1535237cb7fdea30acbed063cca3b82df221ce5d1b69104ae4dbc7d7ea194 -SIZE (tcbasic-2.1.0.tar.gz) = 119570 +TIMESTAMP = 1505046706 +SHA256 (tcbasic-2.2.0.tar.gz) = 0fd87000f5c192ead1d02a2169e46eb6316660e89113ab3e901426e585a0054b +SIZE (tcbasic-2.2.0.tar.gz) = 135017 diff --git a/lang/tcbasic/pkg-descr b/lang/tcbasic/pkg-descr index 62e0ec44767..42a63f360c9 100644 --- a/lang/tcbasic/pkg-descr +++ b/lang/tcbasic/pkg-descr @@ -1,9 +1,7 @@ -tcbasic implements a small subset of BASIC known as Tiny BASIC. -It provides the following statements and commands: INPUT, PRINT, -LET, GOTO, GOSUB, RETURN, IF, END, CLEAR, LIST, RUN, and STOP. -Integer and floating point arithmetic is supported, and strings -may be PRINTed. The following built-in functions are provided: -SIN, COS, TAN, COT, ATN, EXP, LOG, ABS, SQR, RND. +tcbasic implements a small subset of BASIC known as Tiny BASIC +with added support for floating point numbers and many of the +built-in mathematical functions in Dartmouth BASIC. It supports +basic I/O, flow control, subroutines, and debug tracing. The small size of the language make it easy to learn and master while providing all of the building blocks needed to develop many diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 6ecf1f44a66..56ab330d0c7 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mutt -PORTVERSION= 1.8.3 +PORTVERSION= 1.9.0 PORTREVISION?= 0 CATEGORIES+= mail ipv6 MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/ \ @@ -40,7 +40,7 @@ CONFIGURE_ARGS= --disable-fcntl --with-ssl=${OPENSSLBASE} \ --enable-external-dotlock --enable-pop --enable-imap \ --enable-compressed -USES+= cpe shebangfix ssl +USES+= cpe ncurses shebangfix ssl SHEBANG_FILES= doc/gen-map-doc smime_keys.pl contrib/smime_keys_test.pl .if defined(MUTT_CONFIGURE_ARGS) @@ -59,9 +59,8 @@ OPTIONS_EXCLUDE= NLS DOCS EXAMPLES OPTIONS_DEFINE= SASL DEBUG DOCS EXAMPLES FLOCK \ FORCEBASE64 GPGME GREETING_PATCH HTML ICONV IDN IFDEF_PATCH \ LOCALES_FIX MAILBOX_MANPAGES MAILDIR_MTIME_PATCH \ - NLS NNTP PARENT_CHILD_MATCH_PATCH QUOTE_PATCH \ - REVERSE_REPLY_PATCH SIDEBAR SMART_DATE SMIME_OUTLOOK_COMPAT \ - SMTP URLVIEW XML + NLS NNTP QUOTE_PATCH REVERSE_REPLY_PATCH SIDEBAR SMART_DATE \ + SMIME_OUTLOOK_COMPAT SMTP URLVIEW XML OPTIONS_SINGLE= GSSAPI HCACHE SCREEN OPTIONS_RADIO= SPELL @@ -84,7 +83,6 @@ MAILBOX_MANPAGES_DESC= Install mbox.5/mmdf.5 manpages MAILDIR_MTIME_PATCH_DESC= Maildir mtime patch NCURSES_DESC= Ncurses support NLS_DESC= Native language support (implies ICONV) -PARENT_CHILD_MATCH_PATCH_DESC= Parent/child match QUOTE_PATCH_DESC= Extended quoting REVERSE_REPLY_PATCH_DESC= Reverse_reply SIDEBAR_DESC= Sidebar support @@ -102,9 +100,8 @@ XML_DESC= Use XML tools for rebuilding documentation OPTIONS_DEFAULT= GPGME HTML HCACHE_BDB ICONV IDN \ IFDEF_PATCH LOCALES_FIX MAILBOX_MANPAGES MAILDIR_MTIME_PATCH \ - NLS NCURSES PARENT_CHILD_MATCH_PATCH QUOTE_PATCH \ - REVERSE_REPLY_PATCH SMART_DATE SMIME_OUTLOOK_COMPAT SASL SMTP \ - URLVIEW XML GSSAPI_NONE + NLS NCURSES QUOTE_PATCH REVERSE_REPLY_PATCH SMART_DATE \ + SMIME_OUTLOOK_COMPAT SASL SMTP URLVIEW XML GSSAPI_NONE .endif RUN_DEPENDS+= ${LOCALBASE}/etc/mime.types:misc/mime-support @@ -172,7 +169,6 @@ ICONV_CONFIGURE_ON= ${ICONV_CONFIGURE_ARG} ICONV_CONFIGURE_OFF= --disable-iconv ASPELL_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-aspell -PARENT_CHILD_MATCH_PATCH_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-parent-child-match REVERSE_REPLY_PATCH_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-reverse_reply SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 @@ -203,11 +199,11 @@ GREETING_PATCH_PATCHFILES= mutt-${GREETING_PATCH_VERSION}.vc.greeting:vc QUOTE_PATCH_PATCHFILES= patch-${VVV_PATCH_VERSION}.vvv.initials.gz:vvv \ patch-${VVV_PATCH_VERSION}.vvv.quote.gz:vvv -NNTP_DISTFILES= patch-${VVV_PATCH_VERSION}.vvv.nntp.gz:vvv \ - patch-${VVV_PATCH_VERSION}.vvv.nntp_ru.gz:vvv +NNTP_PATCHFILES= patch-${VVV_PATCH_VERSION}.vvv.nntp.gz:-p1:vvv NNTP_CONFIGURE_ON= --enable-nntp NNTP_VARS= XML_NEEDED=yes NNTP_CATEGORIES= news +NNTP_BROKEN= NNTP fails to apply to 1.9.0 SIDEBAR_CONFIGURE_ENABLE= sidebar @@ -216,7 +212,7 @@ DOCS_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-doc-ref .include # un/comment as each VERSION is created for PORTVERSION -VVV_PATCH_VERSION= 1.8.2 +VVV_PATCH_VERSION= 1.8.3 #GREETING_PATCH_VERSION= 1.8.3 .if !defined(VVV_PATCH_VERSION) @@ -240,12 +236,6 @@ LDFLAGS+= -L${LOCALBASE}/lib -Wl,-rpath=${LOCALBASE}/lib:/usr/lib -ltinfow CFLAGS+= ${CFLAGS_ADD} LDFLAGS+= ${LDFLAGS_ADD} -pre-patch-NNTP-on: - @${GUNZIP_CMD} -c ${DISTDIR}/${DIST_SUBDIR}/patch-${VVV_PATCH_VERSION}.vvv.nntp.gz > ${WRKDIR}/patch-nntp - @${REINPLACE_CMD} -E '/^diff.*\/doc\/manual.txt$$/,/^diff/d' \ - ${WRKDIR}/patch-nntp - @${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} -p1 < ${WRKDIR}/patch-nntp - post-patch-NNTP-on: .if ${PORT_OPTIONS:MMAILDIR_MTIME_PATCH} @${PATCH} -d ${PATCH_WRKSRC} ${PATCH_ARGS} -p1 < ${PATCHDIR}/extra-patch-maildir-mtime-nntp diff --git a/mail/mutt/distinfo b/mail/mutt/distinfo index 59e5e2cc1fc..4a585d947f1 100644 --- a/mail/mutt/distinfo +++ b/mail/mutt/distinfo @@ -1,15 +1,13 @@ -TIMESTAMP = 1496461712 -SHA256 (mutt/mutt-1.8.3.tar.gz) = 9b81746d67ffeca5ea44f60893b70dc93c86d4bc10187d4dd360185e4d42ed42 -SIZE (mutt/mutt-1.8.3.tar.gz) = 4122012 -SHA256 (mutt/patch-1.8.2.vvv.nntp.gz) = 940cf7fd4fbea39f48bd5594180a7be5c3cc6714d62eeb3f2e5fbc0ab4b3545b -SIZE (mutt/patch-1.8.2.vvv.nntp.gz) = 60675 -SHA256 (mutt/patch-1.8.2.vvv.nntp_ru.gz) = c85a288ed6864c311cbc70b31bab9f0d0d1051846becb5e8fe737609fd939a9c -SIZE (mutt/patch-1.8.2.vvv.nntp_ru.gz) = 3465 +TIMESTAMP = 1504471107 +SHA256 (mutt/mutt-1.9.0.tar.gz) = ec6d7595d3a1f26ae9f565b5ba5ffee94f9b2dc0683b0014684f2dc874f9e2d4 +SIZE (mutt/mutt-1.9.0.tar.gz) = 4191932 SHA256 (mutt/date-conditional.diff) = 8936c5fe7a2a62a68f2a8d001c7a6dddf138c48186a338482b6639507ba9133e SIZE (mutt/date-conditional.diff) = 2023 -SHA256 (mutt/mutt-1.8.3.vc.greeting) = 73113eb0a3eb761755315ab03c0b6bcb316c09603461a1f8a3f54bd870a576cc -SIZE (mutt/mutt-1.8.3.vc.greeting) = 4499 -SHA256 (mutt/patch-1.8.2.vvv.initials.gz) = e929c863dd012624b2ac724cd296f346374cd2522f256020fa458e94890ca750 -SIZE (mutt/patch-1.8.2.vvv.initials.gz) = 686 -SHA256 (mutt/patch-1.8.2.vvv.quote.gz) = 03b1aa4aa9152b968fc1709e68207073df62b9b1a5da43ff1d680d6dfe17fe35 -SIZE (mutt/patch-1.8.2.vvv.quote.gz) = 1282 +SHA256 (mutt/mutt-1.9.0.vc.greeting) = b4ac804c24a07c7eb8330ebfdc94cdbf6fd7a4671badfb32fb611df09c008317 +SIZE (mutt/mutt-1.9.0.vc.greeting) = 4534 +SHA256 (mutt/patch-1.8.3.vvv.nntp.gz) = 940cf7fd4fbea39f48bd5594180a7be5c3cc6714d62eeb3f2e5fbc0ab4b3545b +SIZE (mutt/patch-1.8.3.vvv.nntp.gz) = 60675 +SHA256 (mutt/patch-1.8.3.vvv.initials.gz) = e929c863dd012624b2ac724cd296f346374cd2522f256020fa458e94890ca750 +SIZE (mutt/patch-1.8.3.vvv.initials.gz) = 686 +SHA256 (mutt/patch-1.8.3.vvv.quote.gz) = 03b1aa4aa9152b968fc1709e68207073df62b9b1a5da43ff1d680d6dfe17fe35 +SIZE (mutt/patch-1.8.3.vvv.quote.gz) = 1282 diff --git a/mail/mutt/files/extra-patch-ifdef b/mail/mutt/files/extra-patch-ifdef index 6eb420e9e29..edf5e20454b 100644 --- a/mail/mutt/files/extra-patch-ifdef +++ b/mail/mutt/files/extra-patch-ifdef @@ -1,8 +1,8 @@ ---- PATCHES.orig 2017-06-03 23:06:11 UTC +--- PATCHES.orig 2017-09-04 23:34:26 UTC +++ PATCHES @@ -0,0 +1 @@ +patch-1.5.4.cd.ifdef.1 ---- init.c.orig 2017-05-30 19:27:52 UTC +--- init.c.orig 2017-09-04 23:34:22 UTC +++ init.c @@ -656,6 +656,52 @@ static mbchar_table *parse_mbchar_table return t; @@ -57,9 +57,9 @@ static int parse_unignore (BUFFER *buf, BUFFER *s, unsigned long data, BUFFER *err) { do ---- init.h.orig 2017-06-03 23:06:11 UTC +--- init.h.orig 2017-09-04 23:34:22 UTC +++ init.h -@@ -3904,6 +3904,7 @@ static int parse_lists (BUFFER *, BUFFER +@@ -4037,6 +4037,7 @@ static int parse_lists (BUFFER *, BUFFER static int parse_unlists (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_alias (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_unalias (BUFFER *, BUFFER *, unsigned long, BUFFER *); @@ -67,7 +67,7 @@ static int parse_ignore (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_unignore (BUFFER *, BUFFER *, unsigned long, BUFFER *); static int parse_source (BUFFER *, BUFFER *, unsigned long, BUFFER *); -@@ -3966,6 +3967,7 @@ const struct command_t Commands[] = { +@@ -4099,6 +4100,7 @@ const struct command_t Commands[] = { { "hdr_order", parse_list, UL &HeaderOrderList }, #ifdef HAVE_ICONV { "iconv-hook", mutt_parse_hook, MUTT_ICONVHOOK }, diff --git a/mail/mutt/files/extra-patch-maildir-mtime b/mail/mutt/files/extra-patch-maildir-mtime index 9fd76c2d89a..bec92fef533 100644 --- a/mail/mutt/files/extra-patch-maildir-mtime +++ b/mail/mutt/files/extra-patch-maildir-mtime @@ -1,9 +1,9 @@ ---- PATCHES.orig 2017-06-03 22:37:15 UTC -+++ PATCHES +--- PATCHES.orig 2017-09-04 15:19:31.167205000 -0400 ++++ PATCHES 2017-09-04 15:19:31.168636000 -0400 @@ -0,0 +1 @@ +patch-1.5.7.ust.maildir-mtime.2 ---- browser.c.orig 2017-06-03 22:37:03 UTC -+++ browser.c +--- browser.c.orig 2017-09-04 15:19:27.714342000 -0400 ++++ browser.c 2017-09-04 15:19:31.178678000 -0400 @@ -32,6 +32,7 @@ #ifdef USE_IMAP #include "imap.h" @@ -12,7 +12,7 @@ #include #include -@@ -413,6 +414,21 @@ static void init_state (struct browser_s +@@ -413,6 +414,21 @@ menu->data = state->entry; } @@ -34,7 +34,7 @@ static int examine_directory (MUTTMENU *menu, struct browser_state *state, char *d, const char *prefix) { -@@ -476,6 +492,7 @@ static int examine_directory (MUTTMENU * +@@ -476,6 +492,7 @@ tmp = Incoming; while (tmp && mutt_strcmp (buffer, tmp->path)) tmp = tmp->next; @@ -42,9 +42,9 @@ if (tmp && Context && !mutt_strcmp (tmp->realpath, Context->realpath)) { -@@ -549,6 +566,7 @@ static int examine_mailboxes (MUTTMENU * - strfcpy (buffer, NONULL(tmp->path), sizeof (buffer)); - mutt_pretty_mailbox (buffer, sizeof (buffer)); +@@ -549,6 +566,7 @@ + s.st_mtime = st2.st_mtime; + } + check_maildir_times (tmp, &s); add_folder (menu, state, buffer, &s, tmp); diff --git a/mail/mutt/files/extra-patch-reverse_reply b/mail/mutt/files/extra-patch-reverse_reply index d36df1f75ec..18fe9d20776 100644 --- a/mail/mutt/files/extra-patch-reverse_reply +++ b/mail/mutt/files/extra-patch-reverse_reply @@ -1,10 +1,10 @@ ---- PATCHES.orig 2017-06-03 23:21:18 UTC +--- PATCHES.orig 2017-09-04 23:35:30 UTC +++ PATCHES @@ -0,0 +1 @@ +patch-1.5.6.cb.reverse_reply.2 ---- init.h.orig 2017-06-03 23:21:18 UTC +--- init.h.orig 2017-09-04 23:35:27 UTC +++ init.h -@@ -2588,6 +2588,13 @@ struct option_t MuttVars[] = { +@@ -2687,6 +2687,13 @@ struct option_t MuttVars[] = { ** possibly including eventual real names. When it is \fIunset\fP, mutt will ** override any such real names with the setting of the $$realname variable. */ @@ -18,9 +18,9 @@ { "rfc2047_parameters", DT_BOOL, R_NONE, OPTRFC2047PARAMS, 0 }, /* ** .pp ---- mutt.h.orig 2017-06-03 23:21:23 UTC +--- mutt.h.orig 2017-09-04 23:35:27 UTC +++ mutt.h -@@ -440,6 +440,7 @@ enum +@@ -448,6 +448,7 @@ enum OPTREVALIAS, OPTREVNAME, OPTREVREAL, @@ -28,7 +28,7 @@ OPTRFC2047PARAMS, OPTSAVEADDRESS, OPTSAVEEMPTY, ---- protos.h.orig 2017-05-30 19:27:53 UTC +--- protos.h.orig 2017-09-04 23:35:27 UTC +++ protos.h @@ -93,6 +93,7 @@ ADDRESS *mutt_get_address (ENVELOPE *, c ADDRESS *mutt_lookup_alias (const char *s); @@ -38,9 +38,9 @@ ADDRESS *mutt_expand_aliases (ADDRESS *); ADDRESS *mutt_parse_adrlist (ADDRESS *, const char *); ---- send.c.orig 2017-05-30 19:27:53 UTC +--- send.c.orig 2017-09-04 23:35:27 UTC +++ send.c -@@ -585,6 +585,10 @@ void mutt_fix_reply_recipients (ENVELOPE +@@ -598,6 +598,10 @@ void mutt_fix_reply_recipients (ENVELOPE /* the CC field can get cluttered, especially with lists */ env->to = mutt_remove_duplicates (env->to); env->cc = mutt_remove_duplicates (env->cc); @@ -51,9 +51,9 @@ env->cc = mutt_remove_xrefs (env->to, env->cc); if (env->cc && !env->to) ---- sendlib.c.orig 2017-05-30 19:27:53 UTC +--- sendlib.c.orig 2017-09-04 23:35:27 UTC +++ sendlib.c -@@ -2714,6 +2714,35 @@ static void set_noconv_flags (BODY *b, s +@@ -2753,6 +2753,35 @@ static void set_noconv_flags (BODY *b, s } } diff --git a/mail/mutt/files/patch-smime-self b/mail/mutt/files/patch-smime-self deleted file mode 100644 index bb5540e30e2..00000000000 --- a/mail/mutt/files/patch-smime-self +++ /dev/null @@ -1,63 +0,0 @@ ---- contrib/smime.rc.orig 2017-05-30 19:26:40 UTC -+++ contrib/smime.rc -@@ -23,8 +23,12 @@ set crypt_verify_sig = yes - - # The (default) keyfile for signing/decrypting. Uncomment the following - # line and replace the keyid with your own. --set smime_default_key="12345678.0" -+# set smime_default_key="12345678.0" - -+# Uncomment the following line in addition to the one above, if you want that -+# all encrypted messages are also encrypted with your default key. -+# set smime_encrypt_self = yes -+ - # Uncomment to make mutt ask what key to use when trying to decrypt a message. - # It will use the default key above (if that was set) else. - # unset smime_decrypt_use_default_key ---- crypt.c.orig 2017-06-04 00:05:52 UTC -+++ crypt.c -@@ -229,8 +229,18 @@ int mutt_protect (HEADER *msg, char *key - if ((WithCrypto & APPLICATION_SMIME) - && (msg->security & APPLICATION_SMIME)) - { -- if (!(tmp_pbody = crypt_smime_build_smime_entity (tmp_smime_pbody, -- keylist))) -+ char *new_keylist = keylist; -+ -+ if (SmimeDefaultKey && query_quadoption(OPT_SMIMEENCRYPTSELF, _("Encrypt message to S/MIME Default Key also?")) == MUTT_YES) -+ { -+ int size = mutt_strlen(keylist) + mutt_strlen (SmimeDefaultKey) + 2; /* +1 for NULL, +1 for \n */ -+ new_keylist = safe_malloc(size); -+ snprintf(new_keylist, size, "%s%s\n", keylist, SmimeDefaultKey); -+ } -+ -+ tmp_pbody = crypt_smime_build_smime_entity (tmp_smime_pbody, new_keylist); -+ safe_free((void **)&new_keylist); -+ if (!tmp_pbody) - { - /* signed ? free it! */ - return (-1); ---- init.h.orig 2017-06-04 00:05:52 UTC -+++ init.h -@@ -3017,6 +3017,11 @@ struct option_t MuttVars[] = { - ** possible \fCprintf(3)\fP-like sequences. - ** (S/MIME only) - */ -+ { "smime_encrypt_self", DT_QUAD, R_NONE, OPT_SMIMEENCRYPTSELF, 1 }, -+ /* -+ ** .pp -+ ** Encrypt the message to smime_default_key too. -+ */ - { "smime_encrypt_with", DT_STR, R_NONE, UL &SmimeCryptAlg, UL "aes256" }, - /* - ** .pp ---- mutt.h.orig 2017-06-04 00:05:52 UTC -+++ mutt.h -@@ -284,6 +284,7 @@ enum - OPT_FORWEDIT, - OPT_FCCATTACH, - OPT_INCLUDE, -+ OPT_SMIMEENCRYPTSELF, - OPT_MFUPTO, - OPT_MIMEFWD, - OPT_MIMEFWDREST, diff --git a/mail/mutt/files/patch-smime-sender b/mail/mutt/files/patch-smime-sender index 750474cd007..9234ea62796 100644 --- a/mail/mutt/files/patch-smime-sender +++ b/mail/mutt/files/patch-smime-sender @@ -1,4 +1,4 @@ ---- commands.c.orig 2017-05-30 19:27:52 UTC +--- commands.c.orig 2017-09-08 22:18:16 UTC +++ commands.c @@ -185,7 +185,7 @@ int mutt_display_message (HEADER *cur) { @@ -9,23 +9,9 @@ mutt_message ( _("S/MIME signature successfully verified.")); else mutt_error ( _("S/MIME certificate owner does not match sender.")); ---- contrib/smime.rc.orig 2017-06-04 00:06:24 UTC -+++ contrib/smime.rc -@@ -8,7 +8,10 @@ set smime_is_default - - # Uncomment this if you don't want to set labels for certificates you add. - # unset smime_ask_cert_label -- -+ -+# Uncomment this if you don't want to check for sender's email address -+# set smime_dont_check_sender = yes -+ - # Passphrase expiration - set smime_timeout=300 - ---- init.h.orig 2017-06-04 00:06:24 UTC +--- init.h.orig 2017-09-08 22:18:16 UTC +++ init.h -@@ -3000,6 +3000,15 @@ struct option_t MuttVars[] = { +@@ -3099,6 +3099,15 @@ struct option_t MuttVars[] = { ** to determine the key to use. It will ask you to supply a key, if it can't find one. ** (S/MIME only) */ @@ -41,11 +27,11 @@ { "smime_sign_as", DT_SYN, R_NONE, UL "smime_default_key", 0 }, { "smime_default_key", DT_STR, R_NONE, UL &SmimeDefaultKey, 0 }, /* ---- mutt.h.orig 2017-06-04 00:06:24 UTC +--- mutt.h.orig 2017-09-08 22:18:16 UTC +++ mutt.h -@@ -513,6 +513,7 @@ enum - OPTCRYPTTIMESTAMP, +@@ -521,6 +521,7 @@ enum OPTSMIMEISDEFAULT, + OPTSMIMESELFENCRYPT, OPTASKCERTLABEL, + OPTSMIMENOSENDER, OPTSDEFAULTDECRYPTKEY, diff --git a/mail/mutt/files/patch-threadcomplete b/mail/mutt/files/patch-threadcomplete index da05ebf338e..335b4ba96e0 100644 --- a/mail/mutt/files/patch-threadcomplete +++ b/mail/mutt/files/patch-threadcomplete @@ -1,4 +1,4 @@ ---- mutt.h.orig 2017-06-03 22:52:35 UTC +--- mutt.h.orig 2017-09-04 23:39:03 UTC +++ mutt.h @@ -211,6 +211,7 @@ enum MUTT_EXPIRED, @@ -8,9 +8,9 @@ /* actions for mutt_pattern_comp/mutt_pattern_exec */ MUTT_AND, ---- pattern.c.orig 2017-06-03 22:52:35 UTC +--- pattern.c.orig 2017-09-04 23:39:03 UTC +++ pattern.c -@@ -57,6 +57,7 @@ static const struct pattern_flags +@@ -56,6 +56,7 @@ static const struct pattern_flags } Flags[] = { @@ -18,7 +18,7 @@ { 'A', MUTT_ALL, 0, NULL }, { 'b', MUTT_BODY, MUTT_FULL_MSG, eat_regexp }, { 'B', MUTT_WHOLE_MSG, MUTT_FULL_MSG, eat_regexp }, -@@ -1302,6 +1303,16 @@ pattern_exec (struct pattern_t *pat, pat +@@ -1270,6 +1271,16 @@ mutt_pattern_exec (struct pattern_t *pat else result = mutt_is_list_cc (pat->alladdr, h->env->to, h->env->cc); return (pat->not ^ result); diff --git a/mail/neomutt/Makefile b/mail/neomutt/Makefile index bc3fc8731fc..8f1df0f3ad2 100644 --- a/mail/neomutt/Makefile +++ b/mail/neomutt/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= neomutt -PORTVERSION= 20170714 +PORTVERSION= 20170907 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= mail @@ -14,9 +14,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:misc/mime-support \ urlview:textproc/urlview +USES= autoreconf iconv:translit localbase shebangfix ssl + USE_GITHUB= yes -USES= autoreconf iconv:translit localbase shebangfix ssl GNU_CONFIGURE= yes EXPLICIT_SAFESTACK= yes diff --git a/mail/neomutt/distinfo b/mail/neomutt/distinfo index 7439951e7a0..4f4b56b94dc 100644 --- a/mail/neomutt/distinfo +++ b/mail/neomutt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1500055455 -SHA256 (neomutt-neomutt-neomutt-20170714_GH0.tar.gz) = 40d48920f95ca49ab96eb109b658f5cf6e1c222320c58bdd03769c1355d7a383 -SIZE (neomutt-neomutt-neomutt-20170714_GH0.tar.gz) = 2509160 +TIMESTAMP = 1504971595 +SHA256 (neomutt-neomutt-neomutt-20170907_GH0.tar.gz) = 24df11b4a96172736ff94a02bb6e4c310beaae4d14129972020951785ad35b50 +SIZE (neomutt-neomutt-neomutt-20170907_GH0.tar.gz) = 2532041 diff --git a/mail/neomutt/pkg-plist b/mail/neomutt/pkg-plist index bd365c883e7..4c3497f1b02 100644 --- a/mail/neomutt/pkg-plist +++ b/mail/neomutt/pkg-plist @@ -91,24 +91,6 @@ man/man5/muttrc.5.gz %%PORTDOCS%%%%DOCSDIR%%/samples/colors.default %%PORTDOCS%%%%DOCSDIR%%/samples/colors.linux %%PORTDOCS%%%%DOCSDIR%%/samples/gpg.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.aix-3.2.5.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.aix-4.1.5.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.aix-4.2.0.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.aix-4.3.2.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.freebsd-3.3.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.glibc-2.1.3.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.glibc-2.1.90.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.hpux-10.01.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.hpux-10.20.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.hpux-11.00.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.irix-6.5.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.osf1-4.0a.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.osf1-4.0d.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.solaris-2.4.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.solaris-2.5.1.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.solaris-2.6-cjk.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.solaris-2.6.rc -%%PORTDOCS%%%%DOCSDIR%%/samples/iconv/iconv.solaris-2.7.rc %%PORTDOCS%%%%DOCSDIR%%/samples/pgp2.rc %%PORTDOCS%%%%DOCSDIR%%/samples/pgp5.rc %%PORTDOCS%%%%DOCSDIR%%/samples/pgp6.rc diff --git a/mail/p5-Email-Simple/Makefile b/mail/p5-Email-Simple/Makefile index c9b3bab0b11..de5be1823b8 100644 --- a/mail/p5-Email-Simple/Makefile +++ b/mail/p5-Email-Simple/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Email-Simple -PORTVERSION= 2.213 +PORTVERSION= 2.214 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/mail/p5-Email-Simple/distinfo b/mail/p5-Email-Simple/distinfo index ec003492c18..b6299a1e7dc 100644 --- a/mail/p5-Email-Simple/distinfo +++ b/mail/p5-Email-Simple/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1484304106 -SHA256 (Email-Simple-2.213.tar.gz) = cdb97a9d647231cc0f7207a31ed6ec5ffde6b8ac6504910dc378bf619ed57cc5 -SIZE (Email-Simple-2.213.tar.gz) = 39302 +TIMESTAMP = 1504948354 +SHA256 (Email-Simple-2.214.tar.gz) = b2f02b37441ea60efbddebbd675017d26bb767e9a4de3e0fc30b5410a1416b92 +SIZE (Email-Simple-2.214.tar.gz) = 39590 diff --git a/mail/py-notmuch/Makefile b/mail/py-notmuch/Makefile index 1557151ff8b..1f7a5d7a303 100644 --- a/mail/py-notmuch/Makefile +++ b/mail/py-notmuch/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= notmuch -PORTVERSION= 0.23.1 +PORTVERSION= 0.25 CATEGORIES= mail python MASTER_SITES= http://notmuchmail.org/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/mail/py-notmuch/distinfo b/mail/py-notmuch/distinfo index bf23634dbb0..a763791620e 100644 --- a/mail/py-notmuch/distinfo +++ b/mail/py-notmuch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1479199291 -SHA256 (notmuch-0.23.1.tar.gz) = e8012a1aa9afa47dfeb78f826610577e6bf9714e0933f28139c8611aad96d180 -SIZE (notmuch-0.23.1.tar.gz) = 690069 +TIMESTAMP = 1504984307 +SHA256 (notmuch-0.25.tar.gz) = 65d28d1f783d02629039f7d15d9a2bada147a7d3809f86fe8d13861b0f6ae60b +SIZE (notmuch-0.25.tar.gz) = 882093 diff --git a/mail/rspamd/Makefile b/mail/rspamd/Makefile index b4bf13661ad..8b420b0f1e0 100644 --- a/mail/rspamd/Makefile +++ b/mail/rspamd/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rspamd -PORTVERSION= 1.6.3 +PORTVERSION= 1.6.4 CATEGORIES= mail MAINTAINER= vsevolod@FreeBSD.org diff --git a/mail/rspamd/distinfo b/mail/rspamd/distinfo index 15f1e24e47e..c9535d2e17d 100644 --- a/mail/rspamd/distinfo +++ b/mail/rspamd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501192321 -SHA256 (vstakhov-rspamd-1.6.3_GH0.tar.gz) = 0d89fc4966c71b209a0f566458b1651dfa11b651b5e772cbe599177270e8c13f -SIZE (vstakhov-rspamd-1.6.3_GH0.tar.gz) = 2476617 +TIMESTAMP = 1505043191 +SHA256 (vstakhov-rspamd-1.6.4_GH0.tar.gz) = 70560ffe308e25086ff9c56d8ba40e759652693b4e94fcc10f808620928d510f +SIZE (vstakhov-rspamd-1.6.4_GH0.tar.gz) = 2482277 diff --git a/mail/rubygem-actionmailer5/Makefile b/mail/rubygem-actionmailer5/Makefile index 719fd69321d..9b1e89ace8d 100644 --- a/mail/rubygem-actionmailer5/Makefile +++ b/mail/rubygem-actionmailer5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionmailer -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/mail/rubygem-actionmailer5/distinfo b/mail/rubygem-actionmailer5/distinfo index 0d09c74a1b5..ea5ef38f054 100644 --- a/mail/rubygem-actionmailer5/distinfo +++ b/mail/rubygem-actionmailer5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862710 -SHA256 (rubygem/actionmailer-5.1.3.gem) = a2841384bb40951e6d63ca78ca665bdfcc792c732825cc2c83ae4b4d05363f67 -SIZE (rubygem/actionmailer-5.1.3.gem) = 29184 +TIMESTAMP = 1504891682 +SHA256 (rubygem/actionmailer-5.1.4.gem) = 5ae798850bd284f803cc006887d6b089692183a8c192393436c519bd6ec598e9 +SIZE (rubygem/actionmailer-5.1.4.gem) = 29184 diff --git a/mail/rubygem-actionmailer50/Makefile b/mail/rubygem-actionmailer50/Makefile index e3d6b27eaf5..b28b5167091 100644 --- a/mail/rubygem-actionmailer50/Makefile +++ b/mail/rubygem-actionmailer50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionmailer -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/mail/rubygem-actionmailer50/distinfo b/mail/rubygem-actionmailer50/distinfo index b429300724c..9f43a1f4a5c 100644 --- a/mail/rubygem-actionmailer50/distinfo +++ b/mail/rubygem-actionmailer50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604053 -SHA256 (rubygem/actionmailer-5.0.5.gem) = c48a93381dde7206fd2cb0ddc00a922021fcdf6bce35c262bd357c7922a63fb7 -SIZE (rubygem/actionmailer-5.0.5.gem) = 28672 +TIMESTAMP = 1504891771 +SHA256 (rubygem/actionmailer-5.0.6.gem) = bb1113dd020f310fc7948bd13766eeab6cf975a0e1322c8a10cd12adbcacea4f +SIZE (rubygem/actionmailer-5.0.6.gem) = 28672 diff --git a/mail/sgwi/Makefile b/mail/sgwi/Makefile index 4e1b0438171..d3bbc4d4b02 100644 --- a/mail/sgwi/Makefile +++ b/mail/sgwi/Makefile @@ -3,9 +3,10 @@ PORTNAME= sgwi PORTVERSION= 1.1.8 +PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= http://www.vanheusden.com/sgwi/ \ - http://lukasz.wasikowski.net/files/ + https://www.freebsd.systems/files/ DISTNAME= sqlgreywebinterface-${PORTVERSION} MAINTAINER= lukasz@wasikowski.net @@ -13,7 +14,7 @@ COMMENT= PHP web interface to SQLGrey LICENSE= GPLv2 -USES= tar:tgz +USES= tar:tgz php:web NO_BUILD= yes SUB_FILES+= pkg-message pkg-install SUB_LIST= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} @@ -27,12 +28,10 @@ SQLITE3_DESC= SQLite3 back-end (use pgsql PHP extension) OPTIONS_DEFAULT=MYSQL -MYSQL_USE= PHP=mysql +MYSQL_USE= PHP=mysqli PGSQL_USE= PHP=pgsql SQLITE3_USE= PHP=sqlite3 -WANT_PHP_WEB= yes - post-patch: ${FIND} ${WRKSRC} -name '*.orig' -delete diff --git a/mail/sgwi/distinfo b/mail/sgwi/distinfo index d833cd3a30a..79fad51ad29 100644 --- a/mail/sgwi/distinfo +++ b/mail/sgwi/distinfo @@ -1,2 +1,3 @@ +TIMESTAMP = 1498052573 SHA256 (sqlgreywebinterface-1.1.8.tgz) = 33685805e417f13de7224fe5ccb98c4a4a2df27cb2f1c98a3a8ae76f2911cf08 SIZE (sqlgreywebinterface-1.1.8.tgz) = 14257 diff --git a/mail/squirrelmail-translations/Makefile b/mail/squirrelmail-translations/Makefile index e023de4bd1d..8edd0c29f96 100644 --- a/mail/squirrelmail-translations/Makefile +++ b/mail/squirrelmail-translations/Makefile @@ -19,7 +19,7 @@ RUN_DEPENDS= squirrelmail>=${PORTVERSION}:mail/squirrelmail USES= tar:bzip2 gettext WRKSRC= ${WRKDIR}/squirrelmail.locales NO_ARCH= yes -PORTSCOUT= ignore +PORTSCOUT= ignore:1 # if you were using WITHOUT_WWWDIR, use SQUIRRELDIR=${PREFIX}/squirrelmail SQUIRRELDIR?= ${PREFIX}/www/squirrelmail diff --git a/mail/squirrelmail/Makefile b/mail/squirrelmail/Makefile index aa92dbcf7c9..6f7e8c910e0 100644 --- a/mail/squirrelmail/Makefile +++ b/mail/squirrelmail/Makefile @@ -19,7 +19,7 @@ USES= cpe gettext perl5 php:web tar:bzip2 USE_PHP= session hash gettext mbstring pcre openssl xml USE_PERL5= run NO_ARCH= yes -PORTSCOUT= ignore +PORTSCOUT= ignore:1 WRKSRC= ${WRKDIR}/${PORTNAME}.stable/${PORTNAME} diff --git a/math/Makefile b/math/Makefile index 5a5c6af4a1f..d3d4e4eac3f 100644 --- a/math/Makefile +++ b/math/Makefile @@ -7,7 +7,10 @@ SUBDIR += PDL SUBDIR += R SUBDIR += R-cran-Amelia + SUBDIR += R-cran-CVST SUBDIR += R-cran-ChangeAnomalyDetection + SUBDIR += R-cran-DEoptimR + SUBDIR += R-cran-DRR SUBDIR += R-cran-Formula SUBDIR += R-cran-KFAS SUBDIR += R-cran-LearnBayes @@ -22,6 +25,7 @@ SUBDIR += R-cran-RcppArmadillo SUBDIR += R-cran-RcppEigen SUBDIR += R-cran-Rmpfr + SUBDIR += R-cran-robustbase SUBDIR += R-cran-Rsolnp SUBDIR += R-cran-SparseM SUBDIR += R-cran-VGAM @@ -32,7 +36,9 @@ SUBDIR += R-cran-car SUBDIR += R-cran-coda SUBDIR += R-cran-combinat + SUBDIR += R-cran-ddalpha SUBDIR += R-cran-deldir + SUBDIR += R-cran-dimRed SUBDIR += R-cran-dlmodeler SUBDIR += R-cran-dplyr SUBDIR += R-cran-expm @@ -40,14 +46,17 @@ SUBDIR += R-cran-fracdiff SUBDIR += R-cran-geepack SUBDIR += R-cran-gmp + SUBDIR += R-cran-gower SUBDIR += R-cran-gpclib SUBDIR += R-cran-gss SUBDIR += R-cran-gtable SUBDIR += R-cran-igraph SUBDIR += R-cran-influenceR SUBDIR += R-cran-inline + SUBDIR += R-cran-ipred SUBDIR += R-cran-irlba SUBDIR += R-cran-labeling + SUBDIR += R-cran-lava SUBDIR += R-cran-lazyeval SUBDIR += R-cran-lme4 SUBDIR += R-cran-maxLik @@ -62,10 +71,13 @@ SUBDIR += R-cran-numDeriv SUBDIR += R-cran-outliers SUBDIR += R-cran-pbkrtest + SUBDIR += R-cran-prodlim SUBDIR += R-cran-psych SUBDIR += R-cran-quadprog SUBDIR += R-cran-qualityTools SUBDIR += R-cran-quantreg + SUBDIR += R-cran-RcppRoll + SUBDIR += R-cran-recipes SUBDIR += R-cran-rgenoud SUBDIR += R-cran-sandwich SUBDIR += R-cran-sf diff --git a/math/R-cran-CVST/Makefile b/math/R-cran-CVST/Makefile new file mode 100644 index 00000000000..04ecc1fbc71 --- /dev/null +++ b/math/R-cran-CVST/Makefile @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= CVST +DISTVERSION= 0.2-1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Fast Cross-Validation via Sequential Testing + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-kernlab>0:science/R-cran-kernlab +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include diff --git a/math/R-cran-CVST/distinfo b/math/R-cran-CVST/distinfo new file mode 100644 index 00000000000..6a56e81bf3d --- /dev/null +++ b/math/R-cran-CVST/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505027642 +SHA256 (CVST_0.2-1.tar.gz) = a27fd2bfa778fce9b9a68d2b9206c66af27b3c36a973dd45ce673886a267aa9f +SIZE (CVST_0.2-1.tar.gz) = 12452 diff --git a/math/R-cran-CVST/pkg-descr b/math/R-cran-CVST/pkg-descr new file mode 100644 index 00000000000..70fda66c91f --- /dev/null +++ b/math/R-cran-CVST/pkg-descr @@ -0,0 +1,16 @@ +This package implements the fast cross-validation via sequential +testing (CVST) procedure. CVST is an improved cross-validation +procedure which uses non-parametric testing coupled with sequential +analysis to determine the best parameter set on linearly increasing +subsets of the data. By eliminating underperforming candidates +quickly and keeping promising candidates as long as possible, the +method speeds up the computation while preserving the capability +of a full cross-validation. Additionally to the CVST the package +contains an implementation of the ordinary k-fold cross-validation +with a flexible and powerful set of helper objects and methods to +handle the overall model selection process. The implementations of +the Cochran's Q test with permutations and the sequential testing +framework of Wald are generic and can therefore also be used in +other contexts. + +WWW: https://cran.r-project.org/web/packages/CVST/ diff --git a/math/R-cran-DEoptimR/Makefile b/math/R-cran-DEoptimR/Makefile new file mode 100644 index 00000000000..8e63a76fc81 --- /dev/null +++ b/math/R-cran-DEoptimR/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= DEoptimR +DISTVERSION= 1.0-8 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Differential Evolution Optimization in Pure R + +LICENSE= GPLv2+ + +USES= cran:auto-plist + +.include diff --git a/math/R-cran-DEoptimR/distinfo b/math/R-cran-DEoptimR/distinfo new file mode 100644 index 00000000000..00181cc2134 --- /dev/null +++ b/math/R-cran-DEoptimR/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505040137 +SHA256 (DEoptimR_1.0-8.tar.gz) = 846911c1b2561a9fae73a8c60a21a5680963ebb0050af3c1f1147ae9a121e5ef +SIZE (DEoptimR_1.0-8.tar.gz) = 35401 diff --git a/math/R-cran-DEoptimR/pkg-descr b/math/R-cran-DEoptimR/pkg-descr new file mode 100644 index 00000000000..d5352b36eb3 --- /dev/null +++ b/math/R-cran-DEoptimR/pkg-descr @@ -0,0 +1,9 @@ +Differential Evolution (DE) stochastic algorithms for global +optimization of problems with and without constraints. The aim is +to curate a collection of its state-of-the-art variants that (1) +do not sacrifice simplicity of design, (2) are essentially tuning-free, +and (3) can be efficiently implemented directly in the R language. +Currently, it only provides an implementation of the 'jDE' algorithm +by Brest et al. (2006) . + +WWW: https://cran.r-project.org/web/packages/DEoptimR/ diff --git a/math/R-cran-DRR/Makefile b/math/R-cran-DRR/Makefile new file mode 100644 index 00000000000..0c443069cea --- /dev/null +++ b/math/R-cran-DRR/Makefile @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= DRR +PORTVERSION= 0.0.2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Dimensionality Reduction via Regression + +LICENSE= GPLv3 + +CRAN_DEPENDS= R-cran-kernlab>0:science/R-cran-kernlab \ + R-cran-CVST>0:math/R-cran-CVST +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include diff --git a/math/R-cran-DRR/distinfo b/math/R-cran-DRR/distinfo new file mode 100644 index 00000000000..41f2b7c0946 --- /dev/null +++ b/math/R-cran-DRR/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505024562 +SHA256 (DRR_0.0.2.tar.gz) = 02860f05f97a6020012fb6ebfe0d7738dd9e9db0555326f1ef57199fcde58ee9 +SIZE (DRR_0.0.2.tar.gz) = 116827 diff --git a/math/R-cran-DRR/pkg-descr b/math/R-cran-DRR/pkg-descr new file mode 100644 index 00000000000..3f9e7a59b6a --- /dev/null +++ b/math/R-cran-DRR/pkg-descr @@ -0,0 +1,4 @@ +An Implementation of Dimensionality Reduction via Regression using +Kernel Ridge Regression. + +WWW: https://cran.r-project.org/web/packages/DRR/ diff --git a/math/R-cran-RcppRoll/Makefile b/math/R-cran-RcppRoll/Makefile new file mode 100644 index 00000000000..45333d55d37 --- /dev/null +++ b/math/R-cran-RcppRoll/Makefile @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= RcppRoll +DISTVERSION= 0.2.2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Efficient Rolling / Windowed Operations + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-Rcpp>0:devel/R-cran-Rcpp +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/math/R-cran-RcppRoll/distinfo b/math/R-cran-RcppRoll/distinfo new file mode 100644 index 00000000000..bf4b1b2a99a --- /dev/null +++ b/math/R-cran-RcppRoll/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505046201 +SHA256 (RcppRoll_0.2.2.tar.gz) = 51c76812687e2a8572c6037b0c095c0a30ee6a24783edf2c7c717d547ddfbfa7 +SIZE (RcppRoll_0.2.2.tar.gz) = 13680 diff --git a/math/R-cran-RcppRoll/pkg-descr b/math/R-cran-RcppRoll/pkg-descr new file mode 100644 index 00000000000..30601342c15 --- /dev/null +++ b/math/R-cran-RcppRoll/pkg-descr @@ -0,0 +1,6 @@ +Provides fast and efficient routines for common rolling / windowed +operations. Routines for the efficient computation of windowed mean, +median, sum, product, minimum, maximum, standard deviation and +variance are provided. + +WWW: https://cran.r-project.org/web/packages/RcppRoll/ diff --git a/math/R-cran-ddalpha/Makefile b/math/R-cran-ddalpha/Makefile new file mode 100644 index 00000000000..44907501a88 --- /dev/null +++ b/math/R-cran-ddalpha/Makefile @@ -0,0 +1,22 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= ddalpha +PORTVERSION= 1.2.1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Depth-Based Classification and Calculation of Data Depth + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-robustbase>0:math/R-cran-robustbase \ + R-cran-Rcpp>=0.11.0:devel/R-cran-Rcpp \ + R-cran-BH>0:devel/R-cran-BH +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/math/R-cran-ddalpha/distinfo b/math/R-cran-ddalpha/distinfo new file mode 100644 index 00000000000..8abd3ed45c0 --- /dev/null +++ b/math/R-cran-ddalpha/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505038914 +SHA256 (ddalpha_1.2.1.tar.gz) = c4a9842e9dec1bd992460e6c68b5f2f5d6463d0c2474ef2e0e572dd34b284d5b +SIZE (ddalpha_1.2.1.tar.gz) = 417557 diff --git a/math/R-cran-ddalpha/pkg-descr b/math/R-cran-ddalpha/pkg-descr new file mode 100644 index 00000000000..a17a6f3fcc1 --- /dev/null +++ b/math/R-cran-ddalpha/pkg-descr @@ -0,0 +1,10 @@ +Contains procedures for depth-based supervised learning, which are +entirely non-parametric, in particular the DDalpha-procedure (Lange, +Mosler and Mozharovskyi, 2014). The training data sample is transformed +by a statistical depth function to a compact low-dimensional space, +where the final classification is done. It also offers an extension +to functional data and routines for calculating certain notions of +statistical depth functions. 50 multivariate and 5 functional +classification problems are included. + +WWW: https://cran.r-project.org/web/packages/ddalpha/ diff --git a/math/R-cran-dimRed/Makefile b/math/R-cran-dimRed/Makefile new file mode 100644 index 00000000000..a3d910a62b8 --- /dev/null +++ b/math/R-cran-dimRed/Makefile @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= dimRed +PORTVERSION= 0.1.0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Framework for Dimensionality Reduction + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +CRAN_DEPENDS= R-cran-DRR>0:math/R-cran-DRR +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/math/R-cran-dimRed/distinfo b/math/R-cran-dimRed/distinfo new file mode 100644 index 00000000000..27198fc781a --- /dev/null +++ b/math/R-cran-dimRed/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505019349 +SHA256 (dimRed_0.1.0.tar.gz) = fb0cef7a21b8a5219c74e5227a282168599dd63e904130366f3d2fed8a625a39 +SIZE (dimRed_0.1.0.tar.gz) = 70299 diff --git a/math/R-cran-dimRed/pkg-descr b/math/R-cran-dimRed/pkg-descr new file mode 100644 index 00000000000..2a382e1b3ec --- /dev/null +++ b/math/R-cran-dimRed/pkg-descr @@ -0,0 +1,4 @@ +A collection of dimensionality reduction techniques from R packages +and provides a common interface for calling the methods. + +WWW: https://cran.r-project.org/web/packages/dimRed/ diff --git a/math/R-cran-gower/Makefile b/math/R-cran-gower/Makefile new file mode 100644 index 00000000000..9ef4511de1f --- /dev/null +++ b/math/R-cran-gower/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= gower +DISTVERSION= 0.1.2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Gower's Distance + +LICENSE= GPLv3 + +USES= cran:auto-plist,compiles + +.include diff --git a/math/R-cran-gower/distinfo b/math/R-cran-gower/distinfo new file mode 100644 index 00000000000..fdd0474e93a --- /dev/null +++ b/math/R-cran-gower/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505047545 +SHA256 (gower_0.1.2.tar.gz) = eb91b2d2784d237c7055abcf3cfa4fc0b2226b855a0c29fc5a4e8eaa689079d5 +SIZE (gower_0.1.2.tar.gz) = 17393 diff --git a/math/R-cran-gower/pkg-descr b/math/R-cran-gower/pkg-descr new file mode 100644 index 00000000000..f05e8088d45 --- /dev/null +++ b/math/R-cran-gower/pkg-descr @@ -0,0 +1,5 @@ +Compute Gower's distance (or similarity) coefficient between records. +Compute the top-n matches between records. Core algorithms are +executed in parallel on systems supporting OpenMP. + +WWW: https://cran.r-project.org/web/packages/gower/ diff --git a/math/R-cran-ipred/Makefile b/math/R-cran-ipred/Makefile new file mode 100644 index 00000000000..ddb3533eda4 --- /dev/null +++ b/math/R-cran-ipred/Makefile @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= ipred +DISTVERSION= 0.9-6 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Improved Predictors + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-prodlim>0:math/R-cran-prodlim +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/math/R-cran-ipred/distinfo b/math/R-cran-ipred/distinfo new file mode 100644 index 00000000000..ce7d197b327 --- /dev/null +++ b/math/R-cran-ipred/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1504922950 +SHA256 (ipred_0.9-6.tar.gz) = b8d36438eb9b7209d27b85738dcad03b2e535dcb2f4191432780d9cbf00d3cef +SIZE (ipred_0.9-6.tar.gz) = 186516 diff --git a/math/R-cran-ipred/pkg-descr b/math/R-cran-ipred/pkg-descr new file mode 100644 index 00000000000..6f9c132ac82 --- /dev/null +++ b/math/R-cran-ipred/pkg-descr @@ -0,0 +1,5 @@ +Improved predictive models by indirect classification and bagging +for classification, regression and survival problems as well as +resampling based estimators of prediction error. + +WWW: https://cran.r-project.org/web/packages/ipred/ diff --git a/math/R-cran-lava/Makefile b/math/R-cran-lava/Makefile new file mode 100644 index 00000000000..76a7fa654f2 --- /dev/null +++ b/math/R-cran-lava/Makefile @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= lava +DISTVERSION= 1.5 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Latent Variable Models + +LICENSE= GPLv3 + +CRAN_DEPENDS= R-cran-numDeriv>0:math/R-cran-numDeriv +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include diff --git a/math/R-cran-lava/distinfo b/math/R-cran-lava/distinfo new file mode 100644 index 00000000000..3d5157b2955 --- /dev/null +++ b/math/R-cran-lava/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1504939480 +SHA256 (lava_1.5.tar.gz) = 82fdc3fccb48c0928e043c08162220381269f83e73d902335107f510423fda74 +SIZE (lava_1.5.tar.gz) = 828070 diff --git a/math/R-cran-lava/pkg-descr b/math/R-cran-lava/pkg-descr new file mode 100644 index 00000000000..ce65e25cc10 --- /dev/null +++ b/math/R-cran-lava/pkg-descr @@ -0,0 +1,3 @@ +Estimation and simulation of latent variable models. + +WWW: https://cran.r-project.org/web/packages/lava/ diff --git a/math/R-cran-prodlim/Makefile b/math/R-cran-prodlim/Makefile new file mode 100644 index 00000000000..ce08df4af22 --- /dev/null +++ b/math/R-cran-prodlim/Makefile @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= prodlim +PORTVERSION= 1.6.1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Product-Limit Estimation for Censored Event History Analysis + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-Rcpp>=0.11.5:devel/R-cran-Rcpp \ + R-cran-lava>0:math/R-cran-lava +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/math/R-cran-prodlim/distinfo b/math/R-cran-prodlim/distinfo new file mode 100644 index 00000000000..dd19c9eda7f --- /dev/null +++ b/math/R-cran-prodlim/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1504934329 +SHA256 (prodlim_1.6.1.tar.gz) = 3f2665257118a3db8682731a500b1ae4d669af344672dc2037f987bee3cca154 +SIZE (prodlim_1.6.1.tar.gz) = 124175 diff --git a/math/R-cran-prodlim/pkg-descr b/math/R-cran-prodlim/pkg-descr new file mode 100644 index 00000000000..24aecd77541 --- /dev/null +++ b/math/R-cran-prodlim/pkg-descr @@ -0,0 +1,5 @@ +Fast and user friendly implementation of nonparametric estimators +for censored event history (survival) analysis. Kaplan-Meier and +Aalen-Johansen method. + +WWW: https://cran.r-project.org/web/packages/prodlim/ diff --git a/math/R-cran-recipes/Makefile b/math/R-cran-recipes/Makefile new file mode 100644 index 00000000000..8f57a6c7d06 --- /dev/null +++ b/math/R-cran-recipes/Makefile @@ -0,0 +1,32 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= recipes +PORTVERSION= 0.1.0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Preprocessing Tools to Create Design Matrices + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-dplyr>0:math/R-cran-dplyr \ + R-cran-tibble>0:devel/R-cran-tibble \ + R-cran-ipred>0:math/R-cran-ipred \ + R-cran-dimRed>=0.1.0:math/R-cran-dimRed \ + R-cran-lubridate>0:devel/R-cran-lubridate \ + R-cran-timeDate>0:finance/R-cran-timeDate \ + R-cran-ddalpha>0:math/R-cran-ddalpha \ + R-cran-purrr>0:devel/R-cran-purrr \ + R-cran-rlang>=0.1.1:devel/R-cran-rlang \ + R-cran-gower>0:math/R-cran-gower \ + R-cran-RcppRoll>0:math/R-cran-RcppRoll \ + R-cran-tidyselect>=0.1.1:devel/R-cran-tidyselect \ + R-cran-magrittr>0:devel/R-cran-magrittr +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include diff --git a/math/R-cran-recipes/distinfo b/math/R-cran-recipes/distinfo new file mode 100644 index 00000000000..b88171be934 --- /dev/null +++ b/math/R-cran-recipes/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1504921818 +SHA256 (recipes_0.1.0.tar.gz) = 6ba689b5101f54d8b32844ee15cf0e8f4cee471e62fc3f36ab1d463c0099cd67 +SIZE (recipes_0.1.0.tar.gz) = 523958 diff --git a/math/R-cran-recipes/pkg-descr b/math/R-cran-recipes/pkg-descr new file mode 100644 index 00000000000..277de9b54f5 --- /dev/null +++ b/math/R-cran-recipes/pkg-descr @@ -0,0 +1,8 @@ +An extensible framework to create and preprocess design matrices. +Recipes consist of one or more data manipulation and analysis +"steps". Statistical parameters for the steps can be estimated from +an initial data set and then applied to other data sets. The resulting +design matrices can then be used as inputs into statistical or +machine learning models. + +WWW: https://cran.r-project.org/web/packages/recipes/ diff --git a/math/R-cran-robustbase/Makefile b/math/R-cran-robustbase/Makefile new file mode 100644 index 00000000000..c67936a3b62 --- /dev/null +++ b/math/R-cran-robustbase/Makefile @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= robustbase +DISTVERSION= 0.92-7 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Basic Robust Statistics + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-DEoptimR>0:math/R-cran-DEoptimR +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/math/R-cran-robustbase/distinfo b/math/R-cran-robustbase/distinfo new file mode 100644 index 00000000000..0db79ca35f4 --- /dev/null +++ b/math/R-cran-robustbase/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505039483 +SHA256 (robustbase_0.92-7.tar.gz) = fcbd6ccbb0291b599fe6a674a91344511e0a691b9cadba0a9d40037faa22bf8f +SIZE (robustbase_0.92-7.tar.gz) = 3430164 diff --git a/math/R-cran-robustbase/pkg-descr b/math/R-cran-robustbase/pkg-descr new file mode 100644 index 00000000000..c2abde810c8 --- /dev/null +++ b/math/R-cran-robustbase/pkg-descr @@ -0,0 +1,7 @@ +"Essential" Robust Statistics. Tools allowing to analyze data with +robust methods. This includes regression methodology including model +selections and multivariate statistics where we strive to cover the +book "Robust Statistics, Theory and Methods" by 'Maronna, Martin +and Yohai'; Wiley 2006. + +WWW: https://cran.r-project.org/web/packages/robustbase/ diff --git a/multimedia/mkvalidator/Makefile b/multimedia/mkvalidator/Makefile index 609fe217d8a..fefc4af561b 100644 --- a/multimedia/mkvalidator/Makefile +++ b/multimedia/mkvalidator/Makefile @@ -12,6 +12,7 @@ LICENSE= BSD3CLAUSE BSD4CLAUSE GPLv2 LICENSE_COMB= multi BROKEN_powerpc64= does not compile: mkvtree.c: error: dereferencing pointer to incomplete type +BROKEN_sparc64= build broken on big endian architectures BUILD_WRKSRC= ${WRKSRC}/${PORTNAME} @@ -25,8 +26,6 @@ LIBS+= -L${ICONV_PREFIX}/lib ${ICONV_LIB} PLIST_FILES= bin/mkvalidator bin/mkvtree -BROKEN_sparc64= Build broken on big endian architectures - MAKE_JOBS_UNSAFE= yes post-patch: diff --git a/multimedia/mkvalidator/files/patch-corec-tools-coremake-gcc_linux_arm.build b/multimedia/mkvalidator/files/patch-corec-tools-coremake-gcc_linux_arm.build index 9c8b008c6d9..8ac983c6ade 100644 --- a/multimedia/mkvalidator/files/patch-corec-tools-coremake-gcc_linux_arm.build +++ b/multimedia/mkvalidator/files/patch-corec-tools-coremake-gcc_linux_arm.build @@ -1,6 +1,6 @@ ---- corec/tools/coremake/gcc_linux_arm.build.orig 2012-12-16 11:29:34.000000000 +0100 -+++ corec/tools/coremake/gcc_linux_arm.build 2015-04-11 19:30:30.119705652 +0200 -@@ -19,8 +19,8 @@ +--- corec/tools/coremake/gcc_linux_arm.build.orig 2012-12-16 10:29:34 UTC ++++ corec/tools/coremake/gcc_linux_arm.build +@@ -19,8 +19,8 @@ SVNDIR = linux_arm #define GLIBC diff --git a/multimedia/mkvalidator/files/patch-corec__corec__helpers__file__file_libc.c b/multimedia/mkvalidator/files/patch-corec__corec__helpers__file__file_libc.c index b726b7608e2..33e12b57236 100644 --- a/multimedia/mkvalidator/files/patch-corec__corec__helpers__file__file_libc.c +++ b/multimedia/mkvalidator/files/patch-corec__corec__helpers__file__file_libc.c @@ -1,5 +1,5 @@ ---- ./corec/corec/helpers/file/file_libc.c.orig 2011-09-25 11:25:46.000000000 +0200 -+++ ./corec/corec/helpers/file/file_libc.c 2011-09-28 16:25:02.262950715 +0200 +--- corec/corec/helpers/file/file_libc.c.orig 2012-12-16 10:29:34 UTC ++++ corec/corec/helpers/file/file_libc.c @@ -40,7 +40,7 @@ #include #include diff --git a/multimedia/mkvalidator/files/patch-corec__corec__portab.h b/multimedia/mkvalidator/files/patch-corec__corec__portab.h index 8a1147a35f2..fd066306fdf 100644 --- a/multimedia/mkvalidator/files/patch-corec__corec__portab.h +++ b/multimedia/mkvalidator/files/patch-corec__corec__portab.h @@ -1,5 +1,5 @@ ---- ./corec/corec/portab.h.orig 2011-09-25 11:25:46.000000000 +0200 -+++ ./corec/corec/portab.h 2011-09-28 16:25:47.730826509 +0200 +--- corec/corec/portab.h.orig 2012-12-16 10:29:34 UTC ++++ corec/corec/portab.h @@ -159,6 +159,9 @@ #elif defined(__linux__) || defined(__CYGWIN__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) diff --git a/net-mgmt/hawk/Makefile b/net-mgmt/hawk/Makefile index 9932ad1ccd5..d87911bf383 100644 --- a/net-mgmt/hawk/Makefile +++ b/net-mgmt/hawk/Makefile @@ -20,7 +20,7 @@ USES= perl5 USE_MYSQL= server USE_PHP= mysql WANT_PHP_MOD= yes -IGNORE_WITH_PHP= 70 +IGNORE_WITH_PHP= 70 71 NO_BUILD= yes USE_RC_SUBR= hawk diff --git a/print/pdfstitch/Makefile b/print/pdfstitch/Makefile index 5527957a995..2f3c45ea0f3 100644 --- a/print/pdfstitch/Makefile +++ b/print/pdfstitch/Makefile @@ -3,7 +3,7 @@ PORTNAME= pdfstitch DISTVERSIONPREFIX= v -DISTVERSION= 0.4 +DISTVERSION= 0.5 CATEGORIES= print MAINTAINER= ports@textmail.me diff --git a/print/pdfstitch/distinfo b/print/pdfstitch/distinfo index efbbe7f1469..312266886f0 100644 --- a/print/pdfstitch/distinfo +++ b/print/pdfstitch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502780467 -SHA256 (sur5r-pdfstitch-v0.4_GH0.tar.gz) = 380ce7b4a28e7fa4b9e2027a2bfa46ffe645da07b1ef26dbf1b5d04288148def -SIZE (sur5r-pdfstitch-v0.4_GH0.tar.gz) = 14606 +TIMESTAMP = 1504512867 +SHA256 (sur5r-pdfstitch-v0.5_GH0.tar.gz) = 4e22d113e9d210f44439150f71ffc761ee6e2cc626e636e2e8a310f26063ebdc +SIZE (sur5r-pdfstitch-v0.5_GH0.tar.gz) = 14741 diff --git a/science/Makefile b/science/Makefile index 6d68b0d83e1..e18f95ee9ba 100644 --- a/science/Makefile +++ b/science/Makefile @@ -14,6 +14,7 @@ SUBDIR += R-cran-eco SUBDIR += R-cran-epicalc SUBDIR += R-cran-etm + SUBDIR += R-cran-kernlab SUBDIR += R-cran-snow SUBDIR += R-cran-som SUBDIR += R-cran-udunits2 diff --git a/science/R-cran-kernlab/Makefile b/science/R-cran-kernlab/Makefile new file mode 100644 index 00000000000..cfaf8b7fa84 --- /dev/null +++ b/science/R-cran-kernlab/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= kernlab +DISTVERSION= 0.9-25 +CATEGORIES= science +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Kernel-Based Machine Learning Lab + +LICENSE= GPLv2 + +USES= cran:auto-plist,compiles + +.include diff --git a/science/R-cran-kernlab/distinfo b/science/R-cran-kernlab/distinfo new file mode 100644 index 00000000000..3cb033808cb --- /dev/null +++ b/science/R-cran-kernlab/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505025454 +SHA256 (kernlab_0.9-25.tar.gz) = b9de072754bb03c02c4d6a5ca20f2290fd090de328b55ab334ac0b397ac2ca62 +SIZE (kernlab_0.9-25.tar.gz) = 1170281 diff --git a/science/R-cran-kernlab/pkg-descr b/science/R-cran-kernlab/pkg-descr new file mode 100644 index 00000000000..5d88394f2cf --- /dev/null +++ b/science/R-cran-kernlab/pkg-descr @@ -0,0 +1,7 @@ +Kernel-based machine learning methods for classification, regression, +clustering, novelty detection, quantile regression and dimensionality +reduction. Among other methods 'kernlab' includes Support Vector +Machines, Spectral Clustering, Kernel PCA, Gaussian Processes and +a QP solver. + +WWW: https://cran.r-project.org/web/packages/kernlab/ diff --git a/security/fragroute/Makefile b/security/fragroute/Makefile index 3d0a4a3ccab..3561cfc1968 100644 --- a/security/fragroute/Makefile +++ b/security/fragroute/Makefile @@ -12,20 +12,21 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Tool for intercepting, modifying, and rewriting egress traffic LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libdnet.so:net/libdnet \ libevent.so:devel/libevent GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-libdnet=${LOCALBASE} \ - --with-libevent=${LOCALBASE} --with-pcap +CONFIGURE_ARGS= --with-libdnet=${LOCALBASE} \ + --with-libevent=${LOCALBASE} --with-pcap SCRIPTS= README.snort base-1 frag-1 frag-2 frag-3 frag-4 frag-5 \ - frag-6 frag-7-unix frag-7-win32 ins-2 ins-3 tcbc-2 tcp-3 tcp-5 \ - tcp-7 tcp-9 + frag-6 frag-7-unix frag-7-win32 ins-2 ins-3 tcbc-2 tcp-3 \ + tcp-5 tcp-7 tcp-9 pre-install: - ${MKDIR} ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} .for FILE in ${SCRIPTS} ${INSTALL_DATA} ${WRKSRC}/scripts/${FILE} ${STAGEDIR}${DATADIR} .endfor diff --git a/security/fragroute/pkg-descr b/security/fragroute/pkg-descr index 358402d495f..ae798989b0e 100644 --- a/security/fragroute/pkg-descr +++ b/security/fragroute/pkg-descr @@ -12,4 +12,4 @@ This tool was written in good faith to aid in the testing of network intrusion detection systems, firewalls, and basic TCP/IP stack behaviour. Please do not abuse this software." -WWW: http://www.monkey.org/~dugsong/fragroute/ +WWW: https://www.monkey.org/~dugsong/fragroute/ diff --git a/security/metasploit/Makefile b/security/metasploit/Makefile index b34bd40043c..4ef78b7beb5 100644 --- a/security/metasploit/Makefile +++ b/security/metasploit/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= metasploit -PORTVERSION= 4.16.4 +PORTVERSION= 4.16.6 CATEGORIES= security MAINTAINER= tanawts@gmail.com @@ -26,7 +26,7 @@ RUN_DEPENDS= nmap:security/nmap \ rubygem-metasploit-credential>=0:security/rubygem-metasploit-credential \ rubygem-metasploit_data_models>=0:security/rubygem-metasploit_data_models \ rubygem-metasploit-model>=0:security/rubygem-metasploit-model \ - rubygem-metasploit-payloads>=1.3.1:security/rubygem-metasploit-payloads \ + rubygem-metasploit-payloads>=1.3.7:security/rubygem-metasploit-payloads \ rubygem-metasploit_payloads-mettle>=0.2.2:security/rubygem-metasploit_payloads-mettle \ rubygem-msgpack1>=0:devel/rubygem-msgpack1 \ rubygem-network_interface>=0:net/rubygem-network_interface \ diff --git a/security/metasploit/distinfo b/security/metasploit/distinfo index 7cf0f3533b4..f8186924bfa 100644 --- a/security/metasploit/distinfo +++ b/security/metasploit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504362422 -SHA256 (rapid7-metasploit-framework-4.16.4_GH0.tar.gz) = 90c047801b3cab01a95ac1005eae41ae939f06d2b63f63717e9dc732e1334bd9 -SIZE (rapid7-metasploit-framework-4.16.4_GH0.tar.gz) = 24066657 +TIMESTAMP = 1504945681 +SHA256 (rapid7-metasploit-framework-4.16.6_GH0.tar.gz) = ce52552388df286028aa5e7c29ddc323749742890947b5bdc5038c807a85332b +SIZE (rapid7-metasploit-framework-4.16.6_GH0.tar.gz) = 24085120 diff --git a/security/py-keyrings.alt/Makefile b/security/py-keyrings.alt/Makefile index f915be1fd0d..3b84f35da85 100644 --- a/security/py-keyrings.alt/Makefile +++ b/security/py-keyrings.alt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= keyrings.alt -PORTVERSION= 2.2 +PORTVERSION= 2.3 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/security/py-keyrings.alt/distinfo b/security/py-keyrings.alt/distinfo index a4b659e9025..bdd23573b0b 100644 --- a/security/py-keyrings.alt/distinfo +++ b/security/py-keyrings.alt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1493259448 -SHA256 (keyrings.alt-2.2.tar.gz) = f438bd6e9f1b413b8926b0568fc8aaf2f773fa5b75fed4fb49091c5b32ad85a6 -SIZE (keyrings.alt-2.2.tar.gz) = 26121 +TIMESTAMP = 1504978655 +SHA256 (keyrings.alt-2.3.tar.gz) = 5cb9b6cdb5ce5e8216533e342d3e1b418ddd210466834061966d7dc1a4736f2d +SIZE (keyrings.alt-2.3.tar.gz) = 26170 diff --git a/security/rubygem-metasploit-payloads/Makefile b/security/rubygem-metasploit-payloads/Makefile index 9176376a415..26faa740459 100644 --- a/security/rubygem-metasploit-payloads/Makefile +++ b/security/rubygem-metasploit-payloads/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= metasploit-payloads -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.7 CATEGORIES= security rubygems MASTER_SITES= RG diff --git a/security/rubygem-metasploit-payloads/distinfo b/security/rubygem-metasploit-payloads/distinfo index 3a6be8ea59a..9e19bae4eaf 100644 --- a/security/rubygem-metasploit-payloads/distinfo +++ b/security/rubygem-metasploit-payloads/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1503602904 -SHA256 (rubygem/metasploit-payloads-1.3.1.gem) = dd7e4018922f8d32aace493f78fa1b642f8a58b29e7563aeb7b930f211509045 -SIZE (rubygem/metasploit-payloads-1.3.1.gem) = 11912704 +TIMESTAMP = 1504945779 +SHA256 (rubygem/metasploit-payloads-1.3.7.gem) = 46c0d07ed4fe58cca69a13e3085180105546bc56cea3d069b21746e5a1abd5c8 +SIZE (rubygem/metasploit-payloads-1.3.7.gem) = 11930112 diff --git a/security/rubygem-nexpose/Makefile b/security/rubygem-nexpose/Makefile index 76590440423..a52de736191 100644 --- a/security/rubygem-nexpose/Makefile +++ b/security/rubygem-nexpose/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= nexpose -PORTVERSION= 6.1.1 +PORTVERSION= 7.0.0 CATEGORIES= security rubygems MASTER_SITES= RG diff --git a/security/rubygem-nexpose/distinfo b/security/rubygem-nexpose/distinfo index bb84eafc3d9..04f4d2df2eb 100644 --- a/security/rubygem-nexpose/distinfo +++ b/security/rubygem-nexpose/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502057606 -SHA256 (rubygem/nexpose-6.1.1.gem) = eb37d87274a75a96f596b909bec176cc2da8956d0e8c24216423a39f80dcde4a -SIZE (rubygem/nexpose-6.1.1.gem) = 98816 +TIMESTAMP = 1504945836 +SHA256 (rubygem/nexpose-7.0.0.gem) = 89ba2e6b7a54570e00b934187cdb44f7e556387de4aa0f51f3f7f40c39f7ed94 +SIZE (rubygem/nexpose-7.0.0.gem) = 109056 diff --git a/security/rubygem-recog/Makefile b/security/rubygem-recog/Makefile index 40bb7bc4859..db4febfd9e2 100644 --- a/security/rubygem-recog/Makefile +++ b/security/rubygem-recog/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= recog -PORTVERSION= 2.1.12 +PORTVERSION= 2.1.15 CATEGORIES= security rubygems MASTER_SITES= RG diff --git a/security/rubygem-recog/distinfo b/security/rubygem-recog/distinfo index ba24cffa2d3..030fe0895c9 100644 --- a/security/rubygem-recog/distinfo +++ b/security/rubygem-recog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1503602823 -SHA256 (rubygem/recog-2.1.12.gem) = 43be97ec970cbe70135796709537d7caa93910787eaeb8ee2247e59ca71f0240 -SIZE (rubygem/recog-2.1.12.gem) = 223744 +TIMESTAMP = 1504945876 +SHA256 (rubygem/recog-2.1.15.gem) = e7f252816d089bba56ebc9568ad48fa8f90da6ba5f222fff4132b372ffce5d22 +SIZE (rubygem/recog-2.1.15.gem) = 224256 diff --git a/security/rubygem-rex-random_identifier/Makefile b/security/rubygem-rex-random_identifier/Makefile index 7654852843b..203494efd78 100644 --- a/security/rubygem-rex-random_identifier/Makefile +++ b/security/rubygem-rex-random_identifier/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rex-random_identifier -PORTVERSION= 0.1.3 +PORTVERSION= 0.1.4 CATEGORIES= security rubygems MASTER_SITES= RG diff --git a/security/rubygem-rex-random_identifier/distinfo b/security/rubygem-rex-random_identifier/distinfo index c6d05945627..b1b0d0eb598 100644 --- a/security/rubygem-rex-random_identifier/distinfo +++ b/security/rubygem-rex-random_identifier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504257959 -SHA256 (rubygem/rex-random_identifier-0.1.3.gem) = 87330d64b49bb6f470c66de8c18f8ac28271937dcb002ba9a5981156f8d89df7 -SIZE (rubygem/rex-random_identifier-0.1.3.gem) = 16896 +TIMESTAMP = 1504945904 +SHA256 (rubygem/rex-random_identifier-0.1.4.gem) = 73d1fe1183426b435cba63ca5c6894df63da6c13fc61bc6916ac38f79926e939 +SIZE (rubygem/rex-random_identifier-0.1.4.gem) = 16896 diff --git a/security/ssh-vault/Makefile b/security/ssh-vault/Makefile index 7db0c83895c..ae964de3e7d 100644 --- a/security/ssh-vault/Makefile +++ b/security/ssh-vault/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ssh-vault -PORTVERSION= 0.11.4 +PORTVERSION= 0.12.1 CATEGORIES= security MAINTAINER= nbari@tequila.io @@ -17,7 +17,7 @@ USES= go USE_GITHUB= yes GH_TUPLE= ssh-vault:crypto:ae180e0:crypto/src/github.com/ssh-vault/crypto \ - ssh-vault:ssh2pem:bcc6846:ssh2pem/src/github.com/ssh-vault/ssh2pem + ssh-vault:ssh2pem:c1edc64:ssh2pem/src/github.com/ssh-vault/ssh2pem GH_SUBDIR= src/github.com/${PORTNAME}/${PORTNAME} STRIP= # stripping can break go binaries diff --git a/security/ssh-vault/distinfo b/security/ssh-vault/distinfo index 74c74846c37..2e27583226c 100644 --- a/security/ssh-vault/distinfo +++ b/security/ssh-vault/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1503309777 -SHA256 (ssh-vault-ssh-vault-0.11.4_GH0.tar.gz) = a007ec0790c0768761cd7c5747e3434ab6c9e06af29e9e3c336a79e0e179604a -SIZE (ssh-vault-ssh-vault-0.11.4_GH0.tar.gz) = 16766 +TIMESTAMP = 1504985804 +SHA256 (ssh-vault-ssh-vault-0.12.1_GH0.tar.gz) = e68ead1903f343a14d5177b5ff97972f5e5582159201180011323ae0b3c8d947 +SIZE (ssh-vault-ssh-vault-0.12.1_GH0.tar.gz) = 17753 SHA256 (ssh-vault-crypto-ae180e0_GH0.tar.gz) = fe73e39078ecd1d077ddfdfb296c00eaa19c149856443259fe8964ff0951423f SIZE (ssh-vault-crypto-ae180e0_GH0.tar.gz) = 2062 -SHA256 (ssh-vault-ssh2pem-bcc6846_GH0.tar.gz) = b11c21626f5f69794220405a63637abd324b139a88d032f4e2b52d769160a30c -SIZE (ssh-vault-ssh2pem-bcc6846_GH0.tar.gz) = 1521 +SHA256 (ssh-vault-ssh2pem-c1edc64_GH0.tar.gz) = a06595af99ffe330a6167250e53492b0738664d69c311fcb0f02e1cb6fea33a9 +SIZE (ssh-vault-ssh2pem-c1edc64_GH0.tar.gz) = 1523 diff --git a/sysutils/dsblogoutmgr/Makefile b/sysutils/dsblogoutmgr/Makefile index dfafc9f3851..6c174f31fe4 100644 --- a/sysutils/dsblogoutmgr/Makefile +++ b/sysutils/dsblogoutmgr/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= dsblogoutmgr -PORTVERSION= 1.0.1 +PORTVERSION= 1.1 CATEGORIES= sysutils MASTER_SITES= http://freeshell.de/~mk/download/ diff --git a/sysutils/dsblogoutmgr/distinfo b/sysutils/dsblogoutmgr/distinfo index 5364aa71089..a2d54c414ab 100644 --- a/sysutils/dsblogoutmgr/distinfo +++ b/sysutils/dsblogoutmgr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502054848 -SHA256 (dsblogoutmgr-1.0.1.tgz) = 8fea92340ce08ce29cc5d14185f7c01ea63446b0793e97020698294347535c3f -SIZE (dsblogoutmgr-1.0.1.tgz) = 16199 +TIMESTAMP = 1504387170 +SHA256 (dsblogoutmgr-1.1.tgz) = c7645a4457737ddf972a937428a4096ed61a0b00e8abbfb5ad580bab2668aaa5 +SIZE (dsblogoutmgr-1.1.tgz) = 16450 diff --git a/sysutils/gnome-power-manager/Makefile b/sysutils/gnome-power-manager/Makefile index c5d59386a1c..0c95c86e1fb 100644 --- a/sysutils/gnome-power-manager/Makefile +++ b/sysutils/gnome-power-manager/Makefile @@ -10,35 +10,30 @@ DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Power management system for the GNOME Desktop +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libupower-glib.so:sysutils/upower PORTSCOUT= limitw:1,even -USES= gettext gmake gnome libtool pathfix pkgconfig tar:xz +USES= gettext gmake gnome libtool localbase:ldflags pathfix pkgconfig tar:xz INSTALLS_ICONS= yes USE_GNOME= gtk30 intlhack GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-doc-dir=${PREFIX}/share/doc \ --disable-docbook-docs -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib GLIB_SCHEMAS= org.gnome.power-manager.gschema.xml OPTIONS_DEFINE= MANPAGES +OPTIONS_SUB= yes -.include +MANPAGES_BUILD_DEPENDS= docbook2html:textproc/docbook-utils \ + docbook-sgml>0:textproc/docbook-sgml -.if ${PORT_OPTIONS:MMANPAGES} || defined(PACKAGE_BUILDING) -BUILD_DEPENDS+= docbook2html:textproc/docbook-utils \ - docbook-sgml>0:textproc/docbook-sgml -PLIST_SUB+= MAN="" -.else -PLIST_SUB+= MAN="@comment " - -post-patch: +post-patch-MANPAGES-off: @${REINPLACE_CMD} -e "s|2MAN_TRUE=$$|2MAN_TRUE='#'|g ; \ s|2MAN_FALSE='#'|2MAN_FALSE=|g" ${WRKSRC}/configure -.endif .include diff --git a/sysutils/gnome-power-manager/pkg-descr b/sysutils/gnome-power-manager/pkg-descr index 186c9ced498..bf75914f213 100644 --- a/sysutils/gnome-power-manager/pkg-descr +++ b/sysutils/gnome-power-manager/pkg-descr @@ -4,4 +4,4 @@ for HAL events and responds with user-configurable reactions. Currently it supports laptop batteries and AC adapters. Its goal is to be architecture neutral and free of polling and other hacks. -WWW: http://projects.gnome.org/gnome-power-manager/ +WWW: https://projects.gnome.org/gnome-power-manager/ diff --git a/sysutils/gnome-power-manager/pkg-plist b/sysutils/gnome-power-manager/pkg-plist index 592c930e1eb..04ce6ae8ee2 100644 --- a/sysutils/gnome-power-manager/pkg-plist +++ b/sysutils/gnome-power-manager/pkg-plist @@ -1,5 +1,5 @@ bin/gnome-power-statistics -%%MAN%%man/man1/gnome-power-statistics.1.gz +%%MANPAGES%%man/man1/gnome-power-statistics.1.gz share/appdata/gnome-power-statistics.appdata.xml share/applications/gnome-power-statistics.desktop share/icons/hicolor/16x16/apps/gnome-power-statistics.png diff --git a/sysutils/immortal/Makefile b/sysutils/immortal/Makefile index aaff470e6ec..49a413196c3 100644 --- a/sysutils/immortal/Makefile +++ b/sysutils/immortal/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= immortal -PORTVERSION= 0.15.0 +PORTVERSION= 0.16.0 CATEGORIES= sysutils MAINTAINER= nbari@tequila.io @@ -18,7 +18,7 @@ GH_TUPLE= immortal:logrotate:8591051:logrotate/src/github.com/immortal/logrotate immortal:natcasesort:69368b7:natcasesort/src/github.com/immortal/natcasesort \ immortal:xtime:fb1aca1:xtime/src/github.com/immortal/xtime \ nbari:violetear:13cb9a6:nbari/src/github.com/nbari/violetear \ - go-yaml:yaml:25c4ec8:yaml/src/github.com/go-yaml/yaml + go-yaml:yaml:eb3733d:yaml/src/github.com/go-yaml/yaml GH_SUBDIR= src/github.com/${PORTNAME}/${PORTNAME} do-build: diff --git a/sysutils/immortal/distinfo b/sysutils/immortal/distinfo index 24ae6abf018..d8137b3da4a 100644 --- a/sysutils/immortal/distinfo +++ b/sysutils/immortal/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1501619151 -SHA256 (immortal-immortal-0.15.0_GH0.tar.gz) = bf0fa8f16f8045211a43f42001ed685959a28427a970f50db79c1a9176603b7b -SIZE (immortal-immortal-0.15.0_GH0.tar.gz) = 32997 +TIMESTAMP = 1504985741 +SHA256 (immortal-immortal-0.16.0_GH0.tar.gz) = b540882641b904be956ac0cf3a4a9cda9c5ea709c24b68c77c3f08a1a13272b6 +SIZE (immortal-immortal-0.16.0_GH0.tar.gz) = 33521 SHA256 (immortal-logrotate-8591051_GH0.tar.gz) = c1b3b669c8dc2def4291b0798a6776b06e03d0543c8181ba09191e9a3cb1b97e SIZE (immortal-logrotate-8591051_GH0.tar.gz) = 3786 SHA256 (immortal-multiwriter-2555774_GH0.tar.gz) = 0988932d02debf79c7928e307a812027b642da7e5cad8846604577ed56220d57 @@ -11,5 +11,5 @@ SHA256 (immortal-xtime-fb1aca1_GH0.tar.gz) = b6d7b321e2feca0ec66d19e4b2feea0be88 SIZE (immortal-xtime-fb1aca1_GH0.tar.gz) = 1104 SHA256 (nbari-violetear-13cb9a6_GH0.tar.gz) = 4b80699dada4bfbe6058fc76ff11b94588a8f736d91ca200c28fa723cc3de8e3 SIZE (nbari-violetear-13cb9a6_GH0.tar.gz) = 16387 -SHA256 (go-yaml-yaml-25c4ec8_GH0.tar.gz) = dc5116c179734068aab4a7047655051756b75b0b4d92106bd9c9016dd3683e52 -SIZE (go-yaml-yaml-25c4ec8_GH0.tar.gz) = 61310 +SHA256 (go-yaml-yaml-eb3733d_GH0.tar.gz) = d2ae44f0e31f3a13a1b89a55ceaabcbab4d588d41951fd2243739b60b10146bb +SIZE (go-yaml-yaml-eb3733d_GH0.tar.gz) = 64686 diff --git a/sysutils/lsof/Makefile b/sysutils/lsof/Makefile index 9cd4e00b3d4..63ebc1dcd6f 100644 --- a/sysutils/lsof/Makefile +++ b/sysutils/lsof/Makefile @@ -4,6 +4,7 @@ PORTNAME= lsof DISTVERSION= 4.90M PORTEPOCH= 8 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/ \ ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/NEW/ \ diff --git a/sysutils/lsof/files/patch-dialects_freebsd_dlsof.h b/sysutils/lsof/files/patch-dialects_freebsd_dlsof.h new file mode 100644 index 00000000000..3f8973aa00f --- /dev/null +++ b/sysutils/lsof/files/patch-dialects_freebsd_dlsof.h @@ -0,0 +1,16 @@ +--- dialects/freebsd/dlsof.h.orig 2017-09-10 14:02:39 UTC ++++ dialects/freebsd/dlsof.h +@@ -486,6 +486,13 @@ struct vop_advlock_args { int dummy; }; /* to pacify l + # endif /* FREEBSDV<5000 */ + # endif /* FREEBSDV>=2020 */ + ++/* ++ * Inclusion of kernel headers with _KERNEL specified causes a conflict with ++ * userspace. bzero is a macro, but is redefined to be a function in string.h ++ * Work around by just undefing. ++ */ ++#undef bzero ++ + #include + + diff --git a/sysutils/py-psutil/Makefile b/sysutils/py-psutil/Makefile index 0d417e6a5f4..46bf83853cc 100644 --- a/sysutils/py-psutil/Makefile +++ b/sysutils/py-psutil/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= psutil -PORTVERSION= 5.3.0 +PORTVERSION= 5.3.1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/sysutils/py-psutil/distinfo b/sysutils/py-psutil/distinfo index da6a82a4f43..9ba700f10d0 100644 --- a/sysutils/py-psutil/distinfo +++ b/sysutils/py-psutil/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504355550 -SHA256 (psutil-5.3.0.tar.gz) = a3940e06e92c84ab6e82b95dad056241beea93c3c9b1d07ddf96485079855185 -SIZE (psutil-5.3.0.tar.gz) = 397265 +TIMESTAMP = 1505043420 +SHA256 (psutil-5.3.1.tar.gz) = 12dd9c8abbad15f055e9579130035b38617020ce176f4a498b7870e6321ffa67 +SIZE (psutil-5.3.1.tar.gz) = 397075 diff --git a/sysutils/py-psutil/files/patch-psutil-arch-freebsd-proc_socks.c b/sysutils/py-psutil/files/patch-psutil-arch-freebsd-proc_socks.c deleted file mode 100644 index a97bbb4dcea..00000000000 --- a/sysutils/py-psutil/files/patch-psutil-arch-freebsd-proc_socks.c +++ /dev/null @@ -1,87 +0,0 @@ ---- psutil/arch/freebsd/proc_socks.c.orig 2017-08-03 16:14:27 UTC -+++ psutil/arch/freebsd/proc_socks.c -@@ -136,20 +136,36 @@ psutil_search_tcplist(char *buf, struct - if (kif->kf_sock_domain == AF_INET) { - if (!psutil_sockaddr_matches( - AF_INET, inp->inp_lport, &inp->inp_laddr, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_local)) -+#else - &kif->kf_sa_local)) -+#endif - continue; - if (!psutil_sockaddr_matches( - AF_INET, inp->inp_fport, &inp->inp_faddr, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_peer)) -+#else - &kif->kf_sa_peer)) -+#endif - continue; - } else { - if (!psutil_sockaddr_matches( - AF_INET6, inp->inp_lport, &inp->in6p_laddr, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_local)) -+#else - &kif->kf_sa_local)) -+#endif - continue; - if (!psutil_sockaddr_matches( - AF_INET6, inp->inp_fport, &inp->in6p_faddr, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_peer)) -+#else - &kif->kf_sa_peer)) -+#endif - continue; - } - -@@ -243,19 +259,35 @@ psutil_proc_connections(PyObject *self, - inet_ntop( - kif->kf_sock_domain, - psutil_sockaddr_addr(kif->kf_sock_domain, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_local), -+#else - &kif->kf_sa_local), -+#endif - lip, - sizeof(lip)); - inet_ntop( - kif->kf_sock_domain, - psutil_sockaddr_addr(kif->kf_sock_domain, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_peer), -+#else - &kif->kf_sa_peer), -+#endif - rip, - sizeof(rip)); - lport = htons(psutil_sockaddr_port(kif->kf_sock_domain, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_local)); -+#else - &kif->kf_sa_local)); -+#endif - rport = htons(psutil_sockaddr_port(kif->kf_sock_domain, -+#if __FreeBSD_version >= 1200031 -+ &kif->kf_un.kf_sock.kf_sa_peer)); -+#else - &kif->kf_sa_peer)); -+#endif - - // construct python tuple/list - py_laddr = Py_BuildValue("(si)", lip, lport); -@@ -287,7 +319,11 @@ psutil_proc_connections(PyObject *self, - else if (kif->kf_sock_domain == AF_UNIX) { - struct sockaddr_un *sun; - -+#if __FreeBSD_version >= 1200031 -+ sun = (struct sockaddr_un *)&kif->kf_un.kf_sock.kf_sa_local; -+#else - sun = (struct sockaddr_un *)&kif->kf_sa_local; -+#endif - snprintf( - path, sizeof(path), "%.*s", - (int)(sun->sun_len - (sizeof(*sun) - sizeof(sun->sun_path))), diff --git a/sysutils/rubygem-capistrano/Makefile b/sysutils/rubygem-capistrano/Makefile index 24fb40353e4..5fc0324aa8a 100644 --- a/sysutils/rubygem-capistrano/Makefile +++ b/sysutils/rubygem-capistrano/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= capistrano -PORTVERSION= 3.9.0 +PORTVERSION= 3.9.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG diff --git a/sysutils/rubygem-capistrano/distinfo b/sysutils/rubygem-capistrano/distinfo index 9d3ae8ff4dc..55a2de25c24 100644 --- a/sysutils/rubygem-capistrano/distinfo +++ b/sysutils/rubygem-capistrano/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501325095 -SHA256 (rubygem/capistrano-3.9.0.gem) = e1e9463ee478a0ad2ddbdfd7a782447d86703a495666a8bf63ee00829ccef636 -SIZE (rubygem/capistrano-3.9.0.gem) = 76800 +TIMESTAMP = 1504948362 +SHA256 (rubygem/capistrano-3.9.1.gem) = 38bc88eeab067e78af9f77b03b436083b1fdefd06930a9a2208519a14f2c0587 +SIZE (rubygem/capistrano-3.9.1.gem) = 77312 diff --git a/textproc/ffe/Makefile b/textproc/ffe/Makefile index 442cbc1b48e..047985c07b8 100644 --- a/textproc/ffe/Makefile +++ b/textproc/ffe/Makefile @@ -2,17 +2,20 @@ # $FreeBSD$ PORTNAME= ffe -DISTVERSION= 0.3.6-1 +DISTVERSION= 0.3.7-1 CATEGORIES= textproc MASTER_SITES= SF/ff-extractor/ff-extractor/${DISTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= amutu@amutu.com COMMENT= Flat file extractor LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= makeinfo +LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ + libgpg-error.so:security/libgpg-error + +USES= makeinfo localbase GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_func_setmode=no # looks for wrong kind of setmode() diff --git a/textproc/ffe/distinfo b/textproc/ffe/distinfo index 1c1f4be10a4..ad984ac1adf 100644 --- a/textproc/ffe/distinfo +++ b/textproc/ffe/distinfo @@ -1,2 +1,3 @@ -SHA256 (ffe-0.3.6-1.tar.gz) = 11da84f9e45fa20170a434d1587135c229771a192c97817b493035aeec33e886 -SIZE (ffe-0.3.6-1.tar.gz) = 304170 +TIMESTAMP = 1499332225 +SHA256 (ffe-0.3.7-1.tar.gz) = 0266e65778b4e69ae65c5dad43577767612f0afe13dc8c3e2cd3c49f7c869689 +SIZE (ffe-0.3.7-1.tar.gz) = 310941 diff --git a/textproc/py-xlsxwriter/Makefile b/textproc/py-xlsxwriter/Makefile index c0abf795051..9d458dc2836 100644 --- a/textproc/py-xlsxwriter/Makefile +++ b/textproc/py-xlsxwriter/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= XlsxWriter -PORTVERSION= 0.9.8 +PORTVERSION= 0.9.9 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/py-xlsxwriter/distinfo b/textproc/py-xlsxwriter/distinfo index f2eee6d4893..632ae37379d 100644 --- a/textproc/py-xlsxwriter/distinfo +++ b/textproc/py-xlsxwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1499343780 -SHA256 (XlsxWriter-0.9.8.tar.gz) = 1bba62325b7efc97b0bf9d8864cc7e31506263994d93404b94b0997fb47e1570 -SIZE (XlsxWriter-0.9.8.tar.gz) = 236187 +TIMESTAMP = 1505027809 +SHA256 (XlsxWriter-0.9.9.tar.gz) = 9ae87f451ee28fc229dbdc74ec3d55b4d0ebcd470ec37bfe33a56e82dea1ce35 +SIZE (XlsxWriter-0.9.9.tar.gz) = 238653 diff --git a/textproc/rubygem-css_parser/Makefile b/textproc/rubygem-css_parser/Makefile index d54e469449f..2dff075d6c0 100644 --- a/textproc/rubygem-css_parser/Makefile +++ b/textproc/rubygem-css_parser/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= css_parser -PORTVERSION= 1.5.0 +PORTVERSION= 1.6.0 CATEGORIES= textproc www rubygems MASTER_SITES= RG diff --git a/textproc/rubygem-css_parser/distinfo b/textproc/rubygem-css_parser/distinfo index 35fc9b52c5a..b65311e39ec 100644 --- a/textproc/rubygem-css_parser/distinfo +++ b/textproc/rubygem-css_parser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1492961429 -SHA256 (rubygem/css_parser-1.5.0.gem) = 1e86596c96fd1adbd36009e7ab795516be359e2037b54109569e1060d909994a -SIZE (rubygem/css_parser-1.5.0.gem) = 19456 +TIMESTAMP = 1504976825 +SHA256 (rubygem/css_parser-1.6.0.gem) = c1ec03f48eb336fdef54cd13220544299154c6a65746f7a322df3ec42a729b3f +SIZE (rubygem/css_parser-1.6.0.gem) = 19456 diff --git a/textproc/rubygem-kramdown/Makefile b/textproc/rubygem-kramdown/Makefile index d1a2bdc9b51..aebbb2fd124 100644 --- a/textproc/rubygem-kramdown/Makefile +++ b/textproc/rubygem-kramdown/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= kramdown -PORTVERSION= 1.14.0 +PORTVERSION= 1.15.0 CATEGORIES= textproc rubygems MASTER_SITES= RG diff --git a/textproc/rubygem-kramdown/distinfo b/textproc/rubygem-kramdown/distinfo index b57e94911f7..be02e28b493 100644 --- a/textproc/rubygem-kramdown/distinfo +++ b/textproc/rubygem-kramdown/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1498574352 -SHA256 (rubygem/kramdown-1.14.0.gem) = f166820406ba92beeedb8cc496c1d1040cb237d5ad9d073b251e4a26562650a1 -SIZE (rubygem/kramdown-1.14.0.gem) = 250368 +TIMESTAMP = 1504948368 +SHA256 (rubygem/kramdown-1.15.0.gem) = ae38a564b31434005b0b64ddd2e636c375b32ce159394ae90702b681bd6a618a +SIZE (rubygem/kramdown-1.15.0.gem) = 250368 diff --git a/www/mod_md-devel/Makefile b/www/mod_md-devel/Makefile index 29ba2a21e38..64f8a7e4e5f 100644 --- a/www/mod_md-devel/Makefile +++ b/www/mod_md-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mod_md-devel -PORTVERSION= 0.9.1 +PORTVERSION= 0.9.2 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/mod_md-devel/distinfo b/www/mod_md-devel/distinfo index 9c24bf336a9..0411a445ff3 100644 --- a/www/mod_md-devel/distinfo +++ b/www/mod_md-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1504726189 -SHA256 (icing-mod_md-v0.9.1_GH0.tar.gz) = edc88e131e8000d863a090d755858f8b35e20d9df00e4045d84f61eb28e3617e -SIZE (icing-mod_md-v0.9.1_GH0.tar.gz) = 181362 +TIMESTAMP = 1505041445 +SHA256 (icing-mod_md-v0.9.2_GH0.tar.gz) = 03ae47a2d76ad4e1cf63e6e98f5500e5810cd9e939481b779c8287816a1faff6 +SIZE (icing-mod_md-v0.9.2_GH0.tar.gz) = 182061 diff --git a/www/mod_md-devel/files/extra-patch-mod_ssl b/www/mod_md-devel/files/extra-patch-mod_ssl new file mode 100644 index 00000000000..99ae2c148c5 --- /dev/null +++ b/www/mod_md-devel/files/extra-patch-mod_ssl @@ -0,0 +1,280 @@ +Index: modules/ssl/ssl_engine_init.c +24c84dc from https://github.com/icing/mod_md/blob/master/patches/mod_ssl_md-2.4.x-v4.diff +=================================================================== +--- modules/ssl/ssl_engine_init.c (revision 1807228) ++++ modules/ssl/ssl_engine_init.c (working copy) +@@ -164,6 +164,41 @@ + modver, AP_SERVER_BASEVERSION, incver); + } + ++/**************************************************************************************************/ ++/* Managed Domains Interface (temporary here) */ ++ ++APR_DECLARE_OPTIONAL_FN(int, ++ md_is_managed, (struct server_rec *)); ++ ++APR_DECLARE_OPTIONAL_FN(apr_status_t, ++ md_get_credentials, (struct server_rec *, apr_pool_t *, ++ const char **pkeyfile, ++ const char **pcertfile, ++ const char **pchainfile)); ++APR_DECLARE_OPTIONAL_FN(apr_status_t, ++ md_get_certificate, (struct server_rec *, apr_pool_t *, ++ const char **pkeyfile, ++ const char **pcertfile)); ++APR_DECLARE_OPTIONAL_FN(int, ++ md_is_challenge, (struct conn_rec *, const char *, ++ X509 **, EVP_PKEY **)); ++ ++static APR_OPTIONAL_FN_TYPE(md_is_managed) *md_is_managed; ++static APR_OPTIONAL_FN_TYPE(md_get_credentials) *md_get_credentials; ++static APR_OPTIONAL_FN_TYPE(md_get_certificate) *md_get_certificate; ++static APR_OPTIONAL_FN_TYPE(md_is_challenge) *md_is_challenge; ++ ++int ssl_is_challenge(conn_rec *c, const char *servername, ++ X509 **pcert, EVP_PKEY **pkey) ++{ ++ if (md_is_challenge) { ++ return md_is_challenge(c, servername, pcert, pkey); ++ } ++ *pcert = NULL; ++ *pkey = NULL; ++ return 0; ++} ++ + /* + * Per-module initialization + */ +@@ -204,6 +224,18 @@ + ssl_config_global_create(base_server); /* just to avoid problems */ + ssl_config_global_fix(mc); + ++ /* Initialize our interface to mod_md, if it is loaded ++ */ ++ md_is_managed = APR_RETRIEVE_OPTIONAL_FN(md_is_managed); ++ md_get_credentials = APR_RETRIEVE_OPTIONAL_FN(md_get_credentials); ++ md_get_certificate = APR_RETRIEVE_OPTIONAL_FN(md_get_certificate); ++ md_is_challenge = APR_RETRIEVE_OPTIONAL_FN(md_is_challenge); ++ if (!md_is_managed || (!md_get_credentials && !md_get_certificate)) { ++ md_is_managed = NULL; ++ md_get_credentials = NULL; ++ md_get_certificate = NULL; ++ } ++ + /* + * try to fix the configuration and open the dedicated SSL + * logfile as early as possible +@@ -1606,6 +1638,57 @@ + return APR_EGENERAL; + } + ++ ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO() ++ "Init: (%s) mod_md support is %s.", ssl_util_vhostid(p, s), ++ md_is_managed? "available" : "unavailable"); ++ if (md_is_managed && md_is_managed(s)) { ++ modssl_pk_server_t *const pks = sc->server->pks; ++ if (pks->cert_files->nelts > 0 || pks->key_files->nelts > 0) { ++ ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO() ++ "Init: (%s) You configured certificate/key files on this host, but " ++ "is is covered by a Managed Domain. You need to remove these directives " ++ "for the Managed Domain to take over.", ssl_util_vhostid(p, s)); ++ } ++ else { ++ const char *key_file, *cert_file, *chain_file; ++ ++ key_file = cert_file = chain_file = NULL; ++ ++ if (md_get_certificate) { ++ /* mod_md >= v0.9.0 */ ++ rv = md_get_certificate(s, p, &key_file, &cert_file); ++ } ++ else if (md_get_credentials) { ++ /* mod_md < v0.9.0, remove this after a while */ ++ rv = md_get_credentials(s, p, &key_file, &cert_file, &chain_file); ++ } ++ else { ++ rv = APR_ENOTIMPL; ++ } ++ ++ if (key_file && cert_file) { ++ APR_ARRAY_PUSH(pks->key_files, const char *) = key_file; ++ APR_ARRAY_PUSH(pks->cert_files, const char *) = cert_file; ++ if (chain_file) { ++ sc->server->cert_chain = chain_file; ++ } ++ } ++ ++ if (APR_STATUS_IS_EAGAIN(rv)) { ++ /* Managed Domain not ready yet. This is not a reason to fail the config */ ++ ap_log_error(APLOG_MARK, APLOG_WARNING, 0, s, APLOGNO() ++ "Init: %s will respond with '503 Service Unavailable' for now. This " ++ "host is part of a Managed Domain, but no SSL certificate is " ++ "available (yet).", ssl_util_vhostid(p, s)); ++ pks->service_unavailable = 1; ++ return APR_SUCCESS; ++ } ++ else if (rv != APR_SUCCESS) { ++ return rv; ++ } ++ } ++ } ++ + if ((rv = ssl_init_ctx(s, p, ptemp, sc->server)) != APR_SUCCESS) { + return rv; + } +Index: modules/ssl/ssl_engine_kernel.c +=================================================================== +--- modules/ssl/ssl_engine_kernel.c (revision 1807581) ++++ modules/ssl/ssl_engine_kernel.c (working copy) +@@ -264,6 +264,15 @@ + return DECLINED; + } + ++ if (sslconn->service_unavailable) { ++ /* This is set when the SSL properties of this connection are ++ * incomplete or if this connection was made to challenge a ++ * particular hostname (ACME). We never serve any request on ++ * such a connection. */ ++ /* TODO: a retry-after indicator would be nice here */ ++ return HTTP_SERVICE_UNAVAILABLE; ++ } ++ + if (sslconn->non_ssl_request == NON_SSL_SET_ERROR_MSG) { + apr_table_setn(r->notes, "error-notes", + "Reason: You're speaking plain HTTP to an SSL-enabled " +@@ -2110,6 +2119,8 @@ + static apr_status_t init_vhost(conn_rec *c, SSL *ssl) + { + const char *servername; ++ X509 *cert; ++ EVP_PKEY *key; + + if (c) { + SSLConnRec *sslcon = myConnConfig(c); +@@ -2126,8 +2137,35 @@ + ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(02043) + "SSL virtual host for servername %s found", + servername); ++ + return APR_SUCCESS; + } ++ else if (ssl_is_challenge(c, servername, &cert, &key)) { ++ ++ sslcon->service_unavailable = 1; ++ if ((SSL_use_certificate(ssl, cert) < 1)) { ++ ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO() ++ "Failed to configure challenge certificate %s", ++ servername); ++ return APR_EGENERAL; ++ } ++ ++ if (!SSL_use_PrivateKey(ssl, key)) { ++ ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO() ++ "error '%s' using Challenge key: %s", ++ ERR_error_string(ERR_peek_last_error(), NULL), ++ servername); ++ return APR_EGENERAL; ++ } ++ ++ if (SSL_check_private_key(ssl) < 1) { ++ ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, c, APLOGNO() ++ "Challenbge certificate and private key %s " ++ "do not match", servername); ++ return APR_EGENERAL; ++ } ++ ++ } + else { + ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, c, APLOGNO(02044) + "No matching SSL virtual host for servername " +@@ -2233,6 +2271,8 @@ + */ + sslcon->server = s; + sslcon->cipher_suite = sc->server->auth.cipher_suite; ++ sslcon->service_unavailable = sc->server->pks? ++ sc->server->pks->service_unavailable : 0; + + ap_update_child_status_from_server(c->sbh, SERVER_BUSY_READ, c, s); + /* +Index: modules/ssl/ssl_private.h +=================================================================== +--- modules/ssl/ssl_private.h (revision 1807581) ++++ modules/ssl/ssl_private.h (working copy) +@@ -505,6 +505,7 @@ + server_rec *server; + + const char *cipher_suite; /* cipher suite used in last reneg */ ++ int service_unavailable; /* thouugh we negotiate SSL, no requests will be served */ + } SSLConnRec; + + /* BIG FAT WARNING: SSLModConfigRec has unusual memory lifetime: it is +@@ -581,6 +582,9 @@ + * sent in the CertificateRequest message: */ + const char *ca_name_path; + const char *ca_name_file; ++ ++ /* TLS service for this server is suspended */ ++ int service_unavailable; + } modssl_pk_server_t; + + typedef struct { +@@ -1046,6 +1050,9 @@ + * memory. */ + DH *modssl_get_dh_params(unsigned keylen); + ++int ssl_is_challenge(conn_rec *c, const char *servername, ++ X509 **pcert, EVP_PKEY **pkey); ++ + #endif /* SSL_PRIVATE_H */ + /** @} */ + +Index: modules/ssl/ssl_util_ssl.c +=================================================================== +--- modules/ssl/ssl_util_ssl.c (revision 1807581) ++++ modules/ssl/ssl_util_ssl.c (working copy) +@@ -115,6 +115,33 @@ + return rc; + } + ++typedef struct { ++ const char *pass; ++ int pass_len; ++} pass_ctx; ++ ++static int provide_pass(char *buf, int size, int rwflag, void *baton) ++{ ++ pass_ctx *ctx = baton; ++ if (ctx->pass_len > 0) { ++ if (ctx->pass_len < size) { ++ size = (int)ctx->pass_len; ++ } ++ memcpy(buf, ctx->pass, size); ++ } ++ return ctx->pass_len; ++} ++ ++EVP_PKEY *modssl_read_encrypted_pkey(const char *filename, EVP_PKEY **key, ++ const char *pass, apr_size_t pass_len) ++{ ++ pass_ctx ctx; ++ ++ ctx.pass = pass; ++ ctx.pass_len = pass_len; ++ return modssl_read_privatekey(filename, key, provide_pass, &ctx); ++} ++ + /* _________________________________________________________________ + ** + ** Smart shutdown +Index: modules/ssl/ssl_util_ssl.h +=================================================================== +--- modules/ssl/ssl_util_ssl.h (revision 1807581) ++++ modules/ssl/ssl_util_ssl.h (working copy) +@@ -65,6 +65,7 @@ + void *modssl_get_app_data2(SSL *); + void modssl_set_app_data2(SSL *, void *); + EVP_PKEY *modssl_read_privatekey(const char *, EVP_PKEY **, pem_password_cb *, void *); ++EVP_PKEY *modssl_read_encrypted_pkey(const char *, EVP_PKEY **, const char *, apr_size_t); + int modssl_smart_shutdown(SSL *ssl); + BOOL modssl_X509_getBC(X509 *, int *, int *); + char *modssl_X509_NAME_ENTRY_to_string(apr_pool_t *p, X509_NAME_ENTRY *xsne); diff --git a/www/mod_md-devel/files/patch-src_md__crypt.c b/www/mod_md-devel/files/patch-src_md__crypt.c index d431ab5dbfa..86349b1ed79 100644 --- a/www/mod_md-devel/files/patch-src_md__crypt.c +++ b/www/mod_md-devel/files/patch-src_md__crypt.c @@ -1,4 +1,4 @@ ---- src/md_crypt.c.orig 2017-08-09 13:30:59 UTC +--- src/md_crypt.c.orig 2017-09-08 14:09:36 UTC +++ src/md_crypt.c @@ -116,6 +116,425 @@ static void seed_RAND(int pid) @@ -426,8 +426,8 @@ apr_status_t md_crypt_init(apr_pool_t *pool) { -@@ -328,7 +747,7 @@ apr_status_t md_pkey_gen_rsa(md_pkey_t * - return rv; +@@ -409,7 +828,7 @@ apr_status_t md_pkey_gen(md_pkey_t **ppk + } } -#if OPENSSL_VERSION_NUMBER < 0x10100000L diff --git a/www/mod_md-devel/pkg-message b/www/mod_md-devel/pkg-message index 79d4e6cc23a..a78c2f3a0a6 100644 --- a/www/mod_md-devel/pkg-message +++ b/www/mod_md-devel/pkg-message @@ -1,8 +1,16 @@ -/!\ This is an early experience non-production-ready version /!\ +/!\ This is an early experience non-production-ready version /!\ -This module requires a patched Apache mod_ssl. Apply the mod_ssl patch -from https://github.com/icing/mod_md/tree/master/patches to the -www/apache24 port and rebuild/reinstall apache. +#################################################################### +# This module requires a patched Apache mod_ssl. Apply the mod_ssl # +# patch from https://github.com/icing/mod_md/tree/master/patches # +# to the www/apache24 port and rebuild/reinstall apache. # +#################################################################### + +Add the following to your make.conf to apply the patch to www/apache24 + +.if ${.CURDIR:M*/www/apache24} +EXTRA_PATCHES+=../mod_md-devel/files/extra-patch-mod_ssl +.endif If you want to have the md module enabled in your apache installation, you need to add @@ -15,3 +23,5 @@ somewhere in your config files and add a line like Full documentation in the project's wiki https://github.com/icing/mod_md/wiki +and for most directives in Apache trunk documentation + https://httpd.apache.org/docs/trunk/mod/mod_md.html diff --git a/www/mod_wsgi4/Makefile b/www/mod_wsgi4/Makefile index d574aca6eee..5ce5b922bcf 100644 --- a/www/mod_wsgi4/Makefile +++ b/www/mod_wsgi4/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mod_wsgi -PORTVERSION= 4.5.17 +PORTVERSION= 4.5.18 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX} diff --git a/www/mod_wsgi4/distinfo b/www/mod_wsgi4/distinfo index 73fcede53c6..ca737859962 100644 --- a/www/mod_wsgi4/distinfo +++ b/www/mod_wsgi4/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1499543940 -SHA256 (mod_wsgi-4.5.17.tar.gz) = 591779c49deeec1852e99ffe43ca1f3b09de19645de656e9b05320383ca8c251 -SIZE (mod_wsgi-4.5.17.tar.gz) = 1852139 +TIMESTAMP = 1504983813 +SHA256 (mod_wsgi-4.5.18.tar.gz) = 5889bf48b3833aae460b2526ab0c6f3ce85ddc933bb13902242a346b6ceed7f0 +SIZE (mod_wsgi-4.5.18.tar.gz) = 2542664 diff --git a/www/py-flexget/Makefile b/www/py-flexget/Makefile index e9854edd4c2..70db502b8a4 100644 --- a/www/py-flexget/Makefile +++ b/www/py-flexget/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 2.10.83 +PORTVERSION= 2.10.87 PORTEPOCH= 1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-flexget/distinfo b/www/py-flexget/distinfo index 1b6d4004069..90c15a3aca9 100644 --- a/www/py-flexget/distinfo +++ b/www/py-flexget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1503886435 -SHA256 (flexget-Flexget-2.10.83_GH0.tar.gz) = b422f9b5522eb28d61591e6d71a24afc226266c9672d5387b37485df6ec00cc6 -SIZE (flexget-Flexget-2.10.83_GH0.tar.gz) = 6581802 +TIMESTAMP = 1504923227 +SHA256 (flexget-Flexget-2.10.87_GH0.tar.gz) = 6fa2164b1690750fcf8ecc9bd0e410182152ace9f2125a374d8bec31a4801ac7 +SIZE (flexget-Flexget-2.10.87_GH0.tar.gz) = 6581803 diff --git a/www/rtv/Makefile b/www/rtv/Makefile index 5d4d7857f5c..9bd80c26d5d 100644 --- a/www/rtv/Makefile +++ b/www/rtv/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rtv -PORTVERSION= 1.17.1 +PORTVERSION= 1.18.0 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/rtv/distinfo b/www/rtv/distinfo index 5b25c23de04..430378062aa 100644 --- a/www/rtv/distinfo +++ b/www/rtv/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502235568 -SHA256 (michael-lazar-rtv-v1.17.1_GH0.tar.gz) = 719c36da951e0bb7e77ed3e3efbb8b32d9045918c4af17fa7af4e334b9ebbfd9 -SIZE (michael-lazar-rtv-v1.17.1_GH0.tar.gz) = 8357185 +TIMESTAMP = 1504959559 +SHA256 (michael-lazar-rtv-v1.18.0_GH0.tar.gz) = 44e49253db01bcda5992b80804444c6e996092146c5176a7f44ca1a1f1abe815 +SIZE (michael-lazar-rtv-v1.18.0_GH0.tar.gz) = 9095873 diff --git a/www/rubygem-actioncable5/Makefile b/www/rubygem-actioncable5/Makefile index 9865f643b3e..1236934e100 100644 --- a/www/rubygem-actioncable5/Makefile +++ b/www/rubygem-actioncable5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actioncable -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/www/rubygem-actioncable5/distinfo b/www/rubygem-actioncable5/distinfo index ffc3c84a60e..ab4792522e8 100644 --- a/www/rubygem-actioncable5/distinfo +++ b/www/rubygem-actioncable5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862702 -SHA256 (rubygem/actioncable-5.1.3.gem) = 4cfe1343217caa199ce2a2de485a62271b0c81e8c3cf72f7c039c5eddf3c7bd0 -SIZE (rubygem/actioncable-5.1.3.gem) = 41472 +TIMESTAMP = 1504891674 +SHA256 (rubygem/actioncable-5.1.4.gem) = 47d968f5636aa2ee88cb6306a7cb8b426b2156c93851628a354cae9139d56916 +SIZE (rubygem/actioncable-5.1.4.gem) = 41472 diff --git a/www/rubygem-actioncable50/Makefile b/www/rubygem-actioncable50/Makefile index 4bf3c7e0568..bdeca69f0af 100644 --- a/www/rubygem-actioncable50/Makefile +++ b/www/rubygem-actioncable50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actioncable -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/www/rubygem-actioncable50/distinfo b/www/rubygem-actioncable50/distinfo index e50b9d5d103..9fc54c5739d 100644 --- a/www/rubygem-actioncable50/distinfo +++ b/www/rubygem-actioncable50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604045 -SHA256 (rubygem/actioncable-5.0.5.gem) = 479efb52e6b6fedfcafcd3530be24dc7b9829dd41e0f5a37212ed4d67146f51b -SIZE (rubygem/actioncable-5.0.5.gem) = 42496 +TIMESTAMP = 1504891763 +SHA256 (rubygem/actioncable-5.0.6.gem) = 8321d86a6bb9ec85b5189093139bbdfb87ad1935166e5c0eac422068a2a6e515 +SIZE (rubygem/actioncable-5.0.6.gem) = 42496 diff --git a/www/rubygem-actionpack5/Makefile b/www/rubygem-actionpack5/Makefile index 640c260e3fb..5725f5f78c9 100644 --- a/www/rubygem-actionpack5/Makefile +++ b/www/rubygem-actionpack5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionpack -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/www/rubygem-actionpack5/distinfo b/www/rubygem-actionpack5/distinfo index 525822c1cc9..954056d09b6 100644 --- a/www/rubygem-actionpack5/distinfo +++ b/www/rubygem-actionpack5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862696 -SHA256 (rubygem/actionpack-5.1.3.gem) = 55488d20cac3668040f0d2d5531e81318a0fa206ac8f687565c6ec49345c9f45 -SIZE (rubygem/actionpack-5.1.3.gem) = 206848 +TIMESTAMP = 1504891667 +SHA256 (rubygem/actionpack-5.1.4.gem) = f5d0e747051923f19d932bbc5c274353d026d3b4aaf9504f240161330555e4c6 +SIZE (rubygem/actionpack-5.1.4.gem) = 206848 diff --git a/www/rubygem-actionpack5/files/patch-gemspec b/www/rubygem-actionpack5/files/patch-gemspec deleted file mode 100644 index e2592645144..00000000000 --- a/www/rubygem-actionpack5/files/patch-gemspec +++ /dev/null @@ -1,11 +0,0 @@ ---- actionpack.gemspec.orig 2017-07-14 15:28:47 UTC -+++ actionpack.gemspec -@@ -25,7 +25,7 @@ Gem::Specification.new do |s| - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q.freeze, ["= 5.1.2"]) - s.add_runtime_dependency(%q.freeze, ["~> 2.0"]) -- s.add_runtime_dependency(%q.freeze, ["~> 0.6.3"]) -+ s.add_runtime_dependency(%q.freeze, ["~> 0.6", ">= 0.6.3"]) - s.add_runtime_dependency(%q.freeze, [">= 1.0.2", "~> 1.0"]) - s.add_runtime_dependency(%q.freeze, ["~> 2.0"]) - s.add_runtime_dependency(%q.freeze, ["= 5.1.2"]) diff --git a/www/rubygem-actionpack50/Makefile b/www/rubygem-actionpack50/Makefile index 500e3749408..a2fe341f5cf 100644 --- a/www/rubygem-actionpack50/Makefile +++ b/www/rubygem-actionpack50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= actionpack -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/www/rubygem-actionpack50/distinfo b/www/rubygem-actionpack50/distinfo index 8deaec57054..66b9d2cec28 100644 --- a/www/rubygem-actionpack50/distinfo +++ b/www/rubygem-actionpack50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604038 -SHA256 (rubygem/actionpack-5.0.5.gem) = 2202866aded8d787efb4c3a7e6d4f55262ac4f2acfe92c097855a9afc8229f37 -SIZE (rubygem/actionpack-5.0.5.gem) = 212480 +TIMESTAMP = 1504891756 +SHA256 (rubygem/actionpack-5.0.6.gem) = 1866fbaafcba1a6f23ea075f0c7add8980f99d2f2ddc37032d4b62033b39bf8d +SIZE (rubygem/actionpack-5.0.6.gem) = 212480 diff --git a/www/rubygem-haml/Makefile b/www/rubygem-haml/Makefile index fd0a3b9c81f..88b5e850fae 100644 --- a/www/rubygem-haml/Makefile +++ b/www/rubygem-haml/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= haml -PORTVERSION= 5.0.2 +PORTVERSION= 5.0.3 CATEGORIES= www rubygems MASTER_SITES= RG diff --git a/www/rubygem-haml/distinfo b/www/rubygem-haml/distinfo index 531fca9311f..740d6bf1bc2 100644 --- a/www/rubygem-haml/distinfo +++ b/www/rubygem-haml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501766614 -SHA256 (rubygem/haml-5.0.2.gem) = a82ad5831cd0aa30de558618768237ed773a1263607aab58c764192e68a08cdc -SIZE (rubygem/haml-5.0.2.gem) = 89088 +TIMESTAMP = 1504948375 +SHA256 (rubygem/haml-5.0.3.gem) = f9a5b38a1298170df4b1293d29b0d8d12d2afd1f495bf7df2e0eb07afa95b4fc +SIZE (rubygem/haml-5.0.3.gem) = 89600 diff --git a/www/rubygem-rails5/Makefile b/www/rubygem-rails5/Makefile index 8eeeaf7eb97..0b4f0a5de9a 100644 --- a/www/rubygem-rails5/Makefile +++ b/www/rubygem-rails5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rails -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/www/rubygem-rails5/distinfo b/www/rubygem-rails5/distinfo index c5c30b60096..2c4f1bdf299 100644 --- a/www/rubygem-rails5/distinfo +++ b/www/rubygem-rails5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501797501 -SHA256 (rubygem/rails-5.1.3.gem) = 28c73c5aba5ce71d4bcd6af273be3e565ab7a49abd22fd511dc79fcb36329d19 -SIZE (rubygem/rails-5.1.3.gem) = 6656 +TIMESTAMP = 1504891712 +SHA256 (rubygem/rails-5.1.4.gem) = 5cc2192045678789e5e7b289476af8bc0a79210ee6713886200cb303ed6f98b8 +SIZE (rubygem/rails-5.1.4.gem) = 6656 diff --git a/www/rubygem-rails50/Makefile b/www/rubygem-rails50/Makefile index 9074f2849ce..63000cd04a1 100644 --- a/www/rubygem-rails50/Makefile +++ b/www/rubygem-rails50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rails -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/www/rubygem-rails50/distinfo b/www/rubygem-rails50/distinfo index c33928370e7..e091146e69b 100644 --- a/www/rubygem-rails50/distinfo +++ b/www/rubygem-rails50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501607829 -SHA256 (rubygem/rails-5.0.5.gem) = 15e2c25872e5dc2069b0d7bf4535eb4887e77d49166ccfba5871a904c18957b1 -SIZE (rubygem/rails-5.0.5.gem) = 6144 +TIMESTAMP = 1504891801 +SHA256 (rubygem/rails-5.0.6.gem) = a86663f8d0d4dd0cb07272394a6d0c7d250be617c6efe77edd2ebc9c9d139746 +SIZE (rubygem/rails-5.0.6.gem) = 6144 diff --git a/www/rubygem-railties5/Makefile b/www/rubygem-railties5/Makefile index 6f453c9e30f..ab3f17ab628 100644 --- a/www/rubygem-railties5/Makefile +++ b/www/rubygem-railties5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= railties -PORTVERSION= 5.1.3 +PORTVERSION= 5.1.4 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 diff --git a/www/rubygem-railties5/distinfo b/www/rubygem-railties5/distinfo index fa9dd537449..a65905811a4 100644 --- a/www/rubygem-railties5/distinfo +++ b/www/rubygem-railties5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501862718 -SHA256 (rubygem/railties-5.1.3.gem) = 9aa1b3abd29a7d71b3f9d04dfce2858a2e86841dd7f3dc696344000c745b1651 -SIZE (rubygem/railties-5.1.3.gem) = 229888 +TIMESTAMP = 1504891690 +SHA256 (rubygem/railties-5.1.4.gem) = e477f332b4810f634b58a33c3accdebcfb9d3ab1f4b7b3ed204269d6b1a28001 +SIZE (rubygem/railties-5.1.4.gem) = 228352 diff --git a/www/rubygem-railties50/Makefile b/www/rubygem-railties50/Makefile index 0a5d9c3d547..e000cf6091b 100644 --- a/www/rubygem-railties50/Makefile +++ b/www/rubygem-railties50/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= railties -PORTVERSION= 5.0.5 +PORTVERSION= 5.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 diff --git a/www/rubygem-railties50/distinfo b/www/rubygem-railties50/distinfo index 6b0ab929ac7..986744541b0 100644 --- a/www/rubygem-railties50/distinfo +++ b/www/rubygem-railties50/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1501604063 -SHA256 (rubygem/railties-5.0.5.gem) = 5b1cb323c3fa70ff5801f58fbb9688a8231a4cc0414d3c97d0ad0a5bc94fbefb -SIZE (rubygem/railties-5.0.5.gem) = 225792 +TIMESTAMP = 1504891779 +SHA256 (rubygem/railties-5.0.6.gem) = b05fbd99673637408badc3da8988aa76c9f245d9f0202dc65389e6b619e97772 +SIZE (rubygem/railties-5.0.6.gem) = 223744 diff --git a/x11-fonts/alegreya/Makefile b/x11-fonts/alegreya/Makefile index 3ab32cd5f90..d3f70a9139a 100644 --- a/x11-fonts/alegreya/Makefile +++ b/x11-fonts/alegreya/Makefile @@ -1,26 +1,27 @@ # $FreeBSD$ PORTNAME= alegreya -PORTVERSION= 1.004.20150827 +PORTVERSION= 2.001 +DISTVERSIONPREFIX= v CATEGORIES= x11-fonts MAINTAINER= rakuco@FreeBSD.org COMMENT= Serif typeface originally intended for literature LICENSE= OFL11 +LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= fonts USE_GITHUB= yes GH_ACCOUNT= huertatipografica -GH_PROJECT= Alegreya-libre -GH_TAGNAME= 8f40fc1 +GH_PROJECT= Alegreya NO_BUILD= yes do-install: ${MKDIR} ${STAGEDIR}${FONTSDIR} - cd ${WRKSRC}/otf && \ + cd ${WRKSRC}/fonts/otf && \ ${INSTALL_DATA} *.otf ${STAGEDIR}${FONTSDIR} .include diff --git a/x11-fonts/alegreya/distinfo b/x11-fonts/alegreya/distinfo index fea23d309f5..8039fbb7b06 100644 --- a/x11-fonts/alegreya/distinfo +++ b/x11-fonts/alegreya/distinfo @@ -1,2 +1,3 @@ -SHA256 (huertatipografica-Alegreya-libre-1.004.20150827-8f40fc1_GH0.tar.gz) = d2862983c8ae468c1ed9f62cc480a546d2186ed8750d2e3bac15e33ce6da1c9b -SIZE (huertatipografica-Alegreya-libre-1.004.20150827-8f40fc1_GH0.tar.gz) = 2688398 +TIMESTAMP = 1505039440 +SHA256 (huertatipografica-Alegreya-v2.001_GH0.tar.gz) = 7f7590a86af2c9315d097f4d8525adacb11d88faa3d72159e317bd583e6868ff +SIZE (huertatipografica-Alegreya-v2.001_GH0.tar.gz) = 15379738 diff --git a/x11-fonts/alegreya/pkg-plist b/x11-fonts/alegreya/pkg-plist index acc9f8193aa..d4d4313fb38 100644 --- a/x11-fonts/alegreya/pkg-plist +++ b/x11-fonts/alegreya/pkg-plist @@ -1,3 +1,11 @@ +%%FONTSDIR%%/Alegreya-ExtraBold.otf +%%FONTSDIR%%/Alegreya-ExtraBoldItalic.otf +%%FONTSDIR%%/Alegreya-Medium.otf +%%FONTSDIR%%/Alegreya-MediumItalic.otf +%%FONTSDIR%%/AlegreyaSC-ExtraBold.otf +%%FONTSDIR%%/AlegreyaSC-ExtraBoldItalic.otf +%%FONTSDIR%%/AlegreyaSC-Medium.otf +%%FONTSDIR%%/AlegreyaSC-MediumItalic.otf %%FONTSDIR%%/Alegreya-Black.otf %%FONTSDIR%%/Alegreya-BlackItalic.otf %%FONTSDIR%%/Alegreya-Bold.otf diff --git a/x11/dsbautostart/Makefile b/x11/dsbautostart/Makefile index 8f6560237ea..eae54915239 100644 --- a/x11/dsbautostart/Makefile +++ b/x11/dsbautostart/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= dsbautostart -PORTVERSION= 1.0.2 +PORTVERSION= 1.1 CATEGORIES= x11 MASTER_SITES= http://freeshell.de/~mk/download/ @@ -14,6 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= tar:tgz qmake USE_GL= gl -USE_QT5= buildtools_build core gui linguisttools widgets +USE_QT5= buildtools_build core gui linguisttools_build widgets .include diff --git a/x11/dsbautostart/distinfo b/x11/dsbautostart/distinfo index d8699593114..912b1e8f4e9 100644 --- a/x11/dsbautostart/distinfo +++ b/x11/dsbautostart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1502017745 -SHA256 (dsbautostart-1.0.2.tgz) = 3912f3680a50d7ff1ed3104117c2fb6af5cc34830f149c744d5903e80a4b81be -SIZE (dsbautostart-1.0.2.tgz) = 14472 +TIMESTAMP = 1504432503 +SHA256 (dsbautostart-1.1.tgz) = 0be3a153eca44e2a16596670c1a2abbae97a742dec2da1fd990966feb4cc38dc +SIZE (dsbautostart-1.1.tgz) = 16406