From owner-svn-ports-all@freebsd.org Sun Aug 9 01:37:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C52CE9B18D9; Sun, 9 Aug 2015 01:37:36 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B4A8B139C; Sun, 9 Aug 2015 01:37:36 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791batp068617; Sun, 9 Aug 2015 01:37:36 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791bZx0068613; Sun, 9 Aug 2015 01:37:35 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090137.t791bZx0068613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:37:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393751 - head/devel/arm-none-eabi-gcc492 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:37:36 -0000 Author: ian (src committer) Date: Sun Aug 9 01:37:34 2015 New Revision: 393751 URL: https://svnweb.freebsd.org/changeset/ports/393751 Log: Create a gcc 4.9.2 arm bare-metal cross-compiler. This is needed to build old vendor releases of u-boot that don't build with gcc5. Approved by: rpaulo, imp Added: head/devel/arm-none-eabi-gcc492/ head/devel/arm-none-eabi-gcc492/Makefile (contents, props changed) head/devel/arm-none-eabi-gcc492/distinfo (contents, props changed) head/devel/arm-none-eabi-gcc492/pkg-descr (contents, props changed) head/devel/arm-none-eabi-gcc492/pkg-plist (contents, props changed) Added: head/devel/arm-none-eabi-gcc492/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/Makefile Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,76 @@ +# $FreeBSD$ + +PORTNAME= gcc +PORTVERSION= 4.9.2 +CATEGORIES= devel +MASTER_SITES= GCC/releases/gcc-${DISTVERSION} +PKGNAMEPREFIX?= arm-none-eabi- + +MAINTAINER= ian@FreeBSD.org +COMMENT= GNU Compiler Collection for bare metal arm cross-development + +LICENSE= GPLv3 GPLv3RLE +LICENSE_COMB= multi + +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ + libmpfr.so:${PORTSDIR}/math/mpfr \ + libmpc.so:${PORTSDIR}/math/mpc +BUILD_DEPENDS= ${BU_PREFIX}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils +RUN_DEPENDS= ${BU_PREFIX}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils + +USES= compiler gmake iconv libtool makeinfo tar:bzip2 +PLIST_SUB= TARGETARCH=${PKGNAMEPREFIX:C/-//g} \ + OPSYS=${OPSYS:tl} \ + GCC_TARGET=${GCC_TARGET} + +PATCH_WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +WRKSRC= ${WRKDIR}/build-gcc + +GCC_TARGET= arm-none-eabi +BU_PREFIX?= ${GCC_TARGET} + +GNU_CONFIGURE= yes +# libstdcxx won't build, but we don't need it or multiple float-abi libs. +CONFIGURE_ARGS= --target=${GCC_TARGET} --disable-nls --enable-languages=c,c++ \ + --without-headers \ + --with-gmp=${LOCALBASE} \ + --with-pkgversion="FreeBSD Ports Collection for ${PKGNAMEPREFIX:C/-//g}" \ + --with-system-zlib \ + --with-as=${LOCALBASE}/bin/${BU_PREFIX}-as \ + --with-ld=${LOCALBASE}/bin/${BU_PREFIX}-ld \ + --disable-libstdcxx \ + --disable-multilib + +CONFIGURE_SCRIPT= ../${PORTNAME}-${PORTVERSION}/configure + +PLIST= ${.CURDIR}/pkg-plist + +# U-Boot requires libgcc, crossbuild and install it along with the compiler. +ALL_TARGET= all-gcc all-target-libgcc +INSTALL_TARGET= install-gcc install-target-libgcc + +.include + +CONFIGURE_TARGET= ${ARCH}-portbld-${OPSYS:tl}${OSREL} + +post-extract: + @${MKDIR} ${WRKSRC} + +post-stage: + @if [ -f ${STAGEDIR}${PREFIX}/bin/cpp ] ; then \ + ${MV} ${STAGEDIR}${PREFIX}/bin/cpp \ + ${STAGEDIR}${PREFIX}/bin/${GCC_TARGET}-cpp ; \ + fi +.for f in c++ cpp g++ gcc gcc-ar gcc-nm gcc-ranlib gcov + @${RM} ${STAGEDIR}${PREFIX}/bin/$f + @${RM} ${STAGEDIR}${PREFIX}/man/man1/$f.1.gz +.endfor + @${RM} ${STAGEDIR}${PREFIX}/info/* + @${RM} ${STAGEDIR}${PREFIX}/man/man7/* + +# The following is required for clang to bootstrap gcc. +.if ${COMPILER_TYPE} == clang +MAKE_ARGS+= CXXFLAGS=-fbracket-depth=512 +.endif + +.include Added: head/devel/arm-none-eabi-gcc492/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/distinfo Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,2 @@ +SHA256 (gcc-4.9.2.tar.bz2) = 2020c98295856aa13fda0f2f3a4794490757fc24bcca918d52cc8b4917b972dd +SIZE (gcc-4.9.2.tar.bz2) = 89939747 Added: head/devel/arm-none-eabi-gcc492/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/pkg-descr Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,3 @@ +GCC, the GNU Compiler Collection configured for bare-metal ARM cross-building. + +WWW: http://gcc.gnu.org/ Added: head/devel/arm-none-eabi-gcc492/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/arm-none-eabi-gcc492/pkg-plist Sun Aug 9 01:37:34 2015 (r393751) @@ -0,0 +1,261 @@ +bin/%%GCC_TARGET%%-c++ +bin/%%GCC_TARGET%%-cpp +bin/%%GCC_TARGET%%-g++ +bin/%%GCC_TARGET%%-gcc +bin/%%GCC_TARGET%%-gcc-4.9.2 +bin/%%GCC_TARGET%%-gcc-ar +bin/%%GCC_TARGET%%-gcc-nm +bin/%%GCC_TARGET%%-gcc-ranlib +bin/%%GCC_TARGET%%-gcov +lib/gcc/%%GCC_TARGET%%/4.9.2/libgcc.a +lib/gcc/%%GCC_TARGET%%/4.9.2/crtbegin.o +lib/gcc/%%GCC_TARGET%%/4.9.2/crtend.o +lib/gcc/%%GCC_TARGET%%/4.9.2/crti.o +lib/gcc/%%GCC_TARGET%%/4.9.2/crtn.o +lib/gcc/%%GCC_TARGET%%/4.9.2/include-fixed/README +lib/gcc/%%GCC_TARGET%%/4.9.2/include-fixed/limits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include-fixed/syslimits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/arm_acle.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/arm_neon.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/float.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/iso646.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/mmintrin.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdalign.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdarg.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdatomic.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdbool.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stddef.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdfix.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdint-gcc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdint.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/stdnoreturn.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/tgmath.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/unwind-arm-common.h +lib/gcc/%%GCC_TARGET%%/4.9.2/include/varargs.h +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/fixinc_list +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/gsyslimits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/include/README +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/include/limits.h +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/macro_list +lib/gcc/%%GCC_TARGET%%/4.9.2/install-tools/mkheaders.conf +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/gtype.state +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ada/gcc-interface/ada-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/alias.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/all-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/alloc-pool.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ansidecl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/attribs.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/auto-host.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/b-header-vars +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/basic-block.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/bitmap.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/bversion.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-common.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-common.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-objc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-pragma.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-family/c-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/c-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/calls.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfg-flags.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfgexpand.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfghooks.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cfgloop.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cgraph.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cif-code.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cilk-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cilkplus.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/aarch-common-protos.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/aout.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm-cores.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm-opts.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm-protos.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/arm.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/bpabi.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/elf.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/arm/unknown-elf.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/dbxelf.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/elfos.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/initfini-array.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/newlib-stdint.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/config/vxworks-dummy.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/configargs.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/context.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/coretypes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/cp-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/cp-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/cxx-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/name-lookup.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cp/type-utils.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cppdefault.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/cpplib.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/debug.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/defaults.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/df.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic-color.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic-core.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/diagnostic.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/double-int.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/dumpfile.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/emit-rtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/except.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/filenames.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/fixed-value.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/flag-types.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/flags.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/fold-const.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/function.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gcc-plugin.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gcc-symtab.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/genrtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ggc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-builder.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-expr.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-fold.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-iterator.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-low.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple-walk.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimple.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimplify-me.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gimplify.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gsstruct.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gtm-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/gtype-desc.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hard-reg-set.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hash-table.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hashtab.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/highlev-plugin-common.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/hwint.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/incpath.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/input.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-codes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-constants.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-flags.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-modes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/insn-notes.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/internal-fn.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/internal-fn.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/intl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-prop.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-ref-inline.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-ref.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-reference.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ipa-utils.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/is-a.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/java/java-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/langhooks.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/libiberty.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/line-map.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/machmode.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/md5.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/mode-classes.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/objc/objc-tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/obstack.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/omp-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/options.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/opts.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/output.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/params.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/params.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/pass_manager.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin-api.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin-version.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/plugin.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/pointer-set.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/predict.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/predict.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/prefix.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/print-rtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/print-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/real.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/realmpfr.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/reg-notes.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/regset.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/resource.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/rtl.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/rtl.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/safe-ctype.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/sanitizer.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/sbitmap.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/splay-tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/ssa-iterators.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/statistics.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/stmt.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/stor-layout.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/stringpool.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/symtab.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/sync-builtins.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/system.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/target-hooks-macros.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/target.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/target.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/timevar.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/timevar.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tm-preds.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tm.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tm_p.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/toplev.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-cfg.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-cfgcleanup.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-check.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-core.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-dfa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-dump.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-eh.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-hasher.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-inline.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-into-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-iterator.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-nested.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-object-size.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-outof-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-parloops.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-pass.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-phinodes.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-pretty-print.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-address.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-alias.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-coalesce.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-dom.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop-ivopts.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop-manip.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop-niter.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-loop.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-operands.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-sccvn.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-ter.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-threadedge.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa-threadupdate.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssa.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree-ssanames.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/tree.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/treestruct.def +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/varasm.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/vec.h +lib/gcc/%%GCC_TARGET%%/4.9.2/plugin/include/version.h +libexec/gcc/%%GCC_TARGET%%/4.9.2/cc1 +libexec/gcc/%%GCC_TARGET%%/4.9.2/cc1plus +libexec/gcc/%%GCC_TARGET%%/4.9.2/collect2 +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/fixinc.sh +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/fixincl +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/mkheaders +libexec/gcc/%%GCC_TARGET%%/4.9.2/install-tools/mkinstalldirs +libexec/gcc/%%GCC_TARGET%%/4.9.2/liblto_plugin.so +libexec/gcc/%%GCC_TARGET%%/4.9.2/liblto_plugin.so.0 +libexec/gcc/%%GCC_TARGET%%/4.9.2/liblto_plugin.so.0.0.0 +libexec/gcc/%%GCC_TARGET%%/4.9.2/lto-wrapper +libexec/gcc/%%GCC_TARGET%%/4.9.2/lto1 +libexec/gcc/%%GCC_TARGET%%/4.9.2/plugin/gengtype +man/man1/%%GCC_TARGET%%-cpp.1.gz +man/man1/%%GCC_TARGET%%-g++.1.gz +man/man1/%%GCC_TARGET%%-gcc.1.gz +man/man1/%%GCC_TARGET%%-gcov.1.gz From owner-svn-ports-all@freebsd.org Sun Aug 9 01:38:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 623459B1975; Sun, 9 Aug 2015 01:38:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53A75161C; Sun, 9 Aug 2015 01:38:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791cuM0068761; Sun, 9 Aug 2015 01:38:56 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791cusr068760; Sun, 9 Aug 2015 01:38:56 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090138.t791cusr068760@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:38:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393752 - head/sysutils/u-boot-rpi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:38:56 -0000 Author: ian (src committer) Date: Sun Aug 9 01:38:55 2015 New Revision: 393752 URL: https://svnweb.freebsd.org/changeset/ports/393752 Log: Use gcc 4.9.2 to cross-compile u-boot for rpi. Approved by: rpaulo Modified: head/sysutils/u-boot-rpi/Makefile Modified: head/sysutils/u-boot-rpi/Makefile ============================================================================== --- head/sysutils/u-boot-rpi/Makefile Sun Aug 9 01:37:34 2015 (r393751) +++ head/sysutils/u-boot-rpi/Makefile Sun Aug 9 01:38:55 2015 (r393752) @@ -14,9 +14,11 @@ COMMENT= Cross-build U-Boot loader for R LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc \ +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 \ gsed:${PORTSDIR}/textproc/gsed +CROSS_GCC= arm-none-eabi-gcc-4.9.2 + USE_GITHUB= yes GH_ACCOUNT= gonzoua GH_PROJECT= u-boot-pi @@ -43,6 +45,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ MAKE_ARGS+= ARCH=arm \ CROSS_COMPILE=arm-none-eabi- \ HOSTCC=cc \ + CC=${CROSS_GCC} \ SED=gsed do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:44:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70F959B1B3E; Sun, 9 Aug 2015 01:44:23 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6253B1AC4; Sun, 9 Aug 2015 01:44:23 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791iNPR072705; Sun, 9 Aug 2015 01:44:23 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791iNKT072704; Sun, 9 Aug 2015 01:44:23 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090144.t791iNKT072704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:44:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393753 - head/sysutils/u-boot-beaglebone X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:44:23 -0000 Author: ian (src committer) Date: Sun Aug 9 01:44:22 2015 New Revision: 393753 URL: https://svnweb.freebsd.org/changeset/ports/393753 Log: Use gcc 4.9.2 to cross-compile u-boot for beaglebone. Approved by: rpaulo Modified: head/sysutils/u-boot-beaglebone/Makefile Modified: head/sysutils/u-boot-beaglebone/Makefile ============================================================================== --- head/sysutils/u-boot-beaglebone/Makefile Sun Aug 9 01:38:55 2015 (r393752) +++ head/sysutils/u-boot-beaglebone/Makefile Sun Aug 9 01:44:22 2015 (r393753) @@ -12,7 +12,9 @@ COMMENT= Cross-build U-Boot loader for B LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 NO_ARCH= yes @@ -26,6 +28,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:46:47 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B21489B1B87; Sun, 9 Aug 2015 01:46:47 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A384F1BDA; Sun, 9 Aug 2015 01:46:47 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791klTu072901; Sun, 9 Aug 2015 01:46:47 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791klks072900; Sun, 9 Aug 2015 01:46:47 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090146.t791klks072900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:46:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393754 - head/sysutils/u-boot-duovero X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:46:47 -0000 Author: ian (src committer) Date: Sun Aug 9 01:46:46 2015 New Revision: 393754 URL: https://svnweb.freebsd.org/changeset/ports/393754 Log: Use gcc 4.9.2 to cross-compile u-boot for duovero. Approved by: rpaulo Modified: head/sysutils/u-boot-duovero/Makefile Modified: head/sysutils/u-boot-duovero/Makefile ============================================================================== --- head/sysutils/u-boot-duovero/Makefile Sun Aug 9 01:44:22 2015 (r393753) +++ head/sysutils/u-boot-duovero/Makefile Sun Aug 9 01:46:46 2015 (r393754) @@ -11,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for D LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 NO_ARCH= yes @@ -25,6 +27,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:47:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 331F69B1C45; Sun, 9 Aug 2015 01:47:55 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 240831D5B; Sun, 9 Aug 2015 01:47:55 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791ltnS073040; Sun, 9 Aug 2015 01:47:55 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791ltPH073038; Sun, 9 Aug 2015 01:47:55 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090147.t791ltPH073038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:47:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393755 - head/sysutils/u-boot-pandaboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:47:55 -0000 Author: ian (src committer) Date: Sun Aug 9 01:47:54 2015 New Revision: 393755 URL: https://svnweb.freebsd.org/changeset/ports/393755 Log: Use gcc 4.9.2 to cross-compile u-boot for pandaboard. Approved by: rpaulo Modified: head/sysutils/u-boot-pandaboard/Makefile Modified: head/sysutils/u-boot-pandaboard/Makefile ============================================================================== --- head/sysutils/u-boot-pandaboard/Makefile Sun Aug 9 01:46:46 2015 (r393754) +++ head/sysutils/u-boot-pandaboard/Makefile Sun Aug 9 01:47:54 2015 (r393755) @@ -11,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for P LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 NO_ARCH= yes @@ -25,6 +27,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.img \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- do-configure: From owner-svn-ports-all@freebsd.org Sun Aug 9 01:52:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA33A9B1E2A; Sun, 9 Aug 2015 01:52:17 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB8DD10B; Sun, 9 Aug 2015 01:52:17 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791qHOJ076922; Sun, 9 Aug 2015 01:52:17 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791qHDs076921; Sun, 9 Aug 2015 01:52:17 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090152.t791qHDs076921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:52:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393756 - head/sysutils/u-boot-wandboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:52:17 -0000 Author: ian (src committer) Date: Sun Aug 9 01:52:16 2015 New Revision: 393756 URL: https://svnweb.freebsd.org/changeset/ports/393756 Log: Use gcc 4.9.2 to cross-compile u-boot for wandboard. Approved by: rpaulo Modified: head/sysutils/u-boot-wandboard/Makefile Modified: head/sysutils/u-boot-wandboard/Makefile ============================================================================== --- head/sysutils/u-boot-wandboard/Makefile Sun Aug 9 01:47:54 2015 (r393755) +++ head/sysutils/u-boot-wandboard/Makefile Sun Aug 9 01:52:16 2015 (r393756) @@ -11,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for W LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 USE_GITHUB= yes GH_ACCOUNT= TechNexion @@ -27,6 +29,7 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.imx \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- \ HOSTCC=cc From owner-svn-ports-all@freebsd.org Sun Aug 9 01:54:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E17FF9B1EA6; Sun, 9 Aug 2015 01:54:56 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wi0-x22e.google.com (mail-wi0-x22e.google.com [IPv6:2a00:1450:400c:c05::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7AE8E220; Sun, 9 Aug 2015 01:54:56 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wibxm9 with SMTP id xm9so108451314wib.1; Sat, 08 Aug 2015 18:54:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=NM5ciPAlQJGgk5rdpv/itc+RjVrdfQN/bJgn9uUoDoc=; b=OBOxOVcR1b/m/hbYoNSES4Kq+xTpWXSaq8RIUxe2Xq+ofZkKU2QbwTh+vy/tVgImyI kMGJew1ywFlE0i8O/xbH8EKxoxpJ9fLXoZ5wHXDF6sq1URO+XT6kpU2jX6KIQnd/l0rF gDhAzphPTDvoPWUgNKwM9/cA4+kFbh6/G9RUZYWxPfbsLUfb3QfuwcV1qz/RQPTeSswk DIks/qqkavma9KNaWSaejhm1ZsOaxu8h5lat8DFHnVLrHlbMv/Hhi3cwBoF4sPnpsFGu okvWBgXOImJyYwisUaomH6Zl6GRAWSC3x1hbX3V3Lf8tjRhHk7DlUamxknCf+xwAKtj9 twvw== X-Received: by 10.180.78.73 with SMTP id z9mr11521071wiw.64.1439085294902; Sat, 08 Aug 2015 18:54:54 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id s1sm6359385wix.13.2015.08.08.18.54.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 08 Aug 2015 18:54:53 -0700 (PDT) Sender: Baptiste Daroussin Date: Sun, 9 Aug 2015 03:54:51 +0200 From: Baptiste Daroussin To: Ian Lepore Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393756 - head/sysutils/u-boot-wandboard Message-ID: <20150809015451.GS43782@ivaldir.etoilebsd.net> References: <201508090152.t791qHDs076921@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GPT5DIEyVHz5yXBV" Content-Disposition: inline In-Reply-To: <201508090152.t791qHDs076921@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:54:57 -0000 --GPT5DIEyVHz5yXBV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 09, 2015 at 01:52:17AM +0000, Ian Lepore wrote: > Author: ian (src committer) > Date: Sun Aug 9 01:52:16 2015 > New Revision: 393756 > URL: https://svnweb.freebsd.org/changeset/ports/393756 >=20 > Log: > Use gcc 4.9.2 to cross-compile u-boot for wandboard. > =20 > Approved by: rpaulo >=20 Out of curiousity the issue with gcc 5.2 is an issue with gcc itself or an = issue with u-boot? Best regards, Bapt --GPT5DIEyVHz5yXBV Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlXGsusACgkQ8kTtMUmk6EzMTgCgjgArph/uo+K1Bapx2zSPBRA6 i14An1iriZyo5g207xuUkltj0tCIYXvn =IrHc -----END PGP SIGNATURE----- --GPT5DIEyVHz5yXBV-- From owner-svn-ports-all@freebsd.org Sun Aug 9 02:01:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2ED199B2075 for ; Sun, 9 Aug 2015 02:01:42 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from erouter6.ore.mailhop.org (erouter6.ore.mailhop.org [54.187.213.119]) by mx1.freebsd.org (Postfix) with SMTP id 0F824830 for ; Sun, 9 Aug 2015 02:01:41 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from ilsoft.org (unknown [73.34.117.227]) by outbound3.ore.mailhop.org (Halon Mail Gateway) with ESMTPSA; Sun, 9 Aug 2015 01:59:02 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.14.9/8.14.9) with ESMTP id t7921Yog028459; Sat, 8 Aug 2015 20:01:34 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1439085694.70393.270.camel@freebsd.org> Subject: Re: svn commit: r393756 - head/sysutils/u-boot-wandboard From: Ian Lepore To: Baptiste Daroussin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Date: Sat, 08 Aug 2015 20:01:34 -0600 In-Reply-To: <20150809015451.GS43782@ivaldir.etoilebsd.net> References: <201508090152.t791qHDs076921@repo.freebsd.org> <20150809015451.GS43782@ivaldir.etoilebsd.net> Content-Type: text/plain; charset="us-ascii" X-Mailer: Evolution 3.12.10 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 02:01:42 -0000 On Sun, 2015-08-09 at 03:54 +0200, Baptiste Daroussin wrote: > On Sun, Aug 09, 2015 at 01:52:17AM +0000, Ian Lepore wrote: > > Author: ian (src committer) > > Date: Sun Aug 9 01:52:16 2015 > > New Revision: 393756 > > URL: https://svnweb.freebsd.org/changeset/ports/393756 > > > > Log: > > Use gcc 4.9.2 to cross-compile u-boot for wandboard. > > > > Approved by: rpaulo > > > Out of curiousity the issue with gcc 5.2 is an issue with gcc itself or an issue > with u-boot? > > Best > regards, > Bapt With u-boot. For the boards that use ancient vendor-supplied u-boot source they're missing some header files and I think if you get past that there are other compile errors. I've got a longer-term project underway to try to update all the u-boot ports to the latest mainline u-boot sources, which build fine with gcc5 or clang. But to get everybody working again right now (it's been broken for a while) this is the quick-fix. -- Ian From owner-svn-ports-all@freebsd.org Sun Aug 9 02:16:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68E309B2369; Sun, 9 Aug 2015 02:16:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3CB96FEB; Sun, 9 Aug 2015 02:16:56 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t792Gup6085616; Sun, 9 Aug 2015 02:16:56 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t792Gt5f085614; Sun, 9 Aug 2015 02:16:55 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090216.t792Gt5f085614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 02:16:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393757 - in head/sysutils/u-boot-cubox-hummingboard: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 02:16:56 -0000 Author: ian (src committer) Date: Sun Aug 9 02:16:54 2015 New Revision: 393757 URL: https://svnweb.freebsd.org/changeset/ports/393757 Log: Use gcc 4.9.2 to cross-compile u-boot for Cubox and Hummingboard. Also, fix a board-type detection problem that prevents booting on hummingboard, by initializing fdt_board to something non-zero, so that it ends up in the data segment instead of bss (and thus survives the memory init process which includes zeroing bss and runs after board detection). Approved by: rpaulo Modified: head/sysutils/u-boot-cubox-hummingboard/Makefile head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c Modified: head/sysutils/u-boot-cubox-hummingboard/Makefile ============================================================================== --- head/sysutils/u-boot-cubox-hummingboard/Makefile Sun Aug 9 01:52:16 2015 (r393756) +++ head/sysutils/u-boot-cubox-hummingboard/Makefile Sun Aug 9 02:16:54 2015 (r393757) @@ -2,6 +2,7 @@ PORTNAME= u-boot PORTVERSION= 2013.10 +PORTREVISION= 1 CATEGORIES= sysutils PKGNAMESUFFIX= -cubox-hummingboard @@ -10,7 +11,9 @@ COMMENT= Cross-build U-Boot loader for S LICENSE= GPLv2 -BUILD_DEPENDS= arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc +BUILD_DEPENDS= ${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492 + +CROSS_GCC= arm-none-eabi-gcc-4.9.2 USE_GITHUB= yes GH_ACCOUNT= SolidRun @@ -28,8 +31,9 @@ PLIST_FILES= ${U_BOOT_DIR}/u-boot.imx \ ${U_BOOT_DIR}/README MAKE_ARGS+= ARCH=arm \ + CC=${CROSS_GCC} \ CROSS_COMPILE=arm-none-eabi- \ - HOSTCC=clang + HOSTCC=cc do-configure: cd ${WRKSRC}; ${GMAKE} ${MAKE_ARGS} mx6_cubox-i_config Modified: head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c ============================================================================== --- head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c Sun Aug 9 01:52:16 2015 (r393756) +++ head/sysutils/u-boot-cubox-hummingboard/files/patch-board_solidrun_mx6__cubox-i_mx6__cubox-i.c Sun Aug 9 02:16:54 2015 (r393757) @@ -12,7 +12,7 @@ } static char const *board_type = "uninitialized"; -+static char const *fdt_board; ++static char const *fdt_board = "uninitialized"; int checkboard(void) { From owner-svn-ports-all@freebsd.org Sun Aug 9 03:44:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57BBC99D23E; Sun, 9 Aug 2015 03:44:49 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48D436AFB1; Sun, 9 Aug 2015 03:44:49 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t793in7r027623; Sun, 9 Aug 2015 03:44:49 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t793immd027622; Sun, 9 Aug 2015 03:44:48 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090344.t793immd027622@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 03:44:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393758 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 03:44:49 -0000 Author: acm Date: Sun Aug 9 03:44:47 2015 New Revision: 393758 URL: https://svnweb.freebsd.org/changeset/ports/393758 Log: - Add bareos to UIDs and GIDs Modified: head/GIDs head/UIDs Modified: head/GIDs ============================================================================== --- head/GIDs Sun Aug 9 02:16:54 2015 (r393757) +++ head/GIDs Sun Aug 9 03:44:47 2015 (r393758) @@ -319,6 +319,7 @@ kannel:*:993: rcynic:*:994: rpkirtr:*:995: tarantool:*:996: +bareos:*:997: ebnetd:*:999: nogroup:*:65533: nobody:*:65534: Modified: head/UIDs ============================================================================== --- head/UIDs Sun Aug 9 02:16:54 2015 (r393757) +++ head/UIDs Sun Aug 9 03:44:47 2015 (r393758) @@ -328,5 +328,6 @@ kannel:*:993:993::0:0:Kannel User:/nonex rcynic:*:994:994::0:0:RPKI validation system:/nonexistent:/usr/sbin/nologin rpkirtr:*:995:995::0:0:RPKI router server:/nonexistent:/usr/sbin/nologin tarantool:*:996:996::0:0:Tarantool Daemon:/nonexistent:/usr/sbin/nologin +bareos:*:997:997::0:0:Bareos Daemon:/var/db/bareos:/usr/sbin/nologin ebnetd:*:999:999::0:0:EBNETD:/nonexistent:/usr/sbin/nologin nobody:*:65534:65534::0:0:Unprivileged user:/nonexistent:/usr/sbin/nologin From owner-svn-ports-all@freebsd.org Sun Aug 9 04:55:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CF5299DD44; Sun, 9 Aug 2015 04:55:29 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B7E8FFE; Sun, 9 Aug 2015 04:55:29 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t794tTGx059943; Sun, 9 Aug 2015 04:55:29 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t794tLVg059913; Sun, 9 Aug 2015 04:55:21 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090455.t794tLVg059913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 04:55:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393759 - in head/sysutils: . bareos-bat bareos-client bareos-client-static bareos-server bareos-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 04:55:29 -0000 Author: acm Date: Sun Aug 9 04:55:20 2015 New Revision: 393759 URL: https://svnweb.freebsd.org/changeset/ports/393759 Log: - New ports : sysutils/bareos-* Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source software to backup, archive and restore files from all major operating systems. The fork was founded 2010 out of the bacula.org project. The fork has been actively developed and many new features have been added. WWW: http://www.bareos.org/ Added: head/sysutils/bareos-bat/ head/sysutils/bareos-bat/Makefile (contents, props changed) head/sysutils/bareos-bat/pkg-descr (contents, props changed) head/sysutils/bareos-bat/pkg-plist (contents, props changed) head/sysutils/bareos-client/ head/sysutils/bareos-client-static/ head/sysutils/bareos-client-static/Makefile (contents, props changed) head/sysutils/bareos-client/Makefile (contents, props changed) head/sysutils/bareos-server/ head/sysutils/bareos-server/Makefile (contents, props changed) head/sysutils/bareos-server/Makefile.common (contents, props changed) head/sysutils/bareos-server/distinfo (contents, props changed) head/sysutils/bareos-server/files/ head/sysutils/bareos-server/files/bareos-barcodes (contents, props changed) head/sysutils/bareos-server/files/bareos-dir.in (contents, props changed) head/sysutils/bareos-server/files/bareos-fd.in (contents, props changed) head/sysutils/bareos-server/files/bareos-sd.in (contents, props changed) head/sysutils/bareos-server/files/chio-bareos (contents, props changed) head/sysutils/bareos-server/files/patch-configure (contents, props changed) head/sysutils/bareos-server/files/patch-src-dird-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-filed-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-plugins-stored-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-qt-console-bat.pro.in (contents, props changed) head/sysutils/bareos-server/files/patch-src-stored-Makefile.in (contents, props changed) head/sysutils/bareos-server/files/pkg-deinstall.client.in (contents, props changed) head/sysutils/bareos-server/files/pkg-install.client.in (contents, props changed) head/sysutils/bareos-server/files/pkg-message.client.in (contents, props changed) head/sysutils/bareos-server/files/pkg-message.server.in (contents, props changed) head/sysutils/bareos-server/pkg-descr (contents, props changed) head/sysutils/bareos-server/pkg-plist (contents, props changed) head/sysutils/bareos-server/pkg-plist.client (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Aug 9 03:44:47 2015 (r393758) +++ head/sysutils/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -67,6 +67,10 @@ SUBDIR += bacula5-client-static SUBDIR += bacula5-docs SUBDIR += bacula5-server + SUBDIR += bareos-bat + SUBDIR += bareos-client + SUBDIR += bareos-client-static + SUBDIR += bareos-server SUBDIR += baloo SUBDIR += baloo-widgets SUBDIR += bamf Added: head/sysutils/bareos-bat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-bat/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,33 @@ +# Created by: Alonso Cardenas Marquez +# $FreeBSD$ + +PORTNAME= bareos +PKGNAMESUFFIX= -bat +PORTREVISION= 0 + +COMMENT= Backup archiving recovery open sourced (GUI) + +LIB_DEPENDS+= libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 \ + libbareos.so:${PORTSDIR}/sysutils/bareos-client + +CONFLICTS= bacula*-bat-* + +USES= pkgconfig +USE_QT4= qmake_build uic_build moc_build rcc_build +WITH_BAT= yes + +PLIST= ${.CURDIR}/pkg-plist +MAKE_ENV+= MAKEOBJDIRPREFIX=/ + +MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server + +CONFIGURE_ARGS+= --enable-bat \ + --with-qwt=${LOCALBASE}/lib \ + --disable-build-dird \ + --disable-build-stored \ + --enable-client-only + +OPTIONS_DEFINE= OPENSSL +OPTIONS_DEFAULT=OPENSSL + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/bareos-bat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-bat/pkg-descr Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,8 @@ +bat is the GUI inteface for Bareos. + +Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source +software to backup, archive and restore files from all major operating systems. +The fork was founded 2010 out of the bacula.org project. The fork has been +actively developed and many new features have been added. + +WWW: http://www.bareos.org/ Added: head/sysutils/bareos-bat/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-bat/pkg-plist Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,5 @@ +@sample %%ETCDIR%%/bat.conf.sample +man/man1/bat.1.gz +sbin/bat +@dirrmtry %%ETCDIR%% + Added: head/sysutils/bareos-client-static/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-client-static/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,26 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos +PORTREVISION= 0 +PKGNAMESUFFIX= -client-static + +COMMENT= Backup archiving recovery open sourced (static client) + +PLIST= ${.CURDIR}/pkg-plist +MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server + +PLIST_FILES= sbin/bareos-fd-static \ + sbin/bconsole-static + +OPTIONS_DEFINE= NLS +OPTIONS_DEFAULT=# + +CONFIGURE_ARGS+= --enable-client-only \ + --enable-static-fd \ + --enable-static-cons \ + --disable-libtool \ + --disable-build-dird \ + --disable-build-stored + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/bareos-client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-client/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,19 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos +PORTREVISION= 0 +PKGNAMESUFFIX= -client + +COMMENT= Backup archiving recovery open sourced (client) + +WITH_CLIENT_ONLY=yes +USE_RC_SUBR= bareos-fd + +PLIST= ${PKGDIR}/pkg-plist.client +MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server + +OPTIONS_DEFINE= NLS PYTHON +OPTIONS_DEFAULT=# + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/bareos-server/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/Makefile Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,203 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos +DISTVERSION= 15.2 +PORTREVISION?= 0 +CATEGORIES?= sysutils +PKGNAMEPREFIX?= # +PKGNAMESUFFIX?= -server + +USE_GITHUB= yes +GH_ACCOUNT= bareos +GH_PROJECT= bareos +GH_TAGNAME= bb1529f88585da31a0053f06727c74f2a7cb0dc1 + +MAINTAINER= acm@FreeBSD.org +COMMENT?= Backup archiving recovery open sourced (server) + +USES+= libtool:keepla + +CONFLICTS?= bacula*-server-* + +LIB_DEPENDS+= liblzo2.so:${PORTSDIR}/archivers/lzo2 + +USERS= bareos +GROUPS= ${USERS} + +PLIST_SUB+= LIB_VERSION=${PORTVERSION}.0 + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes + +CPPFLAGS+= -I/usr/include/readline -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +OPTIONS_DEFINE?= MTX PYTHON NLS OPENSSL +OPTIONS_DEFAULT?= NLS OPENSSL PGSQL +MTX_DESC= Install mtx for control of autochanger devices + +.if ${PKGNAMESUFFIX} == "-server" +OPTIONS_SINGLE_DATABASE= SQLITE3 MYSQL PGSQL +OPTIONS_SINGLE= DATABASE +DATABASE_DESC= Database support +.endif + +OPENSSL_USE= OPENSSL=yes +OPENSSL_CONFIGURE_ON= --with-openssl=${OPENSSLBASE} +OPENSSL_CONFIGURE_OFF= --with-openssl="no" + +.if ${PKGNAMESUFFIX} == "-client" || ${PKGNAMESUFFIX} == "-server" #Till end of the file + +PYTHON_USES= python +PYTHON_CONFIGURE_ON= --with-python=yes +PYTHON_CONFIGURE_OFF= --with-python=no + +.if !defined(WITH_CLIENT_ONLY) +LIB_DEPENDS+= libbareos.so:${PORTSDIR}/sysutils/bareos-client +USE_RC_SUBR?= bareos-dir bareos-sd +.endif + +.if defined(WITH_CLIENT_ONLY) +SUB_FILES+= pkg-install.client pkg-deinstall.client pkg-message.client +.else +SUB_FILES+= pkg-message.server +.endif + +CONFIGURE_ARGS+=--with-tcp-wrappers=/usr/lib \ + --enable-libtool \ + --enable-smartalloc \ + --sysconfdir=${PREFIX}/etc \ + --with-working-dir=${BAREOS_DIR} \ + --with-scriptdir=${PREFIX}/share/${PORTNAME} \ + --with-logdir=/var/log/bareos \ + --with-readline=yes \ + --disable-conio \ + --enable-batch-insert \ + --with-plugindir=${PREFIX}/lib/bareos/plugins \ + --with-scriptdir=${PREFIX}/lib/bareos/scripts \ + --with-dump-email=root@localhost \ + --with-job-email=root@localhost \ + --with-db-name=bareos \ + --with-sbin-perm=755 \ + --with-db-user=bareos \ + --with-baseport=9101 \ + --with-pid-dir=/var/run/bareos + +.if defined(WITH_CLIENT_ONLY) +CONFIGURE_ARGS+=--with-fd-user=root \ + --with-fd-group=wheel +.else +CONFIGURE_ARGS+=--with-dir-user=${BAREOS_USER} \ + --with-dir-group=${BAREOS_GROUP} \ + --with-sd-user=${BAREOS_USER} \ + --with-sd-group=operator +.endif + +# The user/group IDs below are registered, see +# http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/book.html#DADS-UID +# +BAREOS_USER?= bareos +BAREOS_GROUP?= ${BAREOS_USER} +BAREOS_UID?= 997 +BAREOS_GID?= ${BAREOS_UID} +BAREOS_DIR?= /var/db/bareos + +PLIST_SUB+= BAREOS_DIR=${BAREOS_DIR} + +SUB_LIST= BAREOS_USER=${BAREOS_USER} \ + BAREOS_GROUP=${BAREOS_GROUP} \ + BAREOS_UID=${BAREOS_UID} \ + BAREOS_GID=${BAREOS_GID} \ + BAREOS_DIR=${BAREOS_DIR} + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + +# Client only or full server version +.if defined(WITH_CLIENT_ONLY) +CONFFILES= fd +CONFIGURE_ARGS+= --enable-client-only + +PKGDEINSTALL= ${FILESDIR}/pkg-deinstall.client +PKGINSTALL= ${FILESDIR}/pkg-install.client +.else +# Server only Options +CONFFILES= sd dir +# Server default database + +MYSQL_CONFIGURE_ON= --with-mysql=yes +MYSQL_USE= MYSQL=yes +SQLITE3_CONFIGURE_ON= --with-sqlite3=yes +SQLITE3_LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 +PGSQL_CONFIGURE_ON= --with-postgresql=yes +PGSQL_USES= pgsql + +MTX_RUN_DEPENDS= ${LOCALBASE}/sbin/mtx:${PORTSDIR}/misc/mtx + +.include + +.if ${PORT_OPTIONS:MMYSQL} +DBTYPE= mysql +SUB_LIST+= REQ_MYSQL=mysql REQ_PGSQL="" +.elif ${PORT_OPTIONS:MSQLITE3} +DBTYPE= sqlite3 +.else +DBTYPE= postgresql +SUB_LIST+= REQ_MYSQL="" REQ_PGSQL=postgresql +.endif +PLIST_SUB+= DBTYPE=${DBTYPE} + +.endif + +.if defined(WITH_CLIENT_ONLY) +MP1+= bconsole.1 +MP8+= bareos-fd.8 +.else +MP8+= bareos.8 bareos-dir.8 bareos-sd.8 bcopy.8 bextract.8 bls.8 bscan.8 \ + btape.8 btraceback.8 bareos-dbcheck.8 +MP1+= bsmtp.1 bregex.1 bwild.1 bareos-tray-monitor.1 +.endif + +MAKE_ENV+= MAN8="${MP8}" MAN1="${MP1}" + +post-patch: +# This port does not install docs. See bacula-docs for that + ${REINPLACE_CMD} -e '/docdir/d' ${WRKSRC}/Makefile.in +# Default bconsole.conf is in ${ETCDIR} + @${REINPLACE_CMD} -e 's|./bconsole.conf|${ETCDIR}/bconsole.conf|g' ${WRKSRC}/src/console/console.c + @${REINPLACE_CMD} -e 's|^MAN8 =|MAN8 ?=|g' -e 's|^MAN1 =|MAN1 ?=|g' ${WRKSRC}/manpages/Makefile.in + @${REINPLACE_CMD} -e 's|_NONSHARED||g' ${WRKSRC}/src/filed/Makefile.in +.if defined(WITH_CLIENT_ONLY) +# In client port only install startup script out of script dir (see below post-install) +# Dont mkdir ${PREFIX}/share/bacula cause it's empty + @${REINPLACE_CMD} -e 's|^\(fd_subdirs = .*\)scripts\(.*\)|\1\2|g' ${WRKSRC}/Makefile.in + ${REINPLACE_CMD} -e 's|\(.*$${MKDIR} $${DESTDIR}$${scriptdir}\)|#\1|g' ${WRKSRC}/Makefile.in +.else +# In server port don't install filed + @${REINPLACE_CMD} -e '/^fd_subdirs = /s|src/filed||' -e 's|src/console||' \ + -e 's|src/lib||' -e 's|src/findlib||' -e 's|@FD_PLUGIN_DIR@||' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e 's|../lib/|$$(LOCALBASE)/lib/|g' -e 's|../findlib/|$$(LOCALBASE)/lib/|g' ${WRKSRC}/src/dird/Makefile.in \ + ${WRKSRC}/src/stored/Makefile.in ${WRKSRC}/src/tools/Makefile.in + @${REINPLACE_CMD} -e 's|fd_plugins.h|filed/fd_plugins.h|g' -e 's|dir_plugins.h|dird/dir_plugins.h|g' -e 's|stored.h|stored/stored.h|g' \ + ${WRKSRC}/src/tools/bpluginfo.c +.endif + +.if !target(post-install) +post-install: +.if defined(WITH_CLIENT_ONLY) + ${MV} ${STAGEDIR}${ETCDIR}/bconsole.conf ${STAGEDIR}${ETCDIR}/bconsole.conf.sample +.else + ${INSTALL_SCRIPT} ${FILESDIR}/chio-bareos ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_DATA} ${FILESDIR}/bareos-barcodes ${STAGEDIR}${ETCDIR}/bareos-barcodes.sample + ${CHMOD} o+x ${STAGEDIR}${PREFIX}/bin/bsmtp +.endif + for na in ${CONFFILES}; do \ + ${MV} ${STAGEDIR}${ETCDIR}/bareos-$$na.conf ${STAGEDIR}${ETCDIR}/bareos-$$na.conf.sample; \ + done + @${MKDIR} ${STAGEDIR}/var/run/bareos +.endif +.else +.include "${MASTERDIR}/Makefile.common" +.endif # -client and -server are defined +.include Added: head/sysutils/bareos-server/Makefile.common ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/Makefile.common Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,28 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +post-patch: + @${REINPLACE_CMD} -e 's|_NONSHARED||g' ${WRKSRC}/src/filed/Makefile.in + +post-build: +.if ${PKGNAMEPREFIX} == "nagios-check_" + ${MAKE_CMD} -C ${WRKSRC}/examples/nagios/check_bareos +.endif + +do-install: +.if ${PKGNAMESUFFIX} == "-bat" +# Install config files and preserve existing ones + ${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/src/qt-console/bat.conf ${STAGEDIR}${PREFIX}/etc/bareos/bat.conf.sample + ${INSTALL_MAN} ${WRKSRC}/manpages/bat.1 ${STAGEDIR}${PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/src/qt-console/bat ${STAGEDIR}${PREFIX}/sbin +.endif +.if ${PKGNAMEPREFIX} == "nagios-check_" + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/nagios + ${INSTALL_PROGRAM} ${WRKSRC}/examples/nagios/check_bareos/check_bareos \ + ${STAGEDIR}${PREFIX}/libexec/nagios +.endif +.if ${PKGNAMESUFFIX} == "-client-static" + ${INSTALL_PROGRAM} ${WRKSRC}/src/filed/static-bareos-fd ${STAGEDIR}${PREFIX}/sbin/bareos-fd-static + ${INSTALL_PROGRAM} ${WRKSRC}/src/console/static-bconsole ${STAGEDIR}${PREFIX}/sbin/bconsole-static +.endif Added: head/sysutils/bareos-server/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/distinfo Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,2 @@ +SHA256 (bareos-bareos-15.2-bb1529f88585da31a0053f06727c74f2a7cb0dc1_GH0.tar.gz) = 91341f96f1f1e883a46e74ea91431595943de84dc1482bf4bf463caa0f1d8409 +SIZE (bareos-bareos-15.2-bb1529f88585da31a0053f06727c74f2a7cb0dc1_GH0.tar.gz) = 3878822 Added: head/sysutils/bareos-server/files/bareos-barcodes ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-barcodes Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,51 @@ +# +# Bacula barcode simulation file +# used by ${PREFIX}/sbin/chio-bareos (FreeBSD) +# +# The volumenames are returned by the "changer list" command +# labeling in the console is done by "label barcodes" +# (then all volumes belog to the default pool). +# All Lines with an "#" at the bedinning are ignored +# +# !!!! If you export an tape and reinsert another one, +# !!!! don't forget to change the volume name in this file! +# +1:Volume1-100 +2:Volume1-101 +3:Volume1-102 +4:Volume1-103 +5:Volume1-104 +6:Volume1-105 +7:Volume1-106 +8:Volume1-107 +9:Volume1-108 +10:Volume1-109 +11:Volume1-110 +12:Volume1-111 +# +# Further volumes exported from the changer +# +# 36GB AIT2 tapes +#Volume1-100 +#Volume1-101 +#Volume1-102 +#Volume1-103 +#Volume1-104 +#Volume1-105 +#Volume1-106 +#Volume1-107 +#Volume1-108 +#Volume1-109 +#Volume1-110 +#Volume1-111 +#Volume1-112 +#Volume1-113 +#Volume1-114 +#Volume1-115 +# +# 50GB AIT2 tapes +#Volume2-200 +#Volume2-201 +#Volume2-202 +#Volume2-203 +#Volume2-204 Added: head/sysutils/bareos-server/files/bareos-dir.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-dir.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: head/sysutils/bareos-server/files/bareos-dir.in 323275 2013-07-19 09:44:58Z rm $ +# +# PROVIDE: bareos_dir +# REQUIRE: DAEMON %%REQ_MYSQL%% %%REQ_PGSQL%% +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bareos_dir_enable (bool): Set to NO by default. +# Set it to YES to enable bareos_dir. +# bareos_dir_flags (params): Set params used to start bareos_dir. +# + +. /etc/rc.subr + +name="bareos_dir" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bareos-dir + +load_rc_config $name + +: ${bareos_dir_enable="NO"} +: ${bareos_dir_flags=" -u bareos -g bareos -v -c %%PREFIX%%/etc/bareos/bareos-dir.conf"} +: ${bareos_dir_pidfile="/var/run/bareos/bareos-dir.9101.pid"} + +pidfile="${bareos_dir_pidfile}" + +run_rc_command "$1" Added: head/sysutils/bareos-server/files/bareos-fd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-fd.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: head/sysutils/bacula5-server/files/bacula-fd.in 323275 2013-07-19 09:44:58Z rm $ +# +# PROVIDE: bareos_fd +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bareos_fd_enable (bool): Set to NO by default. +# Set it to YES to enable bareos_fd. +# bareos_fd_flags (params): Set params used to start bareos_fd. +# + +. /etc/rc.subr + +name="bareos_fd" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bareos-fd + +load_rc_config $name + +: ${bareos_fd_enable="NO"} +: ${bareos_fd_flags=" -u root -g wheel -v -c %%PREFIX%%/etc/bareos/bareos-fd.conf"} +: ${bareos_fd_pidfile="/var/run/bareos/bareos-fd.9102.pid"} + +pidfile="${bareos_fd_pidfile}" + +run_rc_command "$1" Added: head/sysutils/bareos-server/files/bareos-sd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/bareos-sd.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,31 @@ +#!/bin/sh +# +# $FreeBSD: head/sysutils/bacula5-server/files/bacula-sd.in 323486 2013-07-22 17:51:39Z rm $ +# +# PROVIDE: bareos_sd +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf +# to enable this service: +# +# bareos_sd_enable (bool): Set to NO by default. +# Set it to YES to enable bareos_sd. +# bareos_sd_flags (params): Set params used to start bareos_sd. +# + +. /etc/rc.subr + +name="bareos_sd" +rcvar=${name}_enable +command=%%PREFIX%%/sbin/bareos-sd + +load_rc_config $name + +: ${bareos_sd_enable="NO"} +: ${bareos_sd_flags=" -u bareos -g bareos -v -c %%PREFIX%%/etc/bareos/bareos-sd.conf"} +: ${bareos_sd_pidfile="/var/run/bareos/bareos-sd.9103.pid"} + +pidfile="${bacula_sd_pidfile}" + +run_rc_command "$1" Added: head/sysutils/bareos-server/files/chio-bareos ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/chio-bareos Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,200 @@ +#!/bin/sh +# +# Bacula interface to FreeBSD chio autoloader command with +# multiple drive support +# (By Lars Köller, lars+bacula@koellers.net, 2004) +# +# If you set in your Device resource +# +# Changer Command = "path-to-this-script/chio-bacula" %c %o %S %a +# you will have the following input to this script: +# +# chio-bacula "changer-device" "command" "slot" "archive-device" "drive-index" +# $1 $2 $3 $4 $5 +# for example: +# +# chio-bacula /dev/sg0 load 1 /dev/nst0 0 (on a FreeBSD system) +# +# If you need to to an offline, refer to the drive as $4 +# e.g. mt -f $f offline +# +# Many changers need an offline after the unload. Also many +# changers need a sleep 60 after the mtx load. +# +# N.B. If you change the script, take care to return either +# the mtx exit code or a 0. If the script exits with a non-zero +# exit code, Bacula will assume the request failed. +# +me=$(basename $0) + +# Debug output, take care this file is writeable for user bacula! +#LOG=/var/db/bacula/chio-bacula.log +#exec 2>>$LOG +#echo "------------------------- $(date) Start $(basename $0) -------------------------" >> $LOG +#set -x + +# Debug +logger -p user.err "$me $@" + +# This simulates a barcode reader in the changer. +# The labes of the virtual barcode reader are located in the BARCODE_FILE +SIMULATE_BARCODE=true +BARCODE_FILE=/usr/local/etc/bacula/bacula-barcodes +MTX=/bin/chio +# Set default values (see case statement below for +# free mapping of drive index and tape device +# We have a double drive Qualstar where drive 1 is the default bacula drive +#TAPE=/dev/bacula-tape +TAPE=/dev/nrsa0 +DRIVE=0 +# Time to wait for (un)loading +SLEEP=20 + +usage() +{ + echo "" + echo "The $me script for bacula" + echo "--------------------------------------" + echo "" + echo "usage: $me [slot] [devicename of tapedrive] [drive index]" + echo "" + echo "Valid commands:" + echo "" + echo "unload Unloads a tape into the slot" + echo " from where it was loaded." + echo "load Loads a tape from the slot " + echo " (slot-base is calculated to 1 as first slot)" + echo "list Lists full storage slots" + echo "loaded Gives slot from where the tape was loaded." + echo " 0 means the tape drive is empty." + echo "slots Gives Number of aviable slots." + echo "" + echo "Example:" + echo " $me /dev/changer load 1 loads a tape from slot 1" + echo "" + exit 2 +} + +# The changer device +if [ -z "$1" ] ; then + usage; +else + CHANGER=$1 +fi +# The command +if [ -z "$2" ] ; then + usage; +else + COMMAND=$2 +fi +# The slot number +if [ ! -z "$3" ]; then + SLOT=$3 + # btape fill says "... slot 1 drive 0" :-( + if [ "$SLOT" = "slot" ]; then + shift + SLOT=$3 + fi +fi +# Set tape device +if [ ! -z "$4" ]; then + TAPE=$4 +fi + +# Here you can map bacula drive number to any tape device +# DRIVE is the chio drive number used below by chio! +case $5 in + 0) + # First Drive in Changer is Bacula drive + DRIVE=0 + #TAPE=/dev/bacula-tape + TAPE=/dev/nrsa0 + ;; + 1) + DRIVE=1 + #TAPE=/dev/bacula-tape2 + TAPE=/dev/nrsa1 + ;; +esac + +# +# Main +# +case ${COMMAND} in + unload) + # enable the following line if you need to eject the cartridge + mt -f ${TAPE} off + sleep 2 + # if we have a slot, try it + if [ ! -z "$SLOT" ]; then + ${MTX} -f ${CHANGER} move drive ${DRIVE} slot $((${SLOT}-1)) + exit $? + fi + # Try other way (works if source element information is valid for drive) + ${MTX} -f ${CHANGER} return drive ${DRIVE} + # If the changer is power cycled with a tape loaded in a drive + # we can compute the slot in case of a complete filled magazine, with + # one slot free. + if [ "$?" != "0" ]; then + free_slot=`${MTX} -f ${CHANGER} stat | grep "^slot " | grep -v "FULL" | awk '{print $2}'` + free_slot=${free_slot%:} + ${MTX} -f ${CHANGER} move drive ${DRIVE} slot $free_slot + fi + ;; + + load) + ${MTX} -f ${CHANGER} move slot $((${SLOT}-1)) drive ${DRIVE} + rtn=$? + # Increase the sleep time if you have a slow device + sleep $SLEEP + exit $rtn + ;; + + list) + if [ "${SIMULATE_BARCODE}" = "true" ]; then + if [ -f "$BARCODE_FILE" ]; then + cat $BARCODE_FILE | grep -v -e "^#" -e "^$" + exit 0 + else + echo "Barcode file $BARCODE_FILE missing ... exiting!" + exit 1 + fi + else + ${MTX} -f ${CHANGER} status | grep "^slot .*: .*FULL>" | awk '{print $2}' | awk -F: '{print $1+1" "}' | tr -d "[\r\n]" + fi + ;; + + loaded) + # echo "Request loaded" + ${MTX} -f ${CHANGER} status -S > /tmp/mtx.$$ + rtn=$? + # Try to get chio slot source from drive entry + SLOT=$(cat /tmp/mtx.$$ | grep "^drive ${DRIVE}: .*slot" | awk '{print $6+1}' | tr -d ">") + if [ -z "$SLOT" ]; then + # This handles the case a source slot is not available (power on + # of the changer with a drive loaded) and all other slots are + # occupied with a tape! + SLOT=$(cat /tmp/mtx.$$ | grep "^slot .*: " | awk '{print $2+1}') + if [ -z "$SLOT" ]; then + echo 0 + else + echo $SLOT + fi + else + echo $SLOT + fi + # All tapes are in the slots + #cat /tmp/mtx.$$ | grep "^drive ${DRIVE}: .* source: <>" | awk "{print 0}" + rm -f /tmp/mtx.$$ + exit $rtn + ;; + + slots) + # echo "Request slots" + ${MTX} -f ${CHANGER} status | grep "^slot " | tail -1 | awk '{print $2+1}' | tr -d ":" + ;; + + *) + usage + ;; +esac Added: head/sysutils/bareos-server/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-configure Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,20 @@ +--- configure 2015-08-08 15:47:12.347184000 -0500 ++++ configure 2015-08-08 15:48:11.164437000 -0500 +@@ -18626,7 +18626,7 @@ + found_so= + found_a= + if test $use_additional = yes; then +- if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then ++ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext" && test "${enable_static_fd+set}" != set; then + found_dir="$additional_libdir" + found_so="$additional_libdir/lib$name.$shlibext" + if test -f "$additional_libdir/lib$name.la"; then +@@ -21466,7 +21466,7 @@ + found_so= + found_a= + if test $use_additional = yes; then +- if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then ++ if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext" && test "${enable_static_fd+set}" != set; then + found_dir="$additional_libdir" + found_so="$additional_libdir/lib$name.$shlibext" + if test -f "$additional_libdir/lib$name.la"; then Added: head/sysutils/bareos-server/files/patch-src-dird-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-dird-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,37 @@ +--- src/dird/Makefile.in 2015-06-25 05:37:04.000000000 -0500 ++++ src/dird/Makefile.in 2015-07-25 16:32:30.152534000 -0500 +@@ -77,7 +77,7 @@ + $(LIBTOOL_LINK) $(CXX) $(WLDFLAGS) $(LDFLAGS) -L../lib -L../cats -L../findlib -o $@ $(SVROBJS) \ + $(NDMP_LIBS) -lbareosfind -lbareossql -lbareoscats -lbareoscfg -lbareos -lm $(DLIB) \ + $(DB_LIBS) $(LIBS) $(WRAPLIBS) $(GETTEXT_LIBS) $(CAP_LIBS) \ +- $(OPENSSL_LIBS_NONSHARED) $(GNUTLS_LIBS_NONSHARED) ++ $(OPENSSL_LIBS) $(GNUTLS_LIBS_NONSHARED) + + bareos-dbcheck: Makefile $(DBCHKOBJS) \ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) \ +@@ -88,7 +88,7 @@ + @echo "Linking $@ ..." + $(LIBTOOL_LINK) $(CXX) $(LDFLAGS) -L../lib -L../findlib -L../cats -o $@ $(DBCHKOBJS) \ + -lbareoscats -lbareossql -lbareoscfg -lbareosfind -lbareos -lm $(DB_LIBS) $(LIBS) $(GETTEXT_LIBS) \ +- $(OPENSSL_LIBS_NONSHARED) $(GNUTLS_LIBS_NONSHARED) ++ $(OPENSSL_LIBS) $(GNUTLS_LIBS_NONSHARED) + + testfind: Makefile $(TSTFNDOBJS) \ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) \ +@@ -99,7 +99,7 @@ + @echo "Linking $@ ..." + $(LIBTOOL_LINK) $(CXX) $(LDFLAGS) -L../lib -L../findlib -L../cats -o $@ $(TSTFNDOBJS) \ + -lbareoscats -lbareossql -lbareoscfg -lbareosfind -lbareos -lm $(DB_LIBS) $(LIBS) $(GETTEXT_LIBS) \ +- $(OPENSSL_LIBS_NONSHARED) $(GNUTLS_LIBS_NONSHARED) ++ $(OPENSSL_LIBS) $(GNUTLS_LIBS_NONSHARED) + + static-bareos-dir: Makefile $(SVROBJS) \ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) \ +@@ -140,7 +140,6 @@ + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) bareos-dir $(DESTDIR)$(sbindir)/bareos-dir + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) bareos-dbcheck $(DESTDIR)$(sbindir)/bareos-dbcheck + @srcconf=bareos-dir.conf; \ +- $(MKDIR) ${DESTDIR}${confdir}/bareos-dir.d/; \ + if test -f ${DESTDIR}${confdir}/$$srcconf; then \ + destconf=$$srcconf.new; \ + echo " ==> Found existing $$srcconf, installing new conf file as $$destconf"; \ Added: head/sysutils/bareos-server/files/patch-src-filed-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-filed-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,11 @@ +--- src/filed/Makefile.in 2015-08-08 14:17:28.058350000 -0500 ++++ src/filed/Makefile.in 2015-08-08 14:17:49.001877000 -0500 +@@ -84,7 +84,7 @@ + ../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) + @echo "Linking $@ ..." + $(LIBTOOL_LINK) $(CXX) $(WLDFLAGS) $(LDFLAGS) -static -L../lib -L../findlib -o $@ $(SVROBJS) \ +- $(FDLIBS) -lbareosfind -lbareoscfg -lbareos -lm $(LIBS) \ ++ -lbareosfind -lbareoscfg -lbareos -lm $(FDLIBS) $(LIBS) \ + $(DLIB) $(WRAPLIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS) $(GNUTLS_LIBS) + strip $@ + Added: head/sysutils/bareos-server/files/patch-src-plugins-stored-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-plugins-stored-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,11 @@ +--- src/plugins/stored/Makefile.in 2015-07-23 18:04:28.275396000 -0500 ++++ src/plugins/stored/Makefile.in 2015-07-23 18:05:09.508399000 -0500 +@@ -39,7 +39,7 @@ + + autoxflate-sd.la: Makefile \ + autoxflate-sd$(DEFAULT_OBJECT_TYPE) \ +- ../../lib/libbareos$(DEFAULT_ARCHIVE_TYPE) ++ $(LOCALBASE)/lib/libbareos$(DEFAULT_ARCHIVE_TYPE) + $(LIBTOOL_LINK) $(CXX) $(LDFLAGS) -shared autoxflate-sd.lo -o $@ -rpath $(plugindir) -module -export-dynamic -avoid-version -L../../lib -lbareos + + example-plugin-sd.la: Makefile example-plugin-sd$(DEFAULT_OBJECT_TYPE) Added: head/sysutils/bareos-server/files/patch-src-qt-console-bat.pro.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-qt-console-bat.pro.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,11 @@ +--- src/qt-console/bat.pro.in 2015-07-25 17:11:07.807100000 -0500 ++++ src/qt-console/bat.pro.in 2015-07-25 17:11:57.110388000 -0500 +@@ -32,7 +32,7 @@ + DEPENDPATH += . + INCLUDEPATH += .. ../include . + QMAKE_LIBDIR += ../lib +-LIBS += -lbareoscfg -lbareos ++LIBS += -lbareoscfg -lbareos -lintl + LIBTOOL_LINK = @QMAKE_LIBTOOL@ --silent --tag=CXX --mode=link + LIBTOOL_INSTALL = @QMAKE_LIBTOOL@ --silent --mode=install + QMAKE_LINK = $${LIBTOOL_LINK} $(CXX) Added: head/sysutils/bareos-server/files/patch-src-stored-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/patch-src-stored-Makefile.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,10 @@ +--- src/stored/Makefile.in 2015-07-25 16:28:12.065608000 -0500 ++++ src/stored/Makefile.in 2015-07-25 16:28:34.672920000 -0500 +@@ -243,7 +243,6 @@ + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) bscan $(DESTDIR)$(sbindir)/bscan + $(LIBTOOL_INSTALL) $(INSTALL_PROGRAM) btape $(DESTDIR)$(sbindir)/btape + @srcconf=bareos-sd.conf; \ +- $(MKDIR) ${DESTDIR}${confdir}/bareos-sd.d/; \ + if test -f ${DESTDIR}${confdir}/$$srcconf; then \ + destconf=$$srcconf.new; \ + echo " ==> Found existing $$srcconf, installing new conf file as $$destconf"; \ Added: head/sysutils/bareos-server/files/pkg-deinstall.client.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-deinstall.client.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,30 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/usr/sbin + +# Note how to delete UID/GID +USER=%%BAREOS_USER%% +GROUP=%%BAREOS_GROUP%% +UID=%%BAREOS_UID%% +GID=%%BAREOS_UID%% +BACULA_DIR=%%BAREOS_DIR%% + +TMPFILE=/tmp/services-$RANDOM-$$ + +case "$2" in +"DEINSTALL") + # Delete entries in /etc/services + sed -e '/# Bareos port start/,/# Bareos port end/{' \ + -e 'd' \ + -e '}' /etc/services > $TMPFILE + mv -f $TMPFILE /etc/services + + if [ -d ${BAREOS_DIR} ]; then + echo "Check if ${BAREOS_DIR} is empty and delete it to permanently remove the bareos port." + fi + + if pw groupshow "${USER}" 2>/dev/null 1>&2; then + echo "To delete Bareos group permanently, use 'pw groupdel ${GROUP}'" + fi + ;; +esac Added: head/sysutils/bareos-server/files/pkg-install.client.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-install.client.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,13 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/usr/sbin + +# Always add lines in /etc/services +grep -q "bareos-dir" /etc/services +if [ "$?" != "0" ]; then + echo "# Bareos port start +bareos-dir 9101/tcp #Bareos director daemon +bareos-fd 9102/tcp #Bareos file daemon +bareos-sd 9103/tcp #Bareos storage daemon +# Bareos port end" >> /etc/services +fi Added: head/sysutils/bareos-server/files/pkg-message.client.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-message.client.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,8 @@ +################################################################################ + +bareos client was installed + +1) Sample files are installed in %%PREFIX%%/etc/bareos: +bconsole.conf.sample, bareos-barcodes.sample, bareos-fd.conf.sample + +################################################################################ Added: head/sysutils/bareos-server/files/pkg-message.server.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/files/pkg-message.server.in Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,60 @@ +############################################################################### + +bareos server was installed + +1) Important information about new version of bareos can be found in the + ReleaseNotes. + + https://github.com/bareos/bareos/blob/master/README.md + +NOTE: + +An auto-changer manipulation script based on FreeBSDs +chio command is included and installed at + + %%PREFIX%%/sbin/chio-bareos + +Please have a look at it if you want to use an +autochanger. You have to configure the usage in + + %%PREFIX%%/etc/bareos/bareos-dir.conf + +Take care of correct permissions for changer and +tape device (e.g. /dev/ch0 and /dev/n[r]sa0) i.e. +they must be accessible by user bareos. + +Due to lack of some features in the FreeBSD tape driver +implementation you MUST add some OS dependent options to +the bareos-sd.conf file: + + Hardware End of Medium = no; + Backward Space Record = no; + Backward Space File = no; + +With 2 filemarks at EOT (see man mt): + Fast Forward Space File = no; + BSF at EOM = yes; + TWO EOF = yes; + +With 1 filemarks at EOT (see man mt): + Fast Forward Space File = yes; + BSF at EOM = no; + TWO EOF = no; + +NOTE: YOU CAN SWITCH EOT model ONLY when starting + from scratch with EMPTY tapes. + +It is also important that all the scripts accessed +by RunBeforeJob and RunAfterJob will be executed by +the user bareos. Check your permissions. + +For USB support read the bareos manual. It could be necessary +to configure/compile a new kernel. + +Look at %%PREFIX%%/lib/bareos/update_bareos_tables for +database update procedure. + +If you are using sqlite you need to run the make_sqlite_tables script as +the bareos user. Do this using 'sudo su -m bareos'. + +################################################################################ Added: head/sysutils/bareos-server/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/pkg-descr Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,6 @@ +Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source +software to backup, archive and restore files from all major operating systems. +The fork was founded 2010 out of the bacula.org project. The fork has been +actively developed and many new features have been added. + +WWW: http://www.bareos.org/ Added: head/sysutils/bareos-server/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-server/pkg-plist Sun Aug 9 04:55:20 2015 (r393759) @@ -0,0 +1,97 @@ +@sample(,bareos,640) %%ETCDIR%%/bareos-barcodes.sample +@group bareos +@sample(,bareos,) %%ETCDIR%%/bareos-dir.conf.sample +@group wheel +@sample(,bareos,) %%ETCDIR%%/bareos-sd.conf.sample +bin/bregex +bin/bsmtp +bin/bwild +etc/bareos/mtx-changer.conf +lib/bareos/plugins/BareosDirPluginBaseclass.py +lib/bareos/plugins/BareosDirWrapper.py +lib/bareos/plugins/autoxflate-sd.so +lib/bareos/plugins/bareos-dir-class-plugin.py +lib/bareos/plugins/bareos-dir.py.template +lib/bareos/plugins/bareos-sd.py.template +lib/bareos/plugins/bareos_dir_consts.py +lib/bareos/plugins/bareos_sd_consts.py +lib/bareos/scripts/bareos +lib/bareos/scripts/bareos-config +lib/bareos/scripts/bareos-config-lib.sh +lib/bareos/scripts/bareos-ctl-dir +lib/bareos/scripts/bareos-ctl-fd +lib/bareos/scripts/bareos-ctl-funcs +lib/bareos/scripts/bareos-ctl-sd +lib/bareos/scripts/bareos-explorer +lib/bareos/scripts/bareos_config +lib/bareos/scripts/bconsole *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Aug 9 04:59:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5789499DD70; Sun, 9 Aug 2015 04:59:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D088140; Sun, 9 Aug 2015 04:59:28 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t794xSkV060312; Sun, 9 Aug 2015 04:59:28 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t794xQg7060306; Sun, 9 Aug 2015 04:59:26 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090459.t794xQg7060306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 04:59:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393760 - in head/www: . bareos-webui bareos-webui/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 04:59:28 -0000 Author: acm Date: Sun Aug 9 04:59:25 2015 New Revision: 393760 URL: https://svnweb.freebsd.org/changeset/ports/393760 Log: - New port: www/bareos-webui The bareos-webui is a free software tool written in PHP, intended to monitor and manage Bareos over the web. The webui is based on Zend Framework 2, an open source framework for developing web applications and services using PHP 5.3+ and makes extensive use of the Twitter Bootstrap front-end framework. The bareos-webui is licensed under AGPL Version 3. WWW: http://www.bareos.org/ Added: head/www/bareos-webui/ head/www/bareos-webui/Makefile (contents, props changed) head/www/bareos-webui/distinfo (contents, props changed) head/www/bareos-webui/files/ head/www/bareos-webui/files/pkg-message.in (contents, props changed) head/www/bareos-webui/pkg-descr (contents, props changed) head/www/bareos-webui/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 9 04:55:20 2015 (r393759) +++ head/www/Makefile Sun Aug 9 04:59:25 2015 (r393760) @@ -44,6 +44,7 @@ SUBDIR += b2evolution SUBDIR += bacula-web SUBDIR += baikal + SUBDIR += bareos-webui SUBDIR += bblog SUBDIR += bigbluebutton SUBDIR += bins Added: head/www/bareos-webui/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/Makefile Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,71 @@ +# Created by: Alonso Cardenas +# $FreeBSD$ + +PORTNAME= bareos-webui +DISTVERSION= 14.2.1 +PORTREVISION= 0 +CATEGORIES= www sysutils + +USE_GITHUB= yes +GH_ACCOUNT= bareos +GH_PROJECT= bareos-webui +GH_TAGNAME= c826a4cbd4ff7340fb9b020ca824c9c48bd52948 + +MAINTAINER= acm@FreeBSD.org +COMMENT= A PHP-Frontend to manage Bareos over the web + +LICENSE= AGPLv3 # or later +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= tar:tgz +USE_PHP= openssl +NO_BUILD= yes +NO_ARCH= yes +NO_WRKSUBDIR= yes + +BAREOSWEB_HOME?=${WWWDIR} +BAREOSWEBUIDIR= ${BAREOSWEB_HOME:S|${PREFIX}/||} +SUB_FILES= pkg-message +PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} BAREOSWEBUIDIR=${BAREOSWEBUIDIR} +SUB_LIST= BAREOSWEBUIDIR=${BAREOSWEBUIDIR} + +OPTIONS_DEFINE= MYSQL PGSQL ZENDFRAMEWORK +OPTIONS_DEFAULT= PGSQL +ZENDFRAMEWORK_DESC= Install zend framework + +.include + +.if ${PORT_OPTIONS:MMYSQL} +USE_PHP+= pdo_mysql +.endif + +.if ${PORT_OPTIONS:MPGSQL} +USE_PHP+= pdo_pgsql +.endif + +.if ${PORT_OPTIONS:MZENDFRAMEWORK} +RUN_DEPENDS= ${LOCALBASE}/share/ZendFramework/bin/classmap_generator.php:${PORTSDIR}/www/zend-framework +.endif + +post-extract: + ${RM} ${WRKSRC}/config/autoload/.gitignore + ${RM} ${WRKSRC}/data/cache/.gitignore + ${RM} ${WRKSRC}/vendor/.gitignore + +post-patch: + @${REINPLACE_CMD} -e 's|/etc/|${LOCALBASE}/etc/|g' ${WRKSRC}/config/autoload/global.php + +do-install: + @${ECHO} "Installing in ${BAREOSWEB_HOME}" + ${MKDIR} ${STAGEDIR}${ETCDIR} + ${MKDIR} ${STAGEDIR}${BAREOSWEB_HOME} + cd ${WRKSRC} && ${COPYTREE_SHARE} "config data module public vendor" \ + ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/*.php ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/composer* ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/phpunit.xml ${STAGEDIR}${BAREOSWEB_HOME} + ${INSTALL_DATA} ${WRKSRC}/install/directors.ini ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/install/bareos/bareos-webui.conf ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/install/apache/bareos-webui.conf ${STAGEDIR}${ETCDIR}/apache-bareos-webui.conf + +.include Added: head/www/bareos-webui/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/distinfo Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,2 @@ +SHA256 (bareos-bareos-webui-14.2.1-c826a4cbd4ff7340fb9b020ca824c9c48bd52948_GH0.tgz) = 59be9f2fd1f5b74549bd0fc50cf6b0153ef6bd6529ff34a9b1a1bce78c536aad +SIZE (bareos-bareos-webui-14.2.1-c826a4cbd4ff7340fb9b020ca824c9c48bd52948_GH0.tgz) = 1033251 Added: head/www/bareos-webui/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/files/pkg-message.in Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,14 @@ +############################################################################### + +bacula webui was installed + +Please note that everything has been installed in %%BAREOSWEBUIDIR%%. You can +look bacula-webui installation/configuration instructions at: + +https://github.com/bareos/bareos-webui/blob/master/doc/INSTALL.md + +1) Configuration files are stored at %%ETCDIR%% +2) Bacula-webgui needs www/zend-framework port with PGSQL or MYSQL support. + + +############################################################################### Added: head/www/bareos-webui/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/pkg-descr Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,10 @@ +The bareos-webui is a free software tool written in PHP, intended to monitor +and manage Bareos over the web. + +The webui is based on Zend Framework 2, an open source framework for developing +web applications and services using PHP 5.3+ and makes extensive use of the +Twitter Bootstrap front-end framework. + +The bareos-webui is licensed under AGPL Version 3. + +WWW: http://www.bareos.org/ Added: head/www/bareos-webui/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/bareos-webui/pkg-plist Sun Aug 9 04:59:25 2015 (r393760) @@ -0,0 +1,259 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% +%%ETCDIR%%/apache-bareos-webui.conf +%%ETCDIR%%/bareos-webui.conf +%%ETCDIR%%/directors.ini +%%BAREOSWEBUIDIR%%/composer.json +%%BAREOSWEBUIDIR%%/composer.phar +%%BAREOSWEBUIDIR%%/config/application.config.php +%%BAREOSWEBUIDIR%%/config/autoload/README.md +%%BAREOSWEBUIDIR%%/config/autoload/global.php +%%BAREOSWEBUIDIR%%/init_autoloader.php +%%BAREOSWEBUIDIR%%/module/Admin/Module.php +%%BAREOSWEBUIDIR%%/module/Admin/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Admin/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Admin/src/Admin/Controller/AdminController.php +%%BAREOSWEBUIDIR%%/module/Admin/src/Admin/Model/Admin.php +%%BAREOSWEBUIDIR%%/module/Admin/src/Admin/Model/AdminTable.php +%%BAREOSWEBUIDIR%%/module/Admin/view/admin/admin/index.phtml +%%BAREOSWEBUIDIR%%/module/Admin/view/admin/admin/roles.phtml +%%BAREOSWEBUIDIR%%/module/Admin/view/admin/admin/users.phtml +%%BAREOSWEBUIDIR%%/module/Application/Module.php +%%BAREOSWEBUIDIR%%/module/Application/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Application/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Application/language/ar_JO.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ar_JO.po +%%BAREOSWEBUIDIR%%/module/Application/language/ar_SY.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ar_SY.po +%%BAREOSWEBUIDIR%%/module/Application/language/cs_CZ.mo +%%BAREOSWEBUIDIR%%/module/Application/language/cs_CZ.po +%%BAREOSWEBUIDIR%%/module/Application/language/de_DE.mo +%%BAREOSWEBUIDIR%%/module/Application/language/de_DE.po +%%BAREOSWEBUIDIR%%/module/Application/language/en_US.mo +%%BAREOSWEBUIDIR%%/module/Application/language/en_US.po +%%BAREOSWEBUIDIR%%/module/Application/language/es_ES.mo +%%BAREOSWEBUIDIR%%/module/Application/language/es_ES.po +%%BAREOSWEBUIDIR%%/module/Application/language/fr_CA.mo +%%BAREOSWEBUIDIR%%/module/Application/language/fr_CA.po +%%BAREOSWEBUIDIR%%/module/Application/language/fr_FR.mo +%%BAREOSWEBUIDIR%%/module/Application/language/fr_FR.po +%%BAREOSWEBUIDIR%%/module/Application/language/it_IT.mo +%%BAREOSWEBUIDIR%%/module/Application/language/it_IT.po +%%BAREOSWEBUIDIR%%/module/Application/language/ja_JP.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ja_JP.po +%%BAREOSWEBUIDIR%%/module/Application/language/nb_NO.mo +%%BAREOSWEBUIDIR%%/module/Application/language/nb_NO.po +%%BAREOSWEBUIDIR%%/module/Application/language/nl_NL.mo +%%BAREOSWEBUIDIR%%/module/Application/language/nl_NL.po +%%BAREOSWEBUIDIR%%/module/Application/language/pl_PL.mo +%%BAREOSWEBUIDIR%%/module/Application/language/pl_PL.po +%%BAREOSWEBUIDIR%%/module/Application/language/pt_BR.mo +%%BAREOSWEBUIDIR%%/module/Application/language/pt_BR.po +%%BAREOSWEBUIDIR%%/module/Application/language/ru_RU.mo +%%BAREOSWEBUIDIR%%/module/Application/language/ru_RU.po +%%BAREOSWEBUIDIR%%/module/Application/language/sl_SI.mo +%%BAREOSWEBUIDIR%%/module/Application/language/sl_SI.po +%%BAREOSWEBUIDIR%%/module/Application/language/tr_TR.mo +%%BAREOSWEBUIDIR%%/module/Application/language/tr_TR.po +%%BAREOSWEBUIDIR%%/module/Application/language/zh_CN.mo +%%BAREOSWEBUIDIR%%/module/Application/language/zh_CN.po +%%BAREOSWEBUIDIR%%/module/Application/language/zh_TW.mo +%%BAREOSWEBUIDIR%%/module/Application/language/zh_TW.po +%%BAREOSWEBUIDIR%%/module/Application/src/Application/Controller/IndexController.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Bytes.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Date.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Expiration.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/HumanReadableTimeperiod.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobDuration.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobLevel.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobStatus.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/JobType.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/Retention.php +%%BAREOSWEBUIDIR%%/module/Application/src/Application/View/Helper/StatusGlyphicons.php +%%BAREOSWEBUIDIR%%/module/Application/view/application/index/index.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/error/404.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/error/index.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/error.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/install.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/layout.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/layout/login.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/partial/breadcrumb.phtml +%%BAREOSWEBUIDIR%%/module/Application/view/partial/paginator.phtml +%%BAREOSWEBUIDIR%%/module/Auth/Module.php +%%BAREOSWEBUIDIR%%/module/Auth/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Auth/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Auth/src/Auth/Controller/AuthController.php +%%BAREOSWEBUIDIR%%/module/Auth/src/Auth/Form/LoginForm.php +%%BAREOSWEBUIDIR%%/module/Auth/src/Auth/Model/Auth.php +%%BAREOSWEBUIDIR%%/module/Auth/view/auth/auth/index.phtml +%%BAREOSWEBUIDIR%%/module/Auth/view/auth/auth/login.phtml +%%BAREOSWEBUIDIR%%/module/Auth/view/auth/auth/logout.phtml +%%BAREOSWEBUIDIR%%/module/Client/Module.php +%%BAREOSWEBUIDIR%%/module/Client/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Client/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Client/src/Client/Controller/ClientController.php +%%BAREOSWEBUIDIR%%/module/Client/src/Client/Model/Client.php +%%BAREOSWEBUIDIR%%/module/Client/src/Client/Model/ClientTable.php +%%BAREOSWEBUIDIR%%/module/Client/view/client/client/details.phtml +%%BAREOSWEBUIDIR%%/module/Client/view/client/client/index.phtml +%%BAREOSWEBUIDIR%%/module/Dashboard/Module.php +%%BAREOSWEBUIDIR%%/module/Dashboard/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Dashboard/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Dashboard/src/Dashboard/Controller/DashboardController.php +%%BAREOSWEBUIDIR%%/module/Dashboard/src/Dashboard/Model/Dashboard.php +%%BAREOSWEBUIDIR%%/module/Dashboard/src/Dashboard/Model/DashboardTable.php +%%BAREOSWEBUIDIR%%/module/Dashboard/view/dashboard/dashboard/index.phtml +%%BAREOSWEBUIDIR%%/module/Director/Module.php +%%BAREOSWEBUIDIR%%/module/Director/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Director/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Director/src/Director/Controller/DirectorController.php +%%BAREOSWEBUIDIR%%/module/Director/src/Director/Model/Director.php +%%BAREOSWEBUIDIR%%/module/Director/src/Director/Model/DirectorTable.php +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/index.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/messages.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/schedule.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/schedulerstatus.phtml +%%BAREOSWEBUIDIR%%/module/Director/view/director/director/version.phtml +%%BAREOSWEBUIDIR%%/module/File/Module.php +%%BAREOSWEBUIDIR%%/module/File/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/File/config/module.config.php +%%BAREOSWEBUIDIR%%/module/File/src/File/Controller/FileController.php +%%BAREOSWEBUIDIR%%/module/File/src/File/Model/File.php +%%BAREOSWEBUIDIR%%/module/File/src/File/Model/FileTable.php +%%BAREOSWEBUIDIR%%/module/File/view/file/file/index.phtml +%%BAREOSWEBUIDIR%%/module/File/view/file/file/jobid.phtml +%%BAREOSWEBUIDIR%%/module/File/view/file/file/revisions.phtml +%%BAREOSWEBUIDIR%%/module/Fileset/Module.php +%%BAREOSWEBUIDIR%%/module/Fileset/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Fileset/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Fileset/src/Fileset/Controller/FilesetController.php +%%BAREOSWEBUIDIR%%/module/Fileset/src/Fileset/Model/Fileset.php +%%BAREOSWEBUIDIR%%/module/Fileset/src/Fileset/Model/FilesetTable.php +%%BAREOSWEBUIDIR%%/module/Fileset/view/fileset/fileset/details.phtml +%%BAREOSWEBUIDIR%%/module/Fileset/view/fileset/fileset/index.phtml +%%BAREOSWEBUIDIR%%/module/Install/Module.php +%%BAREOSWEBUIDIR%%/module/Install/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Install/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Install/src/Install/Controller/InstallController.php +%%BAREOSWEBUIDIR%%/module/Install/src/Install/Model/Install.php +%%BAREOSWEBUIDIR%%/module/Install/src/Install/Model/InstallTable.php +%%BAREOSWEBUIDIR%%/module/Install/view/install/install/index.phtml +%%BAREOSWEBUIDIR%%/module/Install/view/install/install/test.phtml +%%BAREOSWEBUIDIR%%/module/Job/Module.php +%%BAREOSWEBUIDIR%%/module/Job/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Job/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Job/src/Job/Controller/JobController.php +%%BAREOSWEBUIDIR%%/module/Job/src/Job/Model/Job.php +%%BAREOSWEBUIDIR%%/module/Job/src/Job/Model/JobTable.php +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/cancel.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/details.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/index.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/rerun.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/running.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/successful.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/timeline.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/unsuccessful.phtml +%%BAREOSWEBUIDIR%%/module/Job/view/job/job/waiting.phtml +%%BAREOSWEBUIDIR%%/module/Log/Module.php +%%BAREOSWEBUIDIR%%/module/Log/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Log/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Log/src/Log/Controller/LogController.php +%%BAREOSWEBUIDIR%%/module/Log/src/Log/Model/Log.php +%%BAREOSWEBUIDIR%%/module/Log/src/Log/Model/LogTable.php +%%BAREOSWEBUIDIR%%/module/Log/view/log/log/details.phtml +%%BAREOSWEBUIDIR%%/module/Log/view/log/log/index.phtml +%%BAREOSWEBUIDIR%%/module/Log/view/log/log/job.phtml +%%BAREOSWEBUIDIR%%/module/Media/Module.php +%%BAREOSWEBUIDIR%%/module/Media/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Media/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Media/src/Media/Controller/MediaController.php +%%BAREOSWEBUIDIR%%/module/Media/src/Media/Model/Media.php +%%BAREOSWEBUIDIR%%/module/Media/src/Media/Model/MediaTable.php +%%BAREOSWEBUIDIR%%/module/Media/view/media/media/details.phtml +%%BAREOSWEBUIDIR%%/module/Media/view/media/media/index.phtml +%%BAREOSWEBUIDIR%%/module/Pool/Module.php +%%BAREOSWEBUIDIR%%/module/Pool/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Pool/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Pool/src/Pool/Controller/PoolController.php +%%BAREOSWEBUIDIR%%/module/Pool/src/Pool/Model/Pool.php +%%BAREOSWEBUIDIR%%/module/Pool/src/Pool/Model/PoolTable.php +%%BAREOSWEBUIDIR%%/module/Pool/view/pool/pool/details.phtml +%%BAREOSWEBUIDIR%%/module/Pool/view/pool/pool/index.phtml +%%BAREOSWEBUIDIR%%/module/Restore/Module.php +%%BAREOSWEBUIDIR%%/module/Restore/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Restore/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Restore/src/Restore/Controller/RestoreController.php +%%BAREOSWEBUIDIR%%/module/Restore/src/Restore/Model/Restore.php +%%BAREOSWEBUIDIR%%/module/Restore/src/Restore/Model/RestoreTable.php +%%BAREOSWEBUIDIR%%/module/Restore/view/restore/restore/index.phtml +%%BAREOSWEBUIDIR%%/module/Statistics/Module.php +%%BAREOSWEBUIDIR%%/module/Statistics/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Statistics/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Statistics/src/Statistics/Controller/StatisticsController.php +%%BAREOSWEBUIDIR%%/module/Statistics/src/Statistics/Model/Statistics.php +%%BAREOSWEBUIDIR%%/module/Statistics/src/Statistics/Model/StatisticsTable.php +%%BAREOSWEBUIDIR%%/module/Statistics/view/statistics/statistics/index.phtml +%%BAREOSWEBUIDIR%%/module/Storage/Module.php +%%BAREOSWEBUIDIR%%/module/Storage/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/Storage/config/module.config.php +%%BAREOSWEBUIDIR%%/module/Storage/src/Storage/Controller/StorageController.php +%%BAREOSWEBUIDIR%%/module/Storage/src/Storage/Model/Storage.php +%%BAREOSWEBUIDIR%%/module/Storage/src/Storage/Model/StorageTable.php +%%BAREOSWEBUIDIR%%/module/Storage/view/storage/storage/autochanger.phtml +%%BAREOSWEBUIDIR%%/module/Storage/view/storage/storage/details.phtml +%%BAREOSWEBUIDIR%%/module/Storage/view/storage/storage/index.phtml +%%BAREOSWEBUIDIR%%/module/User/Module.php +%%BAREOSWEBUIDIR%%/module/User/autoload_classmap.php +%%BAREOSWEBUIDIR%%/module/User/config/module.config.php +%%BAREOSWEBUIDIR%%/module/User/src/User/Controller/UserController.php +%%BAREOSWEBUIDIR%%/module/User/src/User/Model/User.php +%%BAREOSWEBUIDIR%%/module/User/src/User/Model/UserTable.php +%%BAREOSWEBUIDIR%%/module/User/view/user/user/index.phtml +%%BAREOSWEBUIDIR%%/public/css/bootstrap-theme.css +%%BAREOSWEBUIDIR%%/public/css/bootstrap-theme.css.map +%%BAREOSWEBUIDIR%%/public/css/bootstrap-theme.min.css +%%BAREOSWEBUIDIR%%/public/css/bootstrap.css +%%BAREOSWEBUIDIR%%/public/css/bootstrap.css.map +%%BAREOSWEBUIDIR%%/public/css/bootstrap.min.css +%%BAREOSWEBUIDIR%%/public/css/jquery.jqplot.css +%%BAREOSWEBUIDIR%%/public/css/jquery.jqplot.min.css +%%BAREOSWEBUIDIR%%/public/css/style.css +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.eot +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.svg +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.ttf +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.woff +%%BAREOSWEBUIDIR%%/public/fonts/glyphicons-halflings-regular.woff2 +%%BAREOSWEBUIDIR%%/public/img/bareos-logo-small.png +%%BAREOSWEBUIDIR%%/public/img/favicon.ico +%%BAREOSWEBUIDIR%%/public/index.php +%%BAREOSWEBUIDIR%%/public/js/bootstrap.js +%%BAREOSWEBUIDIR%%/public/js/bootstrap.min.js +%%BAREOSWEBUIDIR%%/public/js/excanvas.js +%%BAREOSWEBUIDIR%%/public/js/excanvas.min.js +%%BAREOSWEBUIDIR%%/public/js/html5shiv.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.barRenderer.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.barRenderer.min.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.categoryAxisRenderer.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.categoryAxisRenderer.min.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pieRenderer.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pieRenderer.min.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pointLabels.js +%%BAREOSWEBUIDIR%%/public/js/jqplot.pointLabels.min.js +%%BAREOSWEBUIDIR%%/public/js/jquery.jqplot.js +%%BAREOSWEBUIDIR%%/public/js/jquery.jqplot.min.js +%%BAREOSWEBUIDIR%%/public/js/jquery.js +%%BAREOSWEBUIDIR%%/public/js/jquery.min.js +%%BAREOSWEBUIDIR%%/public/js/jquery.min.map +%%BAREOSWEBUIDIR%%/public/js/npm.js +%%BAREOSWEBUIDIR%%/public/js/respond.min.js +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSock.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSockAbstractServiceFactory.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSockInterface.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBSockServiceFactory.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/BSock/BareosBase64.php +%%BAREOSWEBUIDIR%%/vendor/Bareos/library/Bareos/Db/Sql/BareosSqlCompatHelper.php +%%BAREOSWEBUIDIR%%/vendor/README.md +%%BAREOSWEBUIDIR%%/phpunit.xml +@owner +@group +@dir %%BAREOSWEBUIDIR%%/data/cache From owner-svn-ports-all@freebsd.org Sun Aug 9 05:14:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55ECE99DF5A; Sun, 9 Aug 2015 05:14:03 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 468E8927; Sun, 9 Aug 2015 05:14:03 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t795E3n1068359; Sun, 9 Aug 2015 05:14:03 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t795E2lp068353; Sun, 9 Aug 2015 05:14:02 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090514.t795E2lp068353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 05:14:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393761 - in head/sysutils: . bareos-docs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 05:14:03 -0000 Author: acm Date: Sun Aug 9 05:14:01 2015 New Revision: 393761 URL: https://svnweb.freebsd.org/changeset/ports/393761 Log: - New port: sysutils/bareos-docs Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source software to backup, archive and restore files from all major operating systems. The fork was founded 2010 out of the bacula.org project. The fork has been actively developed and many new features have been added. This port installs the latest documentation for Bareos. WWW: http://www.bareos.org/ > Approved by: If you needed approval for this commit. > Obtained from: If the change is from a third party. > MFC after: N [day[s]|week[s]|month[s]]. Request a reminder email. > MFH: Ports tree branch name. Request approval for merge. > Relnotes: Set to 'yes' for mention in release notes. > Security: Vulnerability reference (one per line) or description. > Sponsored by: If the change was sponsored by an organization. > Empty fields above will be automatically removed. M Makefile A bareos-docs AM bareos-docs/Makefile AM bareos-docs/distinfo AM bareos-docs/pkg-descr Added: head/sysutils/bareos-docs/ head/sysutils/bareos-docs/Makefile (contents, props changed) head/sysutils/bareos-docs/distinfo (contents, props changed) head/sysutils/bareos-docs/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Aug 9 04:59:25 2015 (r393760) +++ head/sysutils/Makefile Sun Aug 9 05:14:01 2015 (r393761) @@ -70,6 +70,7 @@ SUBDIR += bareos-bat SUBDIR += bareos-client SUBDIR += bareos-client-static + SUBDIR += bareos-docs SUBDIR += bareos-server SUBDIR += baloo SUBDIR += baloo-widgets Added: head/sysutils/bareos-docs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-docs/Makefile Sun Aug 9 05:14:01 2015 (r393761) @@ -0,0 +1,36 @@ +# Created by: Alonso CArdenas +# $FreeBSD$ + +PORTNAME= bareos +PORTVERSION= 15.2 +CATEGORIES= sysutils +MASTER_SITES= http://doc.bareos.org/master/ +PKGNAMESUFFIX= -docs +DISTFILES= ${PORTNAME}-manual-main-reference.pdf + +MAINTAINER= acm@FreeBSD.org +COMMENT= Bareos document set (PDF) + +NO_BUILD= yes + +UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} + +PORTDOCS= *.pdf + +OPTIONS_DEFINE= DOCS + +.include + +.if empty(PORT_OPTIONS:MDOCS) +IGNORE= consists of only documentation, please enable DOCS and try again +.endif + +do-extract: + ${MKDIR} ${WRKSRC} + ${CP} ${DISTDIR}/${PORTNAME}-manual-main-reference.pdf ${WRKSRC} + +do-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-manual-main-reference.pdf ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/bareos-docs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-docs/distinfo Sun Aug 9 05:14:01 2015 (r393761) @@ -0,0 +1,2 @@ +SHA256 (bareos-manual-main-reference.pdf) = 9382892ccaf6c5db76f354ebd27e649d90d4ffaf58330620a8d2f4ca6d212cb6 +SIZE (bareos-manual-main-reference.pdf) = 2076173 Added: head/sysutils/bareos-docs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/bareos-docs/pkg-descr Sun Aug 9 05:14:01 2015 (r393761) @@ -0,0 +1,8 @@ +Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source +software to backup, archive and restore files from all major operating systems. +The fork was founded 2010 out of the bacula.org project. The fork has been +actively developed and many new features have been added. + +This port installs the latest documentation for Bareos. + +WWW: http://www.bareos.org/ From owner-svn-ports-all@freebsd.org Sun Aug 9 05:51:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC38599D524; Sun, 9 Aug 2015 05:51:00 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3BE2234; Sun, 9 Aug 2015 05:51:00 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t795p0e7084600; Sun, 9 Aug 2015 05:51:00 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t795ox1s084591; Sun, 9 Aug 2015 05:50:59 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508090550.t795ox1s084591@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 05:50:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393762 - head/editors/latexila X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 05:51:00 -0000 Author: olivierd Date: Sun Aug 9 05:50:59 2015 New Revision: 393762 URL: https://svnweb.freebsd.org/changeset/ports/393762 Log: - Update to 3.16.1 - Add LICENSE - Sort USES - Add NLS option Modified: head/editors/latexila/Makefile head/editors/latexila/distinfo head/editors/latexila/pkg-plist Modified: head/editors/latexila/Makefile ============================================================================== --- head/editors/latexila/Makefile Sun Aug 9 05:14:01 2015 (r393761) +++ head/editors/latexila/Makefile Sun Aug 9 05:50:59 2015 (r393762) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= latexila -PORTVERSION= 3.14.4 +PORTVERSION= 3.16.1 CATEGORIES= editors MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -10,13 +10,15 @@ DIST_SUBDIR= gnome3 MAINTAINER= olivierd@FreeBSD.org COMMENT= Integrated LaTeX environment +LICENSE= GPLv3 + BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala \ itstool:${PORTSDIR}/textproc/itstool \ ${LOCALBASE}/libdata/pkgconfig/gsettings-desktop-schemas.pc:${PORTSDIR}/devel/gsettings-desktop-schemas LIB_DEPENDS= libgee-0.8.so:${PORTSDIR}/devel/libgee \ libgtkspell3-3.so:${PORTSDIR}/textproc/gtkspell3 -USES= pkgconfig gmake gettext desktop-file-utils tar:xz +USES= desktop-file-utils gettext-tools gmake pkgconfig tar:xz GNU_CONFIGURE= yes USE_GNOME= glib20 gtk30 gtksourceview3 intltool intlhack libxml2 USE_TEX= latex dvipsk @@ -25,6 +27,11 @@ INSTALL_TARGET= install-strip CONFIGURE_ARGS=--without-help-dir +OPTIONS_DEFINE= NLS +NLS_USES= gettext-runtime +NLS_CONFIGURE_ENABLE= nls +OPTIONS_SUB= yes + GLIB_SCHEMAS= org.gnome.latexila.gschema.xml .include Modified: head/editors/latexila/distinfo ============================================================================== --- head/editors/latexila/distinfo Sun Aug 9 05:14:01 2015 (r393761) +++ head/editors/latexila/distinfo Sun Aug 9 05:50:59 2015 (r393762) @@ -1,2 +1,2 @@ -SHA256 (gnome3/latexila-3.14.4.tar.xz) = 8e087040260a6eb777382c55fd3d1260f1686453052ccdf1a5b9e0e4178c4d62 -SIZE (gnome3/latexila-3.14.4.tar.xz) = 1139644 +SHA256 (gnome3/latexila-3.16.1.tar.xz) = ab2d769546e10c86670e86271024c023c0a87f1b72856955c1883416a9f333f0 +SIZE (gnome3/latexila-3.16.1.tar.xz) = 1059308 Modified: head/editors/latexila/pkg-plist ============================================================================== --- head/editors/latexila/pkg-plist Sun Aug 9 05:14:01 2015 (r393761) +++ head/editors/latexila/pkg-plist Sun Aug 9 05:50:59 2015 (r393762) @@ -2,6 +2,33 @@ bin/latexila man/man1/latexila.1.gz share/appdata/latexila.appdata.xml share/applications/latexila.desktop +share/gtk-doc/html/latexila/LatexilaBuildJob.html +share/gtk-doc/html/latexila/LatexilaBuildTool.html +share/gtk-doc/html/latexila/LatexilaBuildTools.html +share/gtk-doc/html/latexila/LatexilaBuildToolsDefault.html +share/gtk-doc/html/latexila/LatexilaBuildToolsPersonal.html +share/gtk-doc/html/latexila/LatexilaBuildView.html +share/gtk-doc/html/latexila/LatexilaPostProcessor.html +share/gtk-doc/html/latexila/LatexilaPostProcessorAllOutput.html +share/gtk-doc/html/latexila/LatexilaPostProcessorLatex.html +share/gtk-doc/html/latexila/LatexilaPostProcessorLatexmk.html +share/gtk-doc/html/latexila/LatexilaSynctex.html +share/gtk-doc/html/latexila/annotation-glossary.html +share/gtk-doc/html/latexila/api-index-full.html +share/gtk-doc/html/latexila/ch01.html +share/gtk-doc/html/latexila/home.png +share/gtk-doc/html/latexila/index.html +share/gtk-doc/html/latexila/index.sgml +share/gtk-doc/html/latexila/latexila-LatexilaUtils.html +share/gtk-doc/html/latexila/latexila.devhelp2 +share/gtk-doc/html/latexila/left-insensitive.png +share/gtk-doc/html/latexila/left.png +share/gtk-doc/html/latexila/object-tree.html +share/gtk-doc/html/latexila/right-insensitive.png +share/gtk-doc/html/latexila/right.png +share/gtk-doc/html/latexila/style.css +share/gtk-doc/html/latexila/up-insensitive.png +share/gtk-doc/html/latexila/up.png share/icons/hicolor/128x128/apps/latexila.png share/icons/hicolor/16x16/apps/latexila.png share/icons/hicolor/22x22/apps/latexila.png @@ -21,30 +48,30 @@ share/icons/hicolor/scalable/apps/latexi %%DATADIR%%/templates/report.xml %%DATADIR%%/ui/preferences_dialog.ui %%DATADIR%%/ui/ui.xml -share/locale/bs/LC_MESSAGES/latexila.mo -share/locale/ca/LC_MESSAGES/latexila.mo -share/locale/cs/LC_MESSAGES/latexila.mo -share/locale/de/LC_MESSAGES/latexila.mo -share/locale/el/LC_MESSAGES/latexila.mo -share/locale/eo/LC_MESSAGES/latexila.mo -share/locale/es/LC_MESSAGES/latexila.mo -share/locale/eu/LC_MESSAGES/latexila.mo -share/locale/fr/LC_MESSAGES/latexila.mo -share/locale/gl/LC_MESSAGES/latexila.mo -share/locale/he/LC_MESSAGES/latexila.mo -share/locale/hu/LC_MESSAGES/latexila.mo -share/locale/id/LC_MESSAGES/latexila.mo -share/locale/it/LC_MESSAGES/latexila.mo -share/locale/lt/LC_MESSAGES/latexila.mo -share/locale/lv/LC_MESSAGES/latexila.mo -share/locale/nb/LC_MESSAGES/latexila.mo -share/locale/nl/LC_MESSAGES/latexila.mo -share/locale/pl/LC_MESSAGES/latexila.mo -share/locale/pt_BR/LC_MESSAGES/latexila.mo -share/locale/ru/LC_MESSAGES/latexila.mo -share/locale/sl/LC_MESSAGES/latexila.mo -share/locale/sr/LC_MESSAGES/latexila.mo -share/locale/sr@latin/LC_MESSAGES/latexila.mo -share/locale/sv/LC_MESSAGES/latexila.mo -share/locale/uk/LC_MESSAGES/latexila.mo -share/locale/zh_CN/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/bs/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/ca/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/cs/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/de/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/el/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/eo/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/es/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/eu/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/fr/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/gl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/he/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/hu/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/id/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/it/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/lt/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/lv/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/nb/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/nl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/pl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/ru/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sl/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sr/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/sv/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/uk/LC_MESSAGES/latexila.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/latexila.mo From owner-svn-ports-all@freebsd.org Sun Aug 9 06:57:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ACCDE99D31A; Sun, 9 Aug 2015 06:57:12 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E2321030; Sun, 9 Aug 2015 06:57:12 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t796vCSE010254; Sun, 9 Aug 2015 06:57:12 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t796vC8Q010253; Sun, 9 Aug 2015 06:57:12 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508090657.t796vC8Q010253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 06:57:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393763 - head/devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 06:57:12 -0000 Author: olivierd Date: Sun Aug 9 06:57:11 2015 New Revision: 393763 URL: https://svnweb.freebsd.org/changeset/ports/393763 Log: Unbreak build INDEX, after revision r393751 Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 05:50:59 2015 (r393762) +++ head/devel/Makefile Sun Aug 9 06:57:11 2015 (r393763) @@ -80,6 +80,7 @@ SUBDIR += arm-gnueabi-binutils SUBDIR += arm-none-eabi-binutils SUBDIR += arm-none-eabi-gcc + SUBDIR += arm-none-eabi-gcc492 SUBDIR += aros-sdk SUBDIR += art SUBDIR += as31 From owner-svn-ports-all@freebsd.org Sun Aug 9 07:33:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1608C99D927; Sun, 9 Aug 2015 07:33:36 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E747F1FB2; Sun, 9 Aug 2015 07:33:35 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t797XZtT027923; Sun, 9 Aug 2015 07:33:35 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t797XYEA027919; Sun, 9 Aug 2015 07:33:34 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090733.t797XYEA027919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 07:33:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393764 - in head/devel: . R-cran-bit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 07:33:36 -0000 Author: tota Date: Sun Aug 9 07:33:33 2015 New Revision: 393764 URL: https://svnweb.freebsd.org/changeset/ports/393764 Log: - Add new port: devel/R-cran-bit bitmapped vectors of booleans (no NAs), coercion from and to logicals, integers and integer subscripts; fast boolean operators and fast summary statistics. With 'bit' vectors you can store true binary booleans {FALSE,TRUE} at the expense of 1 bit only, on a 32 bit architecture this means factor 32 less RAM and ~ factor 32 more speed on boolean operations. Due to overhead of R calls, actual speed gain depends on the size of the vector: expect gains for vectors of size > 10000 elements. Even for one-time boolean operations it can pay-off to convert to bit, the pay-off is obvious, when such components are used more than once. Reading from and writing to bit is approximately as fast as accessing standard logicals - mostly due to R's time for memory allocation. The package allows to work with pre-allocated memory for return values by calling .Call() directly: when evaluating the speed of C-access with pre-allocated vector memory, coping from bit to logical requires only 70% of the time for copying from logical to logical; and copying from logical to bit comes at a performance penalty of 150%. the package now contains further classes for representing logical selections: 'bitwhich' for very skewed selections and 'ri' for selecting ranges of values for chunked processing. All three index classes can be used for subsetting 'ff' objects (ff-2.1-0 and higher). WWW: https://cran.r-project.org/web/packages/bit/ Added: head/devel/R-cran-bit/ head/devel/R-cran-bit/Makefile (contents, props changed) head/devel/R-cran-bit/distinfo (contents, props changed) head/devel/R-cran-bit/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 06:57:11 2015 (r393763) +++ head/devel/Makefile Sun Aug 9 07:33:33 2015 (r393764) @@ -12,6 +12,7 @@ SUBDIR += R-cran-Hmisc SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp + SUBDIR += R-cran-bit SUBDIR += R-cran-bitops SUBDIR += R-cran-caTools SUBDIR += R-cran-caret Added: head/devel/R-cran-bit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit/Makefile Sun Aug 9 07:33:33 2015 (r393764) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= bit +DISTVERSION= 1.1-12 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Class for vectors of 1-bit booleans + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-bit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit/distinfo Sun Aug 9 07:33:33 2015 (r393764) @@ -0,0 +1,2 @@ +SHA256 (bit_1.1-12.tar.gz) = ce281c87fb7602bf1a599e72f3e25f9ff7a13e390c124a4506087f69ad79d128 +SIZE (bit_1.1-12.tar.gz) = 53737 Added: head/devel/R-cran-bit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit/pkg-descr Sun Aug 9 07:33:33 2015 (r393764) @@ -0,0 +1,23 @@ +bitmapped vectors of booleans (no NAs), coercion from and to logicals, +integers and integer subscripts; fast boolean operators and fast +summary statistics. With 'bit' vectors you can store true binary +booleans {FALSE,TRUE} at the expense of 1 bit only, on a 32 bit +architecture this means factor 32 less RAM and ~ factor 32 more +speed on boolean operations. Due to overhead of R calls, actual +speed gain depends on the size of the vector: expect gains for +vectors of size > 10000 elements. Even for one-time boolean operations +it can pay-off to convert to bit, the pay-off is obvious, when such +components are used more than once. Reading from and writing to bit +is approximately as fast as accessing standard logicals - mostly +due to R's time for memory allocation. The package allows to work +with pre-allocated memory for return values by calling .Call() +directly: when evaluating the speed of C-access with pre-allocated +vector memory, coping from bit to logical requires only 70% of the +time for copying from logical to logical; and copying from logical +to bit comes at a performance penalty of 150%. the package now +contains further classes for representing logical selections: +'bitwhich' for very skewed selections and 'ri' for selecting ranges +of values for chunked processing. All three index classes can be +used for subsetting 'ff' objects (ff-2.1-0 and higher). + +WWW: https://cran.r-project.org/web/packages/bit/ From owner-svn-ports-all@freebsd.org Sun Aug 9 07:49:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E46C99DD2E; Sun, 9 Aug 2015 07:49:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 130779B2; Sun, 9 Aug 2015 07:49:15 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t797nE3n033096; Sun, 9 Aug 2015 07:49:14 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t797nDOF033090; Sun, 9 Aug 2015 07:49:13 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090749.t797nDOF033090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 07:49:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393765 - in head/devel: . R-cran-bit64 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 07:49:15 -0000 Author: tota Date: Sun Aug 9 07:49:13 2015 New Revision: 393765 URL: https://svnweb.freebsd.org/changeset/ports/393765 Log: - Add new port: devel/R-cran-bit64 Package 'bit64' provides serializable S3 atomic 64bit (signed) integers that can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support interactive data exploration and manipulation and optionally leverage caching. WWW: https://cran.r-project.org/web/packages/bit64/ Added: head/devel/R-cran-bit64/ head/devel/R-cran-bit64/Makefile (contents, props changed) head/devel/R-cran-bit64/distinfo (contents, props changed) head/devel/R-cran-bit64/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 07:33:33 2015 (r393764) +++ head/devel/Makefile Sun Aug 9 07:49:13 2015 (r393765) @@ -13,6 +13,7 @@ SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-bit + SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops SUBDIR += R-cran-caTools SUBDIR += R-cran-caret Added: head/devel/R-cran-bit64/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/Makefile Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= bit64 +DISTVERSION= 0.9-5 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= S3 Class for Vectors of 64bit Integers + +LICENSE= GPLv2 + +RUN_DEPENDS= R-cran-bit>=1.1.12:${PORTSDIR}/devel/R-cran-bit + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-bit64/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/distinfo Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,2 @@ +SHA256 (bit64_0.9-5.tar.gz) = 8f529f9e92caa133ced9c63f327a2682b70fac3f4fa96a0e95fcf50ddda8e53b +SIZE (bit64_0.9-5.tar.gz) = 121087 Added: head/devel/R-cran-bit64/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-bit64/pkg-descr Sun Aug 9 07:49:13 2015 (r393765) @@ -0,0 +1,9 @@ +Package 'bit64' provides serializable S3 atomic 64bit (signed) +integers that can be used in vectors, matrices, arrays and data.frames. +Methods are available for coercion from and to logicals, integers, +doubles, characters and factors as well as many elementwise and +summary functions. Many fast algorithmic operations such as 'match' +and 'order' support interactive data exploration and manipulation +and optionally leverage caching. + +WWW: https://cran.r-project.org/web/packages/bit64/ From owner-svn-ports-all@freebsd.org Sun Aug 9 08:07:10 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A891499D262; Sun, 9 Aug 2015 08:07:10 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92E116937A; Sun, 9 Aug 2015 08:07:10 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7987Ajo006600; Sun, 9 Aug 2015 08:07:10 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7986jD6006499; Sun, 9 Aug 2015 08:06:45 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508090806.t7986jD6006499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 08:06:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393766 - in head: Mk archivers/fpc-bzip2 archivers/fpc-paszlib archivers/fpc-unzip audio/fpc-a52 audio/fpc-mad audio/fpc-modplug audio/fpc-oggvorbis audio/fpc-openal audio/fpc-sndfile ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 08:07:10 -0000 Author: acm Date: Sun Aug 9 08:06:43 2015 New Revision: 393766 URL: https://svnweb.freebsd.org/changeset/ports/393766 Log: - editors/lazarus update to 1.4.2 - Add USE_FPC_RUN to bsd.fpc.mk. It add fpc units like run dependencies. Otherwise fpc units only are added like build dependencies (less dependencies registered when they are installed with pkg). - Remove GTK1 obsolete dependencies - Bump all ports with dependencies of fpc-* units - Bump all ports with dependencies of lazarus ports - Clean up Deleted: head/editors/lazarus/files/patch-ide_lazbuild.lpr Modified: head/Mk/bsd.fpc.mk head/archivers/fpc-bzip2/Makefile head/archivers/fpc-paszlib/Makefile head/archivers/fpc-unzip/Makefile head/audio/fpc-a52/Makefile head/audio/fpc-mad/Makefile head/audio/fpc-modplug/Makefile head/audio/fpc-oggvorbis/Makefile head/audio/fpc-openal/Makefile head/audio/fpc-sndfile/Makefile head/comms/cqrlog/Makefile head/converters/fpc-iconvenc/Makefile head/databases/fpc-dblib/Makefile head/databases/fpc-fpindexer/Makefile head/databases/fpc-gdbm/Makefile head/databases/fpc-ibase/Makefile head/databases/fpc-mysql/Makefile head/databases/fpc-odbc/Makefile head/databases/fpc-oracle/Makefile head/databases/fpc-postgres/Makefile head/databases/fpc-pxlib/Makefile head/databases/fpc-sqlite/Makefile head/devel/fpc-bfd/Makefile head/devel/fpc-dbus/Makefile head/devel/fpc-fcl-async/Makefile head/devel/fpc-fcl-base/Makefile head/devel/fpc-fcl-db/Makefile head/devel/fpc-fcl-extra/Makefile head/devel/fpc-fcl-fpcunit/Makefile head/devel/fpc-fcl-image/Makefile head/devel/fpc-fcl-js/Makefile head/devel/fpc-fcl-json/Makefile head/devel/fpc-fcl-net/Makefile head/devel/fpc-fcl-passrc/Makefile head/devel/fpc-fcl-process/Makefile head/devel/fpc-fcl-registry/Makefile head/devel/fpc-fcl-res/Makefile head/devel/fpc-fcl-web/Makefile head/devel/fpc-fcl-xml/Makefile head/devel/fpc-fpmkunit/Makefile head/devel/fpc-fppkg/Makefile head/devel/fpc-fv/Makefile head/devel/fpc-gdbint/Makefile head/devel/fpc-newt/Makefile head/devel/fpc-pthreads/Makefile head/devel/fpc-regexpr/Makefile head/devel/fpc-sdl/Makefile head/devel/fpc-symbolic/Makefile head/devel/fpc-zlib/Makefile head/editors/fpc-ide/Makefile head/editors/lazarus-lcl-gtk2/Makefile head/editors/lazarus-lcl-nogui/Makefile head/editors/lazarus-lcl-qt/Makefile head/editors/lazarus-lcl-units/Makefile head/editors/lazarus/Makefile head/editors/lazarus/distinfo head/ftp/fpc-libcurl/Makefile head/games/hedgewars/Makefile head/graphics/fpc-cairo/Makefile head/graphics/fpc-graph/Makefile head/graphics/fpc-hermes/Makefile head/graphics/fpc-imagemagick/Makefile head/graphics/fpc-libgd/Makefile head/graphics/fpc-libpng/Makefile head/graphics/fpc-ncurses/Makefile head/graphics/fpc-opengl/Makefile head/graphics/fpc-pasjpeg/Makefile head/graphics/fpc-proj4/Makefile head/graphics/fpc-rsvg/Makefile head/graphics/fpc-svgalib/Makefile head/lang/fpc-base/Makefile head/lang/fpc-lua/Makefile head/lang/fpc-rexx/Makefile head/lang/fpc-tcl/Makefile head/lang/fpc-units/Makefile head/lang/fpc-utils/Makefile head/lang/nbc/Makefile head/math/fpc-fftw/Makefile head/math/fpc-gmp/Makefile head/math/fpc-numlib/Makefile head/misc/fpc-chm/Makefile head/multimedia/fpc-dts/Makefile head/multimedia/fpc-matroska/Makefile head/multimedia/winff/Makefile head/net-p2p/transmission-remote-gui/Makefile head/net/fpc-ldap/Makefile head/net/fpc-pcap/Makefile head/russian/emkatic/Makefile head/science/checkmol/Makefile head/science/mol2ps/Makefile head/security/fpc-hash/Makefile head/security/fpc-openssl/Makefile head/sysutils/fpc-syslog/Makefile head/sysutils/fpc-users/Makefile head/sysutils/fpc-utmp/Makefile head/sysutils/fpc-uuid/Makefile head/textproc/fpc-aspell/Makefile head/textproc/fpc-libxml2/Makefile head/www/fpc-fastcgi/Makefile head/www/fpc-httpd22/Makefile head/www/fpc-httpd24/Makefile head/x11-fm/doublecmd/Makefile head/x11-toolkits/fpc-gtk2/Makefile head/x11-toolkits/fpc-xforms/Makefile head/x11/fpc-x11/Makefile Modified: head/Mk/bsd.fpc.mk ============================================================================== --- head/Mk/bsd.fpc.mk Sun Aug 9 07:49:13 2015 (r393765) +++ head/Mk/bsd.fpc.mk Sun Aug 9 08:06:43 2015 (r393766) @@ -13,6 +13,9 @@ # free pascal compiler, if you need install additional fpc # units, they can be listed there (USE_FPC= gtk x11 opengl). # +# USE_FPC_RUN - If you set this to "yes", free pascal units will be +# registered also as run dependencies. +# # WANT_FPC_BASE - If you set this to "yes", this automatically will install # all base units of fpc (gdbint graph ibase libasync hash # httpd mysql netdb odbc oracle pasjpeg paszlib pthreads @@ -197,10 +200,14 @@ zlib_UNIT= devel/fpc-zlib . if ${_FPC_ALL_UNITS:M${UNITS}}!="" . if ${_FPC_CFG_UNITS:M${UNITS}}!="" BUILD_DEPENDS+= ${UNITSDIR}/${UNITS}/fpunits.cfg:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. if defined(USE_FPC_RUN) RUN_DEPENDS+= ${UNITSDIR}/${UNITS}/fpunits.cfg:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. endif . else BUILD_DEPENDS+= ${UNITSDIR}/${UNITS}/Package.fpc:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. if defined(USE_FPC_RUN) RUN_DEPENDS+= ${UNITSDIR}/${UNITS}/Package.fpc:${PORTSDIR}/${${UNITS:S/-/_/}_UNIT} +. endif . endif security-check: fpc-check-install Modified: head/archivers/fpc-bzip2/Makefile ============================================================================== --- head/archivers/fpc-bzip2/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/archivers/fpc-bzip2/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= archivers lang PKGNAMESUFFIX= -bzip2 Modified: head/archivers/fpc-paszlib/Makefile ============================================================================== --- head/archivers/fpc-paszlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/archivers/fpc-paszlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= archivers devel PKGNAMESUFFIX= -paszlib Modified: head/archivers/fpc-unzip/Makefile ============================================================================== --- head/archivers/fpc-unzip/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/archivers/fpc-unzip/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= archivers lang PKGNAMESUFFIX= -unzip Modified: head/audio/fpc-a52/Makefile ============================================================================== --- head/audio/fpc-a52/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-a52/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -a52 Modified: head/audio/fpc-mad/Makefile ============================================================================== --- head/audio/fpc-mad/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-mad/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio lang PKGNAMESUFFIX= -mad Modified: head/audio/fpc-modplug/Makefile ============================================================================== --- head/audio/fpc-modplug/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-modplug/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -modplug Modified: head/audio/fpc-oggvorbis/Makefile ============================================================================== --- head/audio/fpc-oggvorbis/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-oggvorbis/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 2 CATEGORIES= audio lang PKGNAMESUFFIX= -oggvorbis Modified: head/audio/fpc-openal/Makefile ============================================================================== --- head/audio/fpc-openal/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-openal/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -openal Modified: head/audio/fpc-sndfile/Makefile ============================================================================== --- head/audio/fpc-sndfile/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/audio/fpc-sndfile/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= audio lang PKGNAMESUFFIX= -sndfile Modified: head/comms/cqrlog/Makefile ============================================================================== --- head/comms/cqrlog/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/comms/cqrlog/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -3,7 +3,7 @@ PORTNAME= cqrlog PORTVERSION= 1.9.0 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONPREFIX= v CATEGORIES= comms hamradio @@ -25,7 +25,7 @@ SHEBANG_FILES= tools/cqrlog-apparmor-fix WANT_GNOME= yes ALL_TARGET= ${PORTNAME} -LAZARUS_VER= 1.4.0 +LAZARUS_VER= 1.4.2 LAZARUS_DIR= ${LOCALBASE}/share/lazarus-${LAZARUS_VER} OPTIONS_SINGLE= LCL Modified: head/converters/fpc-iconvenc/Makefile ============================================================================== --- head/converters/fpc-iconvenc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/converters/fpc-iconvenc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= converters lang PKGNAMESUFFIX= -iconvenc Modified: head/databases/fpc-dblib/Makefile ============================================================================== --- head/databases/fpc-dblib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-dblib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -dblib Modified: head/databases/fpc-fpindexer/Makefile ============================================================================== --- head/databases/fpc-fpindexer/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-fpindexer/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -fpindexer Modified: head/databases/fpc-gdbm/Makefile ============================================================================== --- head/databases/fpc-gdbm/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-gdbm/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -gdbm Modified: head/databases/fpc-ibase/Makefile ============================================================================== --- head/databases/fpc-ibase/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-ibase/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -ibase Modified: head/databases/fpc-mysql/Makefile ============================================================================== --- head/databases/fpc-mysql/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-mysql/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -mysql Modified: head/databases/fpc-odbc/Makefile ============================================================================== --- head/databases/fpc-odbc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-odbc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -odbc Modified: head/databases/fpc-oracle/Makefile ============================================================================== --- head/databases/fpc-oracle/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-oracle/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -oracle Modified: head/databases/fpc-postgres/Makefile ============================================================================== --- head/databases/fpc-postgres/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-postgres/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -postgres Modified: head/databases/fpc-pxlib/Makefile ============================================================================== --- head/databases/fpc-pxlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-pxlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= databases lang PKGNAMESUFFIX= -pxlib Modified: head/databases/fpc-sqlite/Makefile ============================================================================== --- head/databases/fpc-sqlite/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/databases/fpc-sqlite/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases lang PKGNAMESUFFIX= -sqlite Modified: head/devel/fpc-bfd/Makefile ============================================================================== --- head/devel/fpc-bfd/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-bfd/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -bfd Modified: head/devel/fpc-dbus/Makefile ============================================================================== --- head/devel/fpc-dbus/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-dbus/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -dbus Modified: head/devel/fpc-fcl-async/Makefile ============================================================================== --- head/devel/fpc-fcl-async/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-async/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-async Modified: head/devel/fpc-fcl-base/Makefile ============================================================================== --- head/devel/fpc-fcl-base/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-base/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-base Modified: head/devel/fpc-fcl-db/Makefile ============================================================================== --- head/devel/fpc-fcl-db/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-db/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-db Modified: head/devel/fpc-fcl-extra/Makefile ============================================================================== --- head/devel/fpc-fcl-extra/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-extra/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-extra Modified: head/devel/fpc-fcl-fpcunit/Makefile ============================================================================== --- head/devel/fpc-fcl-fpcunit/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-fpcunit/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-fpcunit Modified: head/devel/fpc-fcl-image/Makefile ============================================================================== --- head/devel/fpc-fcl-image/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-image/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-image Modified: head/devel/fpc-fcl-js/Makefile ============================================================================== --- head/devel/fpc-fcl-js/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-js/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-js Modified: head/devel/fpc-fcl-json/Makefile ============================================================================== --- head/devel/fpc-fcl-json/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-json/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-json Modified: head/devel/fpc-fcl-net/Makefile ============================================================================== --- head/devel/fpc-fcl-net/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-net/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-net Modified: head/devel/fpc-fcl-passrc/Makefile ============================================================================== --- head/devel/fpc-fcl-passrc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-passrc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-passrc Modified: head/devel/fpc-fcl-process/Makefile ============================================================================== --- head/devel/fpc-fcl-process/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-process/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-process Modified: head/devel/fpc-fcl-registry/Makefile ============================================================================== --- head/devel/fpc-fcl-registry/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-registry/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-registry Modified: head/devel/fpc-fcl-res/Makefile ============================================================================== --- head/devel/fpc-fcl-res/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-res/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-res Modified: head/devel/fpc-fcl-web/Makefile ============================================================================== --- head/devel/fpc-fcl-web/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-web/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-web Modified: head/devel/fpc-fcl-xml/Makefile ============================================================================== --- head/devel/fpc-fcl-xml/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fcl-xml/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-xml Modified: head/devel/fpc-fpmkunit/Makefile ============================================================================== --- head/devel/fpc-fpmkunit/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fpmkunit/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fpmkunit Modified: head/devel/fpc-fppkg/Makefile ============================================================================== --- head/devel/fpc-fppkg/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fppkg/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fppkg Modified: head/devel/fpc-fv/Makefile ============================================================================== --- head/devel/fpc-fv/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-fv/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -fv Modified: head/devel/fpc-gdbint/Makefile ============================================================================== --- head/devel/fpc-gdbint/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-gdbint/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMESUFFIX= -gdbint Modified: head/devel/fpc-newt/Makefile ============================================================================== --- head/devel/fpc-newt/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-newt/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -newt Modified: head/devel/fpc-pthreads/Makefile ============================================================================== --- head/devel/fpc-pthreads/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-pthreads/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -pthreads Modified: head/devel/fpc-regexpr/Makefile ============================================================================== --- head/devel/fpc-regexpr/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-regexpr/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -regexpr Modified: head/devel/fpc-sdl/Makefile ============================================================================== --- head/devel/fpc-sdl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-sdl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,8 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTVERSION= 0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel lang PKGNAMESUFFIX= -sdl Modified: head/devel/fpc-symbolic/Makefile ============================================================================== --- head/devel/fpc-symbolic/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-symbolic/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -symbolic Modified: head/devel/fpc-zlib/Makefile ============================================================================== --- head/devel/fpc-zlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/devel/fpc-zlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -zlib Modified: head/editors/fpc-ide/Makefile ============================================================================== --- head/editors/fpc-ide/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/fpc-ide/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper et al # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors lang PKGNAMESUFFIX= -ide Modified: head/editors/lazarus-lcl-gtk2/Makefile ============================================================================== --- head/editors/lazarus-lcl-gtk2/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-gtk2/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-gtk2 COMMENT= Lazarus components library - GTK2 backend @@ -9,6 +9,7 @@ COMMENT= Lazarus components library - GT BUILD_DEPENDS= ${LCL_UNITS_DIR}/alllclunits.ppu:${PORTSDIR}/editors/lazarus-lcl-units USE_FPC= x11 gtk2 +USE_FPC_RUN= yes LCL_INTERFACE= gtk2 Modified: head/editors/lazarus-lcl-nogui/Makefile ============================================================================== --- head/editors/lazarus-lcl-nogui/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-nogui/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-nogui COMMENT= Lazarus components library - No gui backend Modified: head/editors/lazarus-lcl-qt/Makefile ============================================================================== --- head/editors/lazarus-lcl-qt/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-qt/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-qt COMMENT= Lazarus components library - QT backend @@ -9,6 +9,7 @@ COMMENT= Lazarus components library - QT BUILD_DEPENDS= ${LCL_UNITS_DIR}/alllclunits.ppu:${PORTSDIR}/editors/lazarus-lcl-units USE_FPC= x11 +USE_FPC_RUN= yes LCL_INTERFACE= qt Modified: head/editors/lazarus-lcl-units/Makefile ============================================================================== --- head/editors/lazarus-lcl-units/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus-lcl-units/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,12 +1,13 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -lcl-units COMMENT= Lazarus components library units USE_FPC= fcl-base fcl-db fcl-image fcl-process fcl-registry fcl-xml iconvenc fcl-res +USE_FPC_RUN= yes LCL_INTERFACE= # Modified: head/editors/lazarus/Makefile ============================================================================== --- head/editors/lazarus/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lazarus -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.2 DISTVERSIONSUFFIX= -0 PORTREVISION?= 0 CATEGORIES= editors devel @@ -22,6 +22,7 @@ USES= gmake USE_GNOME= # USE_FPC?= fcl-base fcl-db fcl-fpcunit fcl-image fcl-process fcl-registry \ fcl-res fcl-xml iconvenc numlib pasjpeg x11 +USE_FPC_RUN= yes OPT?= "-Sgic " MAKE_ENV= OPT=${OPT} @@ -32,10 +33,9 @@ DATADIR?= ${PREFIX}/share/${PORTNAME}-${ .if !defined(PKGNAMESUFFIX) OPTIONS_DEFINE= GDB OPTIONS_SINGLE= LCL -OPTIONS_SINGLE_LCL= GTK1 GTK2 QT4 +OPTIONS_SINGLE_LCL= GTK2 QT4 GDB_DESC= Install a newest version of gdb -GTK1_DESC= Use gtk12 interface GTK2_DESC= Use gtk20 interface QT4_DESC= Use qt4 interface @@ -79,14 +79,6 @@ BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_P RUN_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk2 .endif -.if ${PORT_OPTIONS:MGTK1} -USE_FPC+= gtk1 -USE_GNOME= gtk12 gdkpixbuf -LCL_PLATFORM= gtk -BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk -RUN_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk -.endif - .if ${PORT_OPTIONS:MQT4} LIB_DEPENDS+= libQt4Pas.so:${PORTSDIR}/x11-toolkits/qt4pas LCL_PLATFORM= qt Modified: head/editors/lazarus/distinfo ============================================================================== --- head/editors/lazarus/distinfo Sun Aug 9 07:49:13 2015 (r393765) +++ head/editors/lazarus/distinfo Sun Aug 9 08:06:43 2015 (r393766) @@ -1,2 +1,2 @@ -SHA256 (freepascal/lazarus-1.4.0-0.tar.gz) = 6ceab5d2f176abedd1cebda2f7524812b16f702f010681a6af62c7a6025c12ec -SIZE (freepascal/lazarus-1.4.0-0.tar.gz) = 53055658 +SHA256 (freepascal/lazarus-1.4.2-0.tar.gz) = ba0d2279fefba24f8fd1d9086b10fad8cd7076d6e267afd050908c6a375733e8 +SIZE (freepascal/lazarus-1.4.2-0.tar.gz) = 53106286 Modified: head/ftp/fpc-libcurl/Makefile ============================================================================== --- head/ftp/fpc-libcurl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/ftp/fpc-libcurl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= ftp lang PKGNAMESUFFIX= -libcurl Modified: head/games/hedgewars/Makefile ============================================================================== --- head/games/hedgewars/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/games/hedgewars/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -3,6 +3,7 @@ PORTNAME= hedgewars PORTVERSION= 0.9.21.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://download.gna.org/hedgewars/ \ http://mirror.amdmi3.ru/distfiles/ Modified: head/graphics/fpc-cairo/Makefile ============================================================================== --- head/graphics/fpc-cairo/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-cairo/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -cairo Modified: head/graphics/fpc-graph/Makefile ============================================================================== --- head/graphics/fpc-graph/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-graph/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics lang PKGNAMESUFFIX= -graph Modified: head/graphics/fpc-hermes/Makefile ============================================================================== --- head/graphics/fpc-hermes/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-hermes/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -hermes Modified: head/graphics/fpc-imagemagick/Makefile ============================================================================== --- head/graphics/fpc-imagemagick/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-imagemagick/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics lang PKGNAMESUFFIX= -imagemagick Modified: head/graphics/fpc-libgd/Makefile ============================================================================== --- head/graphics/fpc-libgd/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-libgd/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -libgd Modified: head/graphics/fpc-libpng/Makefile ============================================================================== --- head/graphics/fpc-libpng/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-libpng/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics lang PKGNAMESUFFIX= -libpng Modified: head/graphics/fpc-ncurses/Makefile ============================================================================== --- head/graphics/fpc-ncurses/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-ncurses/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -ncurses Modified: head/graphics/fpc-opengl/Makefile ============================================================================== --- head/graphics/fpc-opengl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-opengl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics lang PKGNAMESUFFIX= -opengl Modified: head/graphics/fpc-pasjpeg/Makefile ============================================================================== --- head/graphics/fpc-pasjpeg/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-pasjpeg/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -pasjpeg Modified: head/graphics/fpc-proj4/Makefile ============================================================================== --- head/graphics/fpc-proj4/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-proj4/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics lang PKGNAMESUFFIX= -proj4 Modified: head/graphics/fpc-rsvg/Makefile ============================================================================== --- head/graphics/fpc-rsvg/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-rsvg/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -rsvg Modified: head/graphics/fpc-svgalib/Makefile ============================================================================== --- head/graphics/fpc-svgalib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/graphics/fpc-svgalib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= graphics lang PKGNAMESUFFIX= -svgalib Modified: head/lang/fpc-base/Makefile ============================================================================== --- head/lang/fpc-base/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-base/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -13,6 +13,7 @@ EXTRACT_ONLY= # empty MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Meta package to install all of the Free Pascal base +USE_FPC_RUN= yes WANT_FPC_BASE= yes NO_BUILD= yes NO_INSTALL= yes Modified: head/lang/fpc-lua/Makefile ============================================================================== --- head/lang/fpc-lua/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-lua/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang PKGNAMESUFFIX= -lua Modified: head/lang/fpc-rexx/Makefile ============================================================================== --- head/lang/fpc-rexx/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-rexx/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang PKGNAMESUFFIX= -rexx Modified: head/lang/fpc-tcl/Makefile ============================================================================== --- head/lang/fpc-tcl/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-tcl/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= lang PKGNAMESUFFIX= -tcl Modified: head/lang/fpc-units/Makefile ============================================================================== --- head/lang/fpc-units/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-units/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -3,7 +3,7 @@ PORTNAME= units PORTVERSION= 2.6.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang PKGNAMEPREFIX= fpc- @@ -115,6 +115,8 @@ UNITS_SELECTED= # UNITS_SELECTED+= ${OPT:tl} . endif .endfor + +USE_FPC_RUN= yes USE_FPC= ${UNITS_SELECTED} .include Modified: head/lang/fpc-utils/Makefile ============================================================================== --- head/lang/fpc-utils/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/fpc-utils/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang PKGNAMESUFFIX= -utils Modified: head/lang/nbc/Makefile ============================================================================== --- head/lang/nbc/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/lang/nbc/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -5,7 +5,7 @@ PORTNAME= nbc PORTVERSION= 1.2.1.r4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= lang MASTER_SITES= SF/bricxcc/NBC_NXC/NBC%20release%20${PORTVERSION:S/.r/%20r/} DISTNAME= ${PORTNAME}-${PORTVERSION}.src Modified: head/math/fpc-fftw/Makefile ============================================================================== --- head/math/fpc-fftw/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/math/fpc-fftw/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math lang PKGNAMESUFFIX= -fftw Modified: head/math/fpc-gmp/Makefile ============================================================================== --- head/math/fpc-gmp/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/math/fpc-gmp/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= math lang PKGNAMESUFFIX= -gmp Modified: head/math/fpc-numlib/Makefile ============================================================================== --- head/math/fpc-numlib/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/math/fpc-numlib/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= math lang PKGNAMESUFFIX= -numlib Modified: head/misc/fpc-chm/Makefile ============================================================================== --- head/misc/fpc-chm/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/misc/fpc-chm/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= misc lang PKGNAMESUFFIX= -chm Modified: head/multimedia/fpc-dts/Makefile ============================================================================== --- head/multimedia/fpc-dts/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/multimedia/fpc-dts/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia lang PKGNAMESUFFIX= -dts Modified: head/multimedia/fpc-matroska/Makefile ============================================================================== --- head/multimedia/fpc-matroska/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/multimedia/fpc-matroska/Makefile Sun Aug 9 08:06:43 2015 (r393766) @@ -1,7 +1,7 @@ # Created by: Christopher Key # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia lang PKGNAMESUFFIX= -matroska Modified: head/multimedia/winff/Makefile ============================================================================== --- head/multimedia/winff/Makefile Sun Aug 9 07:49:13 2015 (r393765) +++ head/multimedia/winff/Makefile Sun Aug 9 08:06:43 2015 (r393766) *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Aug 9 08:26:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CECDA99D60D; Sun, 9 Aug 2015 08:26:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA7AB81C; Sun, 9 Aug 2015 08:26:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t798Qmub014986; Sun, 9 Aug 2015 08:26:48 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t798QlmG014978; Sun, 9 Aug 2015 08:26:47 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508090826.t798QlmG014978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 08:26:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393767 - in head/converters: . R-cran-jsonlite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 08:26:49 -0000 Author: tota Date: Sun Aug 9 08:26:46 2015 New Revision: 393767 URL: https://svnweb.freebsd.org/changeset/ports/393767 Log: - Add new port: converters/R-cran-jsonlite A fast JSON parser and generator optimized for statistical data and the web. Started out as a fork of RJSONIO, but has been completely rewritten in recent versions. The package offers flexible, robust, high performance tools for working with JSON in R and is particularly powerful for building pipelines and interacting with web APIs. The implementation is based on the mapping described in the vignette of the package (Ooms, 2014). In addition to drop-in replacements for toJSON and fromJSON, jsonlite contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications. WWW: https://cran.r-project.org/web/packages/jsonlite/ Added: head/converters/R-cran-jsonlite/ head/converters/R-cran-jsonlite/Makefile (contents, props changed) head/converters/R-cran-jsonlite/distinfo (contents, props changed) head/converters/R-cran-jsonlite/pkg-descr (contents, props changed) Modified: head/converters/Makefile Modified: head/converters/Makefile ============================================================================== --- head/converters/Makefile Sun Aug 9 08:06:43 2015 (r393766) +++ head/converters/Makefile Sun Aug 9 08:26:46 2015 (r393767) @@ -4,6 +4,7 @@ COMMENT = Character code converters SUBDIR += R-cran-RJSONIO + SUBDIR += R-cran-jsonlite SUBDIR += R-cran-rjson SUBDIR += aish SUBDIR += ascii2binary Added: head/converters/R-cran-jsonlite/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/Makefile Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= jsonlite +PORTVERSION= 0.9.16 +CATEGORIES= converters +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Robust, High Performance JSON Parser and Generator for R + +LICENSE= MIT + +USES= cran:auto-plist + +.include Added: head/converters/R-cran-jsonlite/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/distinfo Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,2 @@ +SHA256 (jsonlite_0.9.16.tar.gz) = d517dc7993c920298030978b65d38cfb411b37fb29faa246e3c859a893cc908b +SIZE (jsonlite_0.9.16.tar.gz) = 955572 Added: head/converters/R-cran-jsonlite/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/converters/R-cran-jsonlite/pkg-descr Sun Aug 9 08:26:46 2015 (r393767) @@ -0,0 +1,13 @@ +A fast JSON parser and generator optimized for statistical data and +the web. Started out as a fork of RJSONIO, but has been completely +rewritten in recent versions. The package offers flexible, robust, +high performance tools for working with JSON in R and is particularly +powerful for building pipelines and interacting with web APIs. The +implementation is based on the mapping described in the vignette +of the package (Ooms, 2014). In addition to drop-in replacements +for toJSON and fromJSON, jsonlite contains functions to stream, +validate, and prettify JSON data. The unit tests included with the +package verify that all edge cases are encoded and decoded consistently +for use with dynamic data in systems and applications. + +WWW: https://cran.r-project.org/web/packages/jsonlite/ From owner-svn-ports-all@freebsd.org Sun Aug 9 09:03:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 269F59986EA; Sun, 9 Aug 2015 09:03:25 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CB7E119E; Sun, 9 Aug 2015 09:03:25 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7993Okq028647; Sun, 9 Aug 2015 09:03:24 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7993O96028645; Sun, 9 Aug 2015 09:03:24 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201508090903.t7993O96028645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Sun, 9 Aug 2015 09:03:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393768 - head/security/signing-party X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 09:03:25 -0000 Author: johans Date: Sun Aug 9 09:03:23 2015 New Revision: 393768 URL: https://svnweb.freebsd.org/changeset/ports/393768 Log: Update to signing-party 2.1 (bugfix release) http://metadata.ftp-master.debian.org/changelogs/main/s/signing-party/signing-party_2.1-1_changelog Modified: head/security/signing-party/Makefile head/security/signing-party/distinfo Modified: head/security/signing-party/Makefile ============================================================================== --- head/security/signing-party/Makefile Sun Aug 9 08:26:46 2015 (r393767) +++ head/security/signing-party/Makefile Sun Aug 9 09:03:23 2015 (r393768) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= signing-party -PORTVERSION= 2.0 -PORTREVISION= 1 +PORTVERSION= 2.1 CATEGORIES= security MASTER_SITES= ftp://ftp.stack.nl/pub/users/johans/signing-party/ \ DEBIAN Modified: head/security/signing-party/distinfo ============================================================================== --- head/security/signing-party/distinfo Sun Aug 9 08:26:46 2015 (r393767) +++ head/security/signing-party/distinfo Sun Aug 9 09:03:23 2015 (r393768) @@ -1,2 +1,2 @@ -SHA256 (signing-party_2.0.orig.tar.gz) = cc23e48b2f06dee7cbf7b80ee4dfbed69908cb4584d3d5fa29ed7b2f962ec16e -SIZE (signing-party_2.0.orig.tar.gz) = 236249 +SHA256 (signing-party_2.1.orig.tar.gz) = ca87849a74ea4c271e92422bfe6b1be2bfe2c2de9a723bf11aa088e4ea88965d +SIZE (signing-party_2.1.orig.tar.gz) = 237478 From owner-svn-ports-all@freebsd.org Sun Aug 9 09:17:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 462369989BB; Sun, 9 Aug 2015 09:17:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C9EC17DD; Sun, 9 Aug 2015 09:17:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t799Ha7U033037; Sun, 9 Aug 2015 09:17:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t799HaAI033036; Sun, 9 Aug 2015 09:17:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201508090917.t799HaAI033036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 9 Aug 2015 09:17:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393769 - head/databases/sqlrelay X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 09:17:36 -0000 Author: pi Date: Sun Aug 9 09:17:35 2015 New Revision: 393769 URL: https://svnweb.freebsd.org/changeset/ports/393769 Log: databases/sqlrelay: ignore strip error if file was not build Modified: head/databases/sqlrelay/Makefile Modified: head/databases/sqlrelay/Makefile ============================================================================== --- head/databases/sqlrelay/Makefile Sun Aug 9 09:03:23 2015 (r393768) +++ head/databases/sqlrelay/Makefile Sun Aug 9 09:17:35 2015 (r393769) @@ -151,7 +151,7 @@ post-configure: post-stage: .for f in ${TOSTRIP} - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${f} + -${STRIP_CMD} ${STAGEDIR}${PREFIX}/${f} .endfor .include From owner-svn-ports-all@freebsd.org Sun Aug 9 09:18:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41EB49989E8; Sun, 9 Aug 2015 09:18:22 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 313E518D2; Sun, 9 Aug 2015 09:18:22 +0000 (UTC) (envelope-from stephen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t799IMAt033180; Sun, 9 Aug 2015 09:18:22 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t799IMsF033179; Sun, 9 Aug 2015 09:18:22 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201508090918.t799IMsF033179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Sun, 9 Aug 2015 09:18:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393770 - head/math/octave-forge-interval/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 09:18:22 -0000 Author: stephen Date: Sun Aug 9 09:18:21 2015 New Revision: 393770 URL: https://svnweb.freebsd.org/changeset/ports/393770 Log: - Add patch that allows port to build on FreeBSD 10 with i386 architecture. Reference: http://beefy5.nyi.freebsd.org/data/101i386-default/393750/logs/octave-forge-interval-1.1.0.log Submitted by: Oliver Heimlich Added: head/math/octave-forge-interval/files/ head/math/octave-forge-interval/files/patch-Makefile (contents, props changed) Added: head/math/octave-forge-interval/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-interval/files/patch-Makefile Sun Aug 9 09:18:21 2015 (r393770) @@ -0,0 +1,18 @@ +--- Makefile.orig 2015-08-09 09:08:20 UTC ++++ Makefile +@@ -25,13 +25,13 @@ OBJ = mpfr_function_d.oct \ + + LDFLAGS_MPFR =-lmpfr -lgmp + ## Use important flags in XTRA_CFLAGS for OpenMP (workaround for bug #45280) +-XTRA_CFLAGS =$(shell $(MKOCTFILE) -p XTRA_CFLAGS) ++CFLAG_OPENMP =$(findstring -fopenmp,$(shell $(MKOCTFILE) -p XTRA_CFLAGS)) + + all: $(OBJ) + + ## GNU MPFR api oct-files + mpfr_matrix_mul_d.oct: mpfr_%.oct: mpfr_%.cc mpfr_commons.cc +- $(MKOCTFILE) -o $@ $(LDFLAGS_MPFR) $(XTRA_CFLAGS) $< ++ $(MKOCTFILE) -o $@ $(LDFLAGS_MPFR) $(CFLAG_OPENMP) $< + mpfr_%.oct: mpfr_%.cc mpfr_commons.cc + $(MKOCTFILE) -o $@ $(LDFLAGS_MPFR) $< + From owner-svn-ports-all@freebsd.org Sun Aug 9 10:03:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5355998342; Sun, 9 Aug 2015 10:03:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B4A9BD5C; Sun, 9 Aug 2015 10:03:48 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79A3mlH053256; Sun, 9 Aug 2015 10:03:48 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79A3mqM053255; Sun, 9 Aug 2015 10:03:48 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508091003.t79A3mqM053255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 9 Aug 2015 10:03:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393771 - head/devel/arm-none-eabi-gcc492 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:03:48 -0000 Author: antoine Date: Sun Aug 9 10:03:47 2015 New Revision: 393771 URL: https://svnweb.freebsd.org/changeset/ports/393771 Log: Fix duplicate PKGBASE between devel/arm-none-eabi-gcc and devel/arm-none-eabi-gcc492 Modified: head/devel/arm-none-eabi-gcc492/Makefile Modified: head/devel/arm-none-eabi-gcc492/Makefile ============================================================================== --- head/devel/arm-none-eabi-gcc492/Makefile Sun Aug 9 09:18:21 2015 (r393770) +++ head/devel/arm-none-eabi-gcc492/Makefile Sun Aug 9 10:03:47 2015 (r393771) @@ -5,6 +5,7 @@ PORTVERSION= 4.9.2 CATEGORIES= devel MASTER_SITES= GCC/releases/gcc-${DISTVERSION} PKGNAMEPREFIX?= arm-none-eabi- +PKGNAMESUFFIX= 492 MAINTAINER= ian@FreeBSD.org COMMENT= GNU Compiler Collection for bare metal arm cross-development From owner-svn-ports-all@freebsd.org Sun Aug 9 10:04:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 147959983A2; Sun, 9 Aug 2015 10:04:12 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0408AE45; Sun, 9 Aug 2015 10:04:12 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79A4BTA053385; Sun, 9 Aug 2015 10:04:11 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79A4BsN053383; Sun, 9 Aug 2015 10:04:11 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201508091004.t79A4BsN053383@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Sun, 9 Aug 2015 10:04:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393772 - head/devel/py-stevedore X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:04:12 -0000 Author: nivit Date: Sun Aug 9 10:04:10 2015 New Revision: 393772 URL: https://svnweb.freebsd.org/changeset/ports/393772 Log: - Update to 1.7.0 Modified: head/devel/py-stevedore/Makefile head/devel/py-stevedore/distinfo Modified: head/devel/py-stevedore/Makefile ============================================================================== --- head/devel/py-stevedore/Makefile Sun Aug 9 10:03:47 2015 (r393771) +++ head/devel/py-stevedore/Makefile Sun Aug 9 10:04:10 2015 (r393772) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= stevedore -PORTVERSION= 1.2.0 -PORTREVISION= 1 +PORTVERSION= 1.7.0 +#PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,10 +13,10 @@ COMMENT= Manage dynamic plugins for Pyth LICENSE= APACHE20 -BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=0.10.0:${PORTSDIR}/devel/py-pbr +BUILD_DEPENDS= ${PKGNAMEPREFIX}pbr>=1.3.0:${PORTSDIR}/devel/py-pbr # <2.0 RUN_DEPENDS= ${PKGNAMEPREFIX}argparse>=1.2.1:${PORTSDIR}/devel/py-argparse \ - ${PKGNAMEPREFIX}pbr>=0.10.0:${PORTSDIR}/devel/py-pbr \ - ${PKGNAMEPREFIX}six>=1.7.0:${PORTSDIR}/devel/py-six + ${PKGNAMEPREFIX}pbr>=1.3.0:${PORTSDIR}/devel/py-pbr \ + ${PKGNAMEPREFIX}six>=1.9.0:${PORTSDIR}/devel/py-six USES= python USE_PYTHON= autoplist distutils Modified: head/devel/py-stevedore/distinfo ============================================================================== --- head/devel/py-stevedore/distinfo Sun Aug 9 10:03:47 2015 (r393771) +++ head/devel/py-stevedore/distinfo Sun Aug 9 10:04:10 2015 (r393772) @@ -1,2 +1,2 @@ -SHA256 (stevedore-1.2.0.tar.gz) = 3f70db9052c26e66dac61cb73d8c6f5211373983d39872addab617c759db4b45 -SIZE (stevedore-1.2.0.tar.gz) = 352770 +SHA256 (stevedore-1.7.0.tar.gz) = 68cf8691407cfd9c11e32381ef14ff566292dca0d113aba384d3fcc100933791 +SIZE (stevedore-1.7.0.tar.gz) = 502228 From owner-svn-ports-all@freebsd.org Sun Aug 9 10:10:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88164998488; Sun, 9 Aug 2015 10:10:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78105F8C; Sun, 9 Aug 2015 10:10:04 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79AA4n1054230; Sun, 9 Aug 2015 10:10:04 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79AA4JV054229; Sun, 9 Aug 2015 10:10:04 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508091010.t79AA4JV054229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 9 Aug 2015 10:10:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393773 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:10:04 -0000 Author: antoine Date: Sun Aug 9 10:10:03 2015 New Revision: 393773 URL: https://svnweb.freebsd.org/changeset/ports/393773 Log: Fix a typo that made baselibs QA check run twice on some files With hat: portmgr Modified: head/Mk/Scripts/qa.sh Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Sun Aug 9 10:04:10 2015 (r393772) +++ head/Mk/Scripts/qa.sh Sun Aug 9 10:10:03 2015 (r393773) @@ -109,7 +109,7 @@ baselibs() { ;; esac done <<-EOF - $(find ${STAGEDIR}${BIN} ${STAGEDIR}${PREFIX}/sbin \ + $(find ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/sbin \ ${STAGEDIR}${PREFIX}/lib ${STAGEDIR}${PREFIX}/libexec \ -type f -exec ldd -a {} + 2>/dev/null) EOF From owner-svn-ports-all@freebsd.org Sun Aug 9 10:26:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11F77998840; Sun, 9 Aug 2015 10:26:03 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 019FDAAD; Sun, 9 Aug 2015 10:26:03 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79AQ2HF061860; Sun, 9 Aug 2015 10:26:02 GMT (envelope-from itetcu@FreeBSD.org) Received: (from itetcu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79AQ2T5061859; Sun, 9 Aug 2015 10:26:02 GMT (envelope-from itetcu@FreeBSD.org) Message-Id: <201508091026.t79AQ2T5061859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: itetcu set sender to itetcu@FreeBSD.org using -f From: Ion-Mihai Tetcu Date: Sun, 9 Aug 2015 10:26:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393774 - head/sysutils/dt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 10:26:03 -0000 Author: itetcu Date: Sun Aug 9 10:26:02 2015 New Revision: 393774 URL: https://svnweb.freebsd.org/changeset/ports/393774 Log: - replace back-up MASTERSITE with one that actually works [1] - pet portlint Submitted by: Sitsofe Wheeler [1] MFH: 2 weeks Modified: head/sysutils/dt/Makefile Modified: head/sysutils/dt/Makefile ============================================================================== --- head/sysutils/dt/Makefile Sun Aug 9 10:10:03 2015 (r393773) +++ head/sysutils/dt/Makefile Sun Aug 9 10:26:02 2015 (r393774) @@ -5,18 +5,23 @@ PORTNAME= dt PORTVERSION= 17.07 CATEGORIES= sysutils MASTER_SITES= http://home.comcast.net/~SCSIguy/SCSI_FAQ/RMiller_Tools/ftp/dt/ \ - http://T32.TecNik93.com/FreeBSD/ports/dt/sources/ + http://ionut.tetcu.info/FreeBSD/ports/distfiles/ +#PORTVERSION= 18.32 +#MASTER_SITES= http://www.scsifaq.org/RMiller_Tools/ftp/dt/ \ +# http://dl.dropboxusercontent.com/u/32363629/Datatest/ +#DISTNAME= ${PORTNAME}-source-v${PORTVERSION DISTNAME= ${PORTNAME}-source MAINTAINER= itetcu@FreeBSD.org COMMENT= Data Test Program - disk/tape error diagnostic tool +LICENSE= ISCL + OPTIONS_DEFINE= DOCS WRKSRC= ${WRKDIR}/dt.d MAKEFILE= Makefile.freebsd ALL_TARGET= dt -LICENSE= ISCL PORTDOCS= README.1st ToDoList WhatsNew-* dt-UsersGuide.pdf dt-Overview.txt From owner-svn-ports-all@freebsd.org Sun Aug 9 11:02:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9E8699819C; Sun, 9 Aug 2015 11:02:41 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D81DAD8A; Sun, 9 Aug 2015 11:02:41 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79B2f4t078063; Sun, 9 Aug 2015 11:02:41 GMT (envelope-from itetcu@FreeBSD.org) Received: (from itetcu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79B2fFo078062; Sun, 9 Aug 2015 11:02:41 GMT (envelope-from itetcu@FreeBSD.org) Message-Id: <201508091102.t79B2fFo078062@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: itetcu set sender to itetcu@FreeBSD.org using -f From: Ion-Mihai Tetcu Date: Sun, 9 Aug 2015 11:02:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393775 - head/devel/vstr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:02:42 -0000 Author: itetcu Date: Sun Aug 9 11:02:41 2015 New Revision: 393775 URL: https://svnweb.freebsd.org/changeset/ports/393775 Log: - add LICENSE - provide a working back-up MASTERSITE and drop the unusable ones Modified: head/devel/vstr/Makefile Modified: head/devel/vstr/Makefile ============================================================================== --- head/devel/vstr/Makefile Sun Aug 9 10:26:02 2015 (r393774) +++ head/devel/vstr/Makefile Sun Aug 9 11:02:41 2015 (r393775) @@ -5,15 +5,16 @@ PORTNAME= vstr PORTVERSION= 1.0.15 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= http://freebsd.unixfreunde.de/sources/ \ - http://sce-tindy.tecnik93.com/FreeBSD/others_ports/${PORTNAME}/ \ - http://www.and.org/vstr/1.0.15/ \ - http://www.and.org/vstr/latest/ +MASTER_SITES= http://www.and.org/vstr/${PORTVERSION}/ \ + http://www.and.org/vstr/latest/ \ + http://ionut.tetcu.info/FreeBSd/ports/sources/ MAINTAINER= ports@FreeBSD.org COMMENT= General purpose string library for C -USES= gmake pathfix pkgconfig tar:bzip2 libtool +LICENSE= LGPL + +USES= gmake libtool pathfix pkgconfig tar:bzip2 GNU_CONFIGURE= yes USE_CSTD= gnu89 USE_LDCONFIG= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 11:07:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4134F998242; Sun, 9 Aug 2015 11:07:31 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31C10FBA; Sun, 9 Aug 2015 11:07:31 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79B7Vfa078433; Sun, 9 Aug 2015 11:07:31 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79B7VDD078432; Sun, 9 Aug 2015 11:07:31 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508091107.t79B7VDD078432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 9 Aug 2015 11:07:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393776 - head/devel/vstr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:07:31 -0000 Author: antoine Date: Sun Aug 9 11:07:30 2015 New Revision: 393776 URL: https://svnweb.freebsd.org/changeset/ports/393776 Log: Fix LICENSE Modified: head/devel/vstr/Makefile Modified: head/devel/vstr/Makefile ============================================================================== --- head/devel/vstr/Makefile Sun Aug 9 11:02:41 2015 (r393775) +++ head/devel/vstr/Makefile Sun Aug 9 11:07:30 2015 (r393776) @@ -12,7 +12,7 @@ MASTER_SITES= http://www.and.org/vstr/${ MAINTAINER= ports@FreeBSD.org COMMENT= General purpose string library for C -LICENSE= LGPL +LICENSE= LGPL21 USES= gmake libtool pathfix pkgconfig tar:bzip2 GNU_CONFIGURE= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 11:20:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C18829987FF; Sun, 9 Aug 2015 11:20:49 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2092882; Sun, 9 Aug 2015 11:20:49 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79BKnbe082745; Sun, 9 Aug 2015 11:20:49 GMT (envelope-from itetcu@FreeBSD.org) Received: (from itetcu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79BKnp2082744; Sun, 9 Aug 2015 11:20:49 GMT (envelope-from itetcu@FreeBSD.org) Message-Id: <201508091120.t79BKnp2082744@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: itetcu set sender to itetcu@FreeBSD.org using -f From: Ion-Mihai Tetcu Date: Sun, 9 Aug 2015 11:20:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393777 - head/mail/altermime X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:20:49 -0000 Author: itetcu Date: Sun Aug 9 11:20:48 2015 New Revision: 393777 URL: https://svnweb.freebsd.org/changeset/ports/393777 Log: Provide a working MASTERSITE Modified: head/mail/altermime/Makefile Modified: head/mail/altermime/Makefile ============================================================================== --- head/mail/altermime/Makefile Sun Aug 9 11:07:30 2015 (r393776) +++ head/mail/altermime/Makefile Sun Aug 9 11:20:48 2015 (r393777) @@ -4,7 +4,7 @@ PORTNAME= altermime PORTVERSION= 0.3.11.a1 CATEGORIES= mail textproc -MASTER_SITES= http://T32.tecnik93.com/FreeBSD/ports/altermime/sources/ +MASTER_SITES= http://ionut.tetcu.info/FreeBSD/ports/distfiles/ MAINTAINER= itetcu@FreeBSD.org COMMENT= Small C program which is used to alter your mime-encoded mailpacks From owner-svn-ports-all@freebsd.org Sun Aug 9 11:41:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 687BB998E26; Sun, 9 Aug 2015 11:41:57 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5705724F; Sun, 9 Aug 2015 11:41:57 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Bfvw1094545; Sun, 9 Aug 2015 11:41:57 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79BfvL7094544; Sun, 9 Aug 2015 11:41:57 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508091141.t79BfvL7094544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 9 Aug 2015 11:41:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393778 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:41:57 -0000 Author: bapt Date: Sun Aug 9 11:41:56 2015 New Revision: 393778 URL: https://svnweb.freebsd.org/changeset/ports/393778 Log: Disable baselibs check until it is made saner (aka non recursive) Modified: head/Mk/Scripts/qa.sh Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Sun Aug 9 11:20:48 2015 (r393777) +++ head/Mk/Scripts/qa.sh Sun Aug 9 11:41:56 2015 (r393778) @@ -293,7 +293,7 @@ prefixvar() { fi } -checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles libtool libperl prefixvar baselibs" +checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles libtool libperl prefixvar" # baselibs" ret=0 cd ${STAGEDIR} From owner-svn-ports-all@freebsd.org Sun Aug 9 11:42:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0C3C998E4D; Sun, 9 Aug 2015 11:42:09 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9EEBC363; Sun, 9 Aug 2015 11:42:09 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Bg9Yg094898; Sun, 9 Aug 2015 11:42:09 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79Bg6wB094883; Sun, 9 Aug 2015 11:42:06 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201508091142.t79Bg6wB094883@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Sun, 9 Aug 2015 11:42:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393779 - in head: devel/cloudabi-cloudlibc devel/cloudabi-compiler-rt devel/cloudabi-libc++ devel/cloudabi-libc++abi devel/cloudabi-libunwind sysutils/cloudabi-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:42:09 -0000 Author: ed (src committer) Date: Sun Aug 9 11:42:05 2015 New Revision: 393779 URL: https://svnweb.freebsd.org/changeset/ports/393779 Log: Upgrade the CloudABI toolchain and utilities. A new version of cloudlibc and cloudabi-utils has been released, to catch up with ABI changes (due to the import into FreeBSD HEAD). Bump these ports up to v0.4. While there, upgrade the LLVM packages. It looks like the LLVM project is finally releasing tarballs itself, meaning we can use those instead of requiring me to host them myself. Update the ports to use a common Makefile (cloudabi-libc++/Makefile.common) to set the PORTVERSION, MASTER_SITES, etc. Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D3332 Added: head/devel/cloudabi-libc++/Makefile.common (contents, props changed) Deleted: head/devel/cloudabi-compiler-rt/distinfo head/devel/cloudabi-libc++abi/distinfo head/devel/cloudabi-libunwind/distinfo Modified: head/devel/cloudabi-cloudlibc/Makefile head/devel/cloudabi-cloudlibc/distinfo head/devel/cloudabi-cloudlibc/pkg-plist head/devel/cloudabi-compiler-rt/Makefile head/devel/cloudabi-libc++/Makefile head/devel/cloudabi-libc++/distinfo head/devel/cloudabi-libc++/pkg-plist head/devel/cloudabi-libc++abi/Makefile head/devel/cloudabi-libunwind/Makefile head/sysutils/cloudabi-utils/Makefile head/sysutils/cloudabi-utils/distinfo Modified: head/devel/cloudabi-cloudlibc/Makefile ============================================================================== --- head/devel/cloudabi-cloudlibc/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-cloudlibc/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cloudlibc -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= devel MASTER_SITES= https://nuxi.nl/distfiles/cloudlibc/ PKGNAMEPREFIX= cloudabi- Modified: head/devel/cloudabi-cloudlibc/distinfo ============================================================================== --- head/devel/cloudabi-cloudlibc/distinfo Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-cloudlibc/distinfo Sun Aug 9 11:42:05 2015 (r393779) @@ -1,2 +1,2 @@ -SHA256 (cloudlibc-0.3.tar.xz) = 3355c8c7c90bcfa27a2707f7ac4af6db76b9c0df1e702d5ff7e45c77e1e6e39f -SIZE (cloudlibc-0.3.tar.xz) = 631364 +SHA256 (cloudlibc-0.4.tar.xz) = ec9892519a2c1711005f7ab7cc4d7f98278ab4f3fcce0466fe57bd4e902b06b1 +SIZE (cloudlibc-0.4.tar.xz) = 633100 Modified: head/devel/cloudabi-cloudlibc/pkg-plist ============================================================================== --- head/devel/cloudabi-cloudlibc/pkg-plist Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-cloudlibc/pkg-plist Sun Aug 9 11:42:05 2015 (r393779) @@ -1,6 +1,7 @@ x86_64-unknown-cloudabi/include/_/arch/x86-64/fenv.h x86_64-unknown-cloudabi/include/_/arch/x86-64/setjmp.h x86_64-unknown-cloudabi/include/_/cdefs.h +x86_64-unknown-cloudabi/include/_/endian.h x86_64-unknown-cloudabi/include/_/limits.h x86_64-unknown-cloudabi/include/_/struct/in_addr.h x86_64-unknown-cloudabi/include/_/struct/iovec.h Modified: head/devel/cloudabi-compiler-rt/Makefile ============================================================================== --- head/devel/cloudabi-compiler-rt/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-compiler-rt/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,16 @@ # $FreeBSD$ PORTNAME= compiler-rt -DISTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/compiler-rt/ -PKGNAMEPREFIX= cloudabi- MAINTAINER= ed@FreeBSD.org COMMENT= Compiler runtime library for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-cc:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc - -USES= tar:xz - PLIST_FILES= x86_64-unknown-cloudabi/lib/libcompiler_rt.a -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/lib/builtins +WRKSRC= ${WRKDIR}/${DISTNAME}/lib/builtins # Do not use the CMake build rules provided by compiler-rt. The CMake build # rules shipped with compiler-rt depend both on a standard C++ library and a @@ -69,4 +60,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/libcompiler_rt.a \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/lib/ +.include "${.CURDIR}/../cloudabi-libc++/Makefile.common" + .include Modified: head/devel/cloudabi-libc++/Makefile ============================================================================== --- head/devel/cloudabi-libc++/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,16 @@ # $FreeBSD$ PORTNAME= libc++ -PORTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/libc++/:libcxx \ - https://nuxi.nl/distfiles/libc++abi/:libcxxabi -PKGNAMEPREFIX= cloudabi- -DISTFILES= libc++-${PORTVERSION}${EXTRACT_SUFX}:libcxx \ - libc++abi-${PORTVERSION}${EXTRACT_SUFX}:libcxxabi +DISTNAME= libcxx-${DISTVERSION}.src +DISTFILES= libcxx-${DISTVERSION}.src${EXTRACT_SUFX} \ + libcxxabi-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= ed@FreeBSD.org COMMENT= C++ standard template library for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc - -USES= tar:xz - SRCFILES= algorithm bind chrono condition_variable debug exception \ future hash ios iostream locale memory mutex new optional \ random regex shared_mutex stdexcept string strstream \ @@ -30,7 +21,7 @@ do-build: .for f in ${SRCFILES} ${LOCALBASE}/bin/x86_64-unknown-cloudabi-c++ \ -g -O2 -nostdinc++ -std=c++11 -I${WRKSRC}/include \ - -I${WRKDIR}/libc++abi-${PORTVERSION}/include \ + -I${WRKDIR}/libcxxabi-${DISTVERSION}.src/include \ -D_LIBCPP_BUILD_STATIC -DLIBCXX_BUILDING_LIBCXXABI \ -c -o ${WRKSRC}/$f.o ${WRKSRC}/src/$f.cpp .endfor @@ -45,4 +36,6 @@ do-install: @${CP} -r ${WRKSRC}/include \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/include/c++/v1 +.include "${.CURDIR}/Makefile.common" + .include Added: head/devel/cloudabi-libc++/Makefile.common ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cloudabi-libc++/Makefile.common Sun Aug 9 11:42:05 2015 (r393779) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +DISTVERSION= 3.7.0rc1 +MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR}/ +PKGNAMEPREFIX= cloudabi- +DISTNAME?= ${PORTNAME}-${DISTVERSION}.src +DISTINFO_FILE= ${.CURDIR}/../cloudabi-libc++/distinfo + +BUILD_DEPENDS+= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ + x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ + ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc + +LLVM_RELEASE= ${DISTVERSION:C/rc.*//} +RCDIR= ${DISTVERSION:S/${LLVM_RELEASE}//:C|(rc.*)|\1/|} +PRE_= ${DISTVERSION:C/.*rc.*/pre-/:N*[0-9]*} +LLVM_SUFFIX= ${DISTVERSION:R:S/.//} + +USES= tar:xz Modified: head/devel/cloudabi-libc++/distinfo ============================================================================== --- head/devel/cloudabi-libc++/distinfo Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++/distinfo Sun Aug 9 11:42:05 2015 (r393779) @@ -1,4 +1,8 @@ -SHA256 (libc++-0.242897.tar.xz) = 74cb39fe8972bd4a8cc993719e1f3e18ff0fcef1deb61289bd9e1ad0270d48fb -SIZE (libc++-0.242897.tar.xz) = 966600 -SHA256 (libc++abi-0.242897.tar.xz) = f8a6502e5c2601fd1fad62ccb4b63639e21161bfe905d9b081628ce40baa3550 -SIZE (libc++abi-0.242897.tar.xz) = 506740 +SHA256 (compiler-rt-3.7.0rc1.src.tar.xz) = bafe3216bee62051ceed91d7eaaccd85f07b1a20e55c8adcfd8d7eea8d7bf211 +SIZE (compiler-rt-3.7.0rc1.src.tar.xz) = 1191260 +SHA256 (libcxx-3.7.0rc1.src.tar.xz) = 9207bb09c83fe8ab6262861f5e5294243763917635cc73579ea333efcf72e686 +SIZE (libcxx-3.7.0rc1.src.tar.xz) = 996500 +SHA256 (libcxxabi-3.7.0rc1.src.tar.xz) = db9bb2f2f71b3b46b91836541f3f55be4a53d977543ff64c2aefc9232d8c17ea +SIZE (libcxxabi-3.7.0rc1.src.tar.xz) = 507276 +SHA256 (libunwind-3.7.0rc1.src.tar.xz) = 2d52487c3fc4dc2968bb1295d2da541fe667c8e044be0fc1e661f0e49fd01247 +SIZE (libunwind-3.7.0rc1.src.tar.xz) = 59328 Modified: head/devel/cloudabi-libc++/pkg-plist ============================================================================== --- head/devel/cloudabi-libc++/pkg-plist Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++/pkg-plist Sun Aug 9 11:42:05 2015 (r393779) @@ -54,7 +54,6 @@ x86_64-unknown-cloudabi/include/c++/v1/e x86_64-unknown-cloudabi/include/c++/v1/experimental/algorithm x86_64-unknown-cloudabi/include/c++/v1/experimental/chrono x86_64-unknown-cloudabi/include/c++/v1/experimental/dynarray -x86_64-unknown-cloudabi/include/c++/v1/experimental/functional x86_64-unknown-cloudabi/include/c++/v1/experimental/optional x86_64-unknown-cloudabi/include/c++/v1/experimental/ratio x86_64-unknown-cloudabi/include/c++/v1/experimental/string_view Modified: head/devel/cloudabi-libc++abi/Makefile ============================================================================== --- head/devel/cloudabi-libc++abi/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libc++abi/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,17 @@ # $FreeBSD$ PORTNAME= libc++abi -PORTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/libc++abi/:libcxxabi \ - https://nuxi.nl/distfiles/libunwind/:libunwind -PKGNAMEPREFIX= cloudabi- -DISTFILES= libc++abi-${PORTVERSION}${EXTRACT_SUFX}:libcxxabi \ - libunwind-${PORTVERSION}${EXTRACT_SUFX}:libunwind +DISTNAME= libcxxabi-${DISTVERSION}.src +DISTFILES= libcxxabi-${DISTVERSION}.src${EXTRACT_SUFX} \ + libunwind-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= ed@FreeBSD.org COMMENT= C++ standard library support for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ - -USES= tar:xz +BUILD_DEPENDS= ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ PLIST_FILES= x86_64-unknown-cloudabi/lib/libc++abi.a @@ -34,7 +26,7 @@ do-build: .for f in ${SRCFILES} ${LOCALBASE}/bin/x86_64-unknown-cloudabi-c++ \ -O2 -std=c++11 -I${WRKSRC}/include \ - -I${WRKDIR}/libunwind-${PORTVERSION}/include \ + -I${WRKDIR}/libunwind-${DISTVERSION}.src/include \ -c -o ${WRKSRC}/$f.o ${WRKSRC}/src/$f.cpp .endfor cd ${WRKSRC}; ${LOCALBASE}/bin/x86_64-unknown-cloudabi-ar -rcs \ @@ -45,4 +37,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/libc++abi.a \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/lib/ +.include "${.CURDIR}/../cloudabi-libc++/Makefile.common" + .include Modified: head/devel/cloudabi-libunwind/Makefile ============================================================================== --- head/devel/cloudabi-libunwind/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/devel/cloudabi-libunwind/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,25 +2,16 @@ # $FreeBSD$ PORTNAME= libunwind -PORTVERSION= 0.242897 CATEGORIES= devel -MASTER_SITES= https://nuxi.nl/distfiles/libc++abi/:libcxxabi \ - https://nuxi.nl/distfiles/libunwind/:libunwind -PKGNAMEPREFIX= cloudabi- -DISTFILES= libc++abi-${PORTVERSION}${EXTRACT_SUFX}:libcxxabi \ - libunwind-${PORTVERSION}${EXTRACT_SUFX}:libunwind +DISTFILES= libcxxabi-${DISTVERSION}.src${EXTRACT_SUFX} \ + libunwind-${DISTVERSION}.src${EXTRACT_SUFX} MAINTAINER= ed@FreeBSD.org -COMMENT= C++ standard library support for CloudABI +COMMENT= C++ exception handling for CloudABI LICENSE= MIT -BUILD_DEPENDS= x86_64-unknown-cloudabi-ar:${PORTSDIR}/devel/cloudabi-binutils \ - x86_64-unknown-cloudabi-c++:${PORTSDIR}/lang/cloudabi-clang \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc.a:${PORTSDIR}/devel/cloudabi-cloudlibc \ - ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ - -USES= tar:xz +BUILD_DEPENDS= ${LOCALBASE}/x86_64-unknown-cloudabi/lib/libc++.a:${PORTSDIR}/devel/cloudabi-libc++ PLIST_FILES= x86_64-unknown-cloudabi/lib/libunwind.a @@ -32,7 +23,7 @@ do-build: .for f in ${SRCFILES} ${LOCALBASE}/bin/x86_64-unknown-cloudabi-c++ \ -O2 -std=c++11 -I${WRKSRC}/include \ - -I${WRKDIR}/libc++abi-${PORTVERSION}/include \ + -I${WRKDIR}/libcxxabi-${DISTVERSION}.src/include \ -c -o ${WRKSRC}/$f.o ${WRKSRC}/src/$f .endfor cd ${WRKSRC}; ${LOCALBASE}/bin/x86_64-unknown-cloudabi-ar -rcs \ @@ -43,4 +34,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/libunwind.a \ ${STAGEDIR}${PREFIX}/x86_64-unknown-cloudabi/lib/ +.include "${.CURDIR}/../cloudabi-libc++/Makefile.common" + .include Modified: head/sysutils/cloudabi-utils/Makefile ============================================================================== --- head/sysutils/cloudabi-utils/Makefile Sun Aug 9 11:41:56 2015 (r393778) +++ head/sysutils/cloudabi-utils/Makefile Sun Aug 9 11:42:05 2015 (r393779) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cloudabi-utils -PORTVERSION= 0.3 +PORTVERSION= 0.4 CATEGORIES= sysutils MASTER_SITES= https://nuxi.nl/distfiles/cloudabi-utils/ Modified: head/sysutils/cloudabi-utils/distinfo ============================================================================== --- head/sysutils/cloudabi-utils/distinfo Sun Aug 9 11:41:56 2015 (r393778) +++ head/sysutils/cloudabi-utils/distinfo Sun Aug 9 11:42:05 2015 (r393779) @@ -1,2 +1,2 @@ -SHA256 (cloudabi-utils-0.3.tar.xz) = fd9349387ca48291e8d2fc23841bfbf5df6d312fec7d74ae91570c6cc78e1fc4 -SIZE (cloudabi-utils-0.3.tar.xz) = 13124 +SHA256 (cloudabi-utils-0.4.tar.xz) = e9e587b6aa6ec0e9059b003ffce5cfafe767daa35ddb6d93e2f2a809e2931e96 +SIZE (cloudabi-utils-0.4.tar.xz) = 13152 From owner-svn-ports-all@freebsd.org Sun Aug 9 11:53:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB2B199D0D9; Sun, 9 Aug 2015 11:53:03 +0000 (UTC) (envelope-from freebsd@dns-lab.com) Received: from xs.unicycle.net.unicycle.net (unknown [IPv6:2001:67c:2464:200::15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "srv23.ams1.unicycle.net", Issuer "srv23.ams1.unicycle.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F963CA7; Sun, 9 Aug 2015 11:53:01 +0000 (UTC) (envelope-from freebsd@dns-lab.com) Received: from xs.unicycle.net.unicycle.net (xs.unicycle.net [195.66.135.15]) by xs.unicycle.net.unicycle.net (8.14.9/8.14.7) with ESMTP id t79BqvfE052395 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 9 Aug 2015 11:52:57 GMT (envelope-from freebsd@dns-lab.com) Received: (from leo@localhost) by xs.unicycle.net.unicycle.net (8.14.9/8.14.7/Submit) id t79BqvP2052394; Sun, 9 Aug 2015 11:52:57 GMT (envelope-from freebsd@dns-lab.com) X-Authentication-Warning: xs.unicycle.net.unicycle.net: leo set sender to freebsd@dns-lab.com using -f Date: Sun, 9 Aug 2015 11:52:56 +0000 From: Leo Vandewoestijne To: Mathieu Arnold Cc: erwin@FreeBSD.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393685 - in head/dns/knot2: . files Message-ID: <20150809115256.GA50813@relay7.ucia.gov> References: <201508070751.t777pjLs000674@repo.freebsd.org> <2CC2762BF6ABBED5C57AB963@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline In-Reply-To: <2CC2762BF6ABBED5C57AB963@atuin.in.mat.cc> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 11:53:04 -0000 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, On Sat, 08 Aug 2015, Mathieu Arnold wrote: > +--On 7 ao??t 2015 07:51:45 +0000 Erwin Lansing wrote: > | Author: erwin > | Date: Fri Aug 7 07:51:44 2015 > | New Revision: 393685 > | URL: https://svnweb.freebsd.org/changeset/ports/393685 > | > | Log: > | Update to 2.0.0 > | > | PR: 201257 > | Submitted by: Leo Vandewoestijne > | Sponsored by: DK Hostmaster A/S > > After this, I get a build error: > > In file included from utils/kdig/kdig_main.c:20: > In file included from ../src/utils/kdig/kdig_params.h:38: > ../src/dnstap/reader.h:27:10: fatal error: 'fstrm.h' file not found > #include > ^ > 1 error generated. > *** [utils/kdig/kdig_main.o] Error code 1 > > https://pkg.absolight.fr/data/10amd64-pkgng/20150808T184208Z/logs/errors/knot2-2.0.0.log > > Odd I didn't catch that; only explanation I have is maybe my ports in poudriere was not in sync with the ports-tree I use for initial testing. So fstrm turns not only a dependency for dnstap anymore, but now also for the tools, so fails without dnstap option selected (the default). That's easily solved by making fstrm a main dependency. Attached my patch and logs. Leo Vandeweoestijne. --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="knot2_libfstrmProblem.diff.txt" --- knot2.old/Makefile 2015-08-09 13:15:46.121347405 +0000 +++ knot2/Makefile 2015-08-09 13:36:27.354806686 +0000 @@ -3,6 +3,7 @@ PORTNAME= knot DISTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ @@ -13,7 +14,8 @@ LICENSE= GPLv3 -LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \ +LIB_DEPENDS= libfstrm.so:${PORTSDIR}/devel/fstrm \ + libgnutls.so:${PORTSDIR}/security/gnutls \ libjansson.so:${PORTSDIR}/devel/jansson \ liblmdb.so:${PORTSDIR}/databases/lmdb \ libnettle.so:${PORTSDIR}/security/nettle \ @@ -48,8 +50,7 @@ DNSTAP_DESC= dnstap support (see dnstap.info) DNSTAP_CONFIGURE_ENABLE= dnstap -DNSTAP_LIB_DEPENDS= libfstrm.so:${PORTSDIR}/devel/fstrm \ - libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c +DNSTAP_LIB_DEPENDS= libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c FASTPARSER_DESC= Fast zone parser (demanding compilation) FASTPARSER_CONFIGURE_ENABLE= fastparser --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="10_knot2-2.0.0.log" Content-Transfer-Encoding: quoted-printable build started at Sun Aug 9 13:21:33 UTC 2015 port directory: /usr/ports/dns/knot2 building for: FreeBSD 101amd64-default 10.1-RELEASE-p9 FreeBSD 10.1-RELEASE= -p9 amd64 maintained by: freebsd@dns-lab.com Makefile ident: $FreeBSD: head/dns/knot2/Makefile 393685 2015-08-07 07= :51:44Z erwin $ Poudriere version: 3.1.7 Host OSVERSION: 1001000 Jail OSVERSION: 1001000 ---Begin Environment--- PKGREPOSITORY=3D/tmp/pkgs PACKAGES=3D/tmp/pkgs OSVERSION=3D1001000 UNAME_v=3DFreeBSD 10.1-RELEASE-p9 UNAME_r=3D10.1-RELEASE-p9 BLOCKSIZE=3DK MAIL=3D/var/mail/root STATUS=3D1 SAVED_TERM=3Dxterm-256color NO_WARNING_PKG_INSTALL_EOL=3Dyes MASTERMNT=3D/usr/local/poudriere/data/.m/101amd64-default/ref FORCE_PACKAGE=3Dyes PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin POUDRIERE_BUILD_TYPE=3Dbulk OLDPWD=3D/ PWD=3D/usr/local/poudriere/data/.m/101amd64-default/ref/.p/pool MASTERNAME=3D101amd64-default SCRIPTPREFIX=3D/usr/local/share/poudriere USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1.7 SCRIPTPATH=3D/usr/local/share/poudriere/testport.sh TRYBROKEN=3Dyes LIBEXECPREFIX=3D/usr/local/libexec/poudriere LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes ---End Environment--- ---Begin OPTIONS List--- =3D=3D=3D> The following configuration options are available for knot2-2.0.= 0: DNSTAP=3Doff: dnstap support (see dnstap.info) FASTPARSER=3Doff: Fast zone parser (demanding compilation) IDN=3Doff: International Domain Names support =3D=3D=3D> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --with-rundir=3D/var/run/knot --with-storage=3D/var/db/knot --with-pkgcon= figdir=3D/usr/local/libdata/pkgconfig --disable-silent-rules --disable-dnst= ap --disable-fastparser --without-libidn --prefix=3D/usr/local ${_LATE_CONF= IGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=3Dpkgconf XDG_DATA_HOME=3D/wrkdirs/usr/ports/dns/knot2/work XDG= _CONFIG_HOME=3D/wrkdirs/usr/ports/dns/knot2/work HOME=3D/wrkdirs/usr/ports= /dns/knot2/work TMPDIR=3D"/tmp" SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh CONF= IG_SITE=3D/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=3D262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=3D/wrkdirs/usr/ports/dns/knot2/work XDG_CONFIG_HOME=3D/wrkdi= rs/usr/ports/dns/knot2/work HOME=3D/wrkdirs/usr/ports/dns/knot2/work TMPDI= R=3D"/tmp" NO_PIE=3Dyes SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local = LOCALBASE=3D/usr/local LIBDIR=3D"/usr/lib" CC=3D"cc" CFLAGS=3D"-O2 -pipe = -fstack-protector -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS=3D"" LDFLAG= S=3D" -fstack-protector" LIBS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fsta= ck-protector -fno-strict-aliasing " MANPREFIX=3D"/usr/local" BSD_INSTALL_P= ROGRAM=3D"install -s -m 555" BSD_INSTALL_LIB=3D"install -s -m 444" BSD_= INSTALL_SCRIPT=3D"install -m 555" BSD_INSTALL_DATA=3D"install -m 0644" = BSD_INSTALL_MAN=3D"install -m 444" --End MAKE_ENV-- --PLIST_SUB-- OSREL=3D10.1 PREFIX=3D%D LOCALBASE=3D/usr/local RESETPREFIX=3D/usr/local PORTDOCS=3D"" PORTEXAMPLES=3D"" LIB32DIR=3Dlib DOCSDIR=3D"share/doc/knot" EXAMPLESDIR=3D"share/examples/knot" DATADIR=3D"share/knot" WWWDIR=3D"www/knot" ETCDIR=3D"etc/knot" --End PLIST_SUB-- --SUB_LIST-- USERS=3D"knot" GROUPS=3D"knot" PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/knot DOCSDIR=3D/usr/local/share/doc/knot EXAMPLESDIR=3D/usr/local/share/examples/knot WWWDIR=3D/usr/local/www/knot ETCDIR=3D/usr/local/etc/knot --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles ---End make.conf--- =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports= -mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.5.4.txz [101amd64-default] Installing pkg-1.5.4... [101amd64-default] Extracting pkg-1.5.4: .......... done Message for pkg-1.5.4: If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D> SHA256 Checksum OK for knot-2.0.0.tar.xz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D=3D=3D> Extracting for knot2-2.0.0 =3D> SHA256 Checksum OK for knot-2.0.0.tar.xz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.11.txz [101amd64-default] Installing pkgconf-0.9.11... [101amd64-default] Extracting pkgconf-0.9.11: ....... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - not found =3D=3D=3D> Verifying for libfstrm.so in /usr/ports/devel/fstrm =3D=3D=3D> Installing existing package /packages/All/fstrm-0.2.0.txz [101amd64-default] Installing fstrm-0.2.0... [101amd64-default] `-- Installing libevent2-2.0.22_1... [101amd64-default] `-- Extracting libevent2-2.0.22_1: .......... done [101amd64-default] Extracting fstrm-0.2.0: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - not found =3D=3D=3D> Verifying for libgnutls.so in /usr/ports/security/gnutls =3D=3D=3D> Installing existing package /packages/All/gnutls-3.3.15.txz [101amd64-default] Installing gnutls-3.3.15... [101amd64-default] `-- Installing ca_root_nss-3.19.1_1... [101amd64-default] `-- Extracting ca_root_nss-3.19.1_1: ....... done [101amd64-default] `-- Installing gettext-runtime-0.19.4... [101amd64-default] | `-- Installing indexinfo-0.2.3... [101amd64-default] | `-- Extracting indexinfo-0.2.3: .... done [101amd64-default] `-- Extracting gettext-runtime-0.19.4: .......... done [101amd64-default] `-- Installing libidn-1.29... [101amd64-default] `-- Extracting libidn-1.29: .......... done [101amd64-default] `-- Installing libtasn1-4.5_1... [101amd64-default] `-- Extracting libtasn1-4.5_1: .......... done [101amd64-default] `-- Installing nettle-2.7.1... [101amd64-default] | `-- Installing gmp-5.1.3_2... [101amd64-default] | `-- Extracting gmp-5.1.3_2: .......... done [101amd64-default] `-- Extracting nettle-2.7.1: .......... done [101amd64-default] `-- Installing p11-kit-0.23.1... [101amd64-default] | `-- Installing libffi-3.2.1... [101amd64-default] | `-- Extracting libffi-3.2.1: .......... done [101amd64-default] `-- Extracting p11-kit-0.23.1: .......... done [101amd64-default] `-- Installing trousers-tddl-0.3.10_7... =3D=3D=3D> Creating users and/or groups. Creating group '_tss' with gid '601'. Creating user '_tss' with uid '601'. [101amd64-default] `-- Extracting trousers-tddl-0.3.10_7: .......... done [101amd64-default] Extracting gnutls-3.3.15: .......... done Message for ca_root_nss-3.19.1_1: ********************************* WARNING ********************************* FreeBSD does not, and can not warrant that the certification authorities whose certificates are included in this package have in any way been audited for trustworthiness or RFC 3647 compliance. Assessment and verification of trust is the complete responsibility of the system administrator. *********************************** NOTE ********************************** This package installs symlinks to support root certificates discovery by default for software that uses OpenSSL. This enables SSL Certificate Verification by client software without manual intervention. If you prefer to do this manually, replace the following symlinks with either an empty file or your site-local certificate bundle. * /etc/ssl/cert.pem * /usr/local/etc/ssl/cert.pem * /usr/local/openssl/cert.pem *************************************************************************** Message for trousers-tddl-0.3.10_7: To run tcsd automatically, add the following line to /etc/rc.conf tcsd_enable=3D"YES" You might want to edit /usr/local/etc/tcsd.conf to reflect your setup. To use TPM, add your_account to '_tss' group like following: # pw groupadd _tss -m your_account =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - not fou= nd =3D=3D=3D> Verifying for libjansson.so in /usr/ports/devel/jansson =3D=3D=3D> Installing existing package /packages/All/jansson-2.7.txz [101amd64-default] Installing jansson-2.7... [101amd64-default] Extracting jansson-2.7: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - not found =3D=3D=3D> Verifying for liblmdb.so in /usr/ports/databases/lmdb =3D=3D=3D> Installing existing package /packages/All/lmdb-0.9.14_1.txz [101amd64-default] Installing lmdb-0.9.14_1... [101amd64-default] Extracting lmdb-0.9.14_1: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - not found =3D=3D=3D> Verifying for liburcu.so in /usr/ports/sysutils/liburcu =3D=3D=3D> Installing existing package /packages/All/liburcu-0.7.13.txz [101amd64-default] Installing liburcu-0.7.13... [101amd64-default] Extracting liburcu-0.7.13: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Recording filesystem state for prebuild... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on executable: pkgconf - found =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - found (/u= sr/local/lib/libfstrm.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - found (/= usr/local/lib/libgnutls.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - found (= /usr/local/lib/libjansson.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - found (/us= r/local/lib/liblmdb.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - found (/us= r/local/lib/liburcu.so) =3D=3D=3D> Configuring for knot2-2.0.0 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking for style of include used by make... GNU checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables...=20 checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking whether cc understands -c and -o together... yes checking dependency style of cc... gcc3 checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... yes checking build system type... amd64-portbld-freebsd10.1 checking host system type... amd64-portbld-freebsd10.1 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for cc option to accept ISO C99... none needed checking for ar... ar checking the archiver (ar) interface... ar checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+=3D"... no checking how to convert amd64-portbld-freebsd10.1 file names to amd64-portb= ld-freebsd10.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd10.1 file names to toolchain f= ormat... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... yes checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... y= es checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd10.1 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking pkg-config is at least version 0.9.0... yes checking whether C compiler has a LLVM backend... yes checking for gnutls... yes checking for jansson... yes checking for sendmmsg... no checking whether C compiler accepts "-fpredictive-commoning"... no checking for systemd... no checking for liburcu... yes checking for library containing urcu_init... no checking for library containing mdb_env_open... no checking for library containing mdb_env_open... no checking for library containing mdb_env_open... -llmdb checking lmdb.h usability... yes checking lmdb.h presence... yes checking for lmdb.h... yes checking for library containing pow... -lm checking for library containing pthread_create... -lpthread checking for library containing dlopen... none required checking for library containing clock_gettime... none required checking for library containing capng_apply... no checking for sys/types.h... (cached) yes checking for netinet/in.h... (cached) yes checking for arpa/nameser.h... (cached) yes checking for netdb.h... (cached) yes checking for resolv.h... (cached) yes checking for cap-ng.h... no checking for netinet/in_systm.h... yes checking for pthread_np.h... yes checking for signal.h... (cached) yes checking for sys/select.h... (cached) yes checking for sys/time.h... (cached) yes checking for sys/wait.h... (cached) yes checking for sys/uio.h... yes checking for inline... inline checking for pid_t... (cached) yes checking for size_t... (cached) yes checking for ssize_t... (cached) yes checking for clock_gettime... (cached) yes checking for gettimeofday... (cached) yes checking for fgetln... yes checking for getline... (cached) yes checking for madvise... yes checking for malloc_trim... no checking for poll... (cached) yes checking for posix_memalign... yes checking for pthread_setaffinity_np... yes checking for regcomp... yes checking for select... (cached) yes checking for setgroups... (cached) yes checking for strlcat... (cached) yes checking for strlcpy... (cached) yes checking for initgroups... yes checking for simple visibility declarations... yes checking for sphinx-build... no checking for sphinx-build-3... no configure: WARNING: Could not find the 'sphinx-build' executable, you will = be unable to regenerate documentation. checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating src/libknot.pc config.status: creating src/dnssec/libdnssec.pc config.status: creating src/zscanner/libzscanner.pc config.status: creating Makefile config.status: creating doc/Makefile config.status: creating samples/Makefile config.status: creating libtap/Makefile config.status: creating src/Makefile config.status: creating tests/Makefile config.status: creating tests-fuzz/Makefile config.status: creating src/dnstap/Makefile config.status: creating src/zscanner/Makefile config.status: creating src/dnssec/Makefile config.status: creating src/dnssec/tests/Makefile config.status: creating src/dnssec/utils/Makefile config.status: creating src/config.h config.status: executing depfiles commands config.status: executing libtool commands knot 2.0.0 Target: freebsd10.1 amd64 Compiler: cc CFLAGS: -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit=20 LIBS: -lpthread -lm -fstack-protector LibURCU: -L/usr/local/lib -lurcu -I/usr/local/include =20 GnuTLS: -lgnutls -L/usr/local/lib -lnettle -I/usr/local/include/p11= -kit-1 -I/usr/local/include =20 Jansson: -L/usr/local/lib -ljansson -I/usr/local/include =20 LMDB: shared -L/usr/local/lib -llmdb -I/usr/local/include Prefix: /usr/local Run dir: /var/run/knot Storage dir: /var/db/knot Config dir: ${prefix}/etc/knot Knot DNS libraries: yes Knot DNS daemon: yes Knot DNS utils: yes Knot DNS documentation: yes Fast zone parser: no Utilities with IDN: no Systemd integration: no Dnstap support: no Code coverage: no Bash completions: no Continue with 'make' command =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Building for knot2-2.0.0 Making all in libtap Making all in src --- all --- /usr/bin/make all-recursive --- all-recursive --- Making all in zscanner --- scanner.c --- cp ./scanner.c.t0 scanner.c --- all --- /usr/bin/make all-am --- libzscanner_la-error.lo --- --- libzscanner_la-functions.lo --- --- libzscanner_la-scanner.lo --- --- libzscanner_la-error.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I../../src -fvisibility=3Dhidde= n -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dforma= t-security -Werror=3Dimplicit -MT libzscanner_la-error.lo -MD -MP -MF .deps= /libzscanner_la-error.Tpo -c -o libzscanner_la-error.lo `test -f 'error.c' = || echo './'`error.c --- libzscanner_la-functions.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I../../src -fvisibility=3Dhidde= n -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dforma= t-security -Werror=3Dimplicit -MT libzscanner_la-functions.lo -MD -MP -MF .= deps/libzscanner_la-functions.Tpo -c -o libzscanner_la-functions.lo `test -= f 'functions.c' || echo './'`functions.c --- libzscanner_la-scanner.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I../../src -fvisibility=3Dhidde= n -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dforma= t-security -Werror=3Dimplicit -MT libzscanner_la-scanner.lo -MD -MP -MF .de= ps/libzscanner_la-scanner.Tpo -c -o libzscanner_la-scanner.lo `test -f 'sca= nner.c' || echo './'`scanner.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-scanner.lo -MD -MP -MF .deps/libzscanner_la-scanner.Tpo -c scanne= r.c -fPIC -DPIC -o .libs/libzscanner_la-scanner.o --- libzscanner_la-functions.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-functions.lo -MD -MP -MF .deps/libzscanner_la-functions.Tpo -c fu= nctions.c -fPIC -DPIC -o .libs/libzscanner_la-functions.o --- libzscanner_la-error.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-error.lo -MD -MP -MF .deps/libzscanner_la-error.Tpo -c error.c -= fPIC -DPIC -o .libs/libzscanner_la-error.o libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-error.lo -MD -MP -MF .deps/libzscanner_la-error.Tpo -c error.c -o= libzscanner_la-error.o >/dev/null 2>&1 --- libzscanner_la-functions.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-functions.lo -MD -MP -MF .deps/libzscanner_la-functions.Tpo -c fu= nctions.c -o libzscanner_la-functions.o >/dev/null 2>&1 --- libzscanner_la-error.lo --- mv -f .deps/libzscanner_la-error.Tpo .deps/libzscanner_la-error.Plo --- libzscanner_la-functions.lo --- mv -f .deps/libzscanner_la-functions.Tpo .deps/libzscanner_la-functions.Plo --- libzscanner_la-scanner.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libzs= canner_la-scanner.lo -MD -MP -MF .deps/libzscanner_la-scanner.Tpo -c scanne= r.c -o libzscanner_la-scanner.o >/dev/null 2>&1 mv -f .deps/libzscanner_la-scanner.Tpo .deps/libzscanner_la-scanner.Plo --- libzscanner.la --- /bin/sh ../../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -version-info 0:1:0 -fstack-protector -o libzscanner.la -rpath /u= sr/local/lib libzscanner_la-error.lo libzscanner_la-functions.lo libzscan= ner_la-scanner.lo -lpthread -lm libtool: link: cc -shared -fPIC -DPIC .libs/libzscanner_la-error.o .libs/= libzscanner_la-functions.o .libs/libzscanner_la-scanner.o -lpthread -lm = -O2 -fstack-protector -fstack-protector -Wl,-soname -Wl,libzscanner.so.0 = -o .libs/libzscanner.so.0.0.1 libtool: link: (cd ".libs" && rm -f "libzscanner.so.0" && ln -s "libzscanne= r.so.0.0.1" "libzscanner.so.0") libtool: link: (cd ".libs" && rm -f "libzscanner.so" && ln -s "libzscanner.= so.0.0.1" "libzscanner.so") libtool: link: ar cru .libs/libzscanner.a libzscanner_la-error.o libzscann= er_la-functions.o libzscanner_la-scanner.o libtool: link: ranlib .libs/libzscanner.a libtool: link: ( cd ".libs" && rm -f "libzscanner.la" && ln -s "../libzscan= ner.la" "libzscanner.la" ) Making all in dnssec --- all-recursive --- Making all in . --- lib/.dirstamp --- --- lib/.deps/.dirstamp --- --- lib/event/action/.dirstamp --- --- lib/event/action/.deps/.dirstamp --- --- lib/event/.dirstamp --- --- lib/event/.deps/.dirstamp --- --- lib/kasp/dir/.dirstamp --- --- lib/kasp/dir/.deps/.dirstamp --- --- lib/kasp/.dirstamp --- --- lib/kasp/.deps/.dirstamp --- --- lib/key/.dirstamp --- --- lib/key/.deps/.dirstamp --- --- lib/keystore/.dirstamp --- --- lib/keystore/.deps/.dirstamp --- --- lib/list/.dirstamp --- --- lib/list/.deps/.dirstamp --- --- lib/nsec/.dirstamp --- --- lib/nsec/.deps/.dirstamp --- --- lib/sign/.dirstamp --- --- lib/sign/.deps/.dirstamp --- --- shared/.dirstamp --- --- shared/.deps/.dirstamp --- --- lib/libdnssec_la-binary.lo --- --- lib/libdnssec_la-crypto.lo --- --- lib/libdnssec_la-error.lo --- --- lib/libdnssec_la-binary.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-binary.lo -MD -MP -MF lib/.deps/libdnssec_la-binary.Tpo -c = -o lib/libdnssec_la-binary.lo `test -f 'lib/binary.c' || echo './'`lib/bina= ry.c --- lib/libdnssec_la-crypto.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-crypto.lo -MD -MP -MF lib/.deps/libdnssec_la-crypto.Tpo -c = -o lib/libdnssec_la-crypto.lo `test -f 'lib/crypto.c' || echo './'`lib/cryp= to.c --- lib/libdnssec_la-error.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-error.lo -MD -MP -MF lib/.deps/libdnssec_la-error.Tpo -c -o= lib/libdnssec_la-error.lo `test -f 'lib/error.c' || echo './'`lib/error.c --- lib/event/action/libdnssec_la-initial_key.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/event/action/libdnssec_la-initial_key.lo -MD -MP -MF lib/event/action/.d= eps/libdnssec_la-initial_key.Tpo -c -o lib/event/action/libdnssec_la-initia= l_key.lo `test -f 'lib/event/action/initial_key.c' || echo './'`lib/event/a= ction/initial_key.c --- lib/libdnssec_la-binary.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-binary.lo -MD -MP -MF lib/.deps= /libdnssec_la-binary.Tpo -c lib/binary.c -fPIC -DPIC -o lib/.libs/libdnsse= c_la-binary.o --- lib/libdnssec_la-error.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-error.lo -MD -MP -MF lib/.deps/= libdnssec_la-error.Tpo -c lib/error.c -fPIC -DPIC -o lib/.libs/libdnssec_l= a-error.o --- lib/event/action/libdnssec_la-initial_key.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-initial_key.lo -MD= -MP -MF lib/event/action/.deps/libdnssec_la-initial_key.Tpo -c lib/event/a= ction/initial_key.c -fPIC -DPIC -o lib/event/action/.libs/libdnssec_la-ini= tial_key.o --- lib/libdnssec_la-crypto.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-crypto.lo -MD -MP -MF lib/.deps= /libdnssec_la-crypto.Tpo -c lib/crypto.c -fPIC -DPIC -o lib/.libs/libdnsse= c_la-crypto.o --- lib/libdnssec_la-error.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-error.lo -MD -MP -MF lib/.deps/= libdnssec_la-error.Tpo -c lib/error.c -o lib/libdnssec_la-error.o >/dev/nul= l 2>&1 --- lib/libdnssec_la-crypto.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-crypto.lo -MD -MP -MF lib/.deps= /libdnssec_la-crypto.Tpo -c lib/crypto.c -o lib/libdnssec_la-crypto.o >/dev= /null 2>&1 --- lib/event/action/libdnssec_la-initial_key.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-initial_key.lo -MD= -MP -MF lib/event/action/.deps/libdnssec_la-initial_key.Tpo -c lib/event/a= ction/initial_key.c -o lib/event/action/libdnssec_la-initial_key.o >/dev/nu= ll 2>&1 --- lib/libdnssec_la-binary.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-binary.lo -MD -MP -MF lib/.deps= /libdnssec_la-binary.Tpo -c lib/binary.c -o lib/libdnssec_la-binary.o >/dev= /null 2>&1 --- lib/libdnssec_la-crypto.lo --- mv -f lib/.deps/libdnssec_la-crypto.Tpo lib/.deps/libdnssec_la-crypto.Plo --- lib/libdnssec_la-error.lo --- mv -f lib/.deps/libdnssec_la-error.Tpo lib/.deps/libdnssec_la-error.Plo --- lib/event/action/libdnssec_la-zsk_rollover.lo --- --- lib/event/libdnssec_la-event.lo --- --- lib/event/action/libdnssec_la-zsk_rollover.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/event/action/libdnssec_la-zsk_rollover.lo -MD -MP -MF lib/event/action/.= deps/libdnssec_la-zsk_rollover.Tpo -c -o lib/event/action/libdnssec_la-zsk_= rollover.lo `test -f 'lib/event/action/zsk_rollover.c' || echo './'`lib/eve= nt/action/zsk_rollover.c --- lib/event/libdnssec_la-event.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/event/libdnssec_la-event.lo -MD -MP -MF lib/event/.deps/libdnssec_la-eve= nt.Tpo -c -o lib/event/libdnssec_la-event.lo `test -f 'lib/event/event.c' |= | echo './'`lib/event/event.c --- lib/event/action/libdnssec_la-zsk_rollover.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-zsk_rollover.lo -M= D -MP -MF lib/event/action/.deps/libdnssec_la-zsk_rollover.Tpo -c lib/event= /action/zsk_rollover.c -fPIC -DPIC -o lib/event/action/.libs/libdnssec_la-= zsk_rollover.o --- lib/event/libdnssec_la-event.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/libdnssec_la-event.lo -MD -MP -MF lib/= event/.deps/libdnssec_la-event.Tpo -c lib/event/event.c -fPIC -DPIC -o lib= /event/.libs/libdnssec_la-event.o --- lib/libdnssec_la-binary.lo --- mv -f lib/.deps/libdnssec_la-binary.Tpo lib/.deps/libdnssec_la-binary.Plo --- lib/event/libdnssec_la-keystate.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/event/libdnssec_la-keystate.lo -MD -MP -MF lib/event/.deps/libdnssec_la-= keystate.Tpo -c -o lib/event/libdnssec_la-keystate.lo `test -f 'lib/event/k= eystate.c' || echo './'`lib/event/keystate.c --- lib/event/action/libdnssec_la-initial_key.lo --- mv -f lib/event/action/.deps/libdnssec_la-initial_key.Tpo lib/event/action/= =2Edeps/libdnssec_la-initial_key.Plo --- lib/event/libdnssec_la-utils.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/event/libdnssec_la-utils.lo -MD -MP -MF lib/event/.deps/libdnssec_la-uti= ls.Tpo -c -o lib/event/libdnssec_la-utils.lo `test -f 'lib/event/utils.c' |= | echo './'`lib/event/utils.c --- lib/event/libdnssec_la-keystate.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/libdnssec_la-keystate.lo -MD -MP -MF l= ib/event/.deps/libdnssec_la-keystate.Tpo -c lib/event/keystate.c -fPIC -DP= IC -o lib/event/.libs/libdnssec_la-keystate.o --- lib/event/libdnssec_la-utils.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/libdnssec_la-utils.lo -MD -MP -MF lib/= event/.deps/libdnssec_la-utils.Tpo -c lib/event/utils.c -fPIC -DPIC -o lib= /event/.libs/libdnssec_la-utils.o --- lib/event/libdnssec_la-event.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/libdnssec_la-event.lo -MD -MP -MF lib/= event/.deps/libdnssec_la-event.Tpo -c lib/event/event.c -o lib/event/libdns= sec_la-event.o >/dev/null 2>&1 --- lib/event/libdnssec_la-keystate.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/libdnssec_la-keystate.lo -MD -MP -MF l= ib/event/.deps/libdnssec_la-keystate.Tpo -c lib/event/keystate.c -o lib/eve= nt/libdnssec_la-keystate.o >/dev/null 2>&1 --- lib/event/action/libdnssec_la-zsk_rollover.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-zsk_rollover.lo -M= D -MP -MF lib/event/action/.deps/libdnssec_la-zsk_rollover.Tpo -c lib/event= /action/zsk_rollover.c -o lib/event/action/libdnssec_la-zsk_rollover.o >/de= v/null 2>&1 --- lib/event/libdnssec_la-keystate.lo --- mv -f lib/event/.deps/libdnssec_la-keystate.Tpo lib/event/.deps/libdnssec_l= a-keystate.Plo --- lib/kasp/dir/libdnssec_la-dir.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/dir/libdnssec_la-dir.lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la= -dir.Tpo -c -o lib/kasp/dir/libdnssec_la-dir.lo `test -f 'lib/kasp/dir/dir.= c' || echo './'`lib/kasp/dir/dir.c --- lib/event/libdnssec_la-utils.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/event/libdnssec_la-utils.lo -MD -MP -MF lib/= event/.deps/libdnssec_la-utils.Tpo -c lib/event/utils.c -o lib/event/libdns= sec_la-utils.o >/dev/null 2>&1 --- lib/event/libdnssec_la-event.lo --- mv -f lib/event/.deps/libdnssec_la-event.Tpo lib/event/.deps/libdnssec_la-e= vent.Plo --- lib/kasp/dir/libdnssec_la-escape.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/dir/libdnssec_la-escape.lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec= _la-escape.Tpo -c -o lib/kasp/dir/libdnssec_la-escape.lo `test -f 'lib/kasp= /dir/escape.c' || echo './'`lib/kasp/dir/escape.c --- lib/kasp/dir/libdnssec_la-dir.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-dir.lo -MD -MP -MF lib= /kasp/dir/.deps/libdnssec_la-dir.Tpo -c lib/kasp/dir/dir.c -fPIC -DPIC -o = lib/kasp/dir/.libs/libdnssec_la-dir.o --- lib/kasp/dir/libdnssec_la-escape.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-escape.lo -MD -MP -MF = lib/kasp/dir/.deps/libdnssec_la-escape.Tpo -c lib/kasp/dir/escape.c -fPIC = -DPIC -o lib/kasp/dir/.libs/libdnssec_la-escape.o --- lib/event/action/libdnssec_la-zsk_rollover.lo --- mv -f lib/event/action/.deps/libdnssec_la-zsk_rollover.Tpo lib/event/action= /.deps/libdnssec_la-zsk_rollover.Plo --- lib/kasp/dir/libdnssec_la-file.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/dir/libdnssec_la-file.lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_l= a-file.Tpo -c -o lib/kasp/dir/libdnssec_la-file.lo `test -f 'lib/kasp/dir/f= ile.c' || echo './'`lib/kasp/dir/file.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-file.lo -MD -MP -MF li= b/kasp/dir/.deps/libdnssec_la-file.Tpo -c lib/kasp/dir/file.c -fPIC -DPIC = -o lib/kasp/dir/.libs/libdnssec_la-file.o --- lib/event/libdnssec_la-utils.lo --- mv -f lib/event/.deps/libdnssec_la-utils.Tpo lib/event/.deps/libdnssec_la-u= tils.Plo --- lib/kasp/dir/libdnssec_la-json.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/dir/libdnssec_la-json.lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_l= a-json.Tpo -c -o lib/kasp/dir/libdnssec_la-json.lo `test -f 'lib/kasp/dir/j= son.c' || echo './'`lib/kasp/dir/json.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-json.lo -MD -MP -MF li= b/kasp/dir/.deps/libdnssec_la-json.Tpo -c lib/kasp/dir/json.c -fPIC -DPIC = -o lib/kasp/dir/.libs/libdnssec_la-json.o --- lib/kasp/dir/libdnssec_la-escape.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-escape.lo -MD -MP -MF = lib/kasp/dir/.deps/libdnssec_la-escape.Tpo -c lib/kasp/dir/escape.c -o lib/= kasp/dir/libdnssec_la-escape.o >/dev/null 2>&1 --- lib/kasp/dir/libdnssec_la-dir.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-dir.lo -MD -MP -MF lib= /kasp/dir/.deps/libdnssec_la-dir.Tpo -c lib/kasp/dir/dir.c -o lib/kasp/dir/= libdnssec_la-dir.o >/dev/null 2>&1 --- lib/kasp/dir/libdnssec_la-file.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-file.lo -MD -MP -MF li= b/kasp/dir/.deps/libdnssec_la-file.Tpo -c lib/kasp/dir/file.c -o lib/kasp/d= ir/libdnssec_la-file.o >/dev/null 2>&1 mv -f lib/kasp/dir/.deps/libdnssec_la-file.Tpo lib/kasp/dir/.deps/libdnssec= _la-file.Plo --- lib/kasp/dir/libdnssec_la-zone.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/dir/libdnssec_la-zone.lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_l= a-zone.Tpo -c -o lib/kasp/dir/libdnssec_la-zone.lo `test -f 'lib/kasp/dir/z= one.c' || echo './'`lib/kasp/dir/zone.c --- lib/kasp/dir/libdnssec_la-escape.lo --- mv -f lib/kasp/dir/.deps/libdnssec_la-escape.Tpo lib/kasp/dir/.deps/libdnss= ec_la-escape.Plo --- lib/kasp/dir/libdnssec_la-policy.lo --- --- lib/kasp/dir/libdnssec_la-json.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-json.lo -MD -MP -MF li= b/kasp/dir/.deps/libdnssec_la-json.Tpo -c lib/kasp/dir/json.c -o lib/kasp/d= ir/libdnssec_la-json.o >/dev/null 2>&1 --- lib/kasp/dir/libdnssec_la-policy.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/dir/libdnssec_la-policy.lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec= _la-policy.Tpo -c -o lib/kasp/dir/libdnssec_la-policy.lo `test -f 'lib/kasp= /dir/policy.c' || echo './'`lib/kasp/dir/policy.c --- lib/kasp/dir/libdnssec_la-zone.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-zone.lo -MD -MP -MF li= b/kasp/dir/.deps/libdnssec_la-zone.Tpo -c lib/kasp/dir/zone.c -fPIC -DPIC = -o lib/kasp/dir/.libs/libdnssec_la-zone.o --- lib/kasp/dir/libdnssec_la-policy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-policy.lo -MD -MP -MF = lib/kasp/dir/.deps/libdnssec_la-policy.Tpo -c lib/kasp/dir/policy.c -fPIC = -DPIC -o lib/kasp/dir/.libs/libdnssec_la-policy.o --- lib/kasp/dir/libdnssec_la-dir.lo --- mv -f lib/kasp/dir/.deps/libdnssec_la-dir.Tpo lib/kasp/dir/.deps/libdnssec_= la-dir.Plo --- lib/libdnssec_la-keyid.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-keyid.lo -MD -MP -MF lib/.deps/libdnssec_la-keyid.Tpo -c -o= lib/libdnssec_la-keyid.lo `test -f 'lib/keyid.c' || echo './'`lib/keyid.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-keyid.lo -MD -MP -MF lib/.deps/= libdnssec_la-keyid.Tpo -c lib/keyid.c -fPIC -DPIC -o lib/.libs/libdnssec_l= a-keyid.o --- lib/kasp/dir/libdnssec_la-policy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-policy.lo -MD -MP -MF = lib/kasp/dir/.deps/libdnssec_la-policy.Tpo -c lib/kasp/dir/policy.c -o lib/= kasp/dir/libdnssec_la-policy.o >/dev/null 2>&1 --- lib/kasp/dir/libdnssec_la-json.lo --- mv -f lib/kasp/dir/.deps/libdnssec_la-json.Tpo lib/kasp/dir/.deps/libdnssec= _la-json.Plo --- lib/kasp/libdnssec_la-kasp.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/libdnssec_la-kasp.lo -MD -MP -MF lib/kasp/.deps/libdnssec_la-kasp.T= po -c -o lib/kasp/libdnssec_la-kasp.lo `test -f 'lib/kasp/kasp.c' || echo '= =2E/'`lib/kasp/kasp.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-kasp.lo -MD -MP -MF lib/ka= sp/.deps/libdnssec_la-kasp.Tpo -c lib/kasp/kasp.c -fPIC -DPIC -o lib/kasp/= =2Elibs/libdnssec_la-kasp.o --- lib/libdnssec_la-keyid.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-keyid.lo -MD -MP -MF lib/.deps/= libdnssec_la-keyid.Tpo -c lib/keyid.c -o lib/libdnssec_la-keyid.o >/dev/nul= l 2>&1 --- lib/kasp/dir/libdnssec_la-policy.lo --- mv -f lib/kasp/dir/.deps/libdnssec_la-policy.Tpo lib/kasp/dir/.deps/libdnss= ec_la-policy.Plo --- lib/kasp/dir/libdnssec_la-zone.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-zone.lo -MD -MP -MF li= b/kasp/dir/.deps/libdnssec_la-zone.Tpo -c lib/kasp/dir/zone.c -o lib/kasp/d= ir/libdnssec_la-zone.o >/dev/null 2>&1 --- lib/kasp/libdnssec_la-zone.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/libdnssec_la-zone.lo -MD -MP -MF lib/kasp/.deps/libdnssec_la-zone.T= po -c -o lib/kasp/libdnssec_la-zone.lo `test -f 'lib/kasp/zone.c' || echo '= =2E/'`lib/kasp/zone.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-zone.lo -MD -MP -MF lib/ka= sp/.deps/libdnssec_la-zone.Tpo -c lib/kasp/zone.c -fPIC -DPIC -o lib/kasp/= =2Elibs/libdnssec_la-zone.o --- lib/kasp/libdnssec_la-kasp.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-kasp.lo -MD -MP -MF lib/ka= sp/.deps/libdnssec_la-kasp.Tpo -c lib/kasp/kasp.c -o lib/kasp/libdnssec_la-= kasp.o >/dev/null 2>&1 --- lib/libdnssec_la-keyid.lo --- mv -f lib/.deps/libdnssec_la-keyid.Tpo lib/.deps/libdnssec_la-keyid.Plo --- lib/kasp/libdnssec_la-policy.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/kasp/libdnssec_la-policy.lo -MD -MP -MF lib/kasp/.deps/libdnssec_la-poli= cy.Tpo -c -o lib/kasp/libdnssec_la-policy.lo `test -f 'lib/kasp/policy.c' |= | echo './'`lib/kasp/policy.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-policy.lo -MD -MP -MF lib/= kasp/.deps/libdnssec_la-policy.Tpo -c lib/kasp/policy.c -fPIC -DPIC -o lib= /kasp/.libs/libdnssec_la-policy.o --- lib/kasp/libdnssec_la-zone.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-zone.lo -MD -MP -MF lib/ka= sp/.deps/libdnssec_la-zone.Tpo -c lib/kasp/zone.c -o lib/kasp/libdnssec_la-= zone.o >/dev/null 2>&1 --- lib/kasp/dir/libdnssec_la-zone.lo --- mv -f lib/kasp/dir/.deps/libdnssec_la-zone.Tpo lib/kasp/dir/.deps/libdnssec= _la-zone.Plo --- lib/key/libdnssec_la-algorithm.lo --- --- lib/kasp/libdnssec_la-kasp.lo --- mv -f lib/kasp/.deps/libdnssec_la-kasp.Tpo lib/kasp/.deps/libdnssec_la-kasp= =2EPlo --- lib/key/libdnssec_la-algorithm.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-algorithm.lo -MD -MP -MF lib/key/.deps/libdnssec_la-alg= orithm.Tpo -c -o lib/key/libdnssec_la-algorithm.lo `test -f 'lib/key/algori= thm.c' || echo './'`lib/key/algorithm.c --- lib/key/libdnssec_la-convert.lo --- --- lib/kasp/libdnssec_la-policy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-policy.lo -MD -MP -MF lib/= kasp/.deps/libdnssec_la-policy.Tpo -c lib/kasp/policy.c -o lib/kasp/libdnss= ec_la-policy.o >/dev/null 2>&1 --- lib/key/libdnssec_la-convert.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-convert.lo -MD -MP -MF lib/key/.deps/libdnssec_la-conve= rt.Tpo -c -o lib/key/libdnssec_la-convert.lo `test -f 'lib/key/convert.c' |= | echo './'`lib/key/convert.c --- lib/key/libdnssec_la-algorithm.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-algorithm.lo -MD -MP -MF li= b/key/.deps/libdnssec_la-algorithm.Tpo -c lib/key/algorithm.c -fPIC -DPIC = -o lib/key/.libs/libdnssec_la-algorithm.o --- lib/key/libdnssec_la-convert.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-convert.lo -MD -MP -MF lib/= key/.deps/libdnssec_la-convert.Tpo -c lib/key/convert.c -fPIC -DPIC -o lib= /key/.libs/libdnssec_la-convert.o --- lib/kasp/libdnssec_la-zone.lo --- mv -f lib/kasp/.deps/libdnssec_la-zone.Tpo lib/kasp/.deps/libdnssec_la-zone= =2EPlo --- lib/key/libdnssec_la-dnskey.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-dnskey.lo -MD -MP -MF lib/key/.deps/libdnssec_la-dnskey= =2ETpo -c -o lib/key/libdnssec_la-dnskey.lo `test -f 'lib/key/dnskey.c' || = echo './'`lib/key/dnskey.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-dnskey.lo -MD -MP -MF lib/k= ey/.deps/libdnssec_la-dnskey.Tpo -c lib/key/dnskey.c -fPIC -DPIC -o lib/ke= y/.libs/libdnssec_la-dnskey.o --- lib/kasp/libdnssec_la-policy.lo --- mv -f lib/kasp/.deps/libdnssec_la-policy.Tpo lib/kasp/.deps/libdnssec_la-po= licy.Plo --- lib/key/libdnssec_la-ds.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-ds.lo -MD -MP -MF lib/key/.deps/libdnssec_la-ds.Tpo -c = -o lib/key/libdnssec_la-ds.lo `test -f 'lib/key/ds.c' || echo './'`lib/key/= ds.c --- lib/key/libdnssec_la-algorithm.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-algorithm.lo -MD -MP -MF li= b/key/.deps/libdnssec_la-algorithm.Tpo -c lib/key/algorithm.c -o lib/key/li= bdnssec_la-algorithm.o >/dev/null 2>&1 --- lib/key/libdnssec_la-ds.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-ds.lo -MD -MP -MF lib/key/.= deps/libdnssec_la-ds.Tpo -c lib/key/ds.c -fPIC -DPIC -o lib/key/.libs/libd= nssec_la-ds.o libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-ds.lo -MD -MP -MF lib/key/.= deps/libdnssec_la-ds.Tpo -c lib/key/ds.c -o lib/key/libdnssec_la-ds.o >/dev= /null 2>&1 --- lib/key/libdnssec_la-dnskey.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-dnskey.lo -MD -MP -MF lib/k= ey/.deps/libdnssec_la-dnskey.Tpo -c lib/key/dnskey.c -o lib/key/libdnssec_l= a-dnskey.o >/dev/null 2>&1 --- lib/key/libdnssec_la-algorithm.lo --- mv -f lib/key/.deps/libdnssec_la-algorithm.Tpo lib/key/.deps/libdnssec_la-a= lgorithm.Plo --- lib/key/libdnssec_la-key.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-key.lo -MD -MP -MF lib/key/.deps/libdnssec_la-key.Tpo -= c -o lib/key/libdnssec_la-key.lo `test -f 'lib/key/key.c' || echo './'`lib/= key/key.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-key.lo -MD -MP -MF lib/key/= =2Edeps/libdnssec_la-key.Tpo -c lib/key/key.c -fPIC -DPIC -o lib/key/.libs= /libdnssec_la-key.o --- lib/key/libdnssec_la-convert.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-convert.lo -MD -MP -MF lib/= key/.deps/libdnssec_la-convert.Tpo -c lib/key/convert.c -o lib/key/libdnsse= c_la-convert.o >/dev/null 2>&1 --- lib/key/libdnssec_la-ds.lo --- mv -f lib/key/.deps/libdnssec_la-ds.Tpo lib/key/.deps/libdnssec_la-ds.Plo --- lib/key/libdnssec_la-keytag.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-keytag.lo -MD -MP -MF lib/key/.deps/libdnssec_la-keytag= =2ETpo -c -o lib/key/libdnssec_la-keytag.lo `test -f 'lib/key/keytag.c' || = echo './'`lib/key/keytag.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-keytag.lo -MD -MP -MF lib/k= ey/.deps/libdnssec_la-keytag.Tpo -c lib/key/keytag.c -fPIC -DPIC -o lib/ke= y/.libs/libdnssec_la-keytag.o --- lib/key/libdnssec_la-dnskey.lo --- mv -f lib/key/.deps/libdnssec_la-dnskey.Tpo lib/key/.deps/libdnssec_la-dnsk= ey.Plo --- lib/key/libdnssec_la-privkey.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-privkey.lo -MD -MP -MF lib/key/.deps/libdnssec_la-privk= ey.Tpo -c -o lib/key/libdnssec_la-privkey.lo `test -f 'lib/key/privkey.c' |= | echo './'`lib/key/privkey.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-privkey.lo -MD -MP -MF lib/= key/.deps/libdnssec_la-privkey.Tpo -c lib/key/privkey.c -fPIC -DPIC -o lib= /key/.libs/libdnssec_la-privkey.o --- lib/key/libdnssec_la-keytag.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-keytag.lo -MD -MP -MF lib/k= ey/.deps/libdnssec_la-keytag.Tpo -c lib/key/keytag.c -o lib/key/libdnssec_l= a-keytag.o >/dev/null 2>&1 --- lib/key/libdnssec_la-key.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-key.lo -MD -MP -MF lib/key/= =2Edeps/libdnssec_la-key.Tpo -c lib/key/key.c -o lib/key/libdnssec_la-key.o= >/dev/null 2>&1 --- lib/key/libdnssec_la-convert.lo --- mv -f lib/key/.deps/libdnssec_la-convert.Tpo lib/key/.deps/libdnssec_la-con= vert.Plo --- lib/key/libdnssec_la-simple.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/key/libdnssec_la-simple.lo -MD -MP -MF lib/key/.deps/libdnssec_la-simple= =2ETpo -c -o lib/key/libdnssec_la-simple.lo `test -f 'lib/key/simple.c' || = echo './'`lib/key/simple.c --- lib/key/libdnssec_la-privkey.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-privkey.lo -MD -MP -MF lib/= key/.deps/libdnssec_la-privkey.Tpo -c lib/key/privkey.c -o lib/key/libdnsse= c_la-privkey.o >/dev/null 2>&1 --- lib/key/libdnssec_la-keytag.lo --- mv -f lib/key/.deps/libdnssec_la-keytag.Tpo lib/key/.deps/libdnssec_la-keyt= ag.Plo --- lib/keystore/libdnssec_la-keystore.lo --- --- lib/key/libdnssec_la-simple.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-simple.lo -MD -MP -MF lib/k= ey/.deps/libdnssec_la-simple.Tpo -c lib/key/simple.c -fPIC -DPIC -o lib/ke= y/.libs/libdnssec_la-simple.o --- lib/keystore/libdnssec_la-keystore.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/keystore/libdnssec_la-keystore.lo -MD -MP -MF lib/keystore/.deps/libdnss= ec_la-keystore.Tpo -c -o lib/keystore/libdnssec_la-keystore.lo `test -f 'li= b/keystore/keystore.c' || echo './'`lib/keystore/keystore.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-keystore.lo -MD -MP -M= F lib/keystore/.deps/libdnssec_la-keystore.Tpo -c lib/keystore/keystore.c = -fPIC -DPIC -o lib/keystore/.libs/libdnssec_la-keystore.o --- lib/key/libdnssec_la-simple.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/key/libdnssec_la-simple.lo -MD -MP -MF lib/k= ey/.deps/libdnssec_la-simple.Tpo -c lib/key/simple.c -o lib/key/libdnssec_l= a-simple.o >/dev/null 2>&1 --- lib/key/libdnssec_la-key.lo --- mv -f lib/key/.deps/libdnssec_la-key.Tpo lib/key/.deps/libdnssec_la-key.Plo --- lib/keystore/libdnssec_la-pkcs11.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/keystore/libdnssec_la-pkcs11.lo -MD -MP -MF lib/keystore/.deps/libdnssec= _la-pkcs11.Tpo -c -o lib/keystore/libdnssec_la-pkcs11.lo `test -f 'lib/keys= tore/pkcs11.c' || echo './'`lib/keystore/pkcs11.c --- lib/key/libdnssec_la-privkey.lo --- mv -f lib/key/.deps/libdnssec_la-privkey.Tpo lib/key/.deps/libdnssec_la-pri= vkey.Plo --- lib/keystore/libdnssec_la-pkcs11.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs11.lo -MD -MP -MF = lib/keystore/.deps/libdnssec_la-pkcs11.Tpo -c lib/keystore/pkcs11.c -fPIC = -DPIC -o lib/keystore/.libs/libdnssec_la-pkcs11.o --- lib/keystore/libdnssec_la-pkcs8.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/keystore/libdnssec_la-pkcs8.lo -MD -MP -MF lib/keystore/.deps/libdnssec_= la-pkcs8.Tpo -c -o lib/keystore/libdnssec_la-pkcs8.lo `test -f 'lib/keystor= e/pkcs8.c' || echo './'`lib/keystore/pkcs8.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8.lo -MD -MP -MF l= ib/keystore/.deps/libdnssec_la-pkcs8.Tpo -c lib/keystore/pkcs8.c -fPIC -DP= IC -o lib/keystore/.libs/libdnssec_la-pkcs8.o --- lib/keystore/libdnssec_la-keystore.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-keystore.lo -MD -MP -M= F lib/keystore/.deps/libdnssec_la-keystore.Tpo -c lib/keystore/keystore.c -= o lib/keystore/libdnssec_la-keystore.o >/dev/null 2>&1 --- lib/key/libdnssec_la-simple.lo --- mv -f lib/key/.deps/libdnssec_la-simple.Tpo lib/key/.deps/libdnssec_la-simp= le.Plo --- lib/keystore/libdnssec_la-pkcs8_dir.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/keystore/libdnssec_la-pkcs8_dir.lo -MD -MP -MF lib/keystore/.deps/libdns= sec_la-pkcs8_dir.Tpo -c -o lib/keystore/libdnssec_la-pkcs8_dir.lo `test -f = 'lib/keystore/pkcs8_dir.c' || echo './'`lib/keystore/pkcs8_dir.c --- lib/keystore/libdnssec_la-pkcs11.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs11.lo -MD -MP -MF = lib/keystore/.deps/libdnssec_la-pkcs11.Tpo -c lib/keystore/pkcs11.c -o lib/= keystore/libdnssec_la-pkcs11.o >/dev/null 2>&1 --- lib/keystore/libdnssec_la-pkcs8_dir.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8_dir.lo -MD -MP -= MF lib/keystore/.deps/libdnssec_la-pkcs8_dir.Tpo -c lib/keystore/pkcs8_dir.= c -fPIC -DPIC -o lib/keystore/.libs/libdnssec_la-pkcs8_dir.o --- lib/keystore/libdnssec_la-pkcs8.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8.lo -MD -MP -MF l= ib/keystore/.deps/libdnssec_la-pkcs8.Tpo -c lib/keystore/pkcs8.c -o lib/key= store/libdnssec_la-pkcs8.o >/dev/null 2>&1 --- lib/keystore/libdnssec_la-keystore.lo --- mv -f lib/keystore/.deps/libdnssec_la-keystore.Tpo lib/keystore/.deps/libdn= ssec_la-keystore.Plo --- lib/libdnssec_la-random.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-random.lo -MD -MP -MF lib/.deps/libdnssec_la-random.Tpo -c = -o lib/libdnssec_la-random.lo `test -f 'lib/random.c' || echo './'`lib/rand= om.c --- lib/keystore/libdnssec_la-pkcs11.lo --- mv -f lib/keystore/.deps/libdnssec_la-pkcs11.Tpo lib/keystore/.deps/libdnss= ec_la-pkcs11.Plo --- lib/list/libdnssec_la-list.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/list/libdnssec_la-list.lo -MD -MP -MF lib/list/.deps/libdnssec_la-list.T= po -c -o lib/list/libdnssec_la-list.lo `test -f 'lib/list/list.c' || echo '= =2E/'`lib/list/list.c --- lib/libdnssec_la-random.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-random.lo -MD -MP -MF lib/.deps= /libdnssec_la-random.Tpo -c lib/random.c -fPIC -DPIC -o lib/.libs/libdnsse= c_la-random.o --- lib/keystore/libdnssec_la-pkcs8.lo --- mv -f lib/keystore/.deps/libdnssec_la-pkcs8.Tpo lib/keystore/.deps/libdnsse= c_la-pkcs8.Plo --- lib/libdnssec_la-tsig.lo --- --- lib/list/libdnssec_la-list.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/list/libdnssec_la-list.lo -MD -MP -MF lib/li= st/.deps/libdnssec_la-list.Tpo -c lib/list/list.c -fPIC -DPIC -o lib/list/= =2Elibs/libdnssec_la-list.o --- lib/libdnssec_la-tsig.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/libdnssec_la-tsig.lo -MD -MP -MF lib/.deps/libdnssec_la-tsig.Tpo -c -o l= ib/libdnssec_la-tsig.lo `test -f 'lib/tsig.c' || echo './'`lib/tsig.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-tsig.lo -MD -MP -MF lib/.deps/l= ibdnssec_la-tsig.Tpo -c lib/tsig.c -fPIC -DPIC -o lib/.libs/libdnssec_la-t= sig.o --- lib/keystore/libdnssec_la-pkcs8_dir.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8_dir.lo -MD -MP -= MF lib/keystore/.deps/libdnssec_la-pkcs8_dir.Tpo -c lib/keystore/pkcs8_dir.= c -o lib/keystore/libdnssec_la-pkcs8_dir.o >/dev/null 2>&1 --- lib/libdnssec_la-random.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-random.lo -MD -MP -MF lib/.deps= /libdnssec_la-random.Tpo -c lib/random.c -o lib/libdnssec_la-random.o >/dev= /null 2>&1 --- lib/libdnssec_la-tsig.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/libdnssec_la-tsig.lo -MD -MP -MF lib/.deps/l= ibdnssec_la-tsig.Tpo -c lib/tsig.c -o lib/libdnssec_la-tsig.o >/dev/null 2>= &1 --- lib/list/libdnssec_la-list.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/list/libdnssec_la-list.lo -MD -MP -MF lib/li= st/.deps/libdnssec_la-list.Tpo -c lib/list/list.c -o lib/list/libdnssec_la-= list.o >/dev/null 2>&1 --- lib/keystore/libdnssec_la-pkcs8_dir.lo --- mv -f lib/keystore/.deps/libdnssec_la-pkcs8_dir.Tpo lib/keystore/.deps/libd= nssec_la-pkcs8_dir.Plo --- lib/nsec/libdnssec_la-bitmap.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/nsec/libdnssec_la-bitmap.lo -MD -MP -MF lib/nsec/.deps/libdnssec_la-bitm= ap.Tpo -c -o lib/nsec/libdnssec_la-bitmap.lo `test -f 'lib/nsec/bitmap.c' |= | echo './'`lib/nsec/bitmap.c --- lib/libdnssec_la-random.lo --- mv -f lib/.deps/libdnssec_la-random.Tpo lib/.deps/libdnssec_la-random.Plo --- lib/nsec/libdnssec_la-hash.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/nsec/libdnssec_la-hash.lo -MD -MP -MF lib/nsec/.deps/libdnssec_la-hash.T= po -c -o lib/nsec/libdnssec_la-hash.lo `test -f 'lib/nsec/hash.c' || echo '= =2E/'`lib/nsec/hash.c --- lib/nsec/libdnssec_la-bitmap.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-bitmap.lo -MD -MP -MF lib/= nsec/.deps/libdnssec_la-bitmap.Tpo -c lib/nsec/bitmap.c -fPIC -DPIC -o lib= /nsec/.libs/libdnssec_la-bitmap.o --- lib/nsec/libdnssec_la-hash.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-hash.lo -MD -MP -MF lib/ns= ec/.deps/libdnssec_la-hash.Tpo -c lib/nsec/hash.c -fPIC -DPIC -o lib/nsec/= =2Elibs/libdnssec_la-hash.o --- lib/libdnssec_la-tsig.lo --- mv -f lib/.deps/libdnssec_la-tsig.Tpo lib/.deps/libdnssec_la-tsig.Plo --- lib/sign/libdnssec_la-der.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/sign/libdnssec_la-der.lo -MD -MP -MF lib/sign/.deps/libdnssec_la-der.Tpo= -c -o lib/sign/libdnssec_la-der.lo `test -f 'lib/sign/der.c' || echo './'`= lib/sign/der.c --- lib/list/libdnssec_la-list.lo --- mv -f lib/list/.deps/libdnssec_la-list.Tpo lib/list/.deps/libdnssec_la-list= =2EPlo --- lib/sign/libdnssec_la-sign.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-protector -f= no-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT l= ib/sign/libdnssec_la-sign.lo -MD -MP -MF lib/sign/.deps/libdnssec_la-sign.T= po -c -o lib/sign/libdnssec_la-sign.lo `test -f 'lib/sign/sign.c' || echo '= =2E/'`lib/sign/sign.c --- lib/sign/libdnssec_la-der.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/sign/libdnssec_la-der.lo -MD -MP -MF lib/sig= n/.deps/libdnssec_la-der.Tpo -c lib/sign/der.c -fPIC -DPIC -o lib/sign/.li= bs/libdnssec_la-der.o --- lib/sign/libdnssec_la-sign.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/sign/libdnssec_la-sign.lo -MD -MP -MF lib/si= gn/.deps/libdnssec_la-sign.Tpo -c lib/sign/sign.c -fPIC -DPIC -o lib/sign/= =2Elibs/libdnssec_la-sign.o --- lib/nsec/libdnssec_la-bitmap.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-bitmap.lo -MD -MP -MF lib/= nsec/.deps/libdnssec_la-bitmap.Tpo -c lib/nsec/bitmap.c -o lib/nsec/libdnss= ec_la-bitmap.o >/dev/null 2>&1 --- lib/nsec/libdnssec_la-hash.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-hash.lo -MD -MP -MF lib/ns= ec/.deps/libdnssec_la-hash.Tpo -c lib/nsec/hash.c -o lib/nsec/libdnssec_la-= hash.o >/dev/null 2>&1 --- lib/nsec/libdnssec_la-bitmap.lo --- mv -f lib/nsec/.deps/libdnssec_la-bitmap.Tpo lib/nsec/.deps/libdnssec_la-bi= tmap.Plo --- shared/libshared_la-base32hex.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-base= 32hex.lo -MD -MP -MF shared/.deps/libshared_la-base32hex.Tpo -c -o shared/l= ibshared_la-base32hex.lo `test -f 'shared/base32hex.c' || echo './'`shared/= base32hex.c --- lib/sign/libdnssec_la-der.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/sign/libdnssec_la-der.lo -MD -MP -MF lib/sig= n/.deps/libdnssec_la-der.Tpo -c lib/sign/der.c -o lib/sign/libdnssec_la-der= =2Eo >/dev/null 2>&1 --- shared/libshared_la-base32hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-base32hex.lo -MD -MP -MF shared/.deps/libshared_la= -base32hex.Tpo -c shared/base32hex.c -fPIC -DPIC -o shared/.libs/libshared= _la-base32hex.o --- lib/sign/libdnssec_la-sign.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibility=3Dhidden -O= 2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-secur= ity -Werror=3Dimplicit -MT lib/sign/libdnssec_la-sign.lo -MD -MP -MF lib/si= gn/.deps/libdnssec_la-sign.Tpo -c lib/sign/sign.c -o lib/sign/libdnssec_la-= sign.o >/dev/null 2>&1 --- lib/nsec/libdnssec_la-hash.lo --- mv -f lib/nsec/.deps/libdnssec_la-hash.Tpo lib/nsec/.deps/libdnssec_la-hash= =2EPlo --- shared/libshared_la-bignum.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-bign= um.lo -MD -MP -MF shared/.deps/libshared_la-bignum.Tpo -c -o shared/libshar= ed_la-bignum.lo `test -f 'shared/bignum.c' || echo './'`shared/bignum.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-bignum.lo -MD -MP -MF shared/.deps/libshared_la-bi= gnum.Tpo -c shared/bignum.c -fPIC -DPIC -o shared/.libs/libshared_la-bignu= m.o --- shared/libshared_la-base32hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-base32hex.lo -MD -MP -MF shared/.deps/libshared_la= -base32hex.Tpo -c shared/base32hex.c -o shared/libshared_la-base32hex.o >/d= ev/null 2>&1 --- lib/sign/libdnssec_la-der.lo --- mv -f lib/sign/.deps/libdnssec_la-der.Tpo lib/sign/.deps/libdnssec_la-der.P= lo --- shared/libshared_la-dname.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-dnam= e.lo -MD -MP -MF shared/.deps/libshared_la-dname.Tpo -c -o shared/libshared= _la-dname.lo `test -f 'shared/dname.c' || echo './'`shared/dname.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-dname.lo -MD -MP -MF shared/.deps/libshared_la-dna= me.Tpo -c shared/dname.c -fPIC -DPIC -o shared/.libs/libshared_la-dname.o --- shared/libshared_la-bignum.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-bignum.lo -MD -MP -MF shared/.deps/libshared_la-bi= gnum.Tpo -c shared/bignum.c -o shared/libshared_la-bignum.o >/dev/null 2>&1 mv -f shared/.deps/libshared_la-bignum.Tpo shared/.deps/libshared_la-bignum= =2EPlo --- shared/libshared_la-fs.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-fs.l= o -MD -MP -MF shared/.deps/libshared_la-fs.Tpo -c -o shared/libshared_la-fs= =2Elo `test -f 'shared/fs.c' || echo './'`shared/fs.c --- lib/sign/libdnssec_la-sign.lo --- mv -f lib/sign/.deps/libdnssec_la-sign.Tpo lib/sign/.deps/libdnssec_la-sign= =2EPlo --- shared/libshared_la-hex.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-hex.= lo -MD -MP -MF shared/.deps/libshared_la-hex.Tpo -c -o shared/libshared_la-= hex.lo `test -f 'shared/hex.c' || echo './'`shared/hex.c --- shared/libshared_la-fs.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-fs.lo -MD -MP -MF shared/.deps/libshared_la-fs.Tpo= -c shared/fs.c -fPIC -DPIC -o shared/.libs/libshared_la-fs.o --- shared/libshared_la-base32hex.lo --- mv -f shared/.deps/libshared_la-base32hex.Tpo shared/.deps/libshared_la-bas= e32hex.Plo --- shared/libshared_la-hex_gnutls.lo --- --- shared/libshared_la-hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-hex.lo -MD -MP -MF shared/.deps/libshared_la-hex.T= po -c shared/hex.c -fPIC -DPIC -o shared/.libs/libshared_la-hex.o --- shared/libshared_la-hex_gnutls.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-hex_= gnutls.lo -MD -MP -MF shared/.deps/libshared_la-hex_gnutls.Tpo -c -o shared= /libshared_la-hex_gnutls.lo `test -f 'shared/hex_gnutls.c' || echo './'`sha= red/hex_gnutls.c --- shared/libshared_la-fs.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-fs.lo -MD -MP -MF shared/.deps/libshared_la-fs.Tpo= -c shared/fs.c -o shared/libshared_la-fs.o >/dev/null 2>&1 --- shared/libshared_la-hex_gnutls.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-hex_gnutls.lo -MD -MP -MF shared/.deps/libshared_l= a-hex_gnutls.Tpo -c shared/hex_gnutls.c -fPIC -DPIC -o shared/.libs/libsha= red_la-hex_gnutls.o --- shared/libshared_la-dname.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-dname.lo -MD -MP -MF shared/.deps/libshared_la-dna= me.Tpo -c shared/dname.c -o shared/libshared_la-dname.o >/dev/null 2>&1 --- shared/libshared_la-hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-hex.lo -MD -MP -MF shared/.deps/libshared_la-hex.T= po -c shared/hex.c -o shared/libshared_la-hex.o >/dev/null 2>&1 --- shared/libshared_la-fs.lo --- mv -f shared/.deps/libshared_la-fs.Tpo shared/.deps/libshared_la-fs.Plo --- shared/libshared_la-path.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-path= =2Elo -MD -MP -MF shared/.deps/libshared_la-path.Tpo -c -o shared/libshared= _la-path.lo `test -f 'shared/path.c' || echo './'`shared/path.c --- shared/libshared_la-hex_gnutls.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-hex_gnutls.lo -MD -MP -MF shared/.deps/libshared_l= a-hex_gnutls.Tpo -c shared/hex_gnutls.c -o shared/libshared_la-hex_gnutls.o= >/dev/null 2>&1 --- shared/libshared_la-path.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-path.lo -MD -MP -MF shared/.deps/libshared_la-path= =2ETpo -c shared/path.c -fPIC -DPIC -o shared/.libs/libshared_la-path.o libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-path.lo -MD -MP -MF shared/.deps/libshared_la-path= =2ETpo -c shared/path.c -o shared/libshared_la-path.o >/dev/null 2>&1 mv -f shared/.deps/libshared_la-path.Tpo shared/.deps/libshared_la-path.Plo --- shared/libshared_la-pem.lo --- /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I.= -I../../src -include ../../src/config.h -I./shared -I./lib -I./lib/dns= sec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -I= /usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libshared_la-pem.= lo -MD -MP -MF shared/.deps/libshared_la-pem.Tpo -c -o shared/libshared_la-= pem.lo `test -f 'shared/pem.c' || echo './'`shared/pem.c --- shared/libshared_la-hex.lo --- mv -f shared/.deps/libshared_la-hex.Tpo shared/.deps/libshared_la-hex.Plo --- shared/libshared_la-hex_gnutls.lo --- mv -f shared/.deps/libshared_la-hex_gnutls.Tpo shared/.deps/libshared_la-he= x_gnutls.Plo --- shared/libshared_la-pem.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-pem.lo -MD -MP -MF shared/.deps/libshared_la-pem.T= po -c shared/pem.c -fPIC -DPIC -o shared/.libs/libshared_la-pem.o --- shared/libshared_la-dname.lo --- mv -f shared/.deps/libshared_la-dname.Tpo shared/.deps/libshared_la-dname.P= lo --- shared/libshared_la-pem.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../src -include ../../src/co= nfig.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT shared/libshared_la-pem.lo -MD -MP -MF shared/.deps/libshared_la-pem.T= po -c shared/pem.c -o shared/libshared_la-pem.o >/dev/null 2>&1 mv -f shared/.deps/libshared_la-pem.Tpo shared/.deps/libshared_la-pem.Plo --- libshared.la --- /bin/sh ../../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-p= rotector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimp= licit -fstack-protector -o libshared.la shared/libshared_la-base32hex.lo= shared/libshared_la-bignum.lo shared/libshared_la-dname.lo shared/libsha= red_la-fs.lo shared/libshared_la-hex.lo shared/libshared_la-hex_gnutls.lo = shared/libshared_la-path.lo shared/libshared_la-pem.lo -lpthread -lm libtool: link: ar cru .libs/libshared.a shared/.libs/libshared_la-base32hex= =2Eo shared/.libs/libshared_la-bignum.o shared/.libs/libshared_la-dname.o s= hared/.libs/libshared_la-fs.o shared/.libs/libshared_la-hex.o shared/.libs/= libshared_la-hex_gnutls.o shared/.libs/libshared_la-path.o shared/.libs/lib= shared_la-pem.o=20 libtool: link: ranlib .libs/libshared.a libtool: link: ( cd ".libs" && rm -f "libshared.la" && ln -s "../libshared.= la" "libshared.la" ) --- libdnssec.la --- /bin/sh ../../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-p= rotector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimp= licit -lgnutls -L/usr/local/lib -lnettle -L/usr/local/lib -ljansson -ver= sion-info 0:0:0 -fstack-protector -o libdnssec.la -rpath /usr/local/lib lib= /libdnssec_la-binary.lo lib/libdnssec_la-crypto.lo lib/libdnssec_la-error.= lo lib/event/action/libdnssec_la-initial_key.lo lib/event/action/libdnsse= c_la-zsk_rollover.lo lib/event/libdnssec_la-event.lo lib/event/libdnssec_= la-keystate.lo lib/event/libdnssec_la-utils.lo lib/kasp/dir/libdnssec_la-= dir.lo lib/kasp/dir/libdnssec_la-escape.lo lib/kasp/dir/libdnssec_la-file= =2Elo lib/kasp/dir/libdnssec_la-json.lo lib/kasp/dir/libdnssec_la-zone.lo= lib/kasp/dir/libdnssec_la-policy.lo lib/kasp/libdnssec_la-kasp.lo lib/ka= sp/libdnssec_la-zone.lo lib/kasp/libdnssec_la-policy.lo lib/key/libdnssec= _la-algorithm.lo lib/key/libdnssec_la-convert.lo lib/key/libdnssec_la-dnsk= ey.lo lib/key/libdnssec_la-ds.lo lib/key/libdnssec_la-key.lo lib/key/libd= nssec_la-keytag.lo lib/key/libdnssec_la-privkey.lo lib/key/libdnssec_la-si= mple.lo lib/libdnssec_la-keyid.lo lib/keystore/libdnssec_la-keystore.lo l= ib/keystore/libdnssec_la-pkcs11.lo lib/keystore/libdnssec_la-pkcs8.lo lib= /keystore/libdnssec_la-pkcs8_dir.lo lib/list/libdnssec_la-list.lo lib/nsec= /libdnssec_la-bitmap.lo lib/nsec/libdnssec_la-hash.lo lib/libdnssec_la-ran= dom.lo lib/sign/libdnssec_la-der.lo lib/sign/libdnssec_la-sign.lo lib/lib= dnssec_la-tsig.lo libshared.la -lpthread -lm libtool: link: cc -shared -fPIC -DPIC lib/.libs/libdnssec_la-binary.o lib= /.libs/libdnssec_la-crypto.o lib/.libs/libdnssec_la-error.o lib/event/actio= n/.libs/libdnssec_la-initial_key.o lib/event/action/.libs/libdnssec_la-zsk_= rollover.o lib/event/.libs/libdnssec_la-event.o lib/event/.libs/libdnssec_l= a-keystate.o lib/event/.libs/libdnssec_la-utils.o lib/kasp/dir/.libs/libdns= sec_la-dir.o lib/kasp/dir/.libs/libdnssec_la-escape.o lib/kasp/dir/.libs/li= bdnssec_la-file.o lib/kasp/dir/.libs/libdnssec_la-json.o lib/kasp/dir/.libs= /libdnssec_la-zone.o lib/kasp/dir/.libs/libdnssec_la-policy.o lib/kasp/.lib= s/libdnssec_la-kasp.o lib/kasp/.libs/libdnssec_la-zone.o lib/kasp/.libs/lib= dnssec_la-policy.o lib/key/.libs/libdnssec_la-algorithm.o lib/key/.libs/lib= dnssec_la-convert.o lib/key/.libs/libdnssec_la-dnskey.o lib/key/.libs/libdn= ssec_la-ds.o lib/key/.libs/libdnssec_la-key.o lib/key/.libs/libdnssec_la-ke= ytag.o lib/key/.libs/libdnssec_la-privkey.o lib/key/.libs/libdnssec_la-simp= le.o lib/.libs/libdnssec_la-keyid.o lib/keystore/.libs/libdnssec_la-keystor= e.o lib/keystore/.libs/libdnssec_la-pkcs11.o lib/keystore/.libs/libdnssec_l= a-pkcs8.o lib/keystore/.libs/libdnssec_la-pkcs8_dir.o lib/list/.libs/libdns= sec_la-list.o lib/nsec/.libs/libdnssec_la-bitmap.o lib/nsec/.libs/libdnssec= _la-hash.o lib/.libs/libdnssec_la-random.o lib/sign/.libs/libdnssec_la-der.= o lib/sign/.libs/libdnssec_la-sign.o lib/.libs/libdnssec_la-tsig.o -Wl,--w= hole-archive ./.libs/libshared.a -Wl,--no-whole-archive -lgnutls -L/usr/lo= cal/lib -lnettle -ljansson -lpthread -lm -O2 -fstack-protector -fstack-pro= tector -Wl,-soname -Wl,libdnssec.so.0 -o .libs/libdnssec.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libdnssec.so.0" && ln -s "libdnssec.so= =2E0.0.0" "libdnssec.so.0") libtool: link: (cd ".libs" && rm -f "libdnssec.so" && ln -s "libdnssec.so.0= =2E0.0" "libdnssec.so") libtool: link: (cd .libs/libdnssec.lax/libshared.a && ar x "/wrkdirs/usr/po= rts/dns/knot2/work/knot-2.0.0/src/dnssec/./.libs/libshared.a") copying selected object files to avoid basename conflicts... libtool: link: ln lib/kasp/libdnssec_la-zone.o .libs/libdnssec.lax/lt1-libd= nssec_la-zone.o || cp lib/kasp/libdnssec_la-zone.o .libs/libdnssec.lax/lt1-= libdnssec_la-zone.o libtool: link: ln lib/kasp/libdnssec_la-policy.o .libs/libdnssec.lax/lt2-li= bdnssec_la-policy.o || cp lib/kasp/libdnssec_la-policy.o .libs/libdnssec.la= x/lt2-libdnssec_la-policy.o libtool: link: ar cru .libs/libdnssec.a lib/libdnssec_la-binary.o lib/libdn= ssec_la-crypto.o lib/libdnssec_la-error.o lib/event/action/libdnssec_la-ini= tial_key.o lib/event/action/libdnssec_la-zsk_rollover.o lib/event/libdnssec= _la-event.o lib/event/libdnssec_la-keystate.o lib/event/libdnssec_la-utils.= o lib/kasp/dir/libdnssec_la-dir.o lib/kasp/dir/libdnssec_la-escape.o lib/ka= sp/dir/libdnssec_la-file.o lib/kasp/dir/libdnssec_la-json.o lib/kasp/dir/li= bdnssec_la-zone.o lib/kasp/dir/libdnssec_la-policy.o lib/kasp/libdnssec_la-= kasp.o .libs/libdnssec.lax/lt1-libdnssec_la-zone.o .libs/libdnssec.lax/lt2-= libdnssec_la-policy.o lib/key/libdnssec_la-algorithm.o lib/key/libdnssec_la= -convert.o lib/key/libdnssec_la-dnskey.o lib/key/libdnssec_la-ds.o lib/key/= libdnssec_la-key.o lib/key/libdnssec_la-keytag.o lib/key/libdnssec_la-privk= ey.o lib/key/libdnssec_la-simple.o lib/libdnssec_la-keyid.o lib/keystore/li= bdnssec_la-keystore.o lib/keystore/libdnssec_la-pkcs11.o lib/keystore/libdn= ssec_la-pkcs8.o lib/keystore/libdnssec_la-pkcs8_dir.o lib/list/libdnssec_la= -list.o lib/nsec/libdnssec_la-bitmap.o lib/nsec/libdnssec_la-hash.o lib/lib= dnssec_la-random.o lib/sign/libdnssec_la-der.o lib/sign/libdnssec_la-sign.o= lib/libdnssec_la-tsig.o .libs/libdnssec.lax/libshared.a/libshared_la-base3= 2hex.o .libs/libdnssec.lax/libshared.a/libshared_la-bignum.o .libs/libdnsse= c.lax/libshared.a/libshared_la-dname.o .libs/libdnssec.lax/libshared.a/libs= hared_la-fs.o .libs/libdnssec.lax/libshared.a/libshared_la-hex.o .libs/libd= nssec.lax/libshared.a/libshared_la-hex_gnutls.o .libs/libdnssec.lax/libshar= ed.a/libshared_la-path.o .libs/libdnssec.lax/libshared.a/libshared_la-pem.o libtool: link: ranlib .libs/libdnssec.a libtool: link: rm -fr .libs/libdnssec.lax .libs/libdnssec.lax libtool: link: ( cd ".libs" && rm -f "libdnssec.la" && ln -s "../libdnssec.= la" "libdnssec.la" ) Making all in utils --- cmdparse/.dirstamp --- --- cmdparse/.deps/.dirstamp --- --- legacy/.dirstamp --- --- legacy/.deps/.dirstamp --- --- knsec3hash.o --- --- keymgr.o --- --- cmdparse/command.lo --- --- knsec3hash.o --- depbase=3D`echo knsec3hash.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; cc -DHAVE= _CONFIG_H -I. -I../../../src -include ../../../src/config.h -I./../shared= -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-k= it-1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-ali= asing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knsec3hash.o -= MD -MP -MF $depbase.Tpo -c -o knsec3hash.o knsec3hash.c && mv -f $depbase.T= po $depbase.Po --- cmdparse/parameter.lo --- --- keymgr.o --- depbase=3D`echo keymgr.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; cc -DHAVE_CON= FIG_H -I. -I../../../src -include ../../../src/config.h -I./../shared -I= =2E/../lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-kit= -1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-alias= ing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT keymgr.o -MD -MP= -MF $depbase.Tpo -c -o keymgr.o keymgr.c && mv -f $depbase.Tpo $depbase.Po --- cmdparse/parameter.lo --- depbase=3D`echo cmdparse/parameter.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;= /bin/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_= H -I. -I../../../src -include ../../../src/config.h -I./../shared -I./.= =2E/lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-kit-1 = -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing= -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT cmdparse/parameter.= lo -MD -MP -MF $depbase.Tpo -c -o cmdparse/parameter.lo cmdparse/parameter.= c && mv -f $depbase.Tpo $depbase.Plo --- cmdparse/command.lo --- depbase=3D`echo cmdparse/command.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /= bin/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H = -I. -I../../../src -include ../../../src/config.h -I./../shared -I./../= lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-kit-1 -I/u= sr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT cmdparse/command.lo -MD= -MP -MF $depbase.Tpo -c -o cmdparse/command.lo cmdparse/command.c && mv -f= $depbase.Tpo $depbase.Plo --- cmdparse/parameter.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T cmdparse/parameter.lo -MD -MP -MF cmdparse/.deps/parameter.Tpo -c cmdpars= e/parameter.c -fPIC -DPIC -o cmdparse/.libs/parameter.o --- cmdparse/command.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T cmdparse/command.lo -MD -MP -MF cmdparse/.deps/command.Tpo -c cmdparse/co= mmand.c -fPIC -DPIC -o cmdparse/.libs/command.o --- cmdparse/parameter.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T cmdparse/parameter.lo -MD -MP -MF cmdparse/.deps/parameter.Tpo -c cmdpars= e/parameter.c -o cmdparse/parameter.o >/dev/null 2>&1 --- cmdparse/command.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T cmdparse/command.lo -MD -MP -MF cmdparse/.deps/command.Tpo -c cmdparse/co= mmand.c -o cmdparse/command.o >/dev/null 2>&1 --- cmdparse/value.lo --- depbase=3D`echo cmdparse/value.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bi= n/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -= I. -I../../../src -include ../../../src/config.h -I./../shared -I./../li= b/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-kit-1 -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall= -Werror=3Dformat-security -Werror=3Dimplicit -MT cmdparse/value.lo -MD -MP= -MF $depbase.Tpo -c -o cmdparse/value.lo cmdparse/value.c && mv -f $depbas= e.Tpo $depbase.Plo --- legacy/key.lo --- depbase=3D`echo legacy/key.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bin/sh= ../../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= I../../../src -include ../../../src/config.h -I./../shared -I./../lib/dn= ssec -I./../lib -I../../../src -I/usr/local/include/p11-kit-1 -I/usr/loc= al/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -We= rror=3Dformat-security -Werror=3Dimplicit -MT legacy/key.lo -MD -MP -MF $de= pbase.Tpo -c -o legacy/key.lo legacy/key.c && mv -f $depbase.Tpo $depbase.P= lo --- legacy/privkey.lo --- depbase=3D`echo legacy/privkey.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bi= n/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -= I. -I../../../src -include ../../../src/config.h -I./../shared -I./../li= b/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-kit-1 -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall= -Werror=3Dformat-security -Werror=3Dimplicit -MT legacy/privkey.lo -MD -MP= -MF $depbase.Tpo -c -o legacy/privkey.lo legacy/privkey.c && mv -f $depbas= e.Tpo $depbase.Plo --- cmdparse/value.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T cmdparse/value.lo -MD -MP -MF cmdparse/.deps/value.Tpo -c cmdparse/value.= c -fPIC -DPIC -o cmdparse/.libs/value.o --- legacy/key.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T legacy/key.lo -MD -MP -MF legacy/.deps/key.Tpo -c legacy/key.c -fPIC -DP= IC -o legacy/.libs/key.o --- legacy/privkey.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T legacy/privkey.lo -MD -MP -MF legacy/.deps/privkey.Tpo -c legacy/privkey.= c -fPIC -DPIC -o legacy/.libs/privkey.o --- cmdparse/value.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T cmdparse/value.lo -MD -MP -MF cmdparse/.deps/value.Tpo -c cmdparse/value.= c -o cmdparse/value.o >/dev/null 2>&1 --- legacy/privkey.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T legacy/privkey.lo -MD -MP -MF legacy/.deps/privkey.Tpo -c legacy/privkey.= c -o legacy/privkey.o >/dev/null 2>&1 --- legacy/pubkey.lo --- depbase=3D`echo legacy/pubkey.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bin= /sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I= =2E -I../../../src -include ../../../src/config.h -I./../shared -I./../l= ib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-kit-1 -I/us= r/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT legacy/pubkey.lo -MD -MP= -MF $depbase.Tpo -c -o legacy/pubkey.lo legacy/pubkey.c && mv -f $depbase.= Tpo $depbase.Plo --- legacy/key.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T legacy/key.lo -MD -MP -MF legacy/.deps/key.Tpo -c legacy/key.c -o legacy/= key.o >/dev/null 2>&1 --- legacy/pubkey.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T legacy/pubkey.lo -MD -MP -MF legacy/.deps/pubkey.Tpo -c legacy/pubkey.c = -fPIC -DPIC -o legacy/.libs/pubkey.o libtool: compile: cc -DHAVE_CONFIG_H -I. -I../../../src -include ../../../= src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/u= sr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector= -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -M= T legacy/pubkey.lo -MD -MP -MF legacy/.deps/pubkey.Tpo -c legacy/pubkey.c -= o legacy/pubkey.o >/dev/null 2>&1 --- knsec3hash --- /bin/sh ../../../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstac= k-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3D= implicit -fstack-protector -o knsec3hash knsec3hash.o ./../libdnssec.la = =2E/../libshared.la -lpthread -lm --- libutils.la --- /bin/sh ../../../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstac= k-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3D= implicit -fstack-protector -o libutils.la cmdparse/command.lo cmdparse/= parameter.lo cmdparse/value.lo legacy/key.lo legacy/privkey.lo legacy/pub= key.lo ./../libdnssec.la ./../libshared.la ../../../src/zscanner/libzscan= ner.la -lpthread -lm --- knsec3hash --- libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/knsec= 3hash knsec3hash.o ./../.libs/libdnssec.so -L/usr/local/lib ./../.libs/lib= shared.a -lgnutls -lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/loca= l/lib --- libutils.la --- libtool: link: (cd .libs/libutils.lax/libshared.a && ar x "/wrkdirs/usr/por= ts/dns/knot2/work/knot-2.0.0/src/dnssec/utils/./../.libs/libshared.a") libtool: link: ar cru .libs/libutils.a cmdparse/.libs/command.o cmdparse/.l= ibs/parameter.o cmdparse/.libs/value.o legacy/.libs/key.o legacy/.libs/priv= key.o legacy/.libs/pubkey.o .libs/libutils.lax/libshared.a/libshared_la-b= ase32hex.o .libs/libutils.lax/libshared.a/libshared_la-bignum.o .libs/libut= ils.lax/libshared.a/libshared_la-dname.o .libs/libutils.lax/libshared.a/lib= shared_la-fs.o .libs/libutils.lax/libshared.a/libshared_la-hex.o .libs/libu= tils.lax/libshared.a/libshared_la-hex_gnutls.o .libs/libutils.lax/libshared= =2Ea/libshared_la-path.o .libs/libutils.lax/libshared.a/libshared_la-pem.o= =20 libtool: link: ranlib .libs/libutils.a libtool: link: rm -fr .libs/libutils.lax libtool: link: ( cd ".libs" && rm -f "libutils.la" && ln -s "../libutils.la= " "libutils.la" ) --- keymgr --- /bin/sh ../../../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstac= k-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3D= implicit -fstack-protector -o keymgr keymgr.o libutils.la -lpthread -lm libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/keymg= r keymgr.o ./.libs/libutils.a /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0= /src/dnssec/.libs/libdnssec.so -L/usr/local/lib /wrkdirs/usr/ports/dns/knot= 2/work/knot-2.0.0/src/zscanner/.libs/libzscanner.so -lgnutls -lnettle -ljan= sson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib Making all in tests Making all in dnstap --- all --- /usr/bin/make all-am Making all in . --- libknot/.dirstamp --- --- libknot/.deps/.dirstamp --- --- libknot/packet/.dirstamp --- --- libknot/packet/.deps/.dirstamp --- --- libknot/processing/.dirstamp --- --- libknot/processing/.deps/.dirstamp --- --- libknot/rrtype/.dirstamp --- --- libknot/rrtype/.deps/.dirstamp --- --- libknot/internal/.dirstamp --- --- libknot/internal/.deps/.dirstamp --- --- libknot/internal/namedb/.dirstamp --- --- libknot/internal/namedb/.deps/.dirstamp --- --- libknot/internal/trie/.dirstamp --- --- libknot/internal/trie/.deps/.dirstamp --- --- libknot/yparser/.dirstamp --- --- libknot/yparser/.deps/.dirstamp --- --- knot/conf/.dirstamp --- --- knot/conf/.deps/.dirstamp --- --- knot/ctl/.dirstamp --- --- knot/ctl/.deps/.dirstamp --- --- knot/dnssec/.dirstamp --- --- knot/dnssec/.deps/.dirstamp --- --- knot/modules/.dirstamp --- --- knot/modules/.deps/.dirstamp --- --- knot/nameserver/.dirstamp --- --- knot/nameserver/.deps/.dirstamp --- --- knot/common/.dirstamp --- --- knot/common/.deps/.dirstamp --- --- knot/server/.dirstamp --- --- knot/server/.deps/.dirstamp --- --- knot/updates/.dirstamp --- --- knot/updates/.deps/.dirstamp --- --- knot/worker/.dirstamp --- --- knot/worker/.deps/.dirstamp --- --- knot/zone/.dirstamp --- --- knot/zone/.deps/.dirstamp --- --- knot/zone/events/.dirstamp --- --- knot/zone/events/.deps/.dirstamp --- --- utils/common/.dirstamp --- --- utils/common/.deps/.dirstamp --- --- utils/kdig/.dirstamp --- --- utils/kdig/.deps/.dirstamp --- --- utils/khost/.dirstamp --- --- utils/khost/.deps/.dirstamp --- --- utils/knsupdate/.dirstamp --- --- utils/knsupdate/.deps/.dirstamp --- --- utils/knot1to2/.dirstamp --- --- utils/knot1to2/.deps/.dirstamp --- --- knot/.dirstamp --- --- knot/.deps/.dirstamp --- --- libknot/libknot_la-binary.lo --- --- libknot/libknot_la-consts.lo --- --- libknot/libknot_la-descriptor.lo --- --- libknot/libknot_la-dname.lo --- --- libknot/libknot_la-binary.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-binary.lo -MD -MP -MF libknot/.deps/libknot_la-binary.Tpo -= c -o libknot/libknot_la-binary.lo `test -f 'libknot/binary.c' || echo './'`= libknot/binary.c --- libknot/libknot_la-consts.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-consts.lo -MD -MP -MF libknot/.deps/libknot_la-consts.Tpo -= c -o libknot/libknot_la-consts.lo `test -f 'libknot/consts.c' || echo './'`= libknot/consts.c --- libknot/libknot_la-descriptor.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-descriptor.lo -MD -MP -MF libknot/.deps/libknot_la-descript= or.Tpo -c -o libknot/libknot_la-descriptor.lo `test -f 'libknot/descriptor.= c' || echo './'`libknot/descriptor.c --- libknot/libknot_la-dname.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-dname.lo -MD -MP -MF libknot/.deps/libknot_la-dname.Tpo -c = -o libknot/libknot_la-dname.lo `test -f 'libknot/dname.c' || echo './'`libk= not/dname.c --- libknot/libknot_la-consts.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-consts.lo -MD -MP -MF l= ibknot/.deps/libknot_la-consts.Tpo -c libknot/consts.c -fPIC -DPIC -o libk= not/.libs/libknot_la-consts.o --- libknot/libknot_la-descriptor.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-descriptor.lo -MD -MP -= MF libknot/.deps/libknot_la-descriptor.Tpo -c libknot/descriptor.c -fPIC -= DPIC -o libknot/.libs/libknot_la-descriptor.o --- libknot/libknot_la-dname.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-dname.lo -MD -MP -MF li= bknot/.deps/libknot_la-dname.Tpo -c libknot/dname.c -fPIC -DPIC -o libknot= /.libs/libknot_la-dname.o --- libknot/libknot_la-binary.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-binary.lo -MD -MP -MF l= ibknot/.deps/libknot_la-binary.Tpo -c libknot/binary.c -fPIC -DPIC -o libk= not/.libs/libknot_la-binary.o --- libknot/libknot_la-consts.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-consts.lo -MD -MP -MF l= ibknot/.deps/libknot_la-consts.Tpo -c libknot/consts.c -o libknot/libknot_l= a-consts.o >/dev/null 2>&1 --- libknot/libknot_la-binary.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-binary.lo -MD -MP -MF l= ibknot/.deps/libknot_la-binary.Tpo -c libknot/binary.c -o libknot/libknot_l= a-binary.o >/dev/null 2>&1 --- libknot/libknot_la-consts.lo --- mv -f libknot/.deps/libknot_la-consts.Tpo libknot/.deps/libknot_la-consts.P= lo --- libknot/libknot_la-errcode.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-errcode.lo -MD -MP -MF libknot/.deps/libknot_la-errcode.Tpo= -c -o libknot/libknot_la-errcode.lo `test -f 'libknot/errcode.c' || echo '= =2E/'`libknot/errcode.c --- libknot/libknot_la-descriptor.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-descriptor.lo -MD -MP -= MF libknot/.deps/libknot_la-descriptor.Tpo -c libknot/descriptor.c -o libkn= ot/libknot_la-descriptor.o >/dev/null 2>&1 --- libknot/libknot_la-binary.lo --- mv -f libknot/.deps/libknot_la-binary.Tpo libknot/.deps/libknot_la-binary.P= lo --- libknot/packet/libknot_la-compr.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/packet/libknot_la-compr.lo -MD -MP -MF libknot/packet/.deps/libknot_la= -compr.Tpo -c -o libknot/packet/libknot_la-compr.lo `test -f 'libknot/packe= t/compr.c' || echo './'`libknot/packet/compr.c --- libknot/libknot_la-errcode.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-errcode.lo -MD -MP -MF = libknot/.deps/libknot_la-errcode.Tpo -c libknot/errcode.c -fPIC -DPIC -o l= ibknot/.libs/libknot_la-errcode.o --- libknot/packet/libknot_la-compr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/packet/libknot_la-compr.lo -MD -MP= -MF libknot/packet/.deps/libknot_la-compr.Tpo -c libknot/packet/compr.c -= fPIC -DPIC -o libknot/packet/.libs/libknot_la-compr.o --- libknot/libknot_la-errcode.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-errcode.lo -MD -MP -MF = libknot/.deps/libknot_la-errcode.Tpo -c libknot/errcode.c -o libknot/libkno= t_la-errcode.o >/dev/null 2>&1 --- libknot/libknot_la-descriptor.lo --- mv -f libknot/.deps/libknot_la-descriptor.Tpo libknot/.deps/libknot_la-desc= riptor.Plo --- libknot/packet/libknot_la-pkt.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/packet/libknot_la-pkt.lo -MD -MP -MF libknot/packet/.deps/libknot_la-p= kt.Tpo -c -o libknot/packet/libknot_la-pkt.lo `test -f 'libknot/packet/pkt.= c' || echo './'`libknot/packet/pkt.c --- libknot/libknot_la-errcode.lo --- mv -f libknot/.deps/libknot_la-errcode.Tpo libknot/.deps/libknot_la-errcode= =2EPlo --- libknot/packet/libknot_la-rrset-wire.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/packet/libknot_la-rrset-wire.lo -MD -MP -MF libknot/packet/.deps/libkn= ot_la-rrset-wire.Tpo -c -o libknot/packet/libknot_la-rrset-wire.lo `test -f= 'libknot/packet/rrset-wire.c' || echo './'`libknot/packet/rrset-wire.c --- libknot/packet/libknot_la-pkt.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/packet/libknot_la-pkt.lo -MD -MP -= MF libknot/packet/.deps/libknot_la-pkt.Tpo -c libknot/packet/pkt.c -fPIC -= DPIC -o libknot/packet/.libs/libknot_la-pkt.o --- libknot/packet/libknot_la-compr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/packet/libknot_la-compr.lo -MD -MP= -MF libknot/packet/.deps/libknot_la-compr.Tpo -c libknot/packet/compr.c -o= libknot/packet/libknot_la-compr.o >/dev/null 2>&1 --- libknot/packet/libknot_la-rrset-wire.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/packet/libknot_la-rrset-wire.lo -M= D -MP -MF libknot/packet/.deps/libknot_la-rrset-wire.Tpo -c libknot/packet/= rrset-wire.c -fPIC -DPIC -o libknot/packet/.libs/libknot_la-rrset-wire.o --- libknot/libknot_la-dname.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-dname.lo -MD -MP -MF li= bknot/.deps/libknot_la-dname.Tpo -c libknot/dname.c -o libknot/libknot_la-d= name.o >/dev/null 2>&1 --- libknot/packet/libknot_la-compr.lo --- mv -f libknot/packet/.deps/libknot_la-compr.Tpo libknot/packet/.deps/libkno= t_la-compr.Plo --- libknot/libknot_la-rdata.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-rdata.lo -MD -MP -MF libknot/.deps/libknot_la-rdata.Tpo -c = -o libknot/libknot_la-rdata.lo `test -f 'libknot/rdata.c' || echo './'`libk= not/rdata.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rdata.lo -MD -MP -MF li= bknot/.deps/libknot_la-rdata.Tpo -c libknot/rdata.c -fPIC -DPIC -o libknot= /.libs/libknot_la-rdata.o libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rdata.lo -MD -MP -MF li= bknot/.deps/libknot_la-rdata.Tpo -c libknot/rdata.c -o libknot/libknot_la-r= data.o >/dev/null 2>&1 --- libknot/packet/libknot_la-rrset-wire.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/packet/libknot_la-rrset-wire.lo -M= D -MP -MF libknot/packet/.deps/libknot_la-rrset-wire.Tpo -c libknot/packet/= rrset-wire.c -o libknot/packet/libknot_la-rrset-wire.o >/dev/null 2>&1 --- libknot/libknot_la-rdata.lo --- mv -f libknot/.deps/libknot_la-rdata.Tpo libknot/.deps/libknot_la-rdata.Plo --- libknot/packet/libknot_la-pkt.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/packet/libknot_la-pkt.lo -MD -MP -= MF libknot/packet/.deps/libknot_la-pkt.Tpo -c libknot/packet/pkt.c -o libkn= ot/packet/libknot_la-pkt.o >/dev/null 2>&1 --- libknot/libknot_la-rdataset.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-rdataset.lo -MD -MP -MF libknot/.deps/libknot_la-rdataset.T= po -c -o libknot/libknot_la-rdataset.lo `test -f 'libknot/rdataset.c' || ec= ho './'`libknot/rdataset.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rdataset.lo -MD -MP -MF= libknot/.deps/libknot_la-rdataset.Tpo -c libknot/rdataset.c -fPIC -DPIC -= o libknot/.libs/libknot_la-rdataset.o --- libknot/libknot_la-dname.lo --- mv -f libknot/.deps/libknot_la-dname.Tpo libknot/.deps/libknot_la-dname.Plo --- libknot/libknot_la-rrset-dump.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-rrset-dump.lo -MD -MP -MF libknot/.deps/libknot_la-rrset-du= mp.Tpo -c -o libknot/libknot_la-rrset-dump.lo `test -f 'libknot/rrset-dump.= c' || echo './'`libknot/rrset-dump.c --- libknot/packet/libknot_la-rrset-wire.lo --- mv -f libknot/packet/.deps/libknot_la-rrset-wire.Tpo libknot/packet/.deps/l= ibknot_la-rrset-wire.Plo --- libknot/libknot_la-rrset.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-rrset.lo -MD -MP -MF libknot/.deps/libknot_la-rrset.Tpo -c = -o libknot/libknot_la-rrset.lo `test -f 'libknot/rrset.c' || echo './'`libk= not/rrset.c --- libknot/libknot_la-rrset-dump.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rrset-dump.lo -MD -MP -= MF libknot/.deps/libknot_la-rrset-dump.Tpo -c libknot/rrset-dump.c -fPIC -= DPIC -o libknot/.libs/libknot_la-rrset-dump.o --- libknot/libknot_la-rrset.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rrset.lo -MD -MP -MF li= bknot/.deps/libknot_la-rrset.Tpo -c libknot/rrset.c -fPIC -DPIC -o libknot= /.libs/libknot_la-rrset.o --- libknot/libknot_la-rdataset.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rdataset.lo -MD -MP -MF= libknot/.deps/libknot_la-rdataset.Tpo -c libknot/rdataset.c -o libknot/lib= knot_la-rdataset.o >/dev/null 2>&1 --- libknot/packet/libknot_la-pkt.lo --- mv -f libknot/packet/.deps/libknot_la-pkt.Tpo libknot/packet/.deps/libknot_= la-pkt.Plo --- libknot/processing/libknot_la-layer.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/processing/libknot_la-layer.lo -MD -MP -MF libknot/processing/.deps/li= bknot_la-layer.Tpo -c -o libknot/processing/libknot_la-layer.lo `test -f 'l= ibknot/processing/layer.c' || echo './'`libknot/processing/layer.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/processing/libknot_la-layer.lo -MD= -MP -MF libknot/processing/.deps/libknot_la-layer.Tpo -c libknot/processin= g/layer.c -fPIC -DPIC -o libknot/processing/.libs/libknot_la-layer.o --- libknot/libknot_la-rrset.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rrset.lo -MD -MP -MF li= bknot/.deps/libknot_la-rrset.Tpo -c libknot/rrset.c -o libknot/libknot_la-r= rset.o >/dev/null 2>&1 --- libknot/processing/libknot_la-layer.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/processing/libknot_la-layer.lo -MD= -MP -MF libknot/processing/.deps/libknot_la-layer.Tpo -c libknot/processin= g/layer.c -o libknot/processing/libknot_la-layer.o >/dev/null 2>&1 --- libknot/libknot_la-rrset.lo --- mv -f libknot/.deps/libknot_la-rrset.Tpo libknot/.deps/libknot_la-rrset.Plo --- libknot/processing/libknot_la-overlay.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/processing/libknot_la-overlay.lo -MD -MP -MF libknot/processing/.deps/= libknot_la-overlay.Tpo -c -o libknot/processing/libknot_la-overlay.lo `test= -f 'libknot/processing/overlay.c' || echo './'`libknot/processing/overlay.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/processing/libknot_la-overlay.lo -= MD -MP -MF libknot/processing/.deps/libknot_la-overlay.Tpo -c libknot/proce= ssing/overlay.c -fPIC -DPIC -o libknot/processing/.libs/libknot_la-overlay= =2Eo --- libknot/processing/libknot_la-layer.lo --- mv -f libknot/processing/.deps/libknot_la-layer.Tpo libknot/processing/.dep= s/libknot_la-layer.Plo --- libknot/processing/libknot_la-requestor.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/processing/libknot_la-requestor.lo -MD -MP -MF libknot/processing/.dep= s/libknot_la-requestor.Tpo -c -o libknot/processing/libknot_la-requestor.lo= `test -f 'libknot/processing/requestor.c' || echo './'`libknot/processing/= requestor.c --- libknot/libknot_la-rdataset.lo --- mv -f libknot/.deps/libknot_la-rdataset.Tpo libknot/.deps/libknot_la-rdatas= et.Plo --- libknot/libknot_la-tsig-op.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-tsig-op.lo -MD -MP -MF libknot/.deps/libknot_la-tsig-op.Tpo= -c -o libknot/libknot_la-tsig-op.lo `test -f 'libknot/tsig-op.c' || echo '= =2E/'`libknot/tsig-op.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-tsig-op.lo -MD -MP -MF = libknot/.deps/libknot_la-tsig-op.Tpo -c libknot/tsig-op.c -fPIC -DPIC -o l= ibknot/.libs/libknot_la-tsig-op.o --- libknot/processing/libknot_la-overlay.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/processing/libknot_la-overlay.lo -= MD -MP -MF libknot/processing/.deps/libknot_la-overlay.Tpo -c libknot/proce= ssing/overlay.c -o libknot/processing/libknot_la-overlay.o >/dev/null 2>&1 --- libknot/processing/libknot_la-requestor.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/processing/libknot_la-requestor.lo= -MD -MP -MF libknot/processing/.deps/libknot_la-requestor.Tpo -c libknot/p= rocessing/requestor.c -fPIC -DPIC -o libknot/processing/.libs/libknot_la-r= equestor.o --- libknot/processing/libknot_la-overlay.lo --- mv -f libknot/processing/.deps/libknot_la-overlay.Tpo libknot/processing/.d= eps/libknot_la-overlay.Plo --- libknot/libknot_la-tsig.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/libknot_la-tsig.lo -MD -MP -MF libknot/.deps/libknot_la-tsig.Tpo -c -o= libknot/libknot_la-tsig.lo `test -f 'libknot/tsig.c' || echo './'`libknot/= tsig.c --- libknot/libknot_la-tsig-op.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-tsig-op.lo -MD -MP -MF = libknot/.deps/libknot_la-tsig-op.Tpo -c libknot/tsig-op.c -o libknot/libkno= t_la-tsig-op.o >/dev/null 2>&1 --- libknot/processing/libknot_la-requestor.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/processing/libknot_la-requestor.lo= -MD -MP -MF libknot/processing/.deps/libknot_la-requestor.Tpo -c libknot/p= rocessing/requestor.c -o libknot/processing/libknot_la-requestor.o >/dev/nu= ll 2>&1 --- libknot/libknot_la-tsig.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-tsig.lo -MD -MP -MF lib= knot/.deps/libknot_la-tsig.Tpo -c libknot/tsig.c -fPIC -DPIC -o libknot/.l= ibs/libknot_la-tsig.o libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-tsig.lo -MD -MP -MF lib= knot/.deps/libknot_la-tsig.Tpo -c libknot/tsig.c -o libknot/libknot_la-tsig= =2Eo >/dev/null 2>&1 --- libknot/processing/libknot_la-requestor.lo --- mv -f libknot/processing/.deps/libknot_la-requestor.Tpo libknot/processing/= =2Edeps/libknot_la-requestor.Plo --- libknot/rrtype/libknot_la-nsec3.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/rrtype/libknot_la-nsec3.lo -MD -MP -MF libknot/rrtype/.deps/libknot_la= -nsec3.Tpo -c -o libknot/rrtype/libknot_la-nsec3.lo `test -f 'libknot/rrtyp= e/nsec3.c' || echo './'`libknot/rrtype/nsec3.c --- libknot/libknot_la-tsig.lo --- mv -f libknot/.deps/libknot_la-tsig.Tpo libknot/.deps/libknot_la-tsig.Plo --- libknot/rrtype/libknot_la-nsec3param.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/rrtype/libknot_la-nsec3param.lo -MD -MP -MF libknot/rrtype/.deps/libkn= ot_la-nsec3param.Tpo -c -o libknot/rrtype/libknot_la-nsec3param.lo `test -f= 'libknot/rrtype/nsec3param.c' || echo './'`libknot/rrtype/nsec3param.c --- libknot/rrtype/libknot_la-nsec3.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3.lo -MD -MP= -MF libknot/rrtype/.deps/libknot_la-nsec3.Tpo -c libknot/rrtype/nsec3.c -= fPIC -DPIC -o libknot/rrtype/.libs/libknot_la-nsec3.o --- libknot/libknot_la-tsig-op.lo --- mv -f libknot/.deps/libknot_la-tsig-op.Tpo libknot/.deps/libknot_la-tsig-op= =2EPlo --- libknot/rrtype/libknot_la-nsec3param.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3param.lo -M= D -MP -MF libknot/rrtype/.deps/libknot_la-nsec3param.Tpo -c libknot/rrtype/= nsec3param.c -fPIC -DPIC -o libknot/rrtype/.libs/libknot_la-nsec3param.o --- libknot/rrtype/libknot_la-opt.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/rrtype/libknot_la-opt.lo -MD -MP -MF libknot/rrtype/.deps/libknot_la-o= pt.Tpo -c -o libknot/rrtype/libknot_la-opt.lo `test -f 'libknot/rrtype/opt.= c' || echo './'`libknot/rrtype/opt.c --- libknot/rrtype/libknot_la-nsec3param.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3param.lo -M= D -MP -MF libknot/rrtype/.deps/libknot_la-nsec3param.Tpo -c libknot/rrtype/= nsec3param.c -o libknot/rrtype/libknot_la-nsec3param.o >/dev/null 2>&1 --- libknot/rrtype/libknot_la-nsec3.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3.lo -MD -MP= -MF libknot/rrtype/.deps/libknot_la-nsec3.Tpo -c libknot/rrtype/nsec3.c -o= libknot/rrtype/libknot_la-nsec3.o >/dev/null 2>&1 --- libknot/rrtype/libknot_la-opt.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-opt.lo -MD -MP -= MF libknot/rrtype/.deps/libknot_la-opt.Tpo -c libknot/rrtype/opt.c -fPIC -= DPIC -o libknot/rrtype/.libs/libknot_la-opt.o --- libknot/rrtype/libknot_la-nsec3.lo --- mv -f libknot/rrtype/.deps/libknot_la-nsec3.Tpo libknot/rrtype/.deps/libkno= t_la-nsec3.Plo --- libknot/rrtype/libknot_la-tsig.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -fv= isibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT lib= knot/rrtype/libknot_la-tsig.lo -MD -MP -MF libknot/rrtype/.deps/libknot_la-= tsig.Tpo -c -o libknot/rrtype/libknot_la-tsig.lo `test -f 'libknot/rrtype/t= sig.c' || echo './'`libknot/rrtype/tsig.c --- libknot/rrtype/libknot_la-nsec3param.lo --- mv -f libknot/rrtype/.deps/libknot_la-nsec3param.Tpo libknot/rrtype/.deps/l= ibknot_la-nsec3param.Plo --- libknot/internal/libknot_internal_la-base32hex.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-base32hex.lo -MD -MP -MF libknot/internal/.deps/libknot_inter= nal_la-base32hex.Tpo -c -o libknot/internal/libknot_internal_la-base32hex.l= o `test -f 'libknot/internal/base32hex.c' || echo './'`libknot/internal/bas= e32hex.c --- libknot/rrtype/libknot_la-tsig.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-tsig.lo -MD -MP = -MF libknot/rrtype/.deps/libknot_la-tsig.Tpo -c libknot/rrtype/tsig.c -fPI= C -DPIC -o libknot/rrtype/.libs/libknot_la-tsig.o --- libknot/internal/libknot_internal_la-base32hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-base32hex.lo -MD -MP -MF li= bknot/internal/.deps/libknot_internal_la-base32hex.Tpo -c libknot/internal/= base32hex.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-base= 32hex.o --- libknot/rrtype/libknot_la-opt.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-opt.lo -MD -MP -= MF libknot/rrtype/.deps/libknot_la-opt.Tpo -c libknot/rrtype/opt.c -o libkn= ot/rrtype/libknot_la-opt.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-base32hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-base32hex.lo -MD -MP -MF li= bknot/internal/.deps/libknot_internal_la-base32hex.Tpo -c libknot/internal/= base32hex.c -o libknot/internal/libknot_internal_la-base32hex.o >/dev/null = 2>&1 --- libknot/rrtype/libknot_la-tsig.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-tsig.lo -MD -MP = -MF libknot/rrtype/.deps/libknot_la-tsig.Tpo -c libknot/rrtype/tsig.c -o li= bknot/rrtype/libknot_la-tsig.o >/dev/null 2>&1 --- libknot/rrtype/libknot_la-opt.lo --- mv -f libknot/rrtype/.deps/libknot_la-opt.Tpo libknot/rrtype/.deps/libknot_= la-opt.Plo --- libknot/internal/libknot_internal_la-base64.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-base64.lo -MD -MP -MF libknot/internal/.deps/libknot_internal= _la-base64.Tpo -c -o libknot/internal/libknot_internal_la-base64.lo `test -= f 'libknot/internal/base64.c' || echo './'`libknot/internal/base64.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-base64.lo -MD -MP -MF libkn= ot/internal/.deps/libknot_internal_la-base64.Tpo -c libknot/internal/base64= =2Ec -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-base64.o --- libknot/internal/libknot_internal_la-base32hex.lo --- mv -f libknot/internal/.deps/libknot_internal_la-base32hex.Tpo libknot/inte= rnal/.deps/libknot_internal_la-base32hex.Plo --- libknot/internal/libknot_internal_la-errcode.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-errcode.lo -MD -MP -MF libknot/internal/.deps/libknot_interna= l_la-errcode.Tpo -c -o libknot/internal/libknot_internal_la-errcode.lo `tes= t -f 'libknot/internal/errcode.c' || echo './'`libknot/internal/errcode.c --- libknot/rrtype/libknot_la-tsig.lo --- mv -f libknot/rrtype/.deps/libknot_la-tsig.Tpo libknot/rrtype/.deps/libknot= _la-tsig.Plo --- libknot/internal/libknot_internal_la-getline.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-getline.lo -MD -MP -MF libknot/internal/.deps/libknot_interna= l_la-getline.Tpo -c -o libknot/internal/libknot_internal_la-getline.lo `tes= t -f 'libknot/internal/getline.c' || echo './'`libknot/internal/getline.c --- libknot/internal/libknot_internal_la-errcode.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-errcode.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-errcode.Tpo -c libknot/internal/errc= ode.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-errcode.o --- libknot/internal/libknot_internal_la-getline.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-getline.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-getline.Tpo -c libknot/internal/getl= ine.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-getline.o --- libknot/internal/libknot_internal_la-base64.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-base64.lo -MD -MP -MF libkn= ot/internal/.deps/libknot_internal_la-base64.Tpo -c libknot/internal/base64= =2Ec -o libknot/internal/libknot_internal_la-base64.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-errcode.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-errcode.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-errcode.Tpo -c libknot/internal/errc= ode.c -o libknot/internal/libknot_internal_la-errcode.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-getline.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-getline.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-getline.Tpo -c libknot/internal/getl= ine.c -o libknot/internal/libknot_internal_la-getline.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-errcode.lo --- mv -f libknot/internal/.deps/libknot_internal_la-errcode.Tpo libknot/intern= al/.deps/libknot_internal_la-errcode.Plo --- libknot/internal/libknot_internal_la-heap.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-heap.lo -MD -MP -MF libknot/internal/.deps/libknot_internal_l= a-heap.Tpo -c -o libknot/internal/libknot_internal_la-heap.lo `test -f 'lib= knot/internal/heap.c' || echo './'`libknot/internal/heap.c --- libknot/internal/libknot_internal_la-base64.lo --- mv -f libknot/internal/.deps/libknot_internal_la-base64.Tpo libknot/interna= l/.deps/libknot_internal_la-base64.Plo --- libknot/internal/libknot_internal_la-hhash.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-hhash.lo -MD -MP -MF libknot/internal/.deps/libknot_internal_= la-hhash.Tpo -c -o libknot/internal/libknot_internal_la-hhash.lo `test -f '= libknot/internal/hhash.c' || echo './'`libknot/internal/hhash.c --- libknot/internal/libknot_internal_la-heap.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-heap.lo -MD -MP -MF libknot= /internal/.deps/libknot_internal_la-heap.Tpo -c libknot/internal/heap.c -f= PIC -DPIC -o libknot/internal/.libs/libknot_internal_la-heap.o --- libknot/internal/libknot_internal_la-getline.lo --- mv -f libknot/internal/.deps/libknot_internal_la-getline.Tpo libknot/intern= al/.deps/libknot_internal_la-getline.Plo --- libknot/internal/libknot_internal_la-lists.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-lists.lo -MD -MP -MF libknot/internal/.deps/libknot_internal_= la-lists.Tpo -c -o libknot/internal/libknot_internal_la-lists.lo `test -f '= libknot/internal/lists.c' || echo './'`libknot/internal/lists.c --- libknot/internal/libknot_internal_la-hhash.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-hhash.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-hhash.Tpo -c libknot/internal/hhash.c = -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-hhash.o --- libknot/internal/libknot_internal_la-lists.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-lists.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-lists.Tpo -c libknot/internal/lists.c = -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-lists.o --- libknot/internal/libknot_internal_la-heap.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-heap.lo -MD -MP -MF libknot= /internal/.deps/libknot_internal_la-heap.Tpo -c libknot/internal/heap.c -o = libknot/internal/libknot_internal_la-heap.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-lists.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-lists.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-lists.Tpo -c libknot/internal/lists.c = -o libknot/internal/libknot_internal_la-lists.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-heap.lo --- mv -f libknot/internal/.deps/libknot_internal_la-heap.Tpo libknot/internal/= =2Edeps/libknot_internal_la-heap.Plo --- libknot/internal/libknot_internal_la-mem.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-mem.lo -MD -MP -MF libknot/internal/.deps/libknot_internal_la= -mem.Tpo -c -o libknot/internal/libknot_internal_la-mem.lo `test -f 'libkno= t/internal/mem.c' || echo './'`libknot/internal/mem.c --- libknot/internal/libknot_internal_la-lists.lo --- mv -f libknot/internal/.deps/libknot_internal_la-lists.Tpo libknot/internal= /.deps/libknot_internal_la-lists.Plo --- libknot/internal/libknot_internal_la-mempattern.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-mempattern.lo -MD -MP -MF libknot/internal/.deps/libknot_inte= rnal_la-mempattern.Tpo -c -o libknot/internal/libknot_internal_la-mempatter= n.lo `test -f 'libknot/internal/mempattern.c' || echo './'`libknot/internal= /mempattern.c --- libknot/internal/libknot_internal_la-mem.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-mem.lo -MD -MP -MF libknot/= internal/.deps/libknot_internal_la-mem.Tpo -c libknot/internal/mem.c -fPIC= -DPIC -o libknot/internal/.libs/libknot_internal_la-mem.o --- libknot/internal/libknot_internal_la-mempattern.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-mempattern.lo -MD -MP -MF l= ibknot/internal/.deps/libknot_internal_la-mempattern.Tpo -c libknot/interna= l/mempattern.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-m= empattern.o libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-mempattern.lo -MD -MP -MF l= ibknot/internal/.deps/libknot_internal_la-mempattern.Tpo -c libknot/interna= l/mempattern.c -o libknot/internal/libknot_internal_la-mempattern.o >/dev/n= ull 2>&1 --- libknot/internal/libknot_internal_la-mem.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-mem.lo -MD -MP -MF libknot/= internal/.deps/libknot_internal_la-mem.Tpo -c libknot/internal/mem.c -o lib= knot/internal/libknot_internal_la-mem.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-mempattern.lo --- mv -f libknot/internal/.deps/libknot_internal_la-mempattern.Tpo libknot/int= ernal/.deps/libknot_internal_la-mempattern.Plo --- libknot/internal/libknot_internal_la-mempool.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-mempool.lo -MD -MP -MF libknot/internal/.deps/libknot_interna= l_la-mempool.Tpo -c -o libknot/internal/libknot_internal_la-mempool.lo `tes= t -f 'libknot/internal/mempool.c' || echo './'`libknot/internal/mempool.c --- libknot/internal/libknot_internal_la-hhash.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-hhash.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-hhash.Tpo -c libknot/internal/hhash.c = -o libknot/internal/libknot_internal_la-hhash.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-mem.lo --- mv -f libknot/internal/.deps/libknot_internal_la-mem.Tpo libknot/internal/.= deps/libknot_internal_la-mem.Plo --- libknot/internal/libknot_internal_la-mempool.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-mempool.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-mempool.Tpo -c libknot/internal/memp= ool.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-mempool.o --- libknot/internal/libknot_internal_la-net.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-net.lo -MD -MP -MF libknot/internal/.deps/libknot_internal_la= -net.Tpo -c -o libknot/internal/libknot_internal_la-net.lo `test -f 'libkno= t/internal/net.c' || echo './'`libknot/internal/net.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-net.lo -MD -MP -MF libknot/= internal/.deps/libknot_internal_la-net.Tpo -c libknot/internal/net.c -fPIC= -DPIC -o libknot/internal/.libs/libknot_internal_la-net.o --- libknot/internal/libknot_internal_la-mempool.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-mempool.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-mempool.Tpo -c libknot/internal/memp= ool.c -o libknot/internal/libknot_internal_la-mempool.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-net.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-net.lo -MD -MP -MF libknot/= internal/.deps/libknot_internal_la-net.Tpo -c libknot/internal/net.c -o lib= knot/internal/libknot_internal_la-net.o >/dev/null 2>&1 --- libknot/libknot_la-rrset-dump.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr/local/incl= ude -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat= -security -Werror=3Dimplicit -MT libknot/libknot_la-rrset-dump.lo -MD -MP -= MF libknot/.deps/libknot_la-rrset-dump.Tpo -c libknot/rrset-dump.c -o libkn= ot/libknot_la-rrset-dump.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-hhash.lo --- mv -f libknot/internal/.deps/libknot_internal_la-hhash.Tpo libknot/internal= /.deps/libknot_internal_la-hhash.Plo --- libknot/internal/libknot_internal_la-print.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-print.lo -MD -MP -MF libknot/internal/.deps/libknot_internal_= la-print.Tpo -c -o libknot/internal/libknot_internal_la-print.lo `test -f '= libknot/internal/print.c' || echo './'`libknot/internal/print.c --- libknot/internal/libknot_internal_la-net.lo --- mv -f libknot/internal/.deps/libknot_internal_la-net.Tpo libknot/internal/.= deps/libknot_internal_la-net.Plo --- libknot/internal/libknot_internal_la-sockaddr.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-sockaddr.lo -MD -MP -MF libknot/internal/.deps/libknot_intern= al_la-sockaddr.Tpo -c -o libknot/internal/libknot_internal_la-sockaddr.lo `= test -f 'libknot/internal/sockaddr.c' || echo './'`libknot/internal/sockadd= r.c --- libknot/internal/libknot_internal_la-print.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-print.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-print.Tpo -c libknot/internal/print.c = -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-print.o --- libknot/internal/libknot_internal_la-mempool.lo --- mv -f libknot/internal/.deps/libknot_internal_la-mempool.Tpo libknot/intern= al/.deps/libknot_internal_la-mempool.Plo --- libknot/internal/libknot_internal_la-strlcat.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-strlcat.lo -MD -MP -MF libknot/internal/.deps/libknot_interna= l_la-strlcat.Tpo -c -o libknot/internal/libknot_internal_la-strlcat.lo `tes= t -f 'libknot/internal/strlcat.c' || echo './'`libknot/internal/strlcat.c --- libknot/internal/libknot_internal_la-sockaddr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-sockaddr.lo -MD -MP -MF lib= knot/internal/.deps/libknot_internal_la-sockaddr.Tpo -c libknot/internal/so= ckaddr.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-sockadd= r.o --- libknot/internal/libknot_internal_la-strlcat.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-strlcat.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-strlcat.Tpo -c libknot/internal/strl= cat.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-strlcat.o --- libknot/internal/libknot_internal_la-print.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-print.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-print.Tpo -c libknot/internal/print.c = -o libknot/internal/libknot_internal_la-print.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-strlcat.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-strlcat.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-strlcat.Tpo -c libknot/internal/strl= cat.c -o libknot/internal/libknot_internal_la-strlcat.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-sockaddr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-sockaddr.lo -MD -MP -MF lib= knot/internal/.deps/libknot_internal_la-sockaddr.Tpo -c libknot/internal/so= ckaddr.c -o libknot/internal/libknot_internal_la-sockaddr.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-print.lo --- mv -f libknot/internal/.deps/libknot_internal_la-print.Tpo libknot/internal= /.deps/libknot_internal_la-print.Plo --- libknot/internal/libknot_internal_la-strlcat.lo --- mv -f libknot/internal/.deps/libknot_internal_la-strlcat.Tpo libknot/intern= al/.deps/libknot_internal_la-strlcat.Plo --- libknot/internal/libknot_internal_la-strlcpy.lo --- --- libknot/internal/libknot_internal_la-tolower.lo --- --- libknot/internal/libknot_internal_la-strlcpy.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-strlcpy.lo -MD -MP -MF libknot/internal/.deps/libknot_interna= l_la-strlcpy.Tpo -c -o libknot/internal/libknot_internal_la-strlcpy.lo `tes= t -f 'libknot/internal/strlcpy.c' || echo './'`libknot/internal/strlcpy.c --- libknot/internal/libknot_internal_la-tolower.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-tolower.lo -MD -MP -MF libknot/internal/.deps/libknot_interna= l_la-tolower.Tpo -c -o libknot/internal/libknot_internal_la-tolower.lo `tes= t -f 'libknot/internal/tolower.c' || echo './'`libknot/internal/tolower.c --- libknot/internal/libknot_internal_la-strlcpy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-strlcpy.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-strlcpy.Tpo -c libknot/internal/strl= cpy.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-strlcpy.o --- libknot/internal/libknot_internal_la-tolower.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-tolower.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-tolower.Tpo -c libknot/internal/tolo= wer.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-tolower.o --- libknot/internal/libknot_internal_la-strlcpy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-strlcpy.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-strlcpy.Tpo -c libknot/internal/strl= cpy.c -o libknot/internal/libknot_internal_la-strlcpy.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-tolower.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-tolower.lo -MD -MP -MF libk= not/internal/.deps/libknot_internal_la-tolower.Tpo -c libknot/internal/tolo= wer.c -o libknot/internal/libknot_internal_la-tolower.o >/dev/null 2>&1 --- libknot/internal/libknot_internal_la-sockaddr.lo --- mv -f libknot/internal/.deps/libknot_internal_la-sockaddr.Tpo libknot/inter= nal/.deps/libknot_internal_la-sockaddr.Plo --- libknot/internal/libknot_internal_la-utils.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/libkno= t_internal_la-utils.lo -MD -MP -MF libknot/internal/.deps/libknot_internal_= la-utils.Tpo -c -o libknot/internal/libknot_internal_la-utils.lo `test -f '= libknot/internal/utils.c' || echo './'`libknot/internal/utils.c --- libknot/internal/libknot_internal_la-strlcpy.lo --- mv -f libknot/internal/.deps/libknot_internal_la-strlcpy.Tpo libknot/intern= al/.deps/libknot_internal_la-strlcpy.Plo --- libknot/internal/namedb/libknot_internal_la-namedb_lmdb.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/namedb= /libknot_internal_la-namedb_lmdb.lo -MD -MP -MF libknot/internal/namedb/.de= ps/libknot_internal_la-namedb_lmdb.Tpo -c -o libknot/internal/namedb/libkno= t_internal_la-namedb_lmdb.lo `test -f 'libknot/internal/namedb/namedb_lmdb.= c' || echo './'`libknot/internal/namedb/namedb_lmdb.c --- libknot/internal/libknot_internal_la-tolower.lo --- mv -f libknot/internal/.deps/libknot_internal_la-tolower.Tpo libknot/intern= al/.deps/libknot_internal_la-tolower.Plo --- libknot/internal/namedb/libknot_internal_la-namedb_trie.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/namedb= /libknot_internal_la-namedb_trie.lo -MD -MP -MF libknot/internal/namedb/.de= ps/libknot_internal_la-namedb_trie.Tpo -c -o libknot/internal/namedb/libkno= t_internal_la-namedb_trie.lo `test -f 'libknot/internal/namedb/namedb_trie.= c' || echo './'`libknot/internal/namedb/namedb_trie.c --- libknot/internal/libknot_internal_la-utils.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-utils.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-utils.Tpo -c libknot/internal/utils.c = -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-utils.o --- libknot/internal/namedb/libknot_internal_la-namedb_lmdb.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/namedb/libknot_internal_la-namedb_lmdb.lo -MD -= MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_lmdb.Tpo -c= libknot/internal/namedb/namedb_lmdb.c -fPIC -DPIC -o libknot/internal/nam= edb/.libs/libknot_internal_la-namedb_lmdb.o --- libknot/internal/namedb/libknot_internal_la-namedb_trie.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/namedb/libknot_internal_la-namedb_trie.lo -MD -= MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_trie.Tpo -c= libknot/internal/namedb/namedb_trie.c -fPIC -DPIC -o libknot/internal/nam= edb/.libs/libknot_internal_la-namedb_trie.o --- libknot/internal/libknot_internal_la-utils.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/libknot_internal_la-utils.lo -MD -MP -MF libkno= t/internal/.deps/libknot_internal_la-utils.Tpo -c libknot/internal/utils.c = -o libknot/internal/libknot_internal_la-utils.o >/dev/null 2>&1 --- libknot/internal/namedb/libknot_internal_la-namedb_trie.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/namedb/libknot_internal_la-namedb_trie.lo -MD -= MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_trie.Tpo -c= libknot/internal/namedb/namedb_trie.c -o libknot/internal/namedb/libknot_i= nternal_la-namedb_trie.o >/dev/null 2>&1 mv -f libknot/internal/namedb/.deps/libknot_internal_la-namedb_trie.Tpo lib= knot/internal/namedb/.deps/libknot_internal_la-namedb_trie.Plo --- libknot/internal/trie/libknot_internal_la-hat-trie.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/trie/l= ibknot_internal_la-hat-trie.lo -MD -MP -MF libknot/internal/trie/.deps/libk= not_internal_la-hat-trie.Tpo -c -o libknot/internal/trie/libknot_internal_l= a-hat-trie.lo `test -f 'libknot/internal/trie/hat-trie.c' || echo './'`libk= not/internal/trie/hat-trie.c --- libknot/internal/libknot_internal_la-utils.lo --- mv -f libknot/internal/.deps/libknot_internal_la-utils.Tpo libknot/internal= /.deps/libknot_internal_la-utils.Plo --- libknot/internal/trie/libknot_internal_la-murmurhash3.lo --- --- libknot/internal/namedb/libknot_internal_la-namedb_lmdb.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/namedb/libknot_internal_la-namedb_lmdb.lo -MD -= MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_lmdb.Tpo -c= libknot/internal/namedb/namedb_lmdb.c -o libknot/internal/namedb/libknot_i= nternal_la-namedb_lmdb.o >/dev/null 2>&1 --- libknot/internal/trie/libknot_internal_la-murmurhash3.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -I/= usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wa= ll -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/internal/trie/l= ibknot_internal_la-murmurhash3.lo -MD -MP -MF libknot/internal/trie/.deps/l= ibknot_internal_la-murmurhash3.Tpo -c -o libknot/internal/trie/libknot_inte= rnal_la-murmurhash3.lo `test -f 'libknot/internal/trie/murmurhash3.c' || ec= ho './'`libknot/internal/trie/murmurhash3.c --- libknot/internal/trie/libknot_internal_la-hat-trie.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/trie/libknot_internal_la-hat-trie.lo -MD -MP -M= F libknot/internal/trie/.deps/libknot_internal_la-hat-trie.Tpo -c libknot/i= nternal/trie/hat-trie.c -fPIC -DPIC -o libknot/internal/trie/.libs/libknot= _internal_la-hat-trie.o --- libknot/internal/trie/libknot_internal_la-murmurhash3.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/trie/libknot_internal_la-murmurhash3.lo -MD -MP= -MF libknot/internal/trie/.deps/libknot_internal_la-murmurhash3.Tpo -c lib= knot/internal/trie/murmurhash3.c -fPIC -DPIC -o libknot/internal/trie/.lib= s/libknot_internal_la-murmurhash3.o libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/trie/libknot_internal_la-murmurhash3.lo -MD -MP= -MF libknot/internal/trie/.deps/libknot_internal_la-murmurhash3.Tpo -c lib= knot/internal/trie/murmurhash3.c -o libknot/internal/trie/libknot_internal_= la-murmurhash3.o >/dev/null 2>&1 --- libknot/internal/namedb/libknot_internal_la-namedb_lmdb.lo --- mv -f libknot/internal/namedb/.deps/libknot_internal_la-namedb_lmdb.Tpo lib= knot/internal/namedb/.deps/libknot_internal_la-namedb_lmdb.Plo --- libknot/yparser/yparser.lo --- depbase=3D`echo libknot/yparser/yparser.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$= ||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H= -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -= DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec= /lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Df= ormat-security -Werror=3Dimplicit -MT libknot/yparser/yparser.lo -MD -MP -M= F $depbase.Tpo -c -o libknot/yparser/yparser.lo libknot/yparser/yparser.c &= & mv -f $depbase.Tpo $depbase.Plo --- libknot/internal/trie/libknot_internal_la-murmurhash3.lo --- mv -f libknot/internal/trie/.deps/libknot_internal_la-murmurhash3.Tpo libkn= ot/internal/trie/.deps/libknot_internal_la-murmurhash3.Plo --- libknot/yparser/ypbody.lo --- depbase=3D`echo libknot/yparser/ypbody.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$|= |'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H = -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -D= STORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/= lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dfo= rmat-security -Werror=3Dimplicit -MT libknot/yparser/ypbody.lo -MD -MP -MF = $depbase.Tpo -c -o libknot/yparser/ypbody.lo libknot/yparser/ypbody.c && mv= -f $depbase.Tpo $depbase.Plo --- libknot/yparser/yparser.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/yparser.lo -MD -MP -MF libknot/yparser/.deps/yparser.Tpo -c libknot/y= parser/yparser.c -fPIC -DPIC -o libknot/yparser/.libs/yparser.o --- libknot/yparser/ypbody.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/ypbody.lo -MD -MP -MF libknot/yparser/.deps/ypbody.Tpo -c libknot/ypa= rser/ypbody.c -fPIC -DPIC -o libknot/yparser/.libs/ypbody.o --- libknot/yparser/yparser.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/yparser.lo -MD -MP -MF libknot/yparser/.deps/yparser.Tpo -c libknot/y= parser/yparser.c -o libknot/yparser/yparser.o >/dev/null 2>&1 --- libknot/yparser/ypbody.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/ypbody.lo -MD -MP -MF libknot/yparser/.deps/ypbody.Tpo -c libknot/ypa= rser/ypbody.c -o libknot/yparser/ypbody.o >/dev/null 2>&1 --- libknot/yparser/ypformat.lo --- depbase=3D`echo libknot/yparser/ypformat.lo | sed 's|[^/]*$|.deps/&|;s|\.lo= $||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_= H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' = -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnsse= c/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3D= format-security -Werror=3Dimplicit -MT libknot/yparser/ypformat.lo -MD -MP = -MF $depbase.Tpo -c -o libknot/yparser/ypformat.lo libknot/yparser/ypformat= =2Ec && mv -f $depbase.Tpo $depbase.Plo libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/ypformat.lo -MD -MP -MF libknot/yparser/.deps/ypformat.Tpo -c libknot= /yparser/ypformat.c -fPIC -DPIC -o libknot/yparser/.libs/ypformat.o --- libknot/yparser/ypscheme.lo --- depbase=3D`echo libknot/yparser/ypscheme.lo | sed 's|[^/]*$|.deps/&|;s|\.lo= $||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_= H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' = -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnsse= c/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3D= format-security -Werror=3Dimplicit -MT libknot/yparser/ypscheme.lo -MD -MP = -MF $depbase.Tpo -c -o libknot/yparser/ypscheme.lo libknot/yparser/ypscheme= =2Ec && mv -f $depbase.Tpo $depbase.Plo --- libknot/internal/trie/libknot_internal_la-hat-trie.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT libknot/internal/trie/libknot_internal_la-hat-trie.lo -MD -MP -M= F libknot/internal/trie/.deps/libknot_internal_la-hat-trie.Tpo -c libknot/i= nternal/trie/hat-trie.c -o libknot/internal/trie/libknot_internal_la-hat-tr= ie.o >/dev/null 2>&1 --- libknot/yparser/ypscheme.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/ypscheme.lo -MD -MP -MF libknot/yparser/.deps/ypscheme.Tpo -c libknot= /yparser/ypscheme.c -fPIC -DPIC -o libknot/yparser/.libs/ypscheme.o --- libknot/yparser/ypformat.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/ypformat.lo -MD -MP -MF libknot/yparser/.deps/ypformat.Tpo -c libknot= /yparser/ypformat.c -o libknot/yparser/ypformat.o >/dev/null 2>&1 --- libknot/yparser/yptrafo.lo --- depbase=3D`echo libknot/yparser/yptrafo.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$= ||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H= -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -= DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec= /lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Df= ormat-security -Werror=3Dimplicit -MT libknot/yparser/yptrafo.lo -MD -MP -M= F $depbase.Tpo -c -o libknot/yparser/yptrafo.lo libknot/yparser/yptrafo.c &= & mv -f $depbase.Tpo $depbase.Plo libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/yptrafo.lo -MD -MP -MF libknot/yparser/.deps/yptrafo.Tpo -c libknot/y= parser/yptrafo.c -fPIC -DPIC -o libknot/yparser/.libs/yptrafo.o --- libknot/yparser/ypscheme.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/ypscheme.lo -MD -MP -MF libknot/yparser/.deps/ypscheme.Tpo -c libknot= /yparser/ypscheme.c -o libknot/yparser/ypscheme.o >/dev/null 2>&1 --- libknot/internal/trie/libknot_internal_la-hat-trie.lo --- mv -f libknot/internal/trie/.deps/libknot_internal_la-hat-trie.Tpo libknot/= internal/trie/.deps/libknot_internal_la-hat-trie.Plo --- knot/conf/libknotd_la-base.lo --- --- knot/conf/libknotd_la-conf.lo --- --- knot/conf/libknotd_la-base.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf/libknotd_la= -base.lo -MD -MP -MF knot/conf/.deps/libknotd_la-base.Tpo -c -o knot/conf/l= ibknotd_la-base.lo `test -f 'knot/conf/base.c' || echo './'`knot/conf/base.c --- knot/conf/libknotd_la-conf.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf/libknotd_la= -conf.lo -MD -MP -MF knot/conf/.deps/libknotd_la-conf.Tpo -c -o knot/conf/l= ibknotd_la-conf.lo `test -f 'knot/conf/conf.c' || echo './'`knot/conf/conf.c --- knot/conf/libknotd_la-base.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-base.lo -MD -MP -MF knot/conf/.deps/libkno= td_la-base.Tpo -c knot/conf/base.c -fPIC -DPIC -o knot/conf/.libs/libknotd= _la-base.o --- knot/conf/libknotd_la-conf.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-conf.lo -MD -MP -MF knot/conf/.deps/libkno= td_la-conf.Tpo -c knot/conf/conf.c -fPIC -DPIC -o knot/conf/.libs/libknotd= _la-conf.o --- libknot/yparser/yptrafo.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yp= arser/yptrafo.lo -MD -MP -MF libknot/yparser/.deps/yptrafo.Tpo -c libknot/y= parser/yptrafo.c -o libknot/yparser/yptrafo.o >/dev/null 2>&1 --- knot/conf/libknotd_la-confdb.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf/libknotd_la= -confdb.lo -MD -MP -MF knot/conf/.deps/libknotd_la-confdb.Tpo -c -o knot/co= nf/libknotd_la-confdb.lo `test -f 'knot/conf/confdb.c' || echo './'`knot/co= nf/confdb.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-confdb.lo -MD -MP -MF knot/conf/.deps/libk= notd_la-confdb.Tpo -c knot/conf/confdb.c -fPIC -DPIC -o knot/conf/.libs/li= bknotd_la-confdb.o --- libknot/libknot_la-rrset-dump.lo --- mv -f libknot/.deps/libknot_la-rrset-dump.Tpo libknot/.deps/libknot_la-rrse= t-dump.Plo --- knot/conf/libknotd_la-scheme.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf/libknotd_la= -scheme.lo -MD -MP -MF knot/conf/.deps/libknotd_la-scheme.Tpo -c -o knot/co= nf/libknotd_la-scheme.lo `test -f 'knot/conf/scheme.c' || echo './'`knot/co= nf/scheme.c --- knot/conf/libknotd_la-base.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-base.lo -MD -MP -MF knot/conf/.deps/libkno= td_la-base.Tpo -c knot/conf/base.c -o knot/conf/libknotd_la-base.o >/dev/nu= ll 2>&1 --- knot/conf/libknotd_la-conf.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-conf.lo -MD -MP -MF knot/conf/.deps/libkno= td_la-conf.Tpo -c knot/conf/conf.c -o knot/conf/libknotd_la-conf.o >/dev/nu= ll 2>&1 --- knot/conf/libknotd_la-scheme.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-scheme.lo -MD -MP -MF knot/conf/.deps/libk= notd_la-scheme.Tpo -c knot/conf/scheme.c -fPIC -DPIC -o knot/conf/.libs/li= bknotd_la-scheme.o --- knot/conf/libknotd_la-confdb.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-confdb.lo -MD -MP -MF knot/conf/.deps/libk= notd_la-confdb.Tpo -c knot/conf/confdb.c -o knot/conf/libknotd_la-confdb.o = >/dev/null 2>&1 --- knot/conf/libknotd_la-scheme.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-scheme.lo -MD -MP -MF knot/conf/.deps/libk= notd_la-scheme.Tpo -c knot/conf/scheme.c -o knot/conf/libknotd_la-scheme.o = >/dev/null 2>&1 --- knot/conf/libknotd_la-base.lo --- mv -f knot/conf/.deps/libknotd_la-base.Tpo knot/conf/.deps/libknotd_la-base= =2EPlo --- knot/conf/libknotd_la-tools.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf/libknotd_la= -tools.lo -MD -MP -MF knot/conf/.deps/libknotd_la-tools.Tpo -c -o knot/conf= /libknotd_la-tools.lo `test -f 'knot/conf/tools.c' || echo './'`knot/conf/t= ools.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-tools.lo -MD -MP -MF knot/conf/.deps/libkn= otd_la-tools.Tpo -c knot/conf/tools.c -fPIC -DPIC -o knot/conf/.libs/libkn= otd_la-tools.o --- knot/conf/libknotd_la-scheme.lo --- mv -f knot/conf/.deps/libknotd_la-scheme.Tpo knot/conf/.deps/libknotd_la-sc= heme.Plo --- knot/ctl/libknotd_la-estimator.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl/libknotd_la-= estimator.lo -MD -MP -MF knot/ctl/.deps/libknotd_la-estimator.Tpo -c -o kno= t/ctl/libknotd_la-estimator.lo `test -f 'knot/ctl/estimator.c' || echo './'= `knot/ctl/estimator.c --- knot/conf/libknotd_la-confdb.lo --- mv -f knot/conf/.deps/libknotd_la-confdb.Tpo knot/conf/.deps/libknotd_la-co= nfdb.Plo --- knot/ctl/libknotd_la-process.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl/libknotd_la-= process.lo -MD -MP -MF knot/ctl/.deps/libknotd_la-process.Tpo -c -o knot/ct= l/libknotd_la-process.lo `test -f 'knot/ctl/process.c' || echo './'`knot/ct= l/process.c --- knot/conf/libknotd_la-conf.lo --- mv -f knot/conf/.deps/libknotd_la-conf.Tpo knot/conf/.deps/libknotd_la-conf= =2EPlo --- knot/ctl/libknotd_la-estimator.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/ctl/libknotd_la-estimator.lo -MD -MP -MF knot/ctl/.deps/lib= knotd_la-estimator.Tpo -c knot/ctl/estimator.c -fPIC -DPIC -o knot/ctl/.li= bs/libknotd_la-estimator.o --- knot/ctl/libknotd_la-remote.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl/libknotd_la-= remote.lo -MD -MP -MF knot/ctl/.deps/libknotd_la-remote.Tpo -c -o knot/ctl/= libknotd_la-remote.lo `test -f 'knot/ctl/remote.c' || echo './'`knot/ctl/re= mote.c --- knot/ctl/libknotd_la-process.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/ctl/libknotd_la-process.lo -MD -MP -MF knot/ctl/.deps/libkn= otd_la-process.Tpo -c knot/ctl/process.c -fPIC -DPIC -o knot/ctl/.libs/lib= knotd_la-process.o --- knot/ctl/libknotd_la-remote.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/ctl/libknotd_la-remote.lo -MD -MP -MF knot/ctl/.deps/libkno= td_la-remote.Tpo -c knot/ctl/remote.c -fPIC -DPIC -o knot/ctl/.libs/libkno= td_la-remote.o --- knot/conf/libknotd_la-tools.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/conf/libknotd_la-tools.lo -MD -MP -MF knot/conf/.deps/libkn= otd_la-tools.Tpo -c knot/conf/tools.c -o knot/conf/libknotd_la-tools.o >/de= v/null 2>&1 --- knot/ctl/libknotd_la-estimator.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/ctl/libknotd_la-estimator.lo -MD -MP -MF knot/ctl/.deps/lib= knotd_la-estimator.Tpo -c knot/ctl/estimator.c -o knot/ctl/libknotd_la-esti= mator.o >/dev/null 2>&1 mv -f knot/ctl/.deps/libknotd_la-estimator.Tpo knot/ctl/.deps/libknotd_la-e= stimator.Plo --- knot/dnssec/libknotd_la-context.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-context.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-context.Tpo -c -o k= not/dnssec/libknotd_la-context.lo `test -f 'knot/dnssec/context.c' || echo = './'`knot/dnssec/context.c --- knot/ctl/libknotd_la-process.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/ctl/libknotd_la-process.lo -MD -MP -MF knot/ctl/.deps/libkn= otd_la-process.Tpo -c knot/ctl/process.c -o knot/ctl/libknotd_la-process.o = >/dev/null 2>&1 --- knot/dnssec/libknotd_la-context.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-context.lo -MD -MP -MF knot/dnssec/.deps= /libknotd_la-context.Tpo -c knot/dnssec/context.c -fPIC -DPIC -o knot/dnss= ec/.libs/libknotd_la-context.o --- knot/conf/libknotd_la-tools.lo --- mv -f knot/conf/.deps/libknotd_la-tools.Tpo knot/conf/.deps/libknotd_la-too= ls.Plo --- knot/dnssec/libknotd_la-nsec-chain.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-nsec-chain.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-nsec-chain.Tpo -= c -o knot/dnssec/libknotd_la-nsec-chain.lo `test -f 'knot/dnssec/nsec-chain= =2Ec' || echo './'`knot/dnssec/nsec-chain.c --- knot/dnssec/libknotd_la-context.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-context.lo -MD -MP -MF knot/dnssec/.deps= /libknotd_la-context.Tpo -c knot/dnssec/context.c -o knot/dnssec/libknotd_l= a-context.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-nsec-chain.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-nsec-chain.lo -MD -MP -MF knot/dnssec/.d= eps/libknotd_la-nsec-chain.Tpo -c knot/dnssec/nsec-chain.c -fPIC -DPIC -o = knot/dnssec/.libs/libknotd_la-nsec-chain.o --- knot/ctl/libknotd_la-process.lo --- mv -f knot/ctl/.deps/libknotd_la-process.Tpo knot/ctl/.deps/libknotd_la-pro= cess.Plo --- knot/dnssec/libknotd_la-context.lo --- mv -f knot/dnssec/.deps/libknotd_la-context.Tpo knot/dnssec/.deps/libknotd_= la-context.Plo --- knot/dnssec/libknotd_la-nsec3-chain.lo --- --- knot/dnssec/libknotd_la-policy.lo --- --- knot/dnssec/libknotd_la-nsec3-chain.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-nsec3-chain.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-nsec3-chain.Tpo= -c -o knot/dnssec/libknotd_la-nsec3-chain.lo `test -f 'knot/dnssec/nsec3-c= hain.c' || echo './'`knot/dnssec/nsec3-chain.c --- knot/dnssec/libknotd_la-policy.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-policy.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-policy.Tpo -c -o kno= t/dnssec/libknotd_la-policy.lo `test -f 'knot/dnssec/policy.c' || echo './'= `knot/dnssec/policy.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-policy.lo -MD -MP -MF knot/dnssec/.deps/= libknotd_la-policy.Tpo -c knot/dnssec/policy.c -fPIC -DPIC -o knot/dnssec/= =2Elibs/libknotd_la-policy.o --- knot/dnssec/libknotd_la-nsec3-chain.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-nsec3-chain.lo -MD -MP -MF knot/dnssec/.= deps/libknotd_la-nsec3-chain.Tpo -c knot/dnssec/nsec3-chain.c -fPIC -DPIC = -o knot/dnssec/.libs/libknotd_la-nsec3-chain.o --- knot/ctl/libknotd_la-remote.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/ctl/libknotd_la-remote.lo -MD -MP -MF knot/ctl/.deps/libkno= td_la-remote.Tpo -c knot/ctl/remote.c -o knot/ctl/libknotd_la-remote.o >/de= v/null 2>&1 --- knot/dnssec/libknotd_la-policy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-policy.lo -MD -MP -MF knot/dnssec/.deps/= libknotd_la-policy.Tpo -c knot/dnssec/policy.c -o knot/dnssec/libknotd_la-p= olicy.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-nsec-chain.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-nsec-chain.lo -MD -MP -MF knot/dnssec/.d= eps/libknotd_la-nsec-chain.Tpo -c knot/dnssec/nsec-chain.c -o knot/dnssec/l= ibknotd_la-nsec-chain.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-policy.lo --- mv -f knot/dnssec/.deps/libknotd_la-policy.Tpo knot/dnssec/.deps/libknotd_l= a-policy.Plo --- knot/dnssec/libknotd_la-rrset-sign.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-rrset-sign.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-rrset-sign.Tpo -= c -o knot/dnssec/libknotd_la-rrset-sign.lo `test -f 'knot/dnssec/rrset-sign= =2Ec' || echo './'`knot/dnssec/rrset-sign.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-rrset-sign.lo -MD -MP -MF knot/dnssec/.d= eps/libknotd_la-rrset-sign.Tpo -c knot/dnssec/rrset-sign.c -fPIC -DPIC -o = knot/dnssec/.libs/libknotd_la-rrset-sign.o --- knot/dnssec/libknotd_la-nsec3-chain.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-nsec3-chain.lo -MD -MP -MF knot/dnssec/.= deps/libknotd_la-nsec3-chain.Tpo -c knot/dnssec/nsec3-chain.c -o knot/dnsse= c/libknotd_la-nsec3-chain.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-nsec-chain.lo --- mv -f knot/dnssec/.deps/libknotd_la-nsec-chain.Tpo knot/dnssec/.deps/libkno= td_la-nsec-chain.Plo --- knot/dnssec/libknotd_la-zone-events.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-zone-events.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zone-events.Tpo= -c -o knot/dnssec/libknotd_la-zone-events.lo `test -f 'knot/dnssec/zone-ev= ents.c' || echo './'`knot/dnssec/zone-events.c --- knot/dnssec/libknotd_la-rrset-sign.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-rrset-sign.lo -MD -MP -MF knot/dnssec/.d= eps/libknotd_la-rrset-sign.Tpo -c knot/dnssec/rrset-sign.c -o knot/dnssec/l= ibknotd_la-rrset-sign.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-zone-events.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-events.lo -MD -MP -MF knot/dnssec/.= deps/libknotd_la-zone-events.Tpo -c knot/dnssec/zone-events.c -fPIC -DPIC = -o knot/dnssec/.libs/libknotd_la-zone-events.o --- knot/ctl/libknotd_la-remote.lo --- mv -f knot/ctl/.deps/libknotd_la-remote.Tpo knot/ctl/.deps/libknotd_la-remo= te.Plo --- knot/dnssec/libknotd_la-zone-keys.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-zone-keys.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zone-keys.Tpo -c = -o knot/dnssec/libknotd_la-zone-keys.lo `test -f 'knot/dnssec/zone-keys.c' = || echo './'`knot/dnssec/zone-keys.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-keys.lo -MD -MP -MF knot/dnssec/.de= ps/libknotd_la-zone-keys.Tpo -c knot/dnssec/zone-keys.c -fPIC -DPIC -o kno= t/dnssec/.libs/libknotd_la-zone-keys.o --- knot/dnssec/libknotd_la-rrset-sign.lo --- mv -f knot/dnssec/.deps/libknotd_la-rrset-sign.Tpo knot/dnssec/.deps/libkno= td_la-rrset-sign.Plo --- knot/dnssec/libknotd_la-zone-nsec.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-zone-nsec.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zone-nsec.Tpo -c = -o knot/dnssec/libknotd_la-zone-nsec.lo `test -f 'knot/dnssec/zone-nsec.c' = || echo './'`knot/dnssec/zone-nsec.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-nsec.lo -MD -MP -MF knot/dnssec/.de= ps/libknotd_la-zone-nsec.Tpo -c knot/dnssec/zone-nsec.c -fPIC -DPIC -o kno= t/dnssec/.libs/libknotd_la-zone-nsec.o --- knot/dnssec/libknotd_la-zone-events.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-events.lo -MD -MP -MF knot/dnssec/.= deps/libknotd_la-zone-events.Tpo -c knot/dnssec/zone-events.c -o knot/dnsse= c/libknotd_la-zone-events.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-zone-keys.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-keys.lo -MD -MP -MF knot/dnssec/.de= ps/libknotd_la-zone-keys.Tpo -c knot/dnssec/zone-keys.c -o knot/dnssec/libk= notd_la-zone-keys.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-nsec3-chain.lo --- mv -f knot/dnssec/.deps/libknotd_la-nsec3-chain.Tpo knot/dnssec/.deps/libkn= otd_la-nsec3-chain.Plo --- knot/dnssec/libknotd_la-zone-sign.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnssec/libknotd_= la-zone-sign.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zone-sign.Tpo -c = -o knot/dnssec/libknotd_la-zone-sign.lo `test -f 'knot/dnssec/zone-sign.c' = || echo './'`knot/dnssec/zone-sign.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-sign.lo -MD -MP -MF knot/dnssec/.de= ps/libknotd_la-zone-sign.Tpo -c knot/dnssec/zone-sign.c -fPIC -DPIC -o kno= t/dnssec/.libs/libknotd_la-zone-sign.o --- knot/dnssec/libknotd_la-zone-nsec.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-nsec.lo -MD -MP -MF knot/dnssec/.de= ps/libknotd_la-zone-nsec.Tpo -c knot/dnssec/zone-nsec.c -o knot/dnssec/libk= notd_la-zone-nsec.o >/dev/null 2>&1 --- knot/dnssec/libknotd_la-zone-events.lo --- mv -f knot/dnssec/.deps/libknotd_la-zone-events.Tpo knot/dnssec/.deps/libkn= otd_la-zone-events.Plo --- knot/modules/libknotd_la-synth_record.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/modules/libknotd= _la-synth_record.lo -MD -MP -MF knot/modules/.deps/libknotd_la-synth_record= =2ETpo -c -o knot/modules/libknotd_la-synth_record.lo `test -f 'knot/module= s/synth_record.c' || echo './'`knot/modules/synth_record.c --- knot/dnssec/libknotd_la-zone-keys.lo --- mv -f knot/dnssec/.deps/libknotd_la-zone-keys.Tpo knot/dnssec/.deps/libknot= d_la-zone-keys.Plo --- knot/modules/libknotd_la-dnsproxy.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/modules/libknotd= _la-dnsproxy.lo -MD -MP -MF knot/modules/.deps/libknotd_la-dnsproxy.Tpo -c = -o knot/modules/libknotd_la-dnsproxy.lo `test -f 'knot/modules/dnsproxy.c' = || echo './'`knot/modules/dnsproxy.c --- knot/dnssec/libknotd_la-zone-nsec.lo --- mv -f knot/dnssec/.deps/libknotd_la-zone-nsec.Tpo knot/dnssec/.deps/libknot= d_la-zone-nsec.Plo --- knot/nameserver/libknotd_la-axfr.lo --- --- knot/modules/libknotd_la-synth_record.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/modules/libknotd_la-synth_record.lo -MD -MP -MF knot/module= s/.deps/libknotd_la-synth_record.Tpo -c knot/modules/synth_record.c -fPIC = -DPIC -o knot/modules/.libs/libknotd_la-synth_record.o --- knot/nameserver/libknotd_la-axfr.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-axfr.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-axfr.Tpo -c -o= knot/nameserver/libknotd_la-axfr.lo `test -f 'knot/nameserver/axfr.c' || e= cho './'`knot/nameserver/axfr.c --- knot/modules/libknotd_la-dnsproxy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/modules/libknotd_la-dnsproxy.lo -MD -MP -MF knot/modules/.d= eps/libknotd_la-dnsproxy.Tpo -c knot/modules/dnsproxy.c -fPIC -DPIC -o kno= t/modules/.libs/libknotd_la-dnsproxy.o --- knot/nameserver/libknotd_la-axfr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-axfr.lo -MD -MP -MF knot/nameserver/= =2Edeps/libknotd_la-axfr.Tpo -c knot/nameserver/axfr.c -fPIC -DPIC -o knot= /nameserver/.libs/libknotd_la-axfr.o --- knot/modules/libknotd_la-dnsproxy.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/modules/libknotd_la-dnsproxy.lo -MD -MP -MF knot/modules/.d= eps/libknotd_la-dnsproxy.Tpo -c knot/modules/dnsproxy.c -o knot/modules/lib= knotd_la-dnsproxy.o >/dev/null 2>&1 --- knot/modules/libknotd_la-synth_record.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/modules/libknotd_la-synth_record.lo -MD -MP -MF knot/module= s/.deps/libknotd_la-synth_record.Tpo -c knot/modules/synth_record.c -o knot= /modules/libknotd_la-synth_record.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-axfr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-axfr.lo -MD -MP -MF knot/nameserver/= =2Edeps/libknotd_la-axfr.Tpo -c knot/nameserver/axfr.c -o knot/nameserver/l= ibknotd_la-axfr.o >/dev/null 2>&1 --- knot/modules/libknotd_la-dnsproxy.lo --- mv -f knot/modules/.deps/libknotd_la-dnsproxy.Tpo knot/modules/.deps/libkno= td_la-dnsproxy.Plo --- knot/nameserver/libknotd_la-capture.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-capture.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-capture.Tpo= -c -o knot/nameserver/libknotd_la-capture.lo `test -f 'knot/nameserver/cap= ture.c' || echo './'`knot/nameserver/capture.c --- knot/dnssec/libknotd_la-zone-sign.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/dnssec/libknotd_la-zone-sign.lo -MD -MP -MF knot/dnssec/.de= ps/libknotd_la-zone-sign.Tpo -c knot/dnssec/zone-sign.c -o knot/dnssec/libk= notd_la-zone-sign.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-capture.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-capture.lo -MD -MP -MF knot/nameserv= er/.deps/libknotd_la-capture.Tpo -c knot/nameserver/capture.c -fPIC -DPIC = -o knot/nameserver/.libs/libknotd_la-capture.o libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-capture.lo -MD -MP -MF knot/nameserv= er/.deps/libknotd_la-capture.Tpo -c knot/nameserver/capture.c -o knot/names= erver/libknotd_la-capture.o >/dev/null 2>&1 --- knot/modules/libknotd_la-synth_record.lo --- mv -f knot/modules/.deps/libknotd_la-synth_record.Tpo knot/modules/.deps/li= bknotd_la-synth_record.Plo --- knot/nameserver/libknotd_la-chaos.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-chaos.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-chaos.Tpo -c = -o knot/nameserver/libknotd_la-chaos.lo `test -f 'knot/nameserver/chaos.c' = || echo './'`knot/nameserver/chaos.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-chaos.lo -MD -MP -MF knot/nameserver= /.deps/libknotd_la-chaos.Tpo -c knot/nameserver/chaos.c -fPIC -DPIC -o kno= t/nameserver/.libs/libknotd_la-chaos.o --- knot/nameserver/libknotd_la-capture.lo --- mv -f knot/nameserver/.deps/libknotd_la-capture.Tpo knot/nameserver/.deps/l= ibknotd_la-capture.Plo --- knot/nameserver/libknotd_la-internet.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-internet.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-internet.T= po -c -o knot/nameserver/libknotd_la-internet.lo `test -f 'knot/nameserver/= internet.c' || echo './'`knot/nameserver/internet.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-internet.lo -MD -MP -MF knot/nameser= ver/.deps/libknotd_la-internet.Tpo -c knot/nameserver/internet.c -fPIC -DP= IC -o knot/nameserver/.libs/libknotd_la-internet.o --- knot/nameserver/libknotd_la-axfr.lo --- mv -f knot/nameserver/.deps/libknotd_la-axfr.Tpo knot/nameserver/.deps/libk= notd_la-axfr.Plo --- knot/nameserver/libknotd_la-ixfr.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-ixfr.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-ixfr.Tpo -c -o= knot/nameserver/libknotd_la-ixfr.lo `test -f 'knot/nameserver/ixfr.c' || e= cho './'`knot/nameserver/ixfr.c --- knot/nameserver/libknotd_la-chaos.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-chaos.lo -MD -MP -MF knot/nameserver= /.deps/libknotd_la-chaos.Tpo -c knot/nameserver/chaos.c -o knot/nameserver/= libknotd_la-chaos.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-ixfr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-ixfr.lo -MD -MP -MF knot/nameserver/= =2Edeps/libknotd_la-ixfr.Tpo -c knot/nameserver/ixfr.c -fPIC -DPIC -o knot= /nameserver/.libs/libknotd_la-ixfr.o --- knot/nameserver/libknotd_la-chaos.lo --- mv -f knot/nameserver/.deps/libknotd_la-chaos.Tpo knot/nameserver/.deps/lib= knotd_la-chaos.Plo --- knot/nameserver/libknotd_la-notify.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-notify.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-notify.Tpo -= c -o knot/nameserver/libknotd_la-notify.lo `test -f 'knot/nameserver/notify= =2Ec' || echo './'`knot/nameserver/notify.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-notify.lo -MD -MP -MF knot/nameserve= r/.deps/libknotd_la-notify.Tpo -c knot/nameserver/notify.c -fPIC -DPIC -o = knot/nameserver/.libs/libknotd_la-notify.o --- knot/dnssec/libknotd_la-zone-sign.lo --- mv -f knot/dnssec/.deps/libknotd_la-zone-sign.Tpo knot/dnssec/.deps/libknot= d_la-zone-sign.Plo --- knot/nameserver/libknotd_la-nsec_proofs.lo --- --- knot/nameserver/libknotd_la-notify.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-notify.lo -MD -MP -MF knot/nameserve= r/.deps/libknotd_la-notify.Tpo -c knot/nameserver/notify.c -o knot/nameserv= er/libknotd_la-notify.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-nsec_proofs.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-nsec_proofs.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-nsec_pr= oofs.Tpo -c -o knot/nameserver/libknotd_la-nsec_proofs.lo `test -f 'knot/na= meserver/nsec_proofs.c' || echo './'`knot/nameserver/nsec_proofs.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-nsec_proofs.lo -MD -MP -MF knot/name= server/.deps/libknotd_la-nsec_proofs.Tpo -c knot/nameserver/nsec_proofs.c = -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-nsec_proofs.o --- knot/nameserver/libknotd_la-ixfr.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-ixfr.lo -MD -MP -MF knot/nameserver/= =2Edeps/libknotd_la-ixfr.Tpo -c knot/nameserver/ixfr.c -o knot/nameserver/l= ibknotd_la-ixfr.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-internet.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-internet.lo -MD -MP -MF knot/nameser= ver/.deps/libknotd_la-internet.Tpo -c knot/nameserver/internet.c -o knot/na= meserver/libknotd_la-internet.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-notify.lo --- mv -f knot/nameserver/.deps/libknotd_la-notify.Tpo knot/nameserver/.deps/li= bknotd_la-notify.Plo --- knot/nameserver/libknotd_la-process_answer.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-process_answer.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-proc= ess_answer.Tpo -c -o knot/nameserver/libknotd_la-process_answer.lo `test -f= 'knot/nameserver/process_answer.c' || echo './'`knot/nameserver/process_an= swer.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-process_answer.lo -MD -MP -MF knot/n= ameserver/.deps/libknotd_la-process_answer.Tpo -c knot/nameserver/process_a= nswer.c -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-process_answer.o libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-process_answer.lo -MD -MP -MF knot/n= ameserver/.deps/libknotd_la-process_answer.Tpo -c knot/nameserver/process_a= nswer.c -o knot/nameserver/libknotd_la-process_answer.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-nsec_proofs.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-nsec_proofs.lo -MD -MP -MF knot/name= server/.deps/libknotd_la-nsec_proofs.Tpo -c knot/nameserver/nsec_proofs.c -= o knot/nameserver/libknotd_la-nsec_proofs.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-ixfr.lo --- mv -f knot/nameserver/.deps/libknotd_la-ixfr.Tpo knot/nameserver/.deps/libk= notd_la-ixfr.Plo --- knot/nameserver/libknotd_la-process_query.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-process_query.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-proce= ss_query.Tpo -c -o knot/nameserver/libknotd_la-process_query.lo `test -f 'k= not/nameserver/process_query.c' || echo './'`knot/nameserver/process_query.c --- knot/nameserver/libknotd_la-process_answer.lo --- mv -f knot/nameserver/.deps/libknotd_la-process_answer.Tpo knot/nameserver/= =2Edeps/libknotd_la-process_answer.Plo --- knot/nameserver/libknotd_la-query_module.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-query_module.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-query_= module.Tpo -c -o knot/nameserver/libknotd_la-query_module.lo `test -f 'knot= /nameserver/query_module.c' || echo './'`knot/nameserver/query_module.c --- knot/nameserver/libknotd_la-process_query.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-process_query.lo -MD -MP -MF knot/na= meserver/.deps/libknotd_la-process_query.Tpo -c knot/nameserver/process_que= ry.c -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-process_query.o --- knot/nameserver/libknotd_la-internet.lo --- mv -f knot/nameserver/.deps/libknotd_la-internet.Tpo knot/nameserver/.deps/= libknotd_la-internet.Plo --- knot/nameserver/libknotd_la-tsig_ctx.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-tsig_ctx.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-tsig_ctx.T= po -c -o knot/nameserver/libknotd_la-tsig_ctx.lo `test -f 'knot/nameserver/= tsig_ctx.c' || echo './'`knot/nameserver/tsig_ctx.c --- knot/nameserver/libknotd_la-query_module.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-query_module.lo -MD -MP -MF knot/nam= eserver/.deps/libknotd_la-query_module.Tpo -c knot/nameserver/query_module.= c -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-query_module.o --- knot/nameserver/libknotd_la-tsig_ctx.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-tsig_ctx.lo -MD -MP -MF knot/nameser= ver/.deps/libknotd_la-tsig_ctx.Tpo -c knot/nameserver/tsig_ctx.c -fPIC -DP= IC -o knot/nameserver/.libs/libknotd_la-tsig_ctx.o --- knot/nameserver/libknotd_la-query_module.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-query_module.lo -MD -MP -MF knot/nam= eserver/.deps/libknotd_la-query_module.Tpo -c knot/nameserver/query_module.= c -o knot/nameserver/libknotd_la-query_module.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-tsig_ctx.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-tsig_ctx.lo -MD -MP -MF knot/nameser= ver/.deps/libknotd_la-tsig_ctx.Tpo -c knot/nameserver/tsig_ctx.c -o knot/na= meserver/libknotd_la-tsig_ctx.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-process_query.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-process_query.lo -MD -MP -MF knot/na= meserver/.deps/libknotd_la-process_query.Tpo -c knot/nameserver/process_que= ry.c -o knot/nameserver/libknotd_la-process_query.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-nsec_proofs.lo --- mv -f knot/nameserver/.deps/libknotd_la-nsec_proofs.Tpo knot/nameserver/.de= ps/libknotd_la-nsec_proofs.Plo --- knot/nameserver/libknotd_la-update.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/nameserver/libkn= otd_la-update.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-update.Tpo -= c -o knot/nameserver/libknotd_la-update.lo `test -f 'knot/nameserver/update= =2Ec' || echo './'`knot/nameserver/update.c --- knot/nameserver/libknotd_la-query_module.lo --- mv -f knot/nameserver/.deps/libknotd_la-query_module.Tpo knot/nameserver/.d= eps/libknotd_la-query_module.Plo --- knot/common/libknotd_la-evsched.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/common/libknotd_= la-evsched.lo -MD -MP -MF knot/common/.deps/libknotd_la-evsched.Tpo -c -o k= not/common/libknotd_la-evsched.lo `test -f 'knot/common/evsched.c' || echo = './'`knot/common/evsched.c --- knot/nameserver/libknotd_la-update.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-update.lo -MD -MP -MF knot/nameserve= r/.deps/libknotd_la-update.Tpo -c knot/nameserver/update.c -fPIC -DPIC -o = knot/nameserver/.libs/libknotd_la-update.o --- knot/common/libknotd_la-evsched.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-evsched.lo -MD -MP -MF knot/common/.deps= /libknotd_la-evsched.Tpo -c knot/common/evsched.c -fPIC -DPIC -o knot/comm= on/.libs/libknotd_la-evsched.o --- knot/nameserver/libknotd_la-tsig_ctx.lo --- mv -f knot/nameserver/.deps/libknotd_la-tsig_ctx.Tpo knot/nameserver/.deps/= libknotd_la-tsig_ctx.Plo --- knot/common/libknotd_la-fdset.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/common/libknotd_= la-fdset.lo -MD -MP -MF knot/common/.deps/libknotd_la-fdset.Tpo -c -o knot/= common/libknotd_la-fdset.lo `test -f 'knot/common/fdset.c' || echo './'`kno= t/common/fdset.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-fdset.lo -MD -MP -MF knot/common/.deps/l= ibknotd_la-fdset.Tpo -c knot/common/fdset.c -fPIC -DPIC -o knot/common/.li= bs/libknotd_la-fdset.o --- knot/common/libknotd_la-evsched.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-evsched.lo -MD -MP -MF knot/common/.deps= /libknotd_la-evsched.Tpo -c knot/common/evsched.c -o knot/common/libknotd_l= a-evsched.o >/dev/null 2>&1 --- knot/nameserver/libknotd_la-process_query.lo --- mv -f knot/nameserver/.deps/libknotd_la-process_query.Tpo knot/nameserver/.= deps/libknotd_la-process_query.Plo --- knot/common/libknotd_la-log.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/common/libknotd_= la-log.lo -MD -MP -MF knot/common/.deps/libknotd_la-log.Tpo -c -o knot/comm= on/libknotd_la-log.lo `test -f 'knot/common/log.c' || echo './'`knot/common= /log.c --- knot/common/libknotd_la-fdset.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-fdset.lo -MD -MP -MF knot/common/.deps/l= ibknotd_la-fdset.Tpo -c knot/common/fdset.c -o knot/common/libknotd_la-fdse= t.o >/dev/null 2>&1 --- knot/common/libknotd_la-log.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-log.lo -MD -MP -MF knot/common/.deps/lib= knotd_la-log.Tpo -c knot/common/log.c -fPIC -DPIC -o knot/common/.libs/lib= knotd_la-log.o --- knot/common/libknotd_la-evsched.lo --- mv -f knot/common/.deps/libknotd_la-evsched.Tpo knot/common/.deps/libknotd_= la-evsched.Plo --- knot/common/libknotd_la-ref.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/common/libknotd_= la-ref.lo -MD -MP -MF knot/common/.deps/libknotd_la-ref.Tpo -c -o knot/comm= on/libknotd_la-ref.lo `test -f 'knot/common/ref.c' || echo './'`knot/common= /ref.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-ref.lo -MD -MP -MF knot/common/.deps/lib= knotd_la-ref.Tpo -c knot/common/ref.c -fPIC -DPIC -o knot/common/.libs/lib= knotd_la-ref.o --- knot/nameserver/libknotd_la-update.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/nameserver/libknotd_la-update.lo -MD -MP -MF knot/nameserve= r/.deps/libknotd_la-update.Tpo -c knot/nameserver/update.c -o knot/nameserv= er/libknotd_la-update.o >/dev/null 2>&1 --- knot/common/libknotd_la-fdset.lo --- mv -f knot/common/.deps/libknotd_la-fdset.Tpo knot/common/.deps/libknotd_la= -fdset.Plo --- knot/server/libknotd_la-dthreads.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/server/libknotd_= la-dthreads.lo -MD -MP -MF knot/server/.deps/libknotd_la-dthreads.Tpo -c -o= knot/server/libknotd_la-dthreads.lo `test -f 'knot/server/dthreads.c' || e= cho './'`knot/server/dthreads.c --- knot/common/libknotd_la-ref.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-ref.lo -MD -MP -MF knot/common/.deps/lib= knotd_la-ref.Tpo -c knot/common/ref.c -o knot/common/libknotd_la-ref.o >/de= v/null 2>&1 --- knot/server/libknotd_la-dthreads.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-dthreads.lo -MD -MP -MF knot/server/.dep= s/libknotd_la-dthreads.Tpo -c knot/server/dthreads.c -fPIC -DPIC -o knot/s= erver/.libs/libknotd_la-dthreads.o --- knot/common/libknotd_la-ref.lo --- mv -f knot/common/.deps/libknotd_la-ref.Tpo knot/common/.deps/libknotd_la-r= ef.Plo --- knot/server/libknotd_la-journal.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/server/libknotd_= la-journal.lo -MD -MP -MF knot/server/.deps/libknotd_la-journal.Tpo -c -o k= not/server/libknotd_la-journal.lo `test -f 'knot/server/journal.c' || echo = './'`knot/server/journal.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-journal.lo -MD -MP -MF knot/server/.deps= /libknotd_la-journal.Tpo -c knot/server/journal.c -fPIC -DPIC -o knot/serv= er/.libs/libknotd_la-journal.o --- knot/common/libknotd_la-log.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/common/libknotd_la-log.lo -MD -MP -MF knot/common/.deps/lib= knotd_la-log.Tpo -c knot/common/log.c -o knot/common/libknotd_la-log.o >/de= v/null 2>&1 --- knot/server/libknotd_la-dthreads.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-dthreads.lo -MD -MP -MF knot/server/.dep= s/libknotd_la-dthreads.Tpo -c knot/server/dthreads.c -o knot/server/libknot= d_la-dthreads.o >/dev/null 2>&1 --- knot/common/libknotd_la-log.lo --- mv -f knot/common/.deps/libknotd_la-log.Tpo knot/common/.deps/libknotd_la-l= og.Plo --- knot/server/libknotd_la-rrl.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/server/libknotd_= la-rrl.lo -MD -MP -MF knot/server/.deps/libknotd_la-rrl.Tpo -c -o knot/serv= er/libknotd_la-rrl.lo `test -f 'knot/server/rrl.c' || echo './'`knot/server= /rrl.c --- knot/nameserver/libknotd_la-update.lo --- mv -f knot/nameserver/.deps/libknotd_la-update.Tpo knot/nameserver/.deps/li= bknotd_la-update.Plo --- knot/server/libknotd_la-serialization.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/server/libknotd_= la-serialization.lo -MD -MP -MF knot/server/.deps/libknotd_la-serialization= =2ETpo -c -o knot/server/libknotd_la-serialization.lo `test -f 'knot/server= /serialization.c' || echo './'`knot/server/serialization.c --- knot/server/libknotd_la-rrl.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-rrl.lo -MD -MP -MF knot/server/.deps/lib= knotd_la-rrl.Tpo -c knot/server/rrl.c -fPIC -DPIC -o knot/server/.libs/lib= knotd_la-rrl.o --- knot/server/libknotd_la-serialization.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-serialization.lo -MD -MP -MF knot/server= /.deps/libknotd_la-serialization.Tpo -c knot/server/serialization.c -fPIC = -DPIC -o knot/server/.libs/libknotd_la-serialization.o --- knot/server/libknotd_la-journal.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-journal.lo -MD -MP -MF knot/server/.deps= /libknotd_la-journal.Tpo -c knot/server/journal.c -o knot/server/libknotd_l= a-journal.o >/dev/null 2>&1 --- knot/server/libknotd_la-dthreads.lo --- mv -f knot/server/.deps/libknotd_la-dthreads.Tpo knot/server/.deps/libknotd= _la-dthreads.Plo --- knot/server/libknotd_la-server.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/server/libknotd_= la-server.lo -MD -MP -MF knot/server/.deps/libknotd_la-server.Tpo -c -o kno= t/server/libknotd_la-server.lo `test -f 'knot/server/server.c' || echo './'= `knot/server/server.c --- knot/server/libknotd_la-serialization.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-serialization.lo -MD -MP -MF knot/server= /.deps/libknotd_la-serialization.Tpo -c knot/server/serialization.c -o knot= /server/libknotd_la-serialization.o >/dev/null 2>&1 --- knot/server/libknotd_la-server.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-server.lo -MD -MP -MF knot/server/.deps/= libknotd_la-server.Tpo -c knot/server/server.c -fPIC -DPIC -o knot/server/= =2Elibs/libknotd_la-server.o --- knot/server/libknotd_la-serialization.lo --- mv -f knot/server/.deps/libknotd_la-serialization.Tpo knot/server/.deps/lib= knotd_la-serialization.Plo --- knot/server/libknotd_la-tcp-handler.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/server/libknotd_= la-tcp-handler.lo -MD -MP -MF knot/server/.deps/libknotd_la-tcp-handler.Tpo= -c -o knot/server/libknotd_la-tcp-handler.lo `test -f 'knot/server/tcp-han= dler.c' || echo './'`knot/server/tcp-handler.c --- knot/server/libknotd_la-rrl.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-rrl.lo -MD -MP -MF knot/server/.deps/lib= knotd_la-rrl.Tpo -c knot/server/rrl.c -o knot/server/libknotd_la-rrl.o >/de= v/null 2>&1 --- knot/server/libknotd_la-tcp-handler.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-tcp-handler.lo -MD -MP -MF knot/server/.= deps/libknotd_la-tcp-handler.Tpo -c knot/server/tcp-handler.c -fPIC -DPIC = -o knot/server/.libs/libknotd_la-tcp-handler.o --- knot/server/libknotd_la-journal.lo --- mv -f knot/server/.deps/libknotd_la-journal.Tpo knot/server/.deps/libknotd_= la-journal.Plo --- knot/server/libknotd_la-udp-handler.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/server/libknotd_= la-udp-handler.lo -MD -MP -MF knot/server/.deps/libknotd_la-udp-handler.Tpo= -c -o knot/server/libknotd_la-udp-handler.lo `test -f 'knot/server/udp-han= dler.c' || echo './'`knot/server/udp-handler.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-udp-handler.lo -MD -MP -MF knot/server/.= deps/libknotd_la-udp-handler.Tpo -c knot/server/udp-handler.c -fPIC -DPIC = -o knot/server/.libs/libknotd_la-udp-handler.o --- knot/server/libknotd_la-server.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-server.lo -MD -MP -MF knot/server/.deps/= libknotd_la-server.Tpo -c knot/server/server.c -o knot/server/libknotd_la-s= erver.o >/dev/null 2>&1 --- knot/server/libknotd_la-rrl.lo --- mv -f knot/server/.deps/libknotd_la-rrl.Tpo knot/server/.deps/libknotd_la-r= rl.Plo --- knot/updates/libknotd_la-acl.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/updates/libknotd= _la-acl.lo -MD -MP -MF knot/updates/.deps/libknotd_la-acl.Tpo -c -o knot/up= dates/libknotd_la-acl.lo `test -f 'knot/updates/acl.c' || echo './'`knot/up= dates/acl.c --- knot/server/libknotd_la-tcp-handler.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-tcp-handler.lo -MD -MP -MF knot/server/.= deps/libknotd_la-tcp-handler.Tpo -c knot/server/tcp-handler.c -o knot/serve= r/libknotd_la-tcp-handler.o >/dev/null 2>&1 --- knot/updates/libknotd_la-acl.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-acl.lo -MD -MP -MF knot/updates/.deps/l= ibknotd_la-acl.Tpo -c knot/updates/acl.c -fPIC -DPIC -o knot/updates/.libs= /libknotd_la-acl.o --- knot/server/libknotd_la-udp-handler.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/server/libknotd_la-udp-handler.lo -MD -MP -MF knot/server/.= deps/libknotd_la-udp-handler.Tpo -c knot/server/udp-handler.c -o knot/serve= r/libknotd_la-udp-handler.o >/dev/null 2>&1 --- knot/updates/libknotd_la-acl.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-acl.lo -MD -MP -MF knot/updates/.deps/l= ibknotd_la-acl.Tpo -c knot/updates/acl.c -o knot/updates/libknotd_la-acl.o = >/dev/null 2>&1 --- knot/server/libknotd_la-server.lo --- mv -f knot/server/.deps/libknotd_la-server.Tpo knot/server/.deps/libknotd_l= a-server.Plo --- knot/updates/libknotd_la-apply.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/updates/libknotd= _la-apply.lo -MD -MP -MF knot/updates/.deps/libknotd_la-apply.Tpo -c -o kno= t/updates/libknotd_la-apply.lo `test -f 'knot/updates/apply.c' || echo './'= `knot/updates/apply.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-apply.lo -MD -MP -MF knot/updates/.deps= /libknotd_la-apply.Tpo -c knot/updates/apply.c -fPIC -DPIC -o knot/updates= /.libs/libknotd_la-apply.o --- knot/server/libknotd_la-tcp-handler.lo --- mv -f knot/server/.deps/libknotd_la-tcp-handler.Tpo knot/server/.deps/libkn= otd_la-tcp-handler.Plo --- knot/updates/libknotd_la-changesets.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/updates/libknotd= _la-changesets.lo -MD -MP -MF knot/updates/.deps/libknotd_la-changesets.Tpo= -c -o knot/updates/libknotd_la-changesets.lo `test -f 'knot/updates/change= sets.c' || echo './'`knot/updates/changesets.c --- knot/updates/libknotd_la-acl.lo --- mv -f knot/updates/.deps/libknotd_la-acl.Tpo knot/updates/.deps/libknotd_la= -acl.Plo --- knot/updates/libknotd_la-ddns.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/updates/libknotd= _la-ddns.lo -MD -MP -MF knot/updates/.deps/libknotd_la-ddns.Tpo -c -o knot/= updates/libknotd_la-ddns.lo `test -f 'knot/updates/ddns.c' || echo './'`kno= t/updates/ddns.c --- knot/updates/libknotd_la-changesets.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-changesets.lo -MD -MP -MF knot/updates/= =2Edeps/libknotd_la-changesets.Tpo -c knot/updates/changesets.c -fPIC -DPI= C -o knot/updates/.libs/libknotd_la-changesets.o --- knot/updates/libknotd_la-ddns.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-ddns.lo -MD -MP -MF knot/updates/.deps/= libknotd_la-ddns.Tpo -c knot/updates/ddns.c -fPIC -DPIC -o knot/updates/.l= ibs/libknotd_la-ddns.o --- knot/server/libknotd_la-udp-handler.lo --- mv -f knot/server/.deps/libknotd_la-udp-handler.Tpo knot/server/.deps/libkn= otd_la-udp-handler.Plo --- knot/updates/libknotd_la-zone-update.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/updates/libknotd= _la-zone-update.lo -MD -MP -MF knot/updates/.deps/libknotd_la-zone-update.T= po -c -o knot/updates/libknotd_la-zone-update.lo `test -f 'knot/updates/zon= e-update.c' || echo './'`knot/updates/zone-update.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-zone-update.lo -MD -MP -MF knot/updates= /.deps/libknotd_la-zone-update.Tpo -c knot/updates/zone-update.c -fPIC -DP= IC -o knot/updates/.libs/libknotd_la-zone-update.o --- knot/updates/libknotd_la-changesets.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-changesets.lo -MD -MP -MF knot/updates/= =2Edeps/libknotd_la-changesets.Tpo -c knot/updates/changesets.c -o knot/upd= ates/libknotd_la-changesets.o >/dev/null 2>&1 --- knot/updates/libknotd_la-zone-update.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-zone-update.lo -MD -MP -MF knot/updates= /.deps/libknotd_la-zone-update.Tpo -c knot/updates/zone-update.c -o knot/up= dates/libknotd_la-zone-update.o >/dev/null 2>&1 --- knot/updates/libknotd_la-apply.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-apply.lo -MD -MP -MF knot/updates/.deps= /libknotd_la-apply.Tpo -c knot/updates/apply.c -o knot/updates/libknotd_la-= apply.o >/dev/null 2>&1 --- knot/updates/libknotd_la-zone-update.lo --- mv -f knot/updates/.deps/libknotd_la-zone-update.Tpo knot/updates/.deps/lib= knotd_la-zone-update.Plo --- knot/worker/libknotd_la-pool.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/worker/libknotd_= la-pool.lo -MD -MP -MF knot/worker/.deps/libknotd_la-pool.Tpo -c -o knot/wo= rker/libknotd_la-pool.lo `test -f 'knot/worker/pool.c' || echo './'`knot/wo= rker/pool.c --- knot/updates/libknotd_la-changesets.lo --- mv -f knot/updates/.deps/libknotd_la-changesets.Tpo knot/updates/.deps/libk= notd_la-changesets.Plo --- knot/worker/libknotd_la-queue.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/worker/libknotd_= la-queue.lo -MD -MP -MF knot/worker/.deps/libknotd_la-queue.Tpo -c -o knot/= worker/libknotd_la-queue.lo `test -f 'knot/worker/queue.c' || echo './'`kno= t/worker/queue.c --- knot/worker/libknotd_la-pool.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/worker/libknotd_la-pool.lo -MD -MP -MF knot/worker/.deps/li= bknotd_la-pool.Tpo -c knot/worker/pool.c -fPIC -DPIC -o knot/worker/.libs/= libknotd_la-pool.o --- knot/worker/libknotd_la-queue.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/worker/libknotd_la-queue.lo -MD -MP -MF knot/worker/.deps/l= ibknotd_la-queue.Tpo -c knot/worker/queue.c -fPIC -DPIC -o knot/worker/.li= bs/libknotd_la-queue.o libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/worker/libknotd_la-queue.lo -MD -MP -MF knot/worker/.deps/l= ibknotd_la-queue.Tpo -c knot/worker/queue.c -o knot/worker/libknotd_la-queu= e.o >/dev/null 2>&1 mv -f knot/worker/.deps/libknotd_la-queue.Tpo knot/worker/.deps/libknotd_la= -queue.Plo --- knot/zone/libknotd_la-contents.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -contents.lo -MD -MP -MF knot/zone/.deps/libknotd_la-contents.Tpo -c -o kno= t/zone/libknotd_la-contents.lo `test -f 'knot/zone/contents.c' || echo './'= `knot/zone/contents.c --- knot/worker/libknotd_la-pool.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/worker/libknotd_la-pool.lo -MD -MP -MF knot/worker/.deps/li= bknotd_la-pool.Tpo -c knot/worker/pool.c -o knot/worker/libknotd_la-pool.o = >/dev/null 2>&1 --- knot/zone/libknotd_la-contents.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-contents.lo -MD -MP -MF knot/zone/.deps/li= bknotd_la-contents.Tpo -c knot/zone/contents.c -fPIC -DPIC -o knot/zone/.l= ibs/libknotd_la-contents.o --- knot/updates/libknotd_la-apply.lo --- mv -f knot/updates/.deps/libknotd_la-apply.Tpo knot/updates/.deps/libknotd_= la-apply.Plo --- knot/zone/libknotd_la-node.lo --- --- knot/updates/libknotd_la-ddns.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/updates/libknotd_la-ddns.lo -MD -MP -MF knot/updates/.deps/= libknotd_la-ddns.Tpo -c knot/updates/ddns.c -o knot/updates/libknotd_la-ddn= s.o >/dev/null 2>&1 --- knot/zone/libknotd_la-node.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -node.lo -MD -MP -MF knot/zone/.deps/libknotd_la-node.Tpo -c -o knot/zone/l= ibknotd_la-node.lo `test -f 'knot/zone/node.c' || echo './'`knot/zone/node.c --- knot/worker/libknotd_la-pool.lo --- mv -f knot/worker/.deps/libknotd_la-pool.Tpo knot/worker/.deps/libknotd_la-= pool.Plo --- knot/zone/libknotd_la-semantic-check.lo --- --- knot/zone/libknotd_la-node.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-node.lo -MD -MP -MF knot/zone/.deps/libkno= td_la-node.Tpo -c knot/zone/node.c -fPIC -DPIC -o knot/zone/.libs/libknotd= _la-node.o --- knot/zone/libknotd_la-semantic-check.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -semantic-check.lo -MD -MP -MF knot/zone/.deps/libknotd_la-semantic-check.T= po -c -o knot/zone/libknotd_la-semantic-check.lo `test -f 'knot/zone/semant= ic-check.c' || echo './'`knot/zone/semantic-check.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-semantic-check.lo -MD -MP -MF knot/zone/.d= eps/libknotd_la-semantic-check.Tpo -c knot/zone/semantic-check.c -fPIC -DP= IC -o knot/zone/.libs/libknotd_la-semantic-check.o --- knot/zone/libknotd_la-node.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-node.lo -MD -MP -MF knot/zone/.deps/libkno= td_la-node.Tpo -c knot/zone/node.c -o knot/zone/libknotd_la-node.o >/dev/nu= ll 2>&1 mv -f knot/zone/.deps/libknotd_la-node.Tpo knot/zone/.deps/libknotd_la-node= =2EPlo --- knot/zone/libknotd_la-serial.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -serial.lo -MD -MP -MF knot/zone/.deps/libknotd_la-serial.Tpo -c -o knot/zo= ne/libknotd_la-serial.lo `test -f 'knot/zone/serial.c' || echo './'`knot/zo= ne/serial.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-serial.lo -MD -MP -MF knot/zone/.deps/libk= notd_la-serial.Tpo -c knot/zone/serial.c -fPIC -DPIC -o knot/zone/.libs/li= bknotd_la-serial.o --- knot/zone/libknotd_la-contents.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-contents.lo -MD -MP -MF knot/zone/.deps/li= bknotd_la-contents.Tpo -c knot/zone/contents.c -o knot/zone/libknotd_la-con= tents.o >/dev/null 2>&1 --- knot/zone/libknotd_la-serial.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-serial.lo -MD -MP -MF knot/zone/.deps/libk= notd_la-serial.Tpo -c knot/zone/serial.c -o knot/zone/libknotd_la-serial.o = >/dev/null 2>&1 --- knot/updates/libknotd_la-ddns.lo --- mv -f knot/updates/.deps/libknotd_la-ddns.Tpo knot/updates/.deps/libknotd_l= a-ddns.Plo --- knot/zone/libknotd_la-timers.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -timers.lo -MD -MP -MF knot/zone/.deps/libknotd_la-timers.Tpo -c -o knot/zo= ne/libknotd_la-timers.lo `test -f 'knot/zone/timers.c' || echo './'`knot/zo= ne/timers.c --- knot/zone/libknotd_la-serial.lo --- mv -f knot/zone/.deps/libknotd_la-serial.Tpo knot/zone/.deps/libknotd_la-se= rial.Plo --- knot/zone/libknotd_la-zone-diff.lo --- --- knot/zone/libknotd_la-timers.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-timers.lo -MD -MP -MF knot/zone/.deps/libk= notd_la-timers.Tpo -c knot/zone/timers.c -fPIC -DPIC -o knot/zone/.libs/li= bknotd_la-timers.o --- knot/zone/libknotd_la-zone-diff.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zone-diff.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-diff.Tpo -c -o k= not/zone/libknotd_la-zone-diff.lo `test -f 'knot/zone/zone-diff.c' || echo = './'`knot/zone/zone-diff.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-diff.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-diff.Tpo -c knot/zone/zone-diff.c -fPIC -DPIC -o knot/zone= /.libs/libknotd_la-zone-diff.o --- knot/zone/libknotd_la-timers.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-timers.lo -MD -MP -MF knot/zone/.deps/libk= notd_la-timers.Tpo -c knot/zone/timers.c -o knot/zone/libknotd_la-timers.o = >/dev/null 2>&1 --- knot/zone/libknotd_la-semantic-check.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-semantic-check.lo -MD -MP -MF knot/zone/.d= eps/libknotd_la-semantic-check.Tpo -c knot/zone/semantic-check.c -o knot/zo= ne/libknotd_la-semantic-check.o >/dev/null 2>&1 --- knot/zone/libknotd_la-zone-diff.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-diff.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-diff.Tpo -c knot/zone/zone-diff.c -o knot/zone/libknotd_la-= zone-diff.o >/dev/null 2>&1 --- knot/zone/libknotd_la-timers.lo --- mv -f knot/zone/.deps/libknotd_la-timers.Tpo knot/zone/.deps/libknotd_la-ti= mers.Plo --- knot/zone/libknotd_la-zone-dump.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zone-dump.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-dump.Tpo -c -o k= not/zone/libknotd_la-zone-dump.lo `test -f 'knot/zone/zone-dump.c' || echo = './'`knot/zone/zone-dump.c --- knot/zone/libknotd_la-contents.lo --- mv -f knot/zone/.deps/libknotd_la-contents.Tpo knot/zone/.deps/libknotd_la-= contents.Plo --- knot/zone/libknotd_la-zone-load.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zone-load.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-load.Tpo -c -o k= not/zone/libknotd_la-zone-load.lo `test -f 'knot/zone/zone-load.c' || echo = './'`knot/zone/zone-load.c --- knot/zone/libknotd_la-zone-dump.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-dump.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-dump.Tpo -c knot/zone/zone-dump.c -fPIC -DPIC -o knot/zone= /.libs/libknotd_la-zone-dump.o --- knot/zone/libknotd_la-zone-load.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-load.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-load.Tpo -c knot/zone/zone-load.c -fPIC -DPIC -o knot/zone= /.libs/libknotd_la-zone-load.o --- knot/zone/libknotd_la-zone-diff.lo --- mv -f knot/zone/.deps/libknotd_la-zone-diff.Tpo knot/zone/.deps/libknotd_la= -zone-diff.Plo --- knot/zone/libknotd_la-zone-tree.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zone-tree.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-tree.Tpo -c -o k= not/zone/libknotd_la-zone-tree.lo `test -f 'knot/zone/zone-tree.c' || echo = './'`knot/zone/zone-tree.c --- knot/zone/libknotd_la-zone-dump.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-dump.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-dump.Tpo -c knot/zone/zone-dump.c -o knot/zone/libknotd_la-= zone-dump.o >/dev/null 2>&1 --- knot/zone/libknotd_la-zone-load.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-load.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-load.Tpo -c knot/zone/zone-load.c -o knot/zone/libknotd_la-= zone-load.o >/dev/null 2>&1 --- knot/zone/libknotd_la-zone-tree.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-tree.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-tree.Tpo -c knot/zone/zone-tree.c -fPIC -DPIC -o knot/zone= /.libs/libknotd_la-zone-tree.o --- knot/zone/libknotd_la-zone-load.lo --- mv -f knot/zone/.deps/libknotd_la-zone-load.Tpo knot/zone/.deps/libknotd_la= -zone-load.Plo --- knot/zone/libknotd_la-zone.lo --- --- knot/zone/libknotd_la-zone-dump.lo --- mv -f knot/zone/.deps/libknotd_la-zone-dump.Tpo knot/zone/.deps/libknotd_la= -zone-dump.Plo --- knot/zone/libknotd_la-zone.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zone.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone.Tpo -c -o knot/zone/l= ibknotd_la-zone.lo `test -f 'knot/zone/zone.c' || echo './'`knot/zone/zone.c --- knot/zone/libknotd_la-zone-tree.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone-tree.lo -MD -MP -MF knot/zone/.deps/l= ibknotd_la-zone-tree.Tpo -c knot/zone/zone-tree.c -o knot/zone/libknotd_la-= zone-tree.o >/dev/null 2>&1 --- knot/zone/libknotd_la-zonedb-load.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zonedb-load.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zonedb-load.Tpo -c = -o knot/zone/libknotd_la-zonedb-load.lo `test -f 'knot/zone/zonedb-load.c' = || echo './'`knot/zone/zonedb-load.c --- knot/zone/libknotd_la-zone.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone.lo -MD -MP -MF knot/zone/.deps/libkno= td_la-zone.Tpo -c knot/zone/zone.c -fPIC -DPIC -o knot/zone/.libs/libknotd= _la-zone.o --- knot/zone/libknotd_la-zonedb-load.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zonedb-load.lo -MD -MP -MF knot/zone/.deps= /libknotd_la-zonedb-load.Tpo -c knot/zone/zonedb-load.c -fPIC -DPIC -o kno= t/zone/.libs/libknotd_la-zonedb-load.o --- knot/zone/libknotd_la-zone-tree.lo --- mv -f knot/zone/.deps/libknotd_la-zone-tree.Tpo knot/zone/.deps/libknotd_la= -zone-tree.Plo --- knot/zone/libknotd_la-zonedb.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zonedb.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zonedb.Tpo -c -o knot/zo= ne/libknotd_la-zonedb.lo `test -f 'knot/zone/zonedb.c' || echo './'`knot/zo= ne/zonedb.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zonedb.lo -MD -MP -MF knot/zone/.deps/libk= notd_la-zonedb.Tpo -c knot/zone/zonedb.c -fPIC -DPIC -o knot/zone/.libs/li= bknotd_la-zonedb.o --- knot/zone/libknotd_la-semantic-check.lo --- mv -f knot/zone/.deps/libknotd_la-semantic-check.Tpo knot/zone/.deps/libkno= td_la-semantic-check.Plo --- knot/zone/libknotd_la-zonefile.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/libknotd_la= -zonefile.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zonefile.Tpo -c -o kno= t/zone/libknotd_la-zonefile.lo `test -f 'knot/zone/zonefile.c' || echo './'= `knot/zone/zonefile.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zonefile.lo -MD -MP -MF knot/zone/.deps/li= bknotd_la-zonefile.Tpo -c knot/zone/zonefile.c -fPIC -DPIC -o knot/zone/.l= ibs/libknotd_la-zonefile.o --- knot/zone/libknotd_la-zone.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zone.lo -MD -MP -MF knot/zone/.deps/libkno= td_la-zone.Tpo -c knot/zone/zone.c -o knot/zone/libknotd_la-zone.o >/dev/nu= ll 2>&1 --- knot/zone/libknotd_la-zonedb-load.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zonedb-load.lo -MD -MP -MF knot/zone/.deps= /libknotd_la-zonedb-load.Tpo -c knot/zone/zonedb-load.c -o knot/zone/libkno= td_la-zonedb-load.o >/dev/null 2>&1 --- knot/zone/libknotd_la-zonedb.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zonedb.lo -MD -MP -MF knot/zone/.deps/libk= notd_la-zonedb.Tpo -c knot/zone/zonedb.c -o knot/zone/libknotd_la-zonedb.o = >/dev/null 2>&1 --- knot/zone/libknotd_la-zonefile.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/libknotd_la-zonefile.lo -MD -MP -MF knot/zone/.deps/li= bknotd_la-zonefile.Tpo -c knot/zone/zonefile.c -o knot/zone/libknotd_la-zon= efile.o >/dev/null 2>&1 --- knot/zone/libknotd_la-zone.lo --- mv -f knot/zone/.deps/libknotd_la-zone.Tpo knot/zone/.deps/libknotd_la-zone= =2EPlo --- knot/zone/events/libknotd_la-events.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/events/libk= notd_la-events.lo -MD -MP -MF knot/zone/events/.deps/libknotd_la-events.Tpo= -c -o knot/zone/events/libknotd_la-events.lo `test -f 'knot/zone/events/ev= ents.c' || echo './'`knot/zone/events/events.c --- knot/zone/libknotd_la-zonedb-load.lo --- mv -f knot/zone/.deps/libknotd_la-zonedb-load.Tpo knot/zone/.deps/libknotd_= la-zonedb-load.Plo --- knot/zone/events/libknotd_la-handlers.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/events/libk= notd_la-handlers.lo -MD -MP -MF knot/zone/events/.deps/libknotd_la-handlers= =2ETpo -c -o knot/zone/events/libknotd_la-handlers.lo `test -f 'knot/zone/e= vents/handlers.c' || echo './'`knot/zone/events/handlers.c --- knot/zone/events/libknotd_la-events.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/events/libknotd_la-events.lo -MD -MP -MF knot/zone/eve= nts/.deps/libknotd_la-events.Tpo -c knot/zone/events/events.c -fPIC -DPIC = -o knot/zone/events/.libs/libknotd_la-events.o --- knot/zone/libknotd_la-zonedb.lo --- mv -f knot/zone/.deps/libknotd_la-zonedb.Tpo knot/zone/.deps/libknotd_la-zo= nedb.Plo --- knot/zone/events/libknotd_la-replan.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -= I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -= Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone/events/libk= notd_la-replan.lo -MD -MP -MF knot/zone/events/.deps/libknotd_la-replan.Tpo= -c -o knot/zone/events/libknotd_la-replan.lo `test -f 'knot/zone/events/re= plan.c' || echo './'`knot/zone/events/replan.c --- knot/zone/events/libknotd_la-handlers.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/events/libknotd_la-handlers.lo -MD -MP -MF knot/zone/e= vents/.deps/libknotd_la-handlers.Tpo -c knot/zone/events/handlers.c -fPIC = -DPIC -o knot/zone/events/.libs/libknotd_la-handlers.o --- knot/zone/events/libknotd_la-replan.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/events/libknotd_la-replan.lo -MD -MP -MF knot/zone/eve= nts/.deps/libknotd_la-replan.Tpo -c knot/zone/events/replan.c -fPIC -DPIC = -o knot/zone/events/.libs/libknotd_la-replan.o --- knot/zone/libknotd_la-zonefile.lo --- mv -f knot/zone/.deps/libknotd_la-zonefile.Tpo knot/zone/.deps/libknotd_la-= zonefile.Plo --- utils/common/libknotus_la-exec.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-exec.lo -MD -MP -MF= utils/common/.deps/libknotus_la-exec.Tpo -c -o utils/common/libknotus_la-e= xec.lo `test -f 'utils/common/exec.c' || echo './'`utils/common/exec.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-exec.lo -MD -MP -MF utils/common/.deps/libknotus_la-exec.Tp= o -c utils/common/exec.c -fPIC -DPIC -o utils/common/.libs/libknotus_la-ex= ec.o --- knot/zone/events/libknotd_la-replan.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/events/libknotd_la-replan.lo -MD -MP -MF knot/zone/eve= nts/.deps/libknotd_la-replan.Tpo -c knot/zone/events/replan.c -o knot/zone/= events/libknotd_la-replan.o >/dev/null 2>&1 --- knot/zone/events/libknotd_la-events.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/events/libknotd_la-events.lo -MD -MP -MF knot/zone/eve= nts/.deps/libknotd_la-events.Tpo -c knot/zone/events/events.c -o knot/zone/= events/libknotd_la-events.o >/dev/null 2>&1 --- knot/zone/events/libknotd_la-replan.lo --- mv -f knot/zone/events/.deps/libknotd_la-replan.Tpo knot/zone/events/.deps/= libknotd_la-replan.Plo --- utils/common/libknotus_la-hex.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-hex.lo -MD -MP -MF = utils/common/.deps/libknotus_la-hex.Tpo -c -o utils/common/libknotus_la-hex= =2Elo `test -f 'utils/common/hex.c' || echo './'`utils/common/hex.c --- knot/zone/events/libknotd_la-handlers.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT knot/zone/events/libknotd_la-handlers.lo -MD -MP -MF knot/zone/e= vents/.deps/libknotd_la-handlers.Tpo -c knot/zone/events/handlers.c -o knot= /zone/events/libknotd_la-handlers.o >/dev/null 2>&1 --- utils/common/libknotus_la-hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-hex.lo -MD -MP -MF utils/common/.deps/libknotus_la-hex.Tpo = -c utils/common/hex.c -fPIC -DPIC -o utils/common/.libs/libknotus_la-hex.o --- knot/zone/events/libknotd_la-events.lo --- mv -f knot/zone/events/.deps/libknotd_la-events.Tpo knot/zone/events/.deps/= libknotd_la-events.Plo --- utils/common/libknotus_la-msg.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-msg.lo -MD -MP -MF = utils/common/.deps/libknotus_la-msg.Tpo -c -o utils/common/libknotus_la-msg= =2Elo `test -f 'utils/common/msg.c' || echo './'`utils/common/msg.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-msg.lo -MD -MP -MF utils/common/.deps/libknotus_la-msg.Tpo = -c utils/common/msg.c -fPIC -DPIC -o utils/common/.libs/libknotus_la-msg.o --- utils/common/libknotus_la-exec.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-exec.lo -MD -MP -MF utils/common/.deps/libknotus_la-exec.Tp= o -c utils/common/exec.c -o utils/common/libknotus_la-exec.o >/dev/null 2>&1 --- utils/common/libknotus_la-hex.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-hex.lo -MD -MP -MF utils/common/.deps/libknotus_la-hex.Tpo = -c utils/common/hex.c -o utils/common/libknotus_la-hex.o >/dev/null 2>&1 --- utils/common/libknotus_la-msg.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-msg.lo -MD -MP -MF utils/common/.deps/libknotus_la-msg.Tpo = -c utils/common/msg.c -o utils/common/libknotus_la-msg.o >/dev/null 2>&1 mv -f utils/common/.deps/libknotus_la-msg.Tpo utils/common/.deps/libknotus_= la-msg.Plo --- utils/common/libknotus_la-netio.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-netio.lo -MD -MP -M= F utils/common/.deps/libknotus_la-netio.Tpo -c -o utils/common/libknotus_la= -netio.lo `test -f 'utils/common/netio.c' || echo './'`utils/common/netio.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-netio.lo -MD -MP -MF utils/common/.deps/libknotus_la-netio.= Tpo -c utils/common/netio.c -fPIC -DPIC -o utils/common/.libs/libknotus_la= -netio.o --- utils/common/libknotus_la-hex.lo --- mv -f utils/common/.deps/libknotus_la-hex.Tpo utils/common/.deps/libknotus_= la-hex.Plo --- utils/common/libknotus_la-params.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-params.lo -MD -MP -= MF utils/common/.deps/libknotus_la-params.Tpo -c -o utils/common/libknotus_= la-params.lo `test -f 'utils/common/params.c' || echo './'`utils/common/par= ams.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-params.lo -MD -MP -MF utils/common/.deps/libknotus_la-param= s.Tpo -c utils/common/params.c -fPIC -DPIC -o utils/common/.libs/libknotus= _la-params.o --- knot/zone/events/libknotd_la-handlers.lo --- mv -f knot/zone/events/.deps/libknotd_la-handlers.Tpo knot/zone/events/.dep= s/libknotd_la-handlers.Plo --- utils/common/libknotus_la-resolv.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-resolv.lo -MD -MP -= MF utils/common/.deps/libknotus_la-resolv.Tpo -c -o utils/common/libknotus_= la-resolv.lo `test -f 'utils/common/resolv.c' || echo './'`utils/common/res= olv.c libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-resolv.lo -MD -MP -MF utils/common/.deps/libknotus_la-resol= v.Tpo -c utils/common/resolv.c -fPIC -DPIC -o utils/common/.libs/libknotus= _la-resolv.o --- utils/common/libknotus_la-exec.lo --- mv -f utils/common/.deps/libknotus_la-exec.Tpo utils/common/.deps/libknotus= _la-exec.Plo --- utils/common/libknotus_la-sign.lo --- --- utils/common/libknotus_la-params.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-params.lo -MD -MP -MF utils/common/.deps/libknotus_la-param= s.Tpo -c utils/common/params.c -o utils/common/libknotus_la-params.o >/dev/= null 2>&1 --- utils/common/libknotus_la-sign.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-sign.lo -MD -MP -MF= utils/common/.deps/libknotus_la-sign.Tpo -c -o utils/common/libknotus_la-s= ign.lo `test -f 'utils/common/sign.c' || echo './'`utils/common/sign.c --- utils/common/libknotus_la-netio.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-netio.lo -MD -MP -MF utils/common/.deps/libknotus_la-netio.= Tpo -c utils/common/netio.c -o utils/common/libknotus_la-netio.o >/dev/null= 2>&1 --- utils/common/libknotus_la-sign.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-sign.lo -MD -MP -MF utils/common/.deps/libknotus_la-sign.Tp= o -c utils/common/sign.c -fPIC -DPIC -o utils/common/.libs/libknotus_la-si= gn.o --- utils/common/libknotus_la-resolv.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-resolv.lo -MD -MP -MF utils/common/.deps/libknotus_la-resol= v.Tpo -c utils/common/resolv.c -o utils/common/libknotus_la-resolv.o >/dev/= null 2>&1 --- utils/common/libknotus_la-sign.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-sign.lo -MD -MP -MF utils/common/.deps/libknotus_la-sign.Tp= o -c utils/common/sign.c -o utils/common/libknotus_la-sign.o >/dev/null 2>&1 --- utils/common/libknotus_la-params.lo --- mv -f utils/common/.deps/libknotus_la-params.Tpo utils/common/.deps/libknot= us_la-params.Plo --- utils/common/libknotus_la-resolv.lo --- mv -f utils/common/.deps/libknotus_la-resolv.Tpo utils/common/.deps/libknot= us_la-resolv.Plo --- utils/common/libknotus_la-token.lo --- --- utils/kdig/kdig_exec.o --- --- utils/common/libknotus_la-token.lo --- /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -= include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE= _DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib = -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-se= curity -Werror=3Dimplicit -MT utils/common/libknotus_la-token.lo -MD -MP -M= F utils/common/.deps/libknotus_la-token.Tpo -c -o utils/common/libknotus_la= -token.lo `test -f 'utils/common/token.c' || echo './'`utils/common/token.c --- utils/kdig/kdig_exec.o --- depbase=3D`echo utils/kdig/kdig_exec.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;= cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/lo= cal/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/k= not"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing= -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/kdig/kdig_exe= c.o -MD -MP -MF $depbase.Tpo -c -o utils/kdig/kdig_exec.o utils/kdig/kdig_e= xec.c && mv -f $depbase.Tpo $depbase.Po --- utils/common/libknotus_la-sign.lo --- mv -f utils/common/.deps/libknotus_la-sign.Tpo utils/common/.deps/libknotus= _la-sign.Plo --- utils/kdig/kdig_main.o --- depbase=3D`echo utils/kdig/kdig_main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;= cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/lo= cal/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/k= not"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing= -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/kdig/kdig_mai= n.o -MD -MP -MF $depbase.Tpo -c -o utils/kdig/kdig_main.o utils/kdig/kdig_m= ain.c && mv -f $depbase.Tpo $depbase.Po --- utils/common/libknotus_la-token.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-token.lo -MD -MP -MF utils/common/.deps/libknotus_la-token.= Tpo -c utils/common/token.c -fPIC -DPIC -o utils/common/.libs/libknotus_la= -token.o --- utils/common/libknotus_la-netio.lo --- mv -f utils/common/.deps/libknotus_la-netio.Tpo utils/common/.deps/libknotu= s_la-netio.Plo --- utils/kdig/kdig_params.o --- depbase=3D`echo utils/kdig/kdig_params.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'= `; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/= local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run= /knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasi= ng -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/kdig/kdig_p= arams.o -MD -MP -MF $depbase.Tpo -c -o utils/kdig/kdig_params.o utils/kdig/= kdig_params.c && mv -f $depbase.Tpo $depbase.Po --- utils/khost/khost_main.o --- depbase=3D`echo utils/khost/khost_main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'= `; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/= local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run= /knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasi= ng -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/khost/khost= _main.o -MD -MP -MF $depbase.Tpo -c -o utils/khost/khost_main.o utils/khost= /khost_main.c && mv -f $depbase.Tpo $depbase.Po --- utils/common/libknotus_la-token.lo --- libtool: compile: cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\" -DRUN_DIR= =3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict= -aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/comm= on/libknotus_la-token.lo -MD -MP -MF utils/common/.deps/libknotus_la-token.= Tpo -c utils/common/token.c -o utils/common/libknotus_la-token.o >/dev/null= 2>&1 --- utils/khost/khost_params.o --- depbase=3D`echo utils/khost/khost_params.o | sed 's|[^/]*$|.deps/&|;s|\.o$|= |'`; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/us= r/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/r= un/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/khost/kho= st_params.o -MD -MP -MF $depbase.Tpo -c -o utils/khost/khost_params.o utils= /khost/khost_params.c && mv -f $depbase.Tpo $depbase.Po --- utils/common/libknotus_la-token.lo --- mv -f utils/common/.deps/libknotus_la-token.Tpo utils/common/.deps/libknotu= s_la-token.Plo --- utils/knsupdate/knsupdate_exec.o --- depbase=3D`echo utils/knsupdate/knsupdate_exec.o | sed 's|[^/]*$|.deps/&|;s= |\.o$||'`; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR= =3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D= '"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-str= ict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/k= nsupdate/knsupdate_exec.o -MD -MP -MF $depbase.Tpo -c -o utils/knsupdate/kn= supdate_exec.o utils/knsupdate/knsupdate_exec.c && mv -f $depbase.Tpo $depb= ase.Po --- utils/knsupdate/knsupdate_main.o --- --- utils/knsupdate/knsupdate_params.o --- --- utils/knsupdate/knsupdate_main.o --- depbase=3D`echo utils/knsupdate/knsupdate_main.o | sed 's|[^/]*$|.deps/&|;s= |\.o$||'`; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR= =3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D= '"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-str= ict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/k= nsupdate/knsupdate_main.o -MD -MP -MF $depbase.Tpo -c -o utils/knsupdate/kn= supdate_main.o utils/knsupdate/knsupdate_main.c && mv -f $depbase.Tpo $depb= ase.Po --- utils/knsupdate/knsupdate_params.o --- depbase=3D`echo utils/knsupdate/knsupdate_params.o | sed 's|[^/]*$|.deps/&|= ;s|\.o$||'`; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR= =3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D= '"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-str= ict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/k= nsupdate/knsupdate_params.o -MD -MP -MF $depbase.Tpo -c -o utils/knsupdate/= knsupdate_params.o utils/knsupdate/knsupdate_params.c && mv -f $depbase.Tpo= $depbase.Po --- knot/ctl/knotc_main.o --- depbase=3D`echo knot/ctl/knotc_main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; = cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/loc= al/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/kn= ot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing = -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl/knotc_main.= o -MD -MP -MF $depbase.Tpo -c -o knot/ctl/knotc_main.o knot/ctl/knotc_main.= c && mv -f $depbase.Tpo $depbase.Po --- knot/knotd-main.o --- cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/loc= al/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/kn= ot"' -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -= fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT = knot/knotd-main.o -MD -MP -MF knot/.deps/knotd-main.Tpo -c -o knot/knotd-ma= in.o `test -f 'knot/main.c' || echo './'`knot/main.c --- utils/knot1to2/cf-lex.o --- depbase=3D`echo utils/knot1to2/cf-lex.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`= ; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/l= ocal/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/= knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasin= g -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/knot1to2/cf-= lex.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/cf-lex.o utils/knot1to2= /cf-lex.c && mv -f $depbase.Tpo $depbase.Po --- utils/knot1to2/cf-parse.tab.o --- depbase=3D`echo utils/knot1to2/cf-parse.tab.o | sed 's|[^/]*$|.deps/&|;s|\.= o$||'`; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"= /usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/va= r/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/knot1t= o2/cf-parse.tab.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/cf-parse.ta= b.o utils/knot1to2/cf-parse.tab.c && mv -f $depbase.Tpo $depbase.Po --- knot/knotd-main.o --- mv -f knot/.deps/knotd-main.Tpo knot/.deps/knotd-main.Po --- utils/knot1to2/extra.o --- depbase=3D`echo utils/knot1to2/extra.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;= cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/lo= cal/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/k= not"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing= -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/knot1to2/extr= a.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/extra.o utils/knot1to2/ex= tra.c && mv -f $depbase.Tpo $depbase.Po --- utils/knot1to2/includes.o --- depbase=3D`echo utils/knot1to2/includes.o | sed 's|[^/]*$|.deps/&|;s|\.o$||= '`; cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr= /local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/ru= n/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-alias= ing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/knot1to2/i= ncludes.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/includes.o utils/kn= ot1to2/includes.c && mv -f $depbase.Tpo $depbase.Po --- utils/knot1to2/main.o --- depbase=3D`echo utils/knot1to2/main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; = cc -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/loc= al/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/kn= ot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing = -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/knot1to2/main.= o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/main.o utils/knot1to2/main.= c && mv -f $depbase.Tpo $depbase.Po --- libknot-internal.la --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -fstack-protector -o libknot-internal.la libknot/internal/libknot_in= ternal_la-base32hex.lo libknot/internal/libknot_internal_la-base64.lo lib= knot/internal/libknot_internal_la-errcode.lo libknot/internal/libknot_inte= rnal_la-getline.lo libknot/internal/libknot_internal_la-heap.lo libknot/i= nternal/libknot_internal_la-hhash.lo libknot/internal/libknot_internal_la-= lists.lo libknot/internal/libknot_internal_la-mem.lo libknot/internal/lib= knot_internal_la-mempattern.lo libknot/internal/libknot_internal_la-mempoo= l.lo libknot/internal/namedb/libknot_internal_la-namedb_lmdb.lo libknot/i= nternal/namedb/libknot_internal_la-namedb_trie.lo libknot/internal/libknot= _internal_la-net.lo libknot/internal/libknot_internal_la-print.lo libknot= /internal/libknot_internal_la-sockaddr.lo libknot/internal/libknot_interna= l_la-strlcat.lo libknot/internal/libknot_internal_la-strlcpy.lo libknot/i= nternal/libknot_internal_la-tolower.lo libknot/internal/trie/libknot_inter= nal_la-hat-trie.lo libknot/internal/trie/libknot_internal_la-murmurhash3.l= o libknot/internal/libknot_internal_la-utils.lo -lpthread -lm --- libknot-yparser.la --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o libknot-yparser.la libknot/yparser/yparser.lo l= ibknot/yparser/ypbody.lo libknot/yparser/ypformat.lo libknot/yparser/ypsch= eme.lo libknot/yparser/yptrafo.lo -lpthread -lm --- libknot-internal.la --- libtool: link: ar cru .libs/libknot-internal.a libknot/internal/.libs/libkn= ot_internal_la-base32hex.o libknot/internal/.libs/libknot_internal_la-base6= 4.o libknot/internal/.libs/libknot_internal_la-errcode.o libknot/internal/.= libs/libknot_internal_la-getline.o libknot/internal/.libs/libknot_internal_= la-heap.o libknot/internal/.libs/libknot_internal_la-hhash.o libknot/intern= al/.libs/libknot_internal_la-lists.o libknot/internal/.libs/libknot_interna= l_la-mem.o libknot/internal/.libs/libknot_internal_la-mempattern.o libknot/= internal/.libs/libknot_internal_la-mempool.o libknot/internal/namedb/.libs/= libknot_internal_la-namedb_lmdb.o libknot/internal/namedb/.libs/libknot_int= ernal_la-namedb_trie.o libknot/internal/.libs/libknot_internal_la-net.o lib= knot/internal/.libs/libknot_internal_la-print.o libknot/internal/.libs/libk= not_internal_la-sockaddr.o libknot/internal/.libs/libknot_internal_la-strlc= at.o libknot/internal/.libs/libknot_internal_la-strlcpy.o libknot/internal/= =2Elibs/libknot_internal_la-tolower.o libknot/internal/trie/.libs/libknot_i= nternal_la-hat-trie.o libknot/internal/trie/.libs/libknot_internal_la-murmu= rhash3.o libknot/internal/.libs/libknot_internal_la-utils.o=20 libtool: link: ranlib .libs/libknot-internal.a libtool: link: ( cd ".libs" && rm -f "libknot-internal.la" && ln -s "../lib= knot-internal.la" "libknot-internal.la" ) --- libknot.la --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -version-info 1:0:0 -L/usr/local/lib -llmdb -fstack-protector -o libkn= ot.la -rpath /usr/local/lib libknot/libknot_la-binary.lo libknot/libknot_l= a-consts.lo libknot/libknot_la-descriptor.lo libknot/libknot_la-dname.lo l= ibknot/libknot_la-errcode.lo libknot/packet/libknot_la-compr.lo libknot/p= acket/libknot_la-pkt.lo libknot/packet/libknot_la-rrset-wire.lo libknot/p= rocessing/libknot_la-layer.lo libknot/processing/libknot_la-overlay.lo li= bknot/processing/libknot_la-requestor.lo libknot/libknot_la-rdata.lo libkn= ot/libknot_la-rdataset.lo libknot/libknot_la-rrset-dump.lo libknot/libknot= _la-rrset.lo libknot/rrtype/libknot_la-nsec3.lo libknot/rrtype/libknot_la= -nsec3param.lo libknot/rrtype/libknot_la-opt.lo libknot/rrtype/libknot_la= -tsig.lo libknot/libknot_la-tsig-op.lo libknot/libknot_la-tsig.lo dnssec= /libdnssec.la libknot-internal.la -lpthread -lm --- libknot-yparser.la --- libtool: link: ar cru .libs/libknot-yparser.a libknot/yparser/.libs/yparser= =2Eo libknot/yparser/.libs/ypbody.o libknot/yparser/.libs/ypformat.o libkno= t/yparser/.libs/ypscheme.o libknot/yparser/.libs/yptrafo.o=20 libtool: link: ranlib .libs/libknot-yparser.a libtool: link: ( cd ".libs" && rm -f "libknot-yparser.la" && ln -s "../libk= not-yparser.la" "libknot-yparser.la" ) --- libknot.la --- libtool: link: cc -shared -fPIC -DPIC libknot/.libs/libknot_la-binary.o l= ibknot/.libs/libknot_la-consts.o libknot/.libs/libknot_la-descriptor.o libk= not/.libs/libknot_la-dname.o libknot/.libs/libknot_la-errcode.o libknot/pac= ket/.libs/libknot_la-compr.o libknot/packet/.libs/libknot_la-pkt.o libknot/= packet/.libs/libknot_la-rrset-wire.o libknot/processing/.libs/libknot_la-la= yer.o libknot/processing/.libs/libknot_la-overlay.o libknot/processing/.lib= s/libknot_la-requestor.o libknot/.libs/libknot_la-rdata.o libknot/.libs/lib= knot_la-rdataset.o libknot/.libs/libknot_la-rrset-dump.o libknot/.libs/libk= not_la-rrset.o libknot/rrtype/.libs/libknot_la-nsec3.o libknot/rrtype/.libs= /libknot_la-nsec3param.o libknot/rrtype/.libs/libknot_la-opt.o libknot/rrty= pe/.libs/libknot_la-tsig.o libknot/.libs/libknot_la-tsig-op.o libknot/.libs= /libknot_la-tsig.o -Wl,--whole-archive ./.libs/libknot-internal.a -Wl,--no= -whole-archive -Wl,-rpath -Wl,/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0= /src/dnssec/.libs -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib -llmdb dns= sec/.libs/libdnssec.so -lgnutls -lnettle -ljansson -lpthread -lm -O2 -fsta= ck-protector -fstack-protector -Wl,-soname -Wl,libknot.so.1 -o .libs/libk= not.so.1.0.0 libtool: link: (cd ".libs" && rm -f "libknot.so.1" && ln -s "libknot.so.1.0= =2E0" "libknot.so.1") libtool: link: (cd ".libs" && rm -f "libknot.so" && ln -s "libknot.so.1.0.0= " "libknot.so") libtool: link: (cd .libs/libknot.lax/libknot-internal.a && ar x "/wrkdirs/u= sr/ports/dns/knot2/work/knot-2.0.0/src/./.libs/libknot-internal.a") copying selected object files to avoid basename conflicts... libtool: link: ln libknot/libknot_la-tsig.o .libs/libknot.lax/lt1-libknot_l= a-tsig.o || cp libknot/libknot_la-tsig.o .libs/libknot.lax/lt1-libknot_la-t= sig.o libtool: link: ar cru .libs/libknot.a libknot/libknot_la-binary.o libknot/l= ibknot_la-consts.o libknot/libknot_la-descriptor.o libknot/libknot_la-dname= =2Eo libknot/libknot_la-errcode.o libknot/packet/libknot_la-compr.o libknot= /packet/libknot_la-pkt.o libknot/packet/libknot_la-rrset-wire.o libknot/pro= cessing/libknot_la-layer.o libknot/processing/libknot_la-overlay.o libknot/= processing/libknot_la-requestor.o libknot/libknot_la-rdata.o libknot/libkno= t_la-rdataset.o libknot/libknot_la-rrset-dump.o libknot/libknot_la-rrset.o = libknot/rrtype/libknot_la-nsec3.o libknot/rrtype/libknot_la-nsec3param.o li= bknot/rrtype/libknot_la-opt.o libknot/rrtype/libknot_la-tsig.o libknot/libk= not_la-tsig-op.o .libs/libknot.lax/lt1-libknot_la-tsig.o .libs/libknot.lax/= libknot-internal.a/libknot_internal_la-base32hex.o .libs/libknot.lax/libkno= t-internal.a/libknot_internal_la-base64.o .libs/libknot.lax/libknot-interna= l.a/libknot_internal_la-errcode.o .libs/libknot.lax/libknot-internal.a/libk= not_internal_la-getline.o .libs/libknot.lax/libknot-internal.a/libknot_inte= rnal_la-hat-trie.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la= -heap.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la-hhash.o .l= ibs/libknot.lax/libknot-internal.a/libknot_internal_la-lists.o .libs/libkno= t.lax/libknot-internal.a/libknot_internal_la-mem.o .libs/libknot.lax/libkno= t-internal.a/libknot_internal_la-mempattern.o .libs/libknot.lax/libknot-int= ernal.a/libknot_internal_la-mempool.o .libs/libknot.lax/libknot-internal.a/= libknot_internal_la-murmurhash3.o .libs/libknot.lax/libknot-internal.a/libk= not_internal_la-namedb_lmdb.o .libs/libknot.lax/libknot-internal.a/libknot_= internal_la-namedb_trie.o .libs/libknot.lax/libknot-internal.a/libknot_inte= rnal_la-net.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la-prin= t.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la-sockaddr.o .li= bs/libknot.lax/libknot-internal.a/libknot_internal_la-strlcat.o .libs/libkn= ot.lax/libknot-internal.a/libknot_internal_la-strlcpy.o .libs/libknot.lax/l= ibknot-internal.a/libknot_internal_la-tolower.o .libs/libknot.lax/libknot-i= nternal.a/libknot_internal_la-utils.o libtool: link: ranlib .libs/libknot.a libtool: link: rm -fr .libs/libknot.lax .libs/libknot.lax libtool: link: ( cd ".libs" && rm -f "libknot.la" && ln -s "../libknot.la" = "libknot.la" ) --- libknotd.la --- --- libknotus.la --- --- libknotd.la --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -L/usr/local/lib -lurcu -fstack-protector -o libknotd.la knot/conf/l= ibknotd_la-base.lo knot/conf/libknotd_la-conf.lo knot/conf/libknotd_la-co= nfdb.lo knot/conf/libknotd_la-scheme.lo knot/conf/libknotd_la-tools.lo k= not/ctl/libknotd_la-estimator.lo knot/ctl/libknotd_la-process.lo knot/ctl= /libknotd_la-remote.lo knot/dnssec/libknotd_la-context.lo knot/dnssec/lib= knotd_la-nsec-chain.lo knot/dnssec/libknotd_la-nsec3-chain.lo knot/dnssec= /libknotd_la-policy.lo knot/dnssec/libknotd_la-rrset-sign.lo knot/dnssec/= libknotd_la-zone-events.lo knot/dnssec/libknotd_la-zone-keys.lo knot/dnss= ec/libknotd_la-zone-nsec.lo knot/dnssec/libknotd_la-zone-sign.lo knot/mod= ules/libknotd_la-synth_record.lo knot/modules/libknotd_la-dnsproxy.lo kno= t/nameserver/libknotd_la-axfr.lo knot/nameserver/libknotd_la-capture.lo k= not/nameserver/libknotd_la-chaos.lo knot/nameserver/libknotd_la-internet.l= o knot/nameserver/libknotd_la-ixfr.lo knot/nameserver/libknotd_la-notify.= lo knot/nameserver/libknotd_la-nsec_proofs.lo knot/nameserver/libknotd_la= -process_answer.lo knot/nameserver/libknotd_la-process_query.lo knot/name= server/libknotd_la-query_module.lo knot/nameserver/libknotd_la-tsig_ctx.lo= knot/nameserver/libknotd_la-update.lo knot/common/libknotd_la-evsched.lo= knot/common/libknotd_la-fdset.lo knot/common/libknotd_la-log.lo knot/co= mmon/libknotd_la-ref.lo knot/server/libknotd_la-dthreads.lo knot/server/l= ibknotd_la-journal.lo knot/server/libknotd_la-rrl.lo knot/server/libknotd= _la-serialization.lo knot/server/libknotd_la-server.lo knot/server/libkno= td_la-tcp-handler.lo knot/server/libknotd_la-udp-handler.lo knot/updates/= libknotd_la-acl.lo knot/updates/libknotd_la-apply.lo knot/updates/libknot= d_la-changesets.lo knot/updates/libknotd_la-ddns.lo knot/updates/libknotd= _la-zone-update.lo knot/worker/libknotd_la-pool.lo knot/worker/libknotd_l= a-queue.lo knot/zone/libknotd_la-contents.lo knot/zone/events/libknotd_la= -events.lo knot/zone/events/libknotd_la-handlers.lo knot/zone/events/libk= notd_la-replan.lo knot/zone/libknotd_la-node.lo knot/zone/libknotd_la-sem= antic-check.lo knot/zone/libknotd_la-serial.lo knot/zone/libknotd_la-time= rs.lo knot/zone/libknotd_la-zone-diff.lo knot/zone/libknotd_la-zone-dump.= lo knot/zone/libknotd_la-zone-load.lo knot/zone/libknotd_la-zone-tree.lo = knot/zone/libknotd_la-zone.lo knot/zone/libknotd_la-zonedb-load.lo knot/= zone/libknotd_la-zonedb.lo knot/zone/libknotd_la-zonefile.lo libknot.la= libknot-yparser.la zscanner/libzscanner.la -L/usr/local/lib -lurcu -lpt= hread -lm --- libknotus.la --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o libknotus.la utils/common/libknotus_la-exec.lo = utils/common/libknotus_la-hex.lo utils/common/libknotus_la-msg.lo utils/= common/libknotus_la-netio.lo utils/common/libknotus_la-params.lo utils/co= mmon/libknotus_la-resolv.lo utils/common/libknotus_la-sign.lo utils/commo= n/libknotus_la-token.lo libknot.la -lpthread -lm libtool: link: ar cru .libs/libknotus.a utils/common/.libs/libknotus_la-exe= c.o utils/common/.libs/libknotus_la-hex.o utils/common/.libs/libknotus_la-m= sg.o utils/common/.libs/libknotus_la-netio.o utils/common/.libs/libknotus_l= a-params.o utils/common/.libs/libknotus_la-resolv.o utils/common/.libs/libk= notus_la-sign.o utils/common/.libs/libknotus_la-token.o=20 libtool: link: ranlib .libs/libknotus.a libtool: link: ( cd ".libs" && rm -f "libknotus.la" && ln -s "../libknotus.= la" "libknotus.la" ) --- kdig --- --- khost --- --- knsupdate --- --- khost --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o khost utils/kdig/kdig_exec.o utils/kdig/kdig_par= ams.o utils/khost/khost_main.o utils/khost/khost_params.o libknotus.la = -lpthread -lm --- kdig --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o kdig utils/kdig/kdig_exec.o utils/kdig/kdig_main= =2Eo utils/kdig/kdig_params.o libknotus.la -lpthread -lm --- knsupdate --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o knsupdate utils/knsupdate/knsupdate_exec.o utils= /knsupdate/knsupdate_main.o utils/knsupdate/knsupdate_params.o zscanner/li= bzscanner.la libknotus.la -lpthread -lm --- libknotd.la --- libtool: link: (cd .libs/libknotd.lax/libknot-yparser.a && ar x "/wrkdirs/u= sr/ports/dns/knot2/work/knot-2.0.0/src/./.libs/libknot-yparser.a") libtool: link: ar cru .libs/libknotd.a knot/conf/.libs/libknotd_la-base.o k= not/conf/.libs/libknotd_la-conf.o knot/conf/.libs/libknotd_la-confdb.o knot= /conf/.libs/libknotd_la-scheme.o knot/conf/.libs/libknotd_la-tools.o knot/c= tl/.libs/libknotd_la-estimator.o knot/ctl/.libs/libknotd_la-process.o knot/= ctl/.libs/libknotd_la-remote.o knot/dnssec/.libs/libknotd_la-context.o knot= /dnssec/.libs/libknotd_la-nsec-chain.o knot/dnssec/.libs/libknotd_la-nsec3-= chain.o knot/dnssec/.libs/libknotd_la-policy.o knot/dnssec/.libs/libknotd_l= a-rrset-sign.o knot/dnssec/.libs/libknotd_la-zone-events.o knot/dnssec/.lib= s/libknotd_la-zone-keys.o knot/dnssec/.libs/libknotd_la-zone-nsec.o knot/dn= ssec/.libs/libknotd_la-zone-sign.o knot/modules/.libs/libknotd_la-synth_rec= ord.o knot/modules/.libs/libknotd_la-dnsproxy.o knot/nameserver/.libs/libkn= otd_la-axfr.o knot/nameserver/.libs/libknotd_la-capture.o knot/nameserver/.= libs/libknotd_la-chaos.o knot/nameserver/.libs/libknotd_la-internet.o knot/= nameserver/.libs/libknotd_la-ixfr.o knot/nameserver/.libs/libknotd_la-notif= y.o knot/nameserver/.libs/libknotd_la-nsec_proofs.o knot/nameserver/.libs/l= ibknotd_la-process_answer.o knot/nameserver/.libs/libknotd_la-process_query= =2Eo knot/nameserver/.libs/libknotd_la-query_module.o knot/nameserver/.libs= /libknotd_la-tsig_ctx.o knot/nameserver/.libs/libknotd_la-update.o knot/com= mon/.libs/libknotd_la-evsched.o knot/common/.libs/libknotd_la-fdset.o knot/= common/.libs/libknotd_la-log.o knot/common/.libs/libknotd_la-ref.o knot/ser= ver/.libs/libknotd_la-dthreads.o knot/server/.libs/libknotd_la-journal.o kn= ot/server/.libs/libknotd_la-rrl.o knot/server/.libs/libknotd_la-serializati= on.o knot/server/.libs/libknotd_la-server.o knot/server/.libs/libknotd_la-t= cp-handler.o knot/server/.libs/libknotd_la-udp-handler.o knot/updates/.libs= /libknotd_la-acl.o knot/updates/.libs/libknotd_la-apply.o knot/updates/.lib= s/libknotd_la-changesets.o knot/updates/.libs/libknotd_la-ddns.o knot/updat= es/.libs/libknotd_la-zone-update.o knot/worker/.libs/libknotd_la-pool.o kno= t/worker/.libs/libknotd_la-queue.o knot/zone/.libs/libknotd_la-contents.o k= not/zone/events/.libs/libknotd_la-events.o knot/zone/events/.libs/libknotd_= la-handlers.o knot/zone/events/.libs/libknotd_la-replan.o knot/zone/.libs/l= ibknotd_la-node.o knot/zone/.libs/libknotd_la-semantic-check.o knot/zone/.l= ibs/libknotd_la-serial.o knot/zone/.libs/libknotd_la-timers.o knot/zone/.li= bs/libknotd_la-zone-diff.o knot/zone/.libs/libknotd_la-zone-dump.o knot/zon= e/.libs/libknotd_la-zone-load.o knot/zone/.libs/libknotd_la-zone-tree.o kno= t/zone/.libs/libknotd_la-zone.o knot/zone/.libs/libknotd_la-zonedb-load.o k= not/zone/.libs/libknotd_la-zonedb.o knot/zone/.libs/libknotd_la-zonefile.o = .libs/libknotd.lax/libknot-yparser.a/yparser.o .libs/libknotd.lax/libknot= -yparser.a/ypbody.o .libs/libknotd.lax/libknot-yparser.a/ypformat.o .libs/l= ibknotd.lax/libknot-yparser.a/ypscheme.o .libs/libknotd.lax/libknot-yparser= =2Ea/yptrafo.o=20 libtool: link: ranlib .libs/libknotd.a libtool: link: rm -fr .libs/libknotd.lax libtool: link: ( cd ".libs" && rm -f "libknotd.la" && ln -s "../libknotd.la= " "libknotd.la" ) --- knot1to2 --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o knot1to2 utils/knot1to2/cf-lex.o utils/knot1to2/= cf-parse.tab.o utils/knot1to2/extra.o utils/knot1to2/includes.o utils/kn= ot1to2/main.o libknotd.la -lpthread -lm --- kdig --- libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/kdig = utils/kdig/kdig_exec.o utils/kdig/kdig_main.o utils/kdig/kdig_params.o ./.= libs/libknotus.a /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/.libs/lib= knot.so -L/usr/local/lib /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/d= nssec/.libs/libdnssec.so -llmdb -lgnutls -lnettle -ljansson -lpthread -lm -= Wl,-rpath -Wl,/usr/local/lib --- khost --- libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/khost= utils/kdig/kdig_exec.o utils/kdig/kdig_params.o utils/khost/khost_main.o u= tils/khost/khost_params.o ./.libs/libknotus.a /wrkdirs/usr/ports/dns/knot2= /work/knot-2.0.0/src/.libs/libknot.so -L/usr/local/lib /wrkdirs/usr/ports/d= ns/knot2/work/knot-2.0.0/src/dnssec/.libs/libdnssec.so -llmdb -lgnutls -lne= ttle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib --- knsupdate --- libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/knsup= date utils/knsupdate/knsupdate_exec.o utils/knsupdate/knsupdate_main.o util= s/knsupdate/knsupdate_params.o zscanner/.libs/libzscanner.so ./.libs/libkn= otus.a /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/.libs/libknot.so -L= /usr/local/lib /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/dnssec/.lib= s/libdnssec.so -llmdb -lgnutls -lnettle -ljansson -lpthread -lm -Wl,-rpath = -Wl,/usr/local/lib --- knot1to2 --- libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/knot1= to2 utils/knot1to2/cf-lex.o utils/knot1to2/cf-parse.tab.o utils/knot1to2/ex= tra.o utils/knot1to2/includes.o utils/knot1to2/main.o ./.libs/libknotd.a -= L/usr/local/lib /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/.libs/libk= not.so /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/dnssec/.libs/libdns= sec.so /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/zscanner/.libs/libz= scanner.so -lurcu -llmdb -lgnutls -lnettle -ljansson -lpthread -lm -Wl,-rpa= th -Wl,/usr/local/lib --- knotc --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o knotc knot/ctl/knotc_main.o libknotd.la -lpthread= -lm --- knotd --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o knotd knot/knotd-main.o libknotd.la -L/usr/local/= lib -lurcu -lpthread -lm --- knotc --- libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/knotc= knot/ctl/knotc_main.o ./.libs/libknotd.a -L/usr/local/lib /wrkdirs/usr/po= rts/dns/knot2/work/knot-2.0.0/src/.libs/libknot.so /wrkdirs/usr/ports/dns/k= not2/work/knot-2.0.0/src/dnssec/.libs/libdnssec.so /wrkdirs/usr/ports/dns/k= not2/work/knot-2.0.0/src/zscanner/.libs/libzscanner.so -lurcu -llmdb -lgnut= ls -lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib --- knotd --- libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/knotd= knot/knotd-main.o ./.libs/libknotd.a -L/usr/local/lib /wrkdirs/usr/ports/= dns/knot2/work/knot-2.0.0/src/.libs/libknot.so /wrkdirs/usr/ports/dns/knot2= /work/knot-2.0.0/src/dnssec/.libs/libdnssec.so /wrkdirs/usr/ports/dns/knot2= /work/knot-2.0.0/src/zscanner/.libs/libzscanner.so -lurcu -llmdb -lgnutls -= lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib Making all in tests Making all in tests-fuzz --- packet.o --- depbase=3D`echo packet.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; cc -DHAVE_CON= FIG_H -I. -I../src -include ../src/config.h -I../src -O2 -pipe -fstac= k-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3D= implicit -MT packet.o -MD -MP -MF $depbase.Tpo -c -o packet.o packet.c && m= v -f $depbase.Tpo $depbase.Po --- packet --- /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -O2 -pipe -fstack-prot= ector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplic= it -fstack-protector -o packet packet.o ../src/libknot.la -lpthread -lm libtool: link: cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -W= error=3Dformat-security -Werror=3Dimplicit -fstack-protector -o .libs/packe= t packet.o ../src/.libs/libknot.so -L/usr/local/lib /wrkdirs/usr/ports/dns= /knot2/work/knot-2.0.0/src/dnssec/.libs/libdnssec.so -llmdb -lgnutls -lnett= le -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib Making all in samples Making all in doc --- man/knot.conf.5 --- --- man/knotc.8 --- --- man/knotd.8 --- --- man/kdig.1 --- --- man/knot.conf.5 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knot.conf.5in > man/knot.conf.5 --- man/knotc.8 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knotc.8in > man/knotc.8 --- man/knotd.8 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knotd.8in > man/knotd.8 --- man/khost.1 --- --- man/kdig.1 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/kdig.1in > man/kdig.1 --- man/knsupdate.1 --- --- man/knot1to2.1 --- --- man/khost.1 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/khost.1in > man/khost.1 --- man/knsupdate.1 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knsupdate.1in > man/knsupdate.1 --- man/knot1to2.1 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knot1to2.1in > man/knot1to2.1 --- man/knsec3hash.1 --- --- man/keymgr.8 --- --- man/knsec3hash.1 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knsec3hash.1in > man/knsec3hash.1 --- man/keymgr.8 --- mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/keymgr.8in > man/keymgr.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Checking for filesystem violations... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Recording filesystem state for prestage... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Staging for knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - found (/u= sr/local/lib/libfstrm.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - found (/= usr/local/lib/libgnutls.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - found (= /usr/local/lib/libjansson.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - found (/us= r/local/lib/liblmdb.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - found (/us= r/local/lib/liburcu.so) =3D=3D=3D> Generating temporary packing list =3D=3D=3D> Creating users and/or groups. if test -z 'strip'; then /usr/bin/make INSTALL_PROGRAM=3D"/bin/sh /wrkdir= s/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s" install_sh_PROGRAM= =3D"/bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s" = INSTALL_STRIP_FLAG=3D-s install; else /usr/bin/make INSTALL_PROGRAM=3D"= /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s" ins= tall_sh_PROGRAM=3D"/bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/ins= tall-sh -c -s" INSTALL_STRIP_FLAG=3D-s "INSTALL_PROGRAM_ENV=3DSTRIPPROG=3D= 'strip'" install; fi Making install in libtap Making install in src Making install in zscanner /usr/bin/make install-am /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' /bin/sh ../../libtool --mode=3Dinstall /usr/bin/install -c -s libzscann= er.la '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' libtool: install: /usr/bin/install -c .libs/libzscanner.so.0.0.1 /wrkdirs/u= sr/ports/dns/knot2/work/stage/usr/local/lib/libzscanner.so.0.0.1 libtool: install: strip --strip-unneeded /wrkdirs/usr/ports/dns/knot2/work/= stage/usr/local/lib/libzscanner.so.0.0.1 libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libzscanner.so.0.0.1 libzscanner.so.0 || { rm -f libzscanner= =2Eso.0 && ln -s libzscanner.so.0.0.1 libzscanner.so.0; }; }) libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libzscanner.so.0.0.1 libzscanner.so || { rm -f libzscanner.s= o && ln -s libzscanner.so.0.0.1 libzscanner.so; }; }) libtool: install: /usr/bin/install -c .libs/libzscanner.lai /wrkdirs/usr/po= rts/dns/knot2/work/stage/usr/local/lib/libzscanner.la libtool: install: /usr/bin/install -c .libs/libzscanner.a /wrkdirs/usr/port= s/dns/knot2/work/stage/usr/local/lib/libzscanner.a libtool: install: strip --strip-debug /wrkdirs/usr/ports/dns/knot2/work/sta= ge/usr/local/lib/libzscanner.a libtool: install: chmod 644 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/lib/libzscanner.a libtool: install: ranlib /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= lib/libzscanner.a libtool: install: warning: remember to run `libtool --finish /usr/local/lib' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libdata/p= kgconfig' install -m 0644 libzscanner.pc '/wrkdirs/usr/ports/dns/knot2/work/stage/u= sr/local/libdata/pkgconfig' Making install in dnssec Making install in . /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' /bin/sh ../../libtool --mode=3Dinstall /usr/bin/install -c -s libdnssec= =2Ela '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' libtool: install: /usr/bin/install -c .libs/libdnssec.so.0.0.0 /wrkdirs/usr= /ports/dns/knot2/work/stage/usr/local/lib/libdnssec.so.0.0.0 libtool: install: strip --strip-unneeded /wrkdirs/usr/ports/dns/knot2/work/= stage/usr/local/lib/libdnssec.so.0.0.0 libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libdnssec.so.0.0.0 libdnssec.so.0 || { rm -f libdnssec.so.0 = && ln -s libdnssec.so.0.0.0 libdnssec.so.0; }; }) libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libdnssec.so.0.0.0 libdnssec.so || { rm -f libdnssec.so && l= n -s libdnssec.so.0.0.0 libdnssec.so; }; }) libtool: install: /usr/bin/install -c .libs/libdnssec.lai /wrkdirs/usr/port= s/dns/knot2/work/stage/usr/local/lib/libdnssec.la libtool: install: /usr/bin/install -c .libs/libdnssec.a /wrkdirs/usr/ports/= dns/knot2/work/stage/usr/local/lib/libdnssec.a libtool: install: strip --strip-debug /wrkdirs/usr/ports/dns/knot2/work/sta= ge/usr/local/lib/libdnssec.a libtool: install: chmod 644 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/lib/libdnssec.a libtool: install: ranlib /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= lib/libdnssec.a libtool: install: warning: remember to run `libtool --finish /usr/local/lib' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/d= nssec' install -m 0644 lib/dnssec/binary.h lib/dnssec/crypto.h lib/dnssec/error.= h lib/dnssec/event.h lib/dnssec/kasp.h lib/dnssec/key.h lib/dnssec/keyid.h = lib/dnssec/keystore.h lib/dnssec/keytag.h lib/dnssec/list.h lib/dnssec/nsec= =2Eh lib/dnssec/random.h lib/dnssec/sign.h lib/dnssec/tsig.h '/wrkdirs/usr/= ports/dns/knot2/work/stage/usr/local/include/dnssec' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libdata/p= kgconfig' install -m 0644 libdnssec.pc '/wrkdirs/usr/ports/dns/knot2/work/stage/usr= /local/libdata/pkgconfig' Making install in utils /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' STRIPPROG=3D'strip' /bin/sh ../../../libtool --mode=3Dinstall /bin/sh /w= rkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s knsec3hash '/wr= kdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' libtool: install: warning: `./../libdnssec.la' has not been installed in `/= usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knsec3hash /wrkdirs/usr/ports/dns/knot2/work/stage/usr/l= ocal/bin/knsec3hash /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/sbin' STRIPPROG=3D'strip' /bin/sh ../../../libtool --mode=3Dinstall /bin/sh /w= rkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s keymgr '/wrkdir= s/usr/ports/dns/knot2/work/stage/usr/local/sbin' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/keymgr /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local= /sbin/keymgr Making install in tests Making install in dnstap /usr/bin/make install-am Making install in . /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' /bin/sh ../libtool --mode=3Dinstall /usr/bin/install -c -s libknot.la '= /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' libtool: install: warning: relinking `libknot.la' libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src; /bi= n/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/libtool --tag CC --mode= =3Drelink cc -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -version-info 1:0:0 -L/usr/local/lib = -llmdb -fstack-protector -o libknot.la -rpath /usr/local/lib libknot/libkno= t_la-binary.lo libknot/libknot_la-consts.lo libknot/libknot_la-descriptor.l= o libknot/libknot_la-dname.lo libknot/libknot_la-errcode.lo libknot/packet/= libknot_la-compr.lo libknot/packet/libknot_la-pkt.lo libknot/packet/libknot= _la-rrset-wire.lo libknot/processing/libknot_la-layer.lo libknot/processing= /libknot_la-overlay.lo libknot/processing/libknot_la-requestor.lo libknot/l= ibknot_la-rdata.lo libknot/libknot_la-rdataset.lo libknot/libknot_la-rrset-= dump.lo libknot/libknot_la-rrset.lo libknot/rrtype/libknot_la-nsec3.lo libk= not/rrtype/libknot_la-nsec3param.lo libknot/rrtype/libknot_la-opt.lo libkno= t/rrtype/libknot_la-tsig.lo libknot/libknot_la-tsig-op.lo libknot/libknot_l= a-tsig.lo dnssec/libdnssec.la libknot-internal.la -lpthread -lm -inst-prefi= x-dir /wrkdirs/usr/ports/dns/knot2/work/stage) libtool: relink: cc -shared -fPIC -DPIC libknot/.libs/libknot_la-binary.o= libknot/.libs/libknot_la-consts.o libknot/.libs/libknot_la-descriptor.o li= bknot/.libs/libknot_la-dname.o libknot/.libs/libknot_la-errcode.o libknot/p= acket/.libs/libknot_la-compr.o libknot/packet/.libs/libknot_la-pkt.o libkno= t/packet/.libs/libknot_la-rrset-wire.o libknot/processing/.libs/libknot_la-= layer.o libknot/processing/.libs/libknot_la-overlay.o libknot/processing/.l= ibs/libknot_la-requestor.o libknot/.libs/libknot_la-rdata.o libknot/.libs/l= ibknot_la-rdataset.o libknot/.libs/libknot_la-rrset-dump.o libknot/.libs/li= bknot_la-rrset.o libknot/rrtype/.libs/libknot_la-nsec3.o libknot/rrtype/.li= bs/libknot_la-nsec3param.o libknot/rrtype/.libs/libknot_la-opt.o libknot/rr= type/.libs/libknot_la-tsig.o libknot/.libs/libknot_la-tsig-op.o libknot/.li= bs/libknot_la-tsig.o -Wl,--whole-archive ./.libs/libknot-internal.a -Wl,--= no-whole-archive -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib -llmdb dns= sec/.libs/libdnssec.so -lgnutls -lnettle -ljansson -lpthread -lm -O2 -fsta= ck-protector -fstack-protector -Wl,-soname -Wl,libknot.so.1 -o .libs/libk= not.so.1.0.0 libtool: install: /usr/bin/install -c .libs/libknot.so.1.0.0T /wrkdirs/usr/= ports/dns/knot2/work/stage/usr/local/lib/libknot.so.1.0.0 libtool: install: strip --strip-unneeded /wrkdirs/usr/ports/dns/knot2/work/= stage/usr/local/lib/libknot.so.1.0.0 libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libknot.so.1.0.0 libknot.so.1 || { rm -f libknot.so.1 && ln = -s libknot.so.1.0.0 libknot.so.1; }; }) libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libknot.so.1.0.0 libknot.so || { rm -f libknot.so && ln -s l= ibknot.so.1.0.0 libknot.so; }; }) libtool: install: /usr/bin/install -c .libs/libknot.lai /wrkdirs/usr/ports/= dns/knot2/work/stage/usr/local/lib/libknot.la libtool: install: /usr/bin/install -c .libs/libknot.a /wrkdirs/usr/ports/dn= s/knot2/work/stage/usr/local/lib/libknot.a libtool: install: strip --strip-debug /wrkdirs/usr/ports/dns/knot2/work/sta= ge/usr/local/lib/libknot.a libtool: install: chmod 644 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/lib/libknot.a libtool: install: ranlib /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= lib/libknot.a libtool: install: warning: remember to run `libtool --finish /usr/local/lib' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' STRIPPROG=3D'strip' /bin/sh ../libtool --mode=3Dinstall /bin/sh /wrkdirs= /usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s kdig khost knsupdate = '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/kdig /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/b= in/kdig libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/khost /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= bin/khost libtool: install: warning: `zscanner/libzscanner.la' has not been installed= in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knsupdate /wrkdirs/usr/ports/dns/knot2/work/stage/usr/lo= cal/bin/knsupdate /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libexec' STRIPPROG=3D'strip' /bin/sh ../libtool --mode=3Dinstall /bin/sh /wrkdirs= /usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s knot1to2 '/wrkdirs/us= r/ports/dns/knot2/work/stage/usr/local/libexec' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knot1to2 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/libexec/knot1to2 /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/sbin' STRIPPROG=3D'strip' /bin/sh ../libtool --mode=3Dinstall /bin/sh /wrkdirs= /usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s knotc knotd '/wrkdirs= /usr/ports/dns/knot2/work/stage/usr/local/sbin' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knotc /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= sbin/knotc libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knotd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= sbin/knotd /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/internal/trie' install -m 0644 libknot/internal/trie/hat-trie.h libknot/internal/trie/m= urmurhash3.h '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/lib= knot/internal/trie' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/internal' install -m 0644 libknot/internal/array-sort.h libknot/internal/base32hex= =2Eh libknot/internal/base64.h libknot/internal/binsearch.h libknot/interna= l/consts.h libknot/internal/endian.h libknot/internal/errcode.h libknot/int= ernal/getline.h libknot/internal/heap.h libknot/internal/hhash.h libknot/in= ternal/lists.h libknot/internal/macros.h libknot/internal/mem.h libknot/int= ernal/mempattern.h libknot/internal/mempool.h libknot/internal/net.h libkno= t/internal/print.h libknot/internal/sockaddr.h libknot/internal/strlcat.h l= ibknot/internal/strlcpy.h libknot/internal/tolower.h libknot/internal/utils= =2Eh '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/libknot/int= ernal' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/internal/namedb' install -m 0644 libknot/internal/namedb/namedb.h libknot/internal/namedb= /namedb_lmdb.h libknot/internal/namedb/namedb_trie.h '/wrkdirs/usr/ports/dn= s/knot2/work/stage/usr/local/include/libknot/internal/namedb' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot' install -m 0644 libknot/binary.h libknot/consts.h libknot/descriptor.h l= ibknot/dname.h libknot/errcode.h libknot/libknot.h libknot/rdata.h libknot/= rdataset.h libknot/rrset-dump.h libknot/rrset.h libknot/tsig-op.h libknot/t= sig.h '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/libknot' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/rrtype' install -m 0644 libknot/rrtype/aaaa.h libknot/rrtype/dnskey.h libknot/rr= type/naptr.h libknot/rrtype/nsec.h libknot/rrtype/nsec3.h libknot/rrtype/ns= ec3param.h libknot/rrtype/opt.h libknot/rrtype/rdname.h libknot/rrtype/rrsi= g.h libknot/rrtype/soa.h libknot/rrtype/tsig.h '/wrkdirs/usr/ports/dns/knot= 2/work/stage/usr/local/include/libknot/rrtype' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/processing' install -m 0644 libknot/processing/layer.h libknot/processing/overlay.h = libknot/processing/requestor.h '/wrkdirs/usr/ports/dns/knot2/work/stage/usr= /local/include/libknot/processing' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/packet' install -m 0644 libknot/packet/compr.h libknot/packet/pkt.h libknot/pack= et/rrset-wire.h libknot/packet/wire.h '/wrkdirs/usr/ports/dns/knot2/work/st= age/usr/local/include/libknot/packet' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libdata/p= kgconfig' install -m 0644 libknot.pc '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/l= ocal/libdata/pkgconfig' /usr/bin/make install-data-hook /usr/bin/install -c -d /wrkdirs/usr/ports/dns/knot2/work/stage//usr/local/e= tc/knot Making install in tests Making install in tests-fuzz Making install in samples rm -f knot.sample.conf knot.sample.conf.tmp srcdir=3D''; test -f ./knot.sample.conf.in || srcdir=3D./; sed -e 's|@ve= rsion[@]|2.0.0|g' -e 's|@package[@]|knot|g' -e 's|@localstatedir[@]|/var|= g' -e 's|@prefix[@]|/usr/local|g' -e 's|@sysconfdir[@]|/usr/local/etc|g' = -e 's|@config_dir[@]|/usr/local/etc/knot|g' -e 's|@storage_dir[@]|/var/db= /knot|g' -e 's|@run_dir[@]|/var/run/knot|g' ${srcdir}knot.sample.conf.in >= knot.sample.conf.tmp mv knot.sample.conf.tmp knot.sample.conf if [ \! -f /wrkdirs/usr/ports/dns/knot2/work/stage//usr/local/etc/knot/knot= =2Esample.conf ]; then /usr/bin/install -c -d /wrkdirs/usr/ports/dns/knot2= /work/stage//usr/local/etc/knot; install -m 0644 knot.sample.conf ./examp= le.com.zone /wrkdirs/usr/ports/dns/knot2/work/stage//usr/local/etc/knot; fi Making install in doc /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man1' install -m 0644 man/kdig.1 man/khost.1 man/knsupdate.1 man/knot1to2.1 man= /knsec3hash.1 '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man1' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man5' install -m 0644 man/knot.conf.5 '/wrkdirs/usr/ports/dns/knot2/work/stage/= usr/local/man/man5' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man8' install -m 0644 man/knotc.8 man/knotd.8 man/keymgr.8 '/wrkdirs/usr/ports/= dns/knot2/work/stage/usr/local/man/man8' /bin/mv /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/etc/knot/knot.sam= ple.conf /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/etc/knot/knot.c= onf.sample install -m 0644 /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/AUTHORS /wrkd= irs/usr/ports/dns/knot2/work/knot-2.0.0/COPYING /wrkdirs/usr/ports/dns/knot= 2/work/knot-2.0.0/ChangeLog /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/IN= STALL /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/NEWS /wrkdirs/usr/ports/= dns/knot2/work/knot-2.0.0/README /wrkdirs/usr/ports/dns/knot2/work/knot-2.0= =2E0/THANKS /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/share/doc/kno= t/ =3D=3D=3D=3D> Compressing man pages (compress-man) =3D=3D=3D> Staging rc.d startup script(s) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D> Running Q/A tests (stage-qa) =3D=3D=3D=3D> Checking for pkg-plist issues (check-plist) =3D=3D=3D> Parsing plist =3D=3D=3D> Checking for items in STAGEDIR missing from pkg-plist =3D=3D=3D> Checking for items in pkg-plist which are not in STAGEDIR =3D=3D=3D> No pkg-plist issues found (check-plist) =3D=3D=3D=3D>> Checking for staging violations... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Building package for knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Recording filesystem state for preinst... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Installing for knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - found (/u= sr/local/lib/libfstrm.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - found (/= usr/local/lib/libgnutls.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - found (= /usr/local/lib/libjansson.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - found (/us= r/local/lib/liblmdb.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - found (/us= r/local/lib/liburcu.so) =3D=3D=3D> Checking if knot2 already installed =3D=3D=3D> Registering installation for knot2-2.0.0 [101amd64-default] Installing knot2-2.0.0... =3D=3D=3D> Creating users and/or groups. Creating group 'knot' with gid '553'. Creating user 'knot' with uid '553'. ###################################################################### To start using Knot DNS, you should complete the following tasks: cp /usr/local/etc/knot/knot.conf.sample /usr/local/etc/knot/knot.conf $EDITOR /usr/local/etc/knot/knot.conf sysrc knot_enable=3DYES sysrc knot_config=3D/usr/local/etc/knot/knot.conf service knot start Traditional (pre-FreeBSD 9.2) method, for last three commands: echo knot_enable=3D\"YES\" >> /etc/rc.conf echo knot_config=3D\"/usr/local/etc/knot/knot.conf\" >> /etc/rc.conf /usr/local/etc/rc.d/knot start ###################################################################### When upgrading from a previous version of Knot, the configuration syntax changed changed severely. Please consult the documentation: - man knot.conf - https://www.knot-dns.cz/docs/2.0/html/configuration.html ###################################################################### =3D=3D=3D> SECURITY REPORT:=20 This port has installed the following files which may act as network servers and may therefore pose a remote security risk to the system. /usr/local/bin/knsupdate /usr/local/bin/khost /usr/local/sbin/knotc /usr/local/sbin/knotd /usr/local/bin/kdig This port has installed the following startup scripts which may cause these network services to be started at boot time. /usr/local/etc/rc.d/knot If there are vulnerabilities in these programs there may be a security risk to the system. FreeBSD makes no guarantee about the security of ports included in the Ports Collection. Please type 'make deinstall' to deinstall the port if this is a concern. For more information, and contact details about the security status of this software, see the following webpage:=20 http://www.knot-dns.cz/ =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Checking shared library dependencies 0x0000000000000001 (NEEDED) Shared library: [libc.so.7] 0x0000000000000001 (NEEDED) Shared library: [libdnssec.so.0] 0x0000000000000001 (NEEDED) Shared library: [libgnutls.so.28] 0x0000000000000001 (NEEDED) Shared library: [libjansson.so.4] 0x0000000000000001 (NEEDED) Shared library: [libknot.so.1] 0x0000000000000001 (NEEDED) Shared library: [liblmdb.so] 0x0000000000000001 (NEEDED) Shared library: [libm.so.5] 0x0000000000000001 (NEEDED) Shared library: [libnettle.so.4] 0x0000000000000001 (NEEDED) Shared library: [libthr.so.3] 0x0000000000000001 (NEEDED) Shared library: [liburcu.so.1] 0x0000000000000001 (NEEDED) Shared library: [libzscanner.so.0] =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Deinstalling for knot2 =3D=3D=3D> Deinstalling knot2-2.0.0 Updating database digests format: .......... done Checking integrity... done (0 conflicting) Deinstallation has been requested for the following 1 packages (of 0 packag= es in the universe): Installed packages to be REMOVED: knot2-2.0.0 The operation will free 2 MiB. [101amd64-default] [1/1] Deinstalling knot2-2.0.0... =3D=3D> You should manually remove the "knot" user.=20 [101amd64-default] [1/1] Deleting files for knot2-2.0.0: .......... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Checking for extra files and directories [00:01:47] =3D=3D=3D=3D>> Installing from package [101amd64-default] Installing knot2-2.0.0... =3D=3D=3D> Creating users and/or groups. Using existing group 'knot'. Using existing user 'knot'. [101amd64-default] Extracting knot2-2.0.0: .......... done Message for knot2-2.0.0: ###################################################################### To start using Knot DNS, you should complete the following tasks: cp /usr/local/etc/knot/knot.conf.sample /usr/local/etc/knot/knot.conf $EDITOR /usr/local/etc/knot/knot.conf sysrc knot_enable=3DYES sysrc knot_config=3D/usr/local/etc/knot/knot.conf service knot start Traditional (pre-FreeBSD 9.2) method, for last three commands: echo knot_enable=3D\"YES\" >> /etc/rc.conf echo knot_config=3D\"/usr/local/etc/knot/knot.conf\" >> /etc/rc.conf /usr/local/etc/rc.d/knot start ###################################################################### When upgrading from a previous version of Knot, the configuration syntax changed changed severely. Please consult the documentation: - man knot.conf - https://www.knot-dns.cz/docs/2.0/html/configuration.html ###################################################################### [00:01:47] =3D=3D=3D=3D>> Cleaning up =3D=3D=3D> Cleaning for knot2-2.0.0 [00:01:48] =3D=3D=3D=3D>> Deinstalling package Updating database digests format: . done Checking integrity... done (0 conflicting) Deinstallation has been requested for the following 1 packages (of 0 packag= es in the universe): Installed packages to be REMOVED: knot2-2.0.0 The operation will free 2 MiB. [101amd64-default] [1/1] Deinstalling knot2-2.0.0... =3D=3D> You should manually remove the "knot" user.=20 [101amd64-default] [1/1] Deleting files for knot2-2.0.0: .......... done build of dns/knot2 ended at Sun Aug 9 13:21:59 UTC 2015 build time: 00:00:26 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="9_knot2-2.0.0.log" Content-Transfer-Encoding: quoted-printable build started at Sun Aug 9 13:23:40 UTC 2015 port directory: /usr/ports/dns/knot2 building for: FreeBSD 93amd64-default 9.3-RELEASE-p13 FreeBSD 9.3-RELEASE-p= 13 amd64 maintained by: freebsd@dns-lab.com Makefile ident: $FreeBSD: head/dns/knot2/Makefile 393685 2015-08-07 07= :51:44Z erwin $ Poudriere version: 3.1.7 Host OSVERSION: 1001000 Jail OSVERSION: 903000 ---Begin Environment--- PKGREPOSITORY=3D/tmp/pkgs PACKAGES=3D/tmp/pkgs OSVERSION=3D903000 UNAME_v=3DFreeBSD 9.3-RELEASE-p13 UNAME_r=3D9.3-RELEASE-p13 BLOCKSIZE=3DK MAIL=3D/var/mail/root STATUS=3D1 SAVED_TERM=3Dxterm-256color NO_WARNING_PKG_INSTALL_EOL=3Dyes MASTERMNT=3D/usr/local/poudriere/data/.m/93amd64-default/ref FORCE_PACKAGE=3Dyes PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/= bin:/root/bin POUDRIERE_BUILD_TYPE=3Dbulk OLDPWD=3D/ PWD=3D/usr/local/poudriere/data/.m/93amd64-default/ref/.p/pool MASTERNAME=3D93amd64-default SCRIPTPREFIX=3D/usr/local/share/poudriere USER=3Droot HOME=3D/root POUDRIERE_VERSION=3D3.1.7 SCRIPTPATH=3D/usr/local/share/poudriere/testport.sh TRYBROKEN=3Dyes LIBEXECPREFIX=3D/usr/local/libexec/poudriere LOCALBASE=3D/usr/local PACKAGE_BUILDING=3Dyes ---End Environment--- ---Begin OPTIONS List--- =3D=3D=3D> The following configuration options are available for knot2-2.0.= 0: DNSTAP=3Doff: dnstap support (see dnstap.info) FASTPARSER=3Doff: Fast zone parser (demanding compilation) IDN=3Doff: International Domain Names support =3D=3D=3D> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --with-rundir=3D/var/run/knot --with-storage=3D/var/db/knot --with-pkgcon= figdir=3D/usr/local/libdata/pkgconfig --disable-silent-rules --disable-dnst= ap --disable-fastparser --without-libidn --prefix=3D/usr/local ${_LATE_CONF= IGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=3Dpkgconf XDG_DATA_HOME=3D/wrkdirs/usr/ports/dns/knot2/work XDG= _CONFIG_HOME=3D/wrkdirs/usr/ports/dns/knot2/work HOME=3D/wrkdirs/usr/ports= /dns/knot2/work TMPDIR=3D"/tmp" SHELL=3D/bin/sh CONFIG_SHELL=3D/bin/sh CONF= IG_SITE=3D/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=3D262144 --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=3D/wrkdirs/usr/ports/dns/knot2/work XDG_CONFIG_HOME=3D/wrkdi= rs/usr/ports/dns/knot2/work HOME=3D/wrkdirs/usr/ports/dns/knot2/work TMPDI= R=3D"/tmp" NO_PIE=3Dyes SHELL=3D/bin/sh NO_LINT=3DYES PREFIX=3D/usr/local = LOCALBASE=3D/usr/local LIBDIR=3D"/usr/lib" CC=3D"cc" CFLAGS=3D"-O2 -pipe = -fstack-protector -fno-strict-aliasing" CPP=3D"cpp" CPPFLAGS=3D"" LDFLAGS= =3D" -fstack-protector" LIBS=3D"" CXX=3D"c++" CXXFLAGS=3D"-O2 -pipe -fstac= k-protector -fno-strict-aliasing" MANPREFIX=3D"/usr/local" BSD_INSTALL_PRO= GRAM=3D"install -s -m 555" BSD_INSTALL_LIB=3D"install -s -m 444" BSD_IN= STALL_SCRIPT=3D"install -m 555" BSD_INSTALL_DATA=3D"install -m 0644" BS= D_INSTALL_MAN=3D"install -m 444" --End MAKE_ENV-- --PLIST_SUB-- OSREL=3D9.3 PREFIX=3D%D LOCALBASE=3D/usr/local RESETPREFIX=3D/usr/local PORTDOCS=3D"" PORTEXAMPLES=3D"" LIB32DIR=3Dlib DOCSDIR=3D"share/doc/knot" EXAMPLESDIR=3D"share/examples/knot" DATADIR=3D"share/knot" WWWDIR=3D"www/knot" ETCDIR=3D"etc/knot" --End PLIST_SUB-- --SUB_LIST-- USERS=3D"knot" GROUPS=3D"knot" PREFIX=3D/usr/local LOCALBASE=3D/usr/local DATADIR=3D/usr/local/share/knot DOCSDIR=3D/usr/local/share/doc/knot EXAMPLESDIR=3D/usr/local/share/examples/knot WWWDIR=3D/usr/local/www/knot ETCDIR=3D/usr/local/etc/knot --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=3Dyes BATCH=3Dyes WRKDIRPREFIX=3D/wrkdirs PORTSDIR=3D/usr/ports PACKAGES=3D/packages DISTDIR=3D/distfiles ---End make.conf--- =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - not found =3D=3D=3D> Verifying install for /usr/local/sbin/pkg in /usr/ports/ports= -mgmt/pkg =3D=3D=3D> Installing existing package /packages/All/pkg-1.5.4.txz [93amd64-default] Installing pkg-1.5.4... [93amd64-default] Extracting pkg-1.5.4: .......... done Message for pkg-1.5.4: If you are upgrading from the old package format, first run: # pkg2ng =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D> SHA256 Checksum OK for knot-2.0.0.tar.xz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> License GPLv3 accepted by the user =3D=3D=3D> knot2-2.0.0 depends on file: /usr/local/sbin/pkg - found =3D=3D=3D> Fetching all distfiles required by knot2-2.0.0 for building =3D=3D=3D> Extracting for knot2-2.0.0 =3D> SHA256 Checksum OK for knot-2.0.0.tar.xz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Patching for knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on executable: pkgconf - not found =3D=3D=3D> Verifying install for pkgconf in /usr/ports/devel/pkgconf =3D=3D=3D> Installing existing package /packages/All/pkgconf-0.9.11.txz [93amd64-default] Installing pkgconf-0.9.11... [93amd64-default] Extracting pkgconf-0.9.11: ....... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - not found =3D=3D=3D> Verifying for libfstrm.so in /usr/ports/devel/fstrm =3D=3D=3D> Installing existing package /packages/All/fstrm-0.2.0.txz [93amd64-default] Installing fstrm-0.2.0... [93amd64-default] `-- Installing libevent2-2.0.22_1... [93amd64-default] `-- Extracting libevent2-2.0.22_1: .......... done [93amd64-default] Extracting fstrm-0.2.0: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - not found =3D=3D=3D> Verifying for libgnutls.so in /usr/ports/security/gnutls =3D=3D=3D> Installing existing package /packages/All/gnutls-3.3.15.txz [93amd64-default] Installing gnutls-3.3.15... [93amd64-default] `-- Installing ca_root_nss-3.19.1_1... [93amd64-default] `-- Extracting ca_root_nss-3.19.1_1: ....... done [93amd64-default] `-- Installing gettext-runtime-0.19.4... [93amd64-default] | `-- Installing indexinfo-0.2.3... [93amd64-default] | `-- Extracting indexinfo-0.2.3: .... done [93amd64-default] | `-- Installing libiconv-1.14_8... [93amd64-default] | `-- Extracting libiconv-1.14_8: .......... done [93amd64-default] `-- Extracting gettext-runtime-0.19.4: .......... done [93amd64-default] `-- Installing libidn-1.29... [93amd64-default] `-- Extracting libidn-1.29: .......... done [93amd64-default] `-- Installing libtasn1-4.5_1... [93amd64-default] `-- Extracting libtasn1-4.5_1: .......... done [93amd64-default] `-- Installing nettle-2.7.1... [93amd64-default] | `-- Installing gmp-5.1.3_2... [93amd64-default] | `-- Extracting gmp-5.1.3_2: .......... done [93amd64-default] `-- Extracting nettle-2.7.1: .......... done [93amd64-default] `-- Installing p11-kit-0.23.1... [93amd64-default] | `-- Installing libffi-3.2.1... [93amd64-default] | `-- Extracting libffi-3.2.1: .......... done [93amd64-default] `-- Extracting p11-kit-0.23.1: .......... done [93amd64-default] `-- Installing trousers-tddl-0.3.10_7... =3D=3D=3D> Creating users and/or groups. Creating group '_tss' with gid '601'. Creating user '_tss' with uid '601'. [93amd64-default] `-- Extracting trousers-tddl-0.3.10_7: .......... done [93amd64-default] Extracting gnutls-3.3.15: .......... done Message for ca_root_nss-3.19.1_1: ********************************* WARNING ********************************* FreeBSD does not, and can not warrant that the certification authorities whose certificates are included in this package have in any way been audited for trustworthiness or RFC 3647 compliance. Assessment and verification of trust is the complete responsibility of the system administrator. *********************************** NOTE ********************************** This package installs symlinks to support root certificates discovery by default for software that uses OpenSSL. This enables SSL Certificate Verification by client software without manual intervention. If you prefer to do this manually, replace the following symlinks with either an empty file or your site-local certificate bundle. * /etc/ssl/cert.pem * /usr/local/etc/ssl/cert.pem * /usr/local/openssl/cert.pem *************************************************************************** Message for trousers-tddl-0.3.10_7: To run tcsd automatically, add the following line to /etc/rc.conf tcsd_enable=3D"YES" You might want to edit /usr/local/etc/tcsd.conf to reflect your setup. To use TPM, add your_account to '_tss' group like following: # pw groupadd _tss -m your_account =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - not fou= nd =3D=3D=3D> Verifying for libjansson.so in /usr/ports/devel/jansson =3D=3D=3D> Installing existing package /packages/All/jansson-2.7.txz [93amd64-default] Installing jansson-2.7... [93amd64-default] Extracting jansson-2.7: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - not found =3D=3D=3D> Verifying for liblmdb.so in /usr/ports/databases/lmdb =3D=3D=3D> Installing existing package /packages/All/lmdb-0.9.14_1.txz [93amd64-default] Installing lmdb-0.9.14_1... [93amd64-default] Extracting lmdb-0.9.14_1: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - not found =3D=3D=3D> Verifying for liburcu.so in /usr/ports/sysutils/liburcu =3D=3D=3D> Installing existing package /packages/All/liburcu-0.7.13.txz [93amd64-default] Installing liburcu-0.7.13... [93amd64-default] Extracting liburcu-0.7.13: .......... done =3D=3D=3D> Returning to build of knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Recording filesystem state for prebuild... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> knot2-2.0.0 depends on executable: pkgconf - found =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - found (/u= sr/local/lib/libfstrm.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - found (/= usr/local/lib/libgnutls.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - found (= /usr/local/lib/libjansson.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - found (/us= r/local/lib/liblmdb.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - found (/us= r/local/lib/liburcu.so) =3D=3D=3D> Configuring for knot2-2.0.0 configure: loading site script /usr/ports/Templates/config.site checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p checking for gawk... (cached) /usr/bin/awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking for style of include used by make... GNU checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables...=20 checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking whether cc understands -c and -o together... yes checking dependency style of cc... gcc3 checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... yes checking build system type... amd64-portbld-freebsd9.3 checking host system type... amd64-portbld-freebsd9.3 checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for cc option to accept ISO C99... -std=3Dgnu99 checking for ar... ar checking the archiver (ar) interface... ar checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc -std=3Dgnu99... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+=3D"... no checking how to convert amd64-portbld-freebsd9.3 file names to amd64-portbl= d-freebsd9.3 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd9.3 file names to toolchain fo= rmat... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc -std=3Dgnu99 object= =2E.. ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc -std=3Dgnu99 supports -fno-rtti -fno-exceptions... no checking for cc -std=3Dgnu99 option to produce PIC... -fPIC -DPIC checking if cc -std=3Dgnu99 PIC flag -fPIC -DPIC works... yes checking if cc -std=3Dgnu99 static flag -static works... yes checking if cc -std=3Dgnu99 supports -c -o file.o... yes checking if cc -std=3Dgnu99 supports -c -o file.o... (cached) yes checking whether the cc -std=3Dgnu99 linker (/usr/bin/ld) supports shared l= ibraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.3 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking pkg-config is at least version 0.9.0... yes checking whether C compiler has a LLVM backend... no checking for gnutls... yes checking for jansson... yes checking for sendmmsg... no checking whether C compiler accepts "-fpredictive-commoning"... no checking for systemd... no checking for liburcu... yes checking for library containing urcu_init... no checking for library containing mdb_env_open... no checking for library containing mdb_env_open... no checking for library containing mdb_env_open... -llmdb checking lmdb.h usability... yes checking lmdb.h presence... yes checking for lmdb.h... yes checking for library containing pow... -lm checking for library containing pthread_create... -lpthread checking for library containing dlopen... none required checking for library containing clock_gettime... none required checking for library containing capng_apply... no checking for sys/types.h... (cached) yes checking for netinet/in.h... (cached) yes checking for arpa/nameser.h... (cached) yes checking for netdb.h... (cached) yes checking for resolv.h... (cached) yes checking for cap-ng.h... no checking for netinet/in_systm.h... yes checking for pthread_np.h... yes checking for signal.h... (cached) yes checking for sys/select.h... (cached) yes checking for sys/time.h... (cached) yes checking for sys/wait.h... (cached) yes checking for sys/uio.h... yes checking for inline... inline checking for pid_t... (cached) yes checking for size_t... (cached) yes checking for ssize_t... (cached) yes checking for clock_gettime... (cached) yes checking for gettimeofday... (cached) yes checking for fgetln... yes checking for getline... (cached) yes checking for madvise... yes checking for malloc_trim... no checking for poll... (cached) yes checking for posix_memalign... yes checking for pthread_setaffinity_np... yes checking for regcomp... yes checking for select... (cached) yes checking for setgroups... (cached) yes checking for strlcat... (cached) yes checking for strlcpy... (cached) yes checking for initgroups... yes checking for simple visibility declarations... yes checking for sphinx-build... no checking for sphinx-build-3... no configure: WARNING: Could not find the 'sphinx-build' executable, you will = be unable to regenerate documentation. checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating src/libknot.pc config.status: creating src/dnssec/libdnssec.pc config.status: creating src/zscanner/libzscanner.pc config.status: creating Makefile config.status: creating doc/Makefile config.status: creating samples/Makefile config.status: creating libtap/Makefile config.status: creating src/Makefile config.status: creating tests/Makefile config.status: creating tests-fuzz/Makefile config.status: creating src/dnstap/Makefile config.status: creating src/zscanner/Makefile config.status: creating src/dnssec/Makefile config.status: creating src/dnssec/tests/Makefile config.status: creating src/dnssec/utils/Makefile config.status: creating src/config.h config.status: executing depfiles commands config.status: executing libtool commands knot 2.0.0 Target: freebsd9.3 amd64 Compiler: cc -std=3Dgnu99 CFLAGS: -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werro= r=3Dformat-security -Werror=3Dimplicit=20 LIBS: -lpthread -lm -fstack-protector LibURCU: -L/usr/local/lib -lurcu -I/usr/local/include =20 GnuTLS: -lgnutls -L/usr/local/lib -lnettle -I/usr/local/include/p11= -kit-1 -I/usr/local/include =20 Jansson: -L/usr/local/lib -ljansson -I/usr/local/include =20 LMDB: shared -L/usr/local/lib -llmdb -I/usr/local/include Prefix: /usr/local Run dir: /var/run/knot Storage dir: /var/db/knot Config dir: ${prefix}/etc/knot Knot DNS libraries: yes Knot DNS daemon: yes Knot DNS utils: yes Knot DNS documentation: yes Fast zone parser: no Utilities with IDN: no Systemd integration: no Dnstap support: no Code coverage: no Bash completions: no Continue with 'make' command =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Building for knot2-2.0.0 Making all in libtap Making all in src /usr/bin/make all-recursive Making all in zscanner cp ./scanner.c.t0 scanner.c /usr/bin/make all-am /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I../../src -fvisib= ility=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -We= rror=3Dformat-security -Werror=3Dimplicit -MT libzscanner_la-error.lo -MD -= MP -MF .deps/libzscanner_la-error.Tpo -c -o libzscanner_la-error.lo `test -= f 'error.c' || echo './'`error.c /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I../../src -fvisib= ility=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -We= rror=3Dformat-security -Werror=3Dimplicit -MT libzscanner_la-functions.lo -= MD -MP -MF .deps/libzscanner_la-functions.Tpo -c -o libzscanner_la-function= s.lo `test -f 'functions.c' || echo './'`functions.c /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I../../src -fvisib= ility=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -We= rror=3Dformat-security -Werror=3Dimplicit -MT libzscanner_la-scanner.lo -MD= -MP -MF .deps/libzscanner_la-scanner.Tpo -c -o libzscanner_la-scanner.lo `= test -f 'scanner.c' || echo './'`scanner.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -MT libzscanner_la-error.lo -MD -MP -MF .deps/libzscanner_la-error.Tpo = -c error.c -fPIC -DPIC -o .libs/libzscanner_la-error.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -MT libzscanner_la-scanner.lo -MD -MP -MF .deps/libzscanner_la-scanner.= Tpo -c scanner.c -fPIC -DPIC -o .libs/libzscanner_la-scanner.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -MT libzscanner_la-functions.lo -MD -MP -MF .deps/libzscanner_la-functi= ons.Tpo -c functions.c -fPIC -DPIC -o .libs/libzscanner_la-functions.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -MT libzscanner_la-error.lo -MD -MP -MF .deps/libzscanner_la-error.Tpo = -c error.c -o libzscanner_la-error.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -MT libzscanner_la-functions.lo -MD -MP -MF .deps/libzscanner_la-functi= ons.Tpo -c functions.c -o libzscanner_la-functions.o >/dev/null 2>&1 mv -f .deps/libzscanner_la-error.Tpo .deps/libzscanner_la-error.Plo mv -f .deps/libzscanner_la-functions.Tpo .deps/libzscanner_la-functions.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I../../src -fvisibility=3Dhidden -O2 -pipe -fstack-pro= tector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpli= cit -MT libzscanner_la-scanner.lo -MD -MP -MF .deps/libzscanner_la-scanner.= Tpo -c scanner.c -o libzscanner_la-scanner.o >/dev/null 2>&1 mv -f .deps/libzscanner_la-scanner.Tpo .deps/libzscanner_la-scanner.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -p= ipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security = -Werror=3Dimplicit -version-info 0:1:0 -fstack-protector -o libzscanner.= la -rpath /usr/local/lib libzscanner_la-error.lo libzscanner_la-functions.= lo libzscanner_la-scanner.lo -lpthread -lm libtool: link: cc -std=3Dgnu99 -shared -fPIC -DPIC .libs/libzscanner_la-e= rror.o .libs/libzscanner_la-functions.o .libs/libzscanner_la-scanner.o -l= pthread -lm -O2 -fstack-protector -fstack-protector -Wl,-soname -Wl,libz= scanner.so.0 -o .libs/libzscanner.so.0.0.1 libtool: link: (cd ".libs" && rm -f "libzscanner.so.0" && ln -s "libzscanne= r.so.0.0.1" "libzscanner.so.0") libtool: link: (cd ".libs" && rm -f "libzscanner.so" && ln -s "libzscanner.= so.0.0.1" "libzscanner.so") libtool: link: ar cru .libs/libzscanner.a libzscanner_la-error.o libzscann= er_la-functions.o libzscanner_la-scanner.o libtool: link: ranlib .libs/libzscanner.a libtool: link: ( cd ".libs" && rm -f "libzscanner.la" && ln -s "../libzscan= ner.la" "libzscanner.la" ) Making all in dnssec Making all in . /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/libdnssec_la-binary.lo -MD -MP -MF lib/.deps/libdnssec_la-bi= nary.Tpo -c -o lib/libdnssec_la-binary.lo `test -f 'lib/binary.c' || echo '= =2E/'`lib/binary.c /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/libdnssec_la-crypto.lo -MD -MP -MF lib/.deps/libdnssec_la-cr= ypto.Tpo -c -o lib/libdnssec_la-crypto.lo `test -f 'lib/crypto.c' || echo '= =2E/'`lib/crypto.c /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/libdnssec_la-error.lo -MD -MP -MF lib/.deps/libdnssec_la-err= or.Tpo -c -o lib/libdnssec_la-error.lo `test -f 'lib/error.c' || echo './'`= lib/error.c /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/event/action/libdnssec_la-initial_key.lo -MD -MP -MF lib/eve= nt/action/.deps/libdnssec_la-initial_key.Tpo -c -o lib/event/action/libdnss= ec_la-initial_key.lo `test -f 'lib/event/action/initial_key.c' || echo './'= `lib/event/action/initial_key.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-binary.lo -MD -M= P -MF lib/.deps/libdnssec_la-binary.Tpo -c lib/binary.c -fPIC -DPIC -o lib= /.libs/libdnssec_la-binary.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-crypto.lo -MD -M= P -MF lib/.deps/libdnssec_la-crypto.Tpo -c lib/crypto.c -fPIC -DPIC -o lib= /.libs/libdnssec_la-crypto.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-error.lo -MD -MP= -MF lib/.deps/libdnssec_la-error.Tpo -c lib/error.c -fPIC -DPIC -o lib/.l= ibs/libdnssec_la-error.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-ini= tial_key.lo -MD -MP -MF lib/event/action/.deps/libdnssec_la-initial_key.Tpo= -c lib/event/action/initial_key.c -fPIC -DPIC -o lib/event/action/.libs/l= ibdnssec_la-initial_key.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-error.lo -MD -MP= -MF lib/.deps/libdnssec_la-error.Tpo -c lib/error.c -o lib/libdnssec_la-er= ror.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-crypto.lo -MD -M= P -MF lib/.deps/libdnssec_la-crypto.Tpo -c lib/crypto.c -o lib/libdnssec_la= -crypto.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-binary.lo -MD -M= P -MF lib/.deps/libdnssec_la-binary.Tpo -c lib/binary.c -o lib/libdnssec_la= -binary.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-ini= tial_key.lo -MD -MP -MF lib/event/action/.deps/libdnssec_la-initial_key.Tpo= -c lib/event/action/initial_key.c -o lib/event/action/libdnssec_la-initial= _key.o >/dev/null 2>&1 mv -f lib/.deps/libdnssec_la-crypto.Tpo lib/.deps/libdnssec_la-crypto.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/event/action/libdnssec_la-zsk_rollover.lo -MD -MP -MF lib/ev= ent/action/.deps/libdnssec_la-zsk_rollover.Tpo -c -o lib/event/action/libdn= ssec_la-zsk_rollover.lo `test -f 'lib/event/action/zsk_rollover.c' || echo = './'`lib/event/action/zsk_rollover.c mv -f lib/.deps/libdnssec_la-error.Tpo lib/.deps/libdnssec_la-error.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/event/libdnssec_la-event.lo -MD -MP -MF lib/event/.deps/libd= nssec_la-event.Tpo -c -o lib/event/libdnssec_la-event.lo `test -f 'lib/even= t/event.c' || echo './'`lib/event/event.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-zsk= _rollover.lo -MD -MP -MF lib/event/action/.deps/libdnssec_la-zsk_rollover.T= po -c lib/event/action/zsk_rollover.c -fPIC -DPIC -o lib/event/action/.lib= s/libdnssec_la-zsk_rollover.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/libdnssec_la-event.lo -= MD -MP -MF lib/event/.deps/libdnssec_la-event.Tpo -c lib/event/event.c -fP= IC -DPIC -o lib/event/.libs/libdnssec_la-event.o mv -f lib/.deps/libdnssec_la-binary.Tpo lib/.deps/libdnssec_la-binary.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/event/libdnssec_la-keystate.lo -MD -MP -MF lib/event/.deps/l= ibdnssec_la-keystate.Tpo -c -o lib/event/libdnssec_la-keystate.lo `test -f = 'lib/event/keystate.c' || echo './'`lib/event/keystate.c mv -f lib/event/action/.deps/libdnssec_la-initial_key.Tpo lib/event/action/= =2Edeps/libdnssec_la-initial_key.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/event/libdnssec_la-utils.lo -MD -MP -MF lib/event/.deps/libd= nssec_la-utils.Tpo -c -o lib/event/libdnssec_la-utils.lo `test -f 'lib/even= t/utils.c' || echo './'`lib/event/utils.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/libdnssec_la-keystate.l= o -MD -MP -MF lib/event/.deps/libdnssec_la-keystate.Tpo -c lib/event/keysta= te.c -fPIC -DPIC -o lib/event/.libs/libdnssec_la-keystate.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/libdnssec_la-utils.lo -= MD -MP -MF lib/event/.deps/libdnssec_la-utils.Tpo -c lib/event/utils.c -fP= IC -DPIC -o lib/event/.libs/libdnssec_la-utils.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/action/libdnssec_la-zsk= _rollover.lo -MD -MP -MF lib/event/action/.deps/libdnssec_la-zsk_rollover.T= po -c lib/event/action/zsk_rollover.c -o lib/event/action/libdnssec_la-zsk_= rollover.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/libdnssec_la-keystate.l= o -MD -MP -MF lib/event/.deps/libdnssec_la-keystate.Tpo -c lib/event/keysta= te.c -o lib/event/libdnssec_la-keystate.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/libdnssec_la-event.lo -= MD -MP -MF lib/event/.deps/libdnssec_la-event.Tpo -c lib/event/event.c -o l= ib/event/libdnssec_la-event.o >/dev/null 2>&1 mv -f lib/event/.deps/libdnssec_la-keystate.Tpo lib/event/.deps/libdnssec_l= a-keystate.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/dir/libdnssec_la-dir.lo -MD -MP -MF lib/kasp/dir/.deps/= libdnssec_la-dir.Tpo -c -o lib/kasp/dir/libdnssec_la-dir.lo `test -f 'lib/k= asp/dir/dir.c' || echo './'`lib/kasp/dir/dir.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/event/libdnssec_la-utils.lo -= MD -MP -MF lib/event/.deps/libdnssec_la-utils.Tpo -c lib/event/utils.c -o l= ib/event/libdnssec_la-utils.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-dir.lo = -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-dir.Tpo -c lib/kasp/dir/dir.c = -fPIC -DPIC -o lib/kasp/dir/.libs/libdnssec_la-dir.o mv -f lib/event/.deps/libdnssec_la-event.Tpo lib/event/.deps/libdnssec_la-e= vent.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/dir/libdnssec_la-escape.lo -MD -MP -MF lib/kasp/dir/.de= ps/libdnssec_la-escape.Tpo -c -o lib/kasp/dir/libdnssec_la-escape.lo `test = -f 'lib/kasp/dir/escape.c' || echo './'`lib/kasp/dir/escape.c mv -f lib/event/action/.deps/libdnssec_la-zsk_rollover.Tpo lib/event/action= /.deps/libdnssec_la-zsk_rollover.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/dir/libdnssec_la-file.lo -MD -MP -MF lib/kasp/dir/.deps= /libdnssec_la-file.Tpo -c -o lib/kasp/dir/libdnssec_la-file.lo `test -f 'li= b/kasp/dir/file.c' || echo './'`lib/kasp/dir/file.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-escape.= lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-escape.Tpo -c lib/kasp/dir/e= scape.c -fPIC -DPIC -o lib/kasp/dir/.libs/libdnssec_la-escape.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-file.lo= -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-file.Tpo -c lib/kasp/dir/file.= c -fPIC -DPIC -o lib/kasp/dir/.libs/libdnssec_la-file.o mv -f lib/event/.deps/libdnssec_la-utils.Tpo lib/event/.deps/libdnssec_la-u= tils.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/dir/libdnssec_la-json.lo -MD -MP -MF lib/kasp/dir/.deps= /libdnssec_la-json.Tpo -c -o lib/kasp/dir/libdnssec_la-json.lo `test -f 'li= b/kasp/dir/json.c' || echo './'`lib/kasp/dir/json.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-json.lo= -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-json.Tpo -c lib/kasp/dir/json.= c -fPIC -DPIC -o lib/kasp/dir/.libs/libdnssec_la-json.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-file.lo= -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-file.Tpo -c lib/kasp/dir/file.= c -o lib/kasp/dir/libdnssec_la-file.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-escape.= lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-escape.Tpo -c lib/kasp/dir/e= scape.c -o lib/kasp/dir/libdnssec_la-escape.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-dir.lo = -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-dir.Tpo -c lib/kasp/dir/dir.c -= o lib/kasp/dir/libdnssec_la-dir.o >/dev/null 2>&1 mv -f lib/kasp/dir/.deps/libdnssec_la-file.Tpo lib/kasp/dir/.deps/libdnssec= _la-file.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/dir/libdnssec_la-zone.lo -MD -MP -MF lib/kasp/dir/.deps= /libdnssec_la-zone.Tpo -c -o lib/kasp/dir/libdnssec_la-zone.lo `test -f 'li= b/kasp/dir/zone.c' || echo './'`lib/kasp/dir/zone.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-zone.lo= -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-zone.Tpo -c lib/kasp/dir/zone.= c -fPIC -DPIC -o lib/kasp/dir/.libs/libdnssec_la-zone.o mv -f lib/kasp/dir/.deps/libdnssec_la-escape.Tpo lib/kasp/dir/.deps/libdnss= ec_la-escape.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-json.lo= -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-json.Tpo -c lib/kasp/dir/json.= c -o lib/kasp/dir/libdnssec_la-json.o >/dev/null 2>&1 /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/dir/libdnssec_la-policy.lo -MD -MP -MF lib/kasp/dir/.de= ps/libdnssec_la-policy.Tpo -c -o lib/kasp/dir/libdnssec_la-policy.lo `test = -f 'lib/kasp/dir/policy.c' || echo './'`lib/kasp/dir/policy.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-policy.= lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-policy.Tpo -c lib/kasp/dir/p= olicy.c -fPIC -DPIC -o lib/kasp/dir/.libs/libdnssec_la-policy.o mv -f lib/kasp/dir/.deps/libdnssec_la-dir.Tpo lib/kasp/dir/.deps/libdnssec_= la-dir.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/libdnssec_la-keyid.lo -MD -MP -MF lib/.deps/libdnssec_la-key= id.Tpo -c -o lib/libdnssec_la-keyid.lo `test -f 'lib/keyid.c' || echo './'`= lib/keyid.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-keyid.lo -MD -MP= -MF lib/.deps/libdnssec_la-keyid.Tpo -c lib/keyid.c -fPIC -DPIC -o lib/.l= ibs/libdnssec_la-keyid.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-policy.= lo -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-policy.Tpo -c lib/kasp/dir/p= olicy.c -o lib/kasp/dir/libdnssec_la-policy.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/dir/libdnssec_la-zone.lo= -MD -MP -MF lib/kasp/dir/.deps/libdnssec_la-zone.Tpo -c lib/kasp/dir/zone.= c -o lib/kasp/dir/libdnssec_la-zone.o >/dev/null 2>&1 mv -f lib/kasp/dir/.deps/libdnssec_la-json.Tpo lib/kasp/dir/.deps/libdnssec= _la-json.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-keyid.lo -MD -MP= -MF lib/.deps/libdnssec_la-keyid.Tpo -c lib/keyid.c -o lib/libdnssec_la-ke= yid.o >/dev/null 2>&1 /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/libdnssec_la-kasp.lo -MD -MP -MF lib/kasp/.deps/libdnss= ec_la-kasp.Tpo -c -o lib/kasp/libdnssec_la-kasp.lo `test -f 'lib/kasp/kasp.= c' || echo './'`lib/kasp/kasp.c mv -f lib/kasp/dir/.deps/libdnssec_la-policy.Tpo lib/kasp/dir/.deps/libdnss= ec_la-policy.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/libdnssec_la-zone.lo -MD -MP -MF lib/kasp/.deps/libdnss= ec_la-zone.Tpo -c -o lib/kasp/libdnssec_la-zone.lo `test -f 'lib/kasp/zone.= c' || echo './'`lib/kasp/zone.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-kasp.lo -MD= -MP -MF lib/kasp/.deps/libdnssec_la-kasp.Tpo -c lib/kasp/kasp.c -fPIC -DP= IC -o lib/kasp/.libs/libdnssec_la-kasp.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-zone.lo -MD= -MP -MF lib/kasp/.deps/libdnssec_la-zone.Tpo -c lib/kasp/zone.c -fPIC -DP= IC -o lib/kasp/.libs/libdnssec_la-zone.o mv -f lib/.deps/libdnssec_la-keyid.Tpo lib/.deps/libdnssec_la-keyid.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/kasp/libdnssec_la-policy.lo -MD -MP -MF lib/kasp/.deps/libdn= ssec_la-policy.Tpo -c -o lib/kasp/libdnssec_la-policy.lo `test -f 'lib/kasp= /policy.c' || echo './'`lib/kasp/policy.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-policy.lo -= MD -MP -MF lib/kasp/.deps/libdnssec_la-policy.Tpo -c lib/kasp/policy.c -fP= IC -DPIC -o lib/kasp/.libs/libdnssec_la-policy.o mv -f lib/kasp/dir/.deps/libdnssec_la-zone.Tpo lib/kasp/dir/.deps/libdnssec= _la-zone.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-algorithm.lo -MD -MP -MF lib/key/.deps/libd= nssec_la-algorithm.Tpo -c -o lib/key/libdnssec_la-algorithm.lo `test -f 'li= b/key/algorithm.c' || echo './'`lib/key/algorithm.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-zone.lo -MD= -MP -MF lib/kasp/.deps/libdnssec_la-zone.Tpo -c lib/kasp/zone.c -o lib/kas= p/libdnssec_la-zone.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-kasp.lo -MD= -MP -MF lib/kasp/.deps/libdnssec_la-kasp.Tpo -c lib/kasp/kasp.c -o lib/kas= p/libdnssec_la-kasp.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-algorithm.lo= -MD -MP -MF lib/key/.deps/libdnssec_la-algorithm.Tpo -c lib/key/algorithm.= c -fPIC -DPIC -o lib/key/.libs/libdnssec_la-algorithm.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/kasp/libdnssec_la-policy.lo -= MD -MP -MF lib/kasp/.deps/libdnssec_la-policy.Tpo -c lib/kasp/policy.c -o l= ib/kasp/libdnssec_la-policy.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-algorithm.lo= -MD -MP -MF lib/key/.deps/libdnssec_la-algorithm.Tpo -c lib/key/algorithm.= c -o lib/key/libdnssec_la-algorithm.o >/dev/null 2>&1 mv -f lib/kasp/.deps/libdnssec_la-zone.Tpo lib/kasp/.deps/libdnssec_la-zone= =2EPlo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-convert.lo -MD -MP -MF lib/key/.deps/libdns= sec_la-convert.Tpo -c -o lib/key/libdnssec_la-convert.lo `test -f 'lib/key/= convert.c' || echo './'`lib/key/convert.c mv -f lib/kasp/.deps/libdnssec_la-policy.Tpo lib/kasp/.deps/libdnssec_la-po= licy.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-dnskey.lo -MD -MP -MF lib/key/.deps/libdnss= ec_la-dnskey.Tpo -c -o lib/key/libdnssec_la-dnskey.lo `test -f 'lib/key/dns= key.c' || echo './'`lib/key/dnskey.c mv -f lib/kasp/.deps/libdnssec_la-kasp.Tpo lib/kasp/.deps/libdnssec_la-kasp= =2EPlo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-ds.lo -MD -MP -MF lib/key/.deps/libdnssec_l= a-ds.Tpo -c -o lib/key/libdnssec_la-ds.lo `test -f 'lib/key/ds.c' || echo '= =2E/'`lib/key/ds.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-convert.lo -= MD -MP -MF lib/key/.deps/libdnssec_la-convert.Tpo -c lib/key/convert.c -fP= IC -DPIC -o lib/key/.libs/libdnssec_la-convert.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-dnskey.lo -M= D -MP -MF lib/key/.deps/libdnssec_la-dnskey.Tpo -c lib/key/dnskey.c -fPIC = -DPIC -o lib/key/.libs/libdnssec_la-dnskey.o mv -f lib/key/.deps/libdnssec_la-algorithm.Tpo lib/key/.deps/libdnssec_la-a= lgorithm.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-ds.lo -MD -M= P -MF lib/key/.deps/libdnssec_la-ds.Tpo -c lib/key/ds.c -fPIC -DPIC -o lib= /key/.libs/libdnssec_la-ds.o /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-key.lo -MD -MP -MF lib/key/.deps/libdnssec_= la-key.Tpo -c -o lib/key/libdnssec_la-key.lo `test -f 'lib/key/key.c' || ec= ho './'`lib/key/key.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-key.lo -MD -= MP -MF lib/key/.deps/libdnssec_la-key.Tpo -c lib/key/key.c -fPIC -DPIC -o = lib/key/.libs/libdnssec_la-key.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-ds.lo -MD -M= P -MF lib/key/.deps/libdnssec_la-ds.Tpo -c lib/key/ds.c -o lib/key/libdnsse= c_la-ds.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-dnskey.lo -M= D -MP -MF lib/key/.deps/libdnssec_la-dnskey.Tpo -c lib/key/dnskey.c -o lib/= key/libdnssec_la-dnskey.o >/dev/null 2>&1 mv -f lib/key/.deps/libdnssec_la-ds.Tpo lib/key/.deps/libdnssec_la-ds.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-keytag.lo -MD -MP -MF lib/key/.deps/libdnss= ec_la-keytag.Tpo -c -o lib/key/libdnssec_la-keytag.lo `test -f 'lib/key/key= tag.c' || echo './'`lib/key/keytag.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-keytag.lo -M= D -MP -MF lib/key/.deps/libdnssec_la-keytag.Tpo -c lib/key/keytag.c -fPIC = -DPIC -o lib/key/.libs/libdnssec_la-keytag.o mv -f lib/key/.deps/libdnssec_la-dnskey.Tpo lib/key/.deps/libdnssec_la-dnsk= ey.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-privkey.lo -MD -MP -MF lib/key/.deps/libdns= sec_la-privkey.Tpo -c -o lib/key/libdnssec_la-privkey.lo `test -f 'lib/key/= privkey.c' || echo './'`lib/key/privkey.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-privkey.lo -= MD -MP -MF lib/key/.deps/libdnssec_la-privkey.Tpo -c lib/key/privkey.c -fP= IC -DPIC -o lib/key/.libs/libdnssec_la-privkey.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-convert.lo -= MD -MP -MF lib/key/.deps/libdnssec_la-convert.Tpo -c lib/key/convert.c -o l= ib/key/libdnssec_la-convert.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-keytag.lo -M= D -MP -MF lib/key/.deps/libdnssec_la-keytag.Tpo -c lib/key/keytag.c -o lib/= key/libdnssec_la-keytag.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-key.lo -MD -= MP -MF lib/key/.deps/libdnssec_la-key.Tpo -c lib/key/key.c -o lib/key/libdn= ssec_la-key.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-privkey.lo -= MD -MP -MF lib/key/.deps/libdnssec_la-privkey.Tpo -c lib/key/privkey.c -o l= ib/key/libdnssec_la-privkey.o >/dev/null 2>&1 mv -f lib/key/.deps/libdnssec_la-keytag.Tpo lib/key/.deps/libdnssec_la-keyt= ag.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/key/libdnssec_la-simple.lo -MD -MP -MF lib/key/.deps/libdnss= ec_la-simple.Tpo -c -o lib/key/libdnssec_la-simple.lo `test -f 'lib/key/sim= ple.c' || echo './'`lib/key/simple.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-simple.lo -M= D -MP -MF lib/key/.deps/libdnssec_la-simple.Tpo -c lib/key/simple.c -fPIC = -DPIC -o lib/key/.libs/libdnssec_la-simple.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/key/libdnssec_la-simple.lo -M= D -MP -MF lib/key/.deps/libdnssec_la-simple.Tpo -c lib/key/simple.c -o lib/= key/libdnssec_la-simple.o >/dev/null 2>&1 mv -f lib/key/.deps/libdnssec_la-privkey.Tpo lib/key/.deps/libdnssec_la-pri= vkey.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/keystore/libdnssec_la-keystore.lo -MD -MP -MF lib/keystore/.= deps/libdnssec_la-keystore.Tpo -c -o lib/keystore/libdnssec_la-keystore.lo = `test -f 'lib/keystore/keystore.c' || echo './'`lib/keystore/keystore.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-keystor= e.lo -MD -MP -MF lib/keystore/.deps/libdnssec_la-keystore.Tpo -c lib/keysto= re/keystore.c -fPIC -DPIC -o lib/keystore/.libs/libdnssec_la-keystore.o mv -f lib/key/.deps/libdnssec_la-convert.Tpo lib/key/.deps/libdnssec_la-con= vert.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/keystore/libdnssec_la-pkcs11.lo -MD -MP -MF lib/keystore/.de= ps/libdnssec_la-pkcs11.Tpo -c -o lib/keystore/libdnssec_la-pkcs11.lo `test = -f 'lib/keystore/pkcs11.c' || echo './'`lib/keystore/pkcs11.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs11.= lo -MD -MP -MF lib/keystore/.deps/libdnssec_la-pkcs11.Tpo -c lib/keystore/p= kcs11.c -fPIC -DPIC -o lib/keystore/.libs/libdnssec_la-pkcs11.o mv -f lib/key/.deps/libdnssec_la-simple.Tpo lib/key/.deps/libdnssec_la-simp= le.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/keystore/libdnssec_la-pkcs8.lo -MD -MP -MF lib/keystore/.dep= s/libdnssec_la-pkcs8.Tpo -c -o lib/keystore/libdnssec_la-pkcs8.lo `test -f = 'lib/keystore/pkcs8.c' || echo './'`lib/keystore/pkcs8.c mv -f lib/key/.deps/libdnssec_la-key.Tpo lib/key/.deps/libdnssec_la-key.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/keystore/libdnssec_la-pkcs8_dir.lo -MD -MP -MF lib/keystore/= =2Edeps/libdnssec_la-pkcs8_dir.Tpo -c -o lib/keystore/libdnssec_la-pkcs8_di= r.lo `test -f 'lib/keystore/pkcs8_dir.c' || echo './'`lib/keystore/pkcs8_di= r.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8.l= o -MD -MP -MF lib/keystore/.deps/libdnssec_la-pkcs8.Tpo -c lib/keystore/pkc= s8.c -fPIC -DPIC -o lib/keystore/.libs/libdnssec_la-pkcs8.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8_d= ir.lo -MD -MP -MF lib/keystore/.deps/libdnssec_la-pkcs8_dir.Tpo -c lib/keys= tore/pkcs8_dir.c -fPIC -DPIC -o lib/keystore/.libs/libdnssec_la-pkcs8_dir.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs11.= lo -MD -MP -MF lib/keystore/.deps/libdnssec_la-pkcs11.Tpo -c lib/keystore/p= kcs11.c -o lib/keystore/libdnssec_la-pkcs11.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-keystor= e.lo -MD -MP -MF lib/keystore/.deps/libdnssec_la-keystore.Tpo -c lib/keysto= re/keystore.c -o lib/keystore/libdnssec_la-keystore.o >/dev/null 2>&1 mv -f lib/keystore/.deps/libdnssec_la-pkcs11.Tpo lib/keystore/.deps/libdnss= ec_la-pkcs11.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/list/libdnssec_la-list.lo -MD -MP -MF lib/list/.deps/libdnss= ec_la-list.Tpo -c -o lib/list/libdnssec_la-list.lo `test -f 'lib/list/list.= c' || echo './'`lib/list/list.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8.l= o -MD -MP -MF lib/keystore/.deps/libdnssec_la-pkcs8.Tpo -c lib/keystore/pkc= s8.c -o lib/keystore/libdnssec_la-pkcs8.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/list/libdnssec_la-list.lo -MD= -MP -MF lib/list/.deps/libdnssec_la-list.Tpo -c lib/list/list.c -fPIC -DP= IC -o lib/list/.libs/libdnssec_la-list.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/keystore/libdnssec_la-pkcs8_d= ir.lo -MD -MP -MF lib/keystore/.deps/libdnssec_la-pkcs8_dir.Tpo -c lib/keys= tore/pkcs8_dir.c -o lib/keystore/libdnssec_la-pkcs8_dir.o >/dev/null 2>&1 mv -f lib/keystore/.deps/libdnssec_la-keystore.Tpo lib/keystore/.deps/libdn= ssec_la-keystore.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/libdnssec_la-random.lo -MD -MP -MF lib/.deps/libdnssec_la-ra= ndom.Tpo -c -o lib/libdnssec_la-random.lo `test -f 'lib/random.c' || echo '= =2E/'`lib/random.c mv -f lib/keystore/.deps/libdnssec_la-pkcs8.Tpo lib/keystore/.deps/libdnsse= c_la-pkcs8.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/libdnssec_la-tsig.lo -MD -MP -MF lib/.deps/libdnssec_la-tsig= =2ETpo -c -o lib/libdnssec_la-tsig.lo `test -f 'lib/tsig.c' || echo './'`li= b/tsig.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-random.lo -MD -M= P -MF lib/.deps/libdnssec_la-random.Tpo -c lib/random.c -fPIC -DPIC -o lib= /.libs/libdnssec_la-random.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-tsig.lo -MD -MP = -MF lib/.deps/libdnssec_la-tsig.Tpo -c lib/tsig.c -fPIC -DPIC -o lib/.libs= /libdnssec_la-tsig.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/list/libdnssec_la-list.lo -MD= -MP -MF lib/list/.deps/libdnssec_la-list.Tpo -c lib/list/list.c -o lib/lis= t/libdnssec_la-list.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-random.lo -MD -M= P -MF lib/.deps/libdnssec_la-random.Tpo -c lib/random.c -o lib/libdnssec_la= -random.o >/dev/null 2>&1 mv -f lib/.deps/libdnssec_la-random.Tpo lib/.deps/libdnssec_la-random.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/libdnssec_la-tsig.lo -MD -MP = -MF lib/.deps/libdnssec_la-tsig.Tpo -c lib/tsig.c -o lib/libdnssec_la-tsig.= o >/dev/null 2>&1 /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/nsec/libdnssec_la-bitmap.lo -MD -MP -MF lib/nsec/.deps/libdn= ssec_la-bitmap.Tpo -c -o lib/nsec/libdnssec_la-bitmap.lo `test -f 'lib/nsec= /bitmap.c' || echo './'`lib/nsec/bitmap.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-bitmap.lo -= MD -MP -MF lib/nsec/.deps/libdnssec_la-bitmap.Tpo -c lib/nsec/bitmap.c -fP= IC -DPIC -o lib/nsec/.libs/libdnssec_la-bitmap.o mv -f lib/keystore/.deps/libdnssec_la-pkcs8_dir.Tpo lib/keystore/.deps/libd= nssec_la-pkcs8_dir.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/nsec/libdnssec_la-hash.lo -MD -MP -MF lib/nsec/.deps/libdnss= ec_la-hash.Tpo -c -o lib/nsec/libdnssec_la-hash.lo `test -f 'lib/nsec/hash.= c' || echo './'`lib/nsec/hash.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-hash.lo -MD= -MP -MF lib/nsec/.deps/libdnssec_la-hash.Tpo -c lib/nsec/hash.c -fPIC -DP= IC -o lib/nsec/.libs/libdnssec_la-hash.o mv -f lib/list/.deps/libdnssec_la-list.Tpo lib/list/.deps/libdnssec_la-list= =2EPlo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/sign/libdnssec_la-der.lo -MD -MP -MF lib/sign/.deps/libdnsse= c_la-der.Tpo -c -o lib/sign/libdnssec_la-der.lo `test -f 'lib/sign/der.c' |= | echo './'`lib/sign/der.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/sign/libdnssec_la-der.lo -MD = -MP -MF lib/sign/.deps/libdnssec_la-der.Tpo -c lib/sign/der.c -fPIC -DPIC = -o lib/sign/.libs/libdnssec_la-der.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-bitmap.lo -= MD -MP -MF lib/nsec/.deps/libdnssec_la-bitmap.Tpo -c lib/nsec/bitmap.c -o l= ib/nsec/libdnssec_la-bitmap.o >/dev/null 2>&1 mv -f lib/.deps/libdnssec_la-tsig.Tpo lib/.deps/libdnssec_la-tsig.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -fvisibility=3Dhidden -O2 -pipe -fstack-= protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dim= plicit -MT lib/sign/libdnssec_la-sign.lo -MD -MP -MF lib/sign/.deps/libdnss= ec_la-sign.Tpo -c -o lib/sign/libdnssec_la-sign.lo `test -f 'lib/sign/sign.= c' || echo './'`lib/sign/sign.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/sign/libdnssec_la-sign.lo -MD= -MP -MF lib/sign/.deps/libdnssec_la-sign.Tpo -c lib/sign/sign.c -fPIC -DP= IC -o lib/sign/.libs/libdnssec_la-sign.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/nsec/libdnssec_la-hash.lo -MD= -MP -MF lib/nsec/.deps/libdnssec_la-hash.Tpo -c lib/nsec/hash.c -o lib/nse= c/libdnssec_la-hash.o >/dev/null 2>&1 mv -f lib/nsec/.deps/libdnssec_la-bitmap.Tpo lib/nsec/.deps/libdnssec_la-bi= tmap.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-base32hex.lo -MD -MP -MF shared/.deps/libshared_la-base32hex.Tpo -c= -o shared/libshared_la-base32hex.lo `test -f 'shared/base32hex.c' || echo = './'`shared/base32hex.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-base32hex.lo -MD -MP -MF shared/.deps= /libshared_la-base32hex.Tpo -c shared/base32hex.c -fPIC -DPIC -o shared/.l= ibs/libshared_la-base32hex.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/sign/libdnssec_la-der.lo -MD = -MP -MF lib/sign/.deps/libdnssec_la-der.Tpo -c lib/sign/der.c -o lib/sign/l= ibdnssec_la-der.o >/dev/null 2>&1 mv -f lib/nsec/.deps/libdnssec_la-hash.Tpo lib/nsec/.deps/libdnssec_la-hash= =2EPlo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-bignum.lo -MD -MP -MF shared/.deps/libshared_la-bignum.Tpo -c -o sh= ared/libshared_la-bignum.lo `test -f 'shared/bignum.c' || echo './'`shared/= bignum.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-bignum.lo -MD -MP -MF shared/.deps/li= bshared_la-bignum.Tpo -c shared/bignum.c -fPIC -DPIC -o shared/.libs/libsh= ared_la-bignum.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-base32hex.lo -MD -MP -MF shared/.deps= /libshared_la-base32hex.Tpo -c shared/base32hex.c -o shared/libshared_la-ba= se32hex.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-bignum.lo -MD -MP -MF shared/.deps/li= bshared_la-bignum.Tpo -c shared/bignum.c -o shared/libshared_la-bignum.o >/= dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -fvisibilit= y=3Dhidden -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT lib/sign/libdnssec_la-sign.lo -MD= -MP -MF lib/sign/.deps/libdnssec_la-sign.Tpo -c lib/sign/sign.c -o lib/sig= n/libdnssec_la-sign.o >/dev/null 2>&1 mv -f shared/.deps/libshared_la-bignum.Tpo shared/.deps/libshared_la-bignum= =2EPlo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-dname.lo -MD -MP -MF shared/.deps/libshared_la-dname.Tpo -c -o shar= ed/libshared_la-dname.lo `test -f 'shared/dname.c' || echo './'`shared/dnam= e.c mv -f lib/sign/.deps/libdnssec_la-der.Tpo lib/sign/.deps/libdnssec_la-der.P= lo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-fs.lo -MD -MP -MF shared/.deps/libshared_la-fs.Tpo -c -o shared/lib= shared_la-fs.lo `test -f 'shared/fs.c' || echo './'`shared/fs.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-dname.lo -MD -MP -MF shared/.deps/lib= shared_la-dname.Tpo -c shared/dname.c -fPIC -DPIC -o shared/.libs/libshare= d_la-dname.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-fs.lo -MD -MP -MF shared/.deps/libsha= red_la-fs.Tpo -c shared/fs.c -fPIC -DPIC -o shared/.libs/libshared_la-fs.o mv -f shared/.deps/libshared_la-base32hex.Tpo shared/.deps/libshared_la-bas= e32hex.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-hex.lo -MD -MP -MF shared/.deps/libshared_la-hex.Tpo -c -o shared/l= ibshared_la-hex.lo `test -f 'shared/hex.c' || echo './'`shared/hex.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-fs.lo -MD -MP -MF shared/.deps/libsha= red_la-fs.Tpo -c shared/fs.c -o shared/libshared_la-fs.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-hex.lo -MD -MP -MF shared/.deps/libsh= ared_la-hex.Tpo -c shared/hex.c -fPIC -DPIC -o shared/.libs/libshared_la-h= ex.o mv -f shared/.deps/libshared_la-fs.Tpo shared/.deps/libshared_la-fs.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-hex_gnutls.lo -MD -MP -MF shared/.deps/libshared_la-hex_gnutls.Tpo = -c -o shared/libshared_la-hex_gnutls.lo `test -f 'shared/hex_gnutls.c' || e= cho './'`shared/hex_gnutls.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-hex_gnutls.lo -MD -MP -MF shared/.dep= s/libshared_la-hex_gnutls.Tpo -c shared/hex_gnutls.c -fPIC -DPIC -o shared= /.libs/libshared_la-hex_gnutls.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-dname.lo -MD -MP -MF shared/.deps/lib= shared_la-dname.Tpo -c shared/dname.c -o shared/libshared_la-dname.o >/dev/= null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-hex.lo -MD -MP -MF shared/.deps/libsh= ared_la-hex.Tpo -c shared/hex.c -o shared/libshared_la-hex.o >/dev/null 2>&1 mv -f lib/sign/.deps/libdnssec_la-sign.Tpo lib/sign/.deps/libdnssec_la-sign= =2EPlo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-path.lo -MD -MP -MF shared/.deps/libshared_la-path.Tpo -c -o shared= /libshared_la-path.lo `test -f 'shared/path.c' || echo './'`shared/path.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-path.lo -MD -MP -MF shared/.deps/libs= hared_la-path.Tpo -c shared/path.c -fPIC -DPIC -o shared/.libs/libshared_l= a-path.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-hex_gnutls.lo -MD -MP -MF shared/.dep= s/libshared_la-hex_gnutls.Tpo -c shared/hex_gnutls.c -o shared/libshared_la= -hex_gnutls.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-path.lo -MD -MP -MF shared/.deps/libs= hared_la-path.Tpo -c shared/path.c -o shared/libshared_la-path.o >/dev/null= 2>&1 mv -f shared/.deps/libshared_la-hex.Tpo shared/.deps/libshared_la-hex.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../src -include ../../src/config.h -I./shared -I./lib= -I./lib/dnssec -I../../src -I/usr/local/include/p11-kit-1 -I/usr/loca= l/include -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-a= liasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT shared/libsh= ared_la-pem.lo -MD -MP -MF shared/.deps/libshared_la-pem.Tpo -c -o shared/l= ibshared_la-pem.lo `test -f 'shared/pem.c' || echo './'`shared/pem.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-pem.lo -MD -MP -MF shared/.deps/libsh= ared_la-pem.Tpo -c shared/pem.c -fPIC -DPIC -o shared/.libs/libshared_la-p= em.o mv -f shared/.deps/libshared_la-path.Tpo shared/.deps/libshared_la-path.Plo mv -f shared/.deps/libshared_la-dname.Tpo shared/.deps/libshared_la-dname.P= lo mv -f shared/.deps/libshared_la-hex_gnutls.Tpo shared/.deps/libshared_la-he= x_gnutls.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../src -include= ../../src/config.h -I./shared -I./lib -I./lib/dnssec -I../../src -I/usr/lo= cal/include/p11-kit-1 -I/usr/local/include -I/usr/local/include -O2 -pipe -= fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werr= or=3Dimplicit -MT shared/libshared_la-pem.lo -MD -MP -MF shared/.deps/libsh= ared_la-pem.Tpo -c shared/pem.c -o shared/libshared_la-pem.o >/dev/null 2>&1 mv -f shared/.deps/libshared_la-pem.Tpo shared/.deps/libshared_la-pem.Plo /bin/sh ../../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -fstack-protector -o libshared.la shared/libshared_la-= base32hex.lo shared/libshared_la-bignum.lo shared/libshared_la-dname.lo s= hared/libshared_la-fs.lo shared/libshared_la-hex.lo shared/libshared_la-he= x_gnutls.lo shared/libshared_la-path.lo shared/libshared_la-pem.lo -lpthr= ead -lm libtool: link: ar cru .libs/libshared.a shared/.libs/libshared_la-base32hex= =2Eo shared/.libs/libshared_la-bignum.o shared/.libs/libshared_la-dname.o s= hared/.libs/libshared_la-fs.o shared/.libs/libshared_la-hex.o shared/.libs/= libshared_la-hex_gnutls.o shared/.libs/libshared_la-path.o shared/.libs/lib= shared_la-pem.o=20 libtool: link: ranlib .libs/libshared.a libtool: link: ( cd ".libs" && rm -f "libshared.la" && ln -s "../libshared.= la" "libshared.la" ) /bin/sh ../../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -lgnutls -L/usr/local/lib -lnettle -L/usr/local/lib -lj= ansson -version-info 0:0:0 -fstack-protector -o libdnssec.la -rpath /usr/l= ocal/lib lib/libdnssec_la-binary.lo lib/libdnssec_la-crypto.lo lib/libdnss= ec_la-error.lo lib/event/action/libdnssec_la-initial_key.lo lib/event/act= ion/libdnssec_la-zsk_rollover.lo lib/event/libdnssec_la-event.lo lib/even= t/libdnssec_la-keystate.lo lib/event/libdnssec_la-utils.lo lib/kasp/dir/l= ibdnssec_la-dir.lo lib/kasp/dir/libdnssec_la-escape.lo lib/kasp/dir/libdn= ssec_la-file.lo lib/kasp/dir/libdnssec_la-json.lo lib/kasp/dir/libdnssec_= la-zone.lo lib/kasp/dir/libdnssec_la-policy.lo lib/kasp/libdnssec_la-kasp= =2Elo lib/kasp/libdnssec_la-zone.lo lib/kasp/libdnssec_la-policy.lo lib/k= ey/libdnssec_la-algorithm.lo lib/key/libdnssec_la-convert.lo lib/key/libdn= ssec_la-dnskey.lo lib/key/libdnssec_la-ds.lo lib/key/libdnssec_la-key.lo = lib/key/libdnssec_la-keytag.lo lib/key/libdnssec_la-privkey.lo lib/key/lib= dnssec_la-simple.lo lib/libdnssec_la-keyid.lo lib/keystore/libdnssec_la-ke= ystore.lo lib/keystore/libdnssec_la-pkcs11.lo lib/keystore/libdnssec_la-p= kcs8.lo lib/keystore/libdnssec_la-pkcs8_dir.lo lib/list/libdnssec_la-list= =2Elo lib/nsec/libdnssec_la-bitmap.lo lib/nsec/libdnssec_la-hash.lo lib/li= bdnssec_la-random.lo lib/sign/libdnssec_la-der.lo lib/sign/libdnssec_la-si= gn.lo lib/libdnssec_la-tsig.lo libshared.la -lpthread -lm libtool: link: cc -std=3Dgnu99 -shared -fPIC -DPIC lib/.libs/libdnssec_la= -binary.o lib/.libs/libdnssec_la-crypto.o lib/.libs/libdnssec_la-error.o li= b/event/action/.libs/libdnssec_la-initial_key.o lib/event/action/.libs/libd= nssec_la-zsk_rollover.o lib/event/.libs/libdnssec_la-event.o lib/event/.lib= s/libdnssec_la-keystate.o lib/event/.libs/libdnssec_la-utils.o lib/kasp/dir= /.libs/libdnssec_la-dir.o lib/kasp/dir/.libs/libdnssec_la-escape.o lib/kasp= /dir/.libs/libdnssec_la-file.o lib/kasp/dir/.libs/libdnssec_la-json.o lib/k= asp/dir/.libs/libdnssec_la-zone.o lib/kasp/dir/.libs/libdnssec_la-policy.o = lib/kasp/.libs/libdnssec_la-kasp.o lib/kasp/.libs/libdnssec_la-zone.o lib/k= asp/.libs/libdnssec_la-policy.o lib/key/.libs/libdnssec_la-algorithm.o lib/= key/.libs/libdnssec_la-convert.o lib/key/.libs/libdnssec_la-dnskey.o lib/ke= y/.libs/libdnssec_la-ds.o lib/key/.libs/libdnssec_la-key.o lib/key/.libs/li= bdnssec_la-keytag.o lib/key/.libs/libdnssec_la-privkey.o lib/key/.libs/libd= nssec_la-simple.o lib/.libs/libdnssec_la-keyid.o lib/keystore/.libs/libdnss= ec_la-keystore.o lib/keystore/.libs/libdnssec_la-pkcs11.o lib/keystore/.lib= s/libdnssec_la-pkcs8.o lib/keystore/.libs/libdnssec_la-pkcs8_dir.o lib/list= /.libs/libdnssec_la-list.o lib/nsec/.libs/libdnssec_la-bitmap.o lib/nsec/.l= ibs/libdnssec_la-hash.o lib/.libs/libdnssec_la-random.o lib/sign/.libs/libd= nssec_la-der.o lib/sign/.libs/libdnssec_la-sign.o lib/.libs/libdnssec_la-ts= ig.o -Wl,--whole-archive ./.libs/libshared.a -Wl,--no-whole-archive -lgnu= tls -L/usr/local/lib -lnettle -ljansson -lpthread -lm -O2 -fstack-protecto= r -fstack-protector -Wl,-soname -Wl,libdnssec.so.0 -o .libs/libdnssec.so.= 0.0.0 libtool: link: (cd ".libs" && rm -f "libdnssec.so.0" && ln -s "libdnssec.so= =2E0.0.0" "libdnssec.so.0") libtool: link: (cd ".libs" && rm -f "libdnssec.so" && ln -s "libdnssec.so.0= =2E0.0" "libdnssec.so") libtool: link: (cd .libs/libdnssec.lax/libshared.a && ar x "/wrkdirs/usr/po= rts/dns/knot2/work/knot-2.0.0/src/dnssec/./.libs/libshared.a") copying selected object files to avoid basename conflicts... libtool: link: ln lib/kasp/libdnssec_la-zone.o .libs/libdnssec.lax/lt1-libd= nssec_la-zone.o || cp lib/kasp/libdnssec_la-zone.o .libs/libdnssec.lax/lt1-= libdnssec_la-zone.o libtool: link: ln lib/kasp/libdnssec_la-policy.o .libs/libdnssec.lax/lt2-li= bdnssec_la-policy.o || cp lib/kasp/libdnssec_la-policy.o .libs/libdnssec.la= x/lt2-libdnssec_la-policy.o libtool: link: ar cru .libs/libdnssec.a lib/libdnssec_la-binary.o lib/libdn= ssec_la-crypto.o lib/libdnssec_la-error.o lib/event/action/libdnssec_la-ini= tial_key.o lib/event/action/libdnssec_la-zsk_rollover.o lib/event/libdnssec= _la-event.o lib/event/libdnssec_la-keystate.o lib/event/libdnssec_la-utils.= o lib/kasp/dir/libdnssec_la-dir.o lib/kasp/dir/libdnssec_la-escape.o lib/ka= sp/dir/libdnssec_la-file.o lib/kasp/dir/libdnssec_la-json.o lib/kasp/dir/li= bdnssec_la-zone.o lib/kasp/dir/libdnssec_la-policy.o lib/kasp/libdnssec_la-= kasp.o .libs/libdnssec.lax/lt1-libdnssec_la-zone.o .libs/libdnssec.lax/lt2-= libdnssec_la-policy.o lib/key/libdnssec_la-algorithm.o lib/key/libdnssec_la= -convert.o lib/key/libdnssec_la-dnskey.o lib/key/libdnssec_la-ds.o lib/key/= libdnssec_la-key.o lib/key/libdnssec_la-keytag.o lib/key/libdnssec_la-privk= ey.o lib/key/libdnssec_la-simple.o lib/libdnssec_la-keyid.o lib/keystore/li= bdnssec_la-keystore.o lib/keystore/libdnssec_la-pkcs11.o lib/keystore/libdn= ssec_la-pkcs8.o lib/keystore/libdnssec_la-pkcs8_dir.o lib/list/libdnssec_la= -list.o lib/nsec/libdnssec_la-bitmap.o lib/nsec/libdnssec_la-hash.o lib/lib= dnssec_la-random.o lib/sign/libdnssec_la-der.o lib/sign/libdnssec_la-sign.o= lib/libdnssec_la-tsig.o .libs/libdnssec.lax/libshared.a/libshared_la-base3= 2hex.o .libs/libdnssec.lax/libshared.a/libshared_la-bignum.o .libs/libdnsse= c.lax/libshared.a/libshared_la-dname.o .libs/libdnssec.lax/libshared.a/libs= hared_la-fs.o .libs/libdnssec.lax/libshared.a/libshared_la-hex.o .libs/libd= nssec.lax/libshared.a/libshared_la-hex_gnutls.o .libs/libdnssec.lax/libshar= ed.a/libshared_la-path.o .libs/libdnssec.lax/libshared.a/libshared_la-pem.o libtool: link: ranlib .libs/libdnssec.a libtool: link: rm -fr .libs/libdnssec.lax .libs/libdnssec.lax libtool: link: ( cd ".libs" && rm -f "libdnssec.la" && ln -s "../libdnssec.= la" "libdnssec.la" ) Making all in utils depbase=3D`echo knsec3hash.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; cc -std= =3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -include ../../../src/config.h= -I./../shared -I./../lib/dnssec -I./../lib -I../../../src -I/usr/loca= l/include/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector -= fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT = knsec3hash.o -MD -MP -MF $depbase.Tpo -c -o knsec3hash.o knsec3hash.c && mv= -f $depbase.Tpo $depbase.Po depbase=3D`echo cmdparse/command.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /= bin/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DH= AVE_CONFIG_H -I. -I../../../src -include ../../../src/config.h -I./../sh= ared -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p= 11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT cmdparse/co= mmand.lo -MD -MP -MF $depbase.Tpo -c -o cmdparse/command.lo cmdparse/comman= d.c && mv -f $depbase.Tpo $depbase.Plo depbase=3D`echo cmdparse/parameter.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;= /bin/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -= DHAVE_CONFIG_H -I. -I../../../src -include ../../../src/config.h -I./../= shared -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/include= /p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT cmdparse/= parameter.lo -MD -MP -MF $depbase.Tpo -c -o cmdparse/parameter.lo cmdparse/= parameter.c && mv -f $depbase.Tpo $depbase.Plo depbase=3D`echo keymgr.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; cc -std=3Dgnu= 99 -DHAVE_CONFIG_H -I. -I../../../src -include ../../../src/config.h -I./= =2E./shared -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/in= clude/p11-kit-1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-= strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT keym= gr.o -MD -MP -MF $depbase.Tpo -c -o keymgr.o keymgr.c && mv -f $depbase.Tpo= $depbase.Po libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT cmdparse/command.lo -MD -MP -MF cmdparse/.deps/command.Tpo= -c cmdparse/command.c -fPIC -DPIC -o cmdparse/.libs/command.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT cmdparse/parameter.lo -MD -MP -MF cmdparse/.deps/parameter= =2ETpo -c cmdparse/parameter.c -fPIC -DPIC -o cmdparse/.libs/parameter.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT cmdparse/parameter.lo -MD -MP -MF cmdparse/.deps/parameter= =2ETpo -c cmdparse/parameter.c -o cmdparse/parameter.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT cmdparse/command.lo -MD -MP -MF cmdparse/.deps/command.Tpo= -c cmdparse/command.c -o cmdparse/command.o >/dev/null 2>&1 depbase=3D`echo cmdparse/value.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bi= n/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAV= E_CONFIG_H -I. -I../../../src -include ../../../src/config.h -I./../shar= ed -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11= -kit-1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-al= iasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT cmdparse/valu= e.lo -MD -MP -MF $depbase.Tpo -c -o cmdparse/value.lo cmdparse/value.c && m= v -f $depbase.Tpo $depbase.Plo depbase=3D`echo legacy/key.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bin/sh= ../../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -I../../../src -include ../../../src/config.h -I./../shared = -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-kit= -1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-aliasi= ng -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT legacy/key.lo -MD= -MP -MF $depbase.Tpo -c -o legacy/key.lo legacy/key.c && mv -f $depbase.Tp= o $depbase.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT cmdparse/value.lo -MD -MP -MF cmdparse/.deps/value.Tpo -c = cmdparse/value.c -fPIC -DPIC -o cmdparse/.libs/value.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT legacy/key.lo -MD -MP -MF legacy/.deps/key.Tpo -c legacy/k= ey.c -fPIC -DPIC -o legacy/.libs/key.o depbase=3D`echo legacy/privkey.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bi= n/sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAV= E_CONFIG_H -I. -I../../../src -include ../../../src/config.h -I./../shar= ed -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11= -kit-1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-al= iasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT legacy/privke= y.lo -MD -MP -MF $depbase.Tpo -c -o legacy/privkey.lo legacy/privkey.c && m= v -f $depbase.Tpo $depbase.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT legacy/privkey.lo -MD -MP -MF legacy/.deps/privkey.Tpo -c = legacy/privkey.c -fPIC -DPIC -o legacy/.libs/privkey.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT cmdparse/value.lo -MD -MP -MF cmdparse/.deps/value.Tpo -c = cmdparse/value.c -o cmdparse/value.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT legacy/key.lo -MD -MP -MF legacy/.deps/key.Tpo -c legacy/k= ey.c -o legacy/key.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT legacy/privkey.lo -MD -MP -MF legacy/.deps/privkey.Tpo -c = legacy/privkey.c -o legacy/privkey.o >/dev/null 2>&1 depbase=3D`echo legacy/pubkey.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`; /bin= /sh ../../../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE= _CONFIG_H -I. -I../../../src -include ../../../src/config.h -I./../share= d -I./../lib/dnssec -I./../lib -I../../../src -I/usr/local/include/p11-= kit-1 -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-ali= asing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT legacy/pubkey.= lo -MD -MP -MF $depbase.Tpo -c -o legacy/pubkey.lo legacy/pubkey.c && mv -f= $depbase.Tpo $depbase.Plo /bin/sh ../../../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 = -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-securit= y -Werror=3Dimplicit -fstack-protector -o knsec3hash knsec3hash.o ./../li= bdnssec.la ./../libshared.la -lpthread -lm libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT legacy/pubkey.lo -MD -MP -MF legacy/.deps/pubkey.Tpo -c le= gacy/pubkey.c -fPIC -DPIC -o legacy/.libs/pubkey.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -I../../../src -incl= ude ../../../src/config.h -I./../shared -I./../lib/dnssec -I./../lib -I../.= =2E/../src -I/usr/local/include/p11-kit-1 -I/usr/local/include -O2 -pipe -f= stack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werro= r=3Dimplicit -MT legacy/pubkey.lo -MD -MP -MF legacy/.deps/pubkey.Tpo -c le= gacy/pubkey.c -o legacy/pubkey.o >/dev/null 2>&1 libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/knsec3hash knsec3hash.o ./../.libs/libdnssec.so -L/usr/local/lib .= /../.libs/libshared.a -lgnutls -lnettle -ljansson -lpthread -lm -Wl,-rpath = -Wl,/usr/local/lib /bin/sh ../../../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 = -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-securit= y -Werror=3Dimplicit -fstack-protector -o libutils.la cmdparse/command.l= o cmdparse/parameter.lo cmdparse/value.lo legacy/key.lo legacy/privkey.lo= legacy/pubkey.lo ./../libdnssec.la ./../libshared.la ../../../src/zscan= ner/libzscanner.la -lpthread -lm libtool: link: (cd .libs/libutils.lax/libshared.a && ar x "/wrkdirs/usr/por= ts/dns/knot2/work/knot-2.0.0/src/dnssec/utils/./../.libs/libshared.a") libtool: link: ar cru .libs/libutils.a cmdparse/.libs/command.o cmdparse/.l= ibs/parameter.o cmdparse/.libs/value.o legacy/.libs/key.o legacy/.libs/priv= key.o legacy/.libs/pubkey.o .libs/libutils.lax/libshared.a/libshared_la-b= ase32hex.o .libs/libutils.lax/libshared.a/libshared_la-bignum.o .libs/libut= ils.lax/libshared.a/libshared_la-dname.o .libs/libutils.lax/libshared.a/lib= shared_la-fs.o .libs/libutils.lax/libshared.a/libshared_la-hex.o .libs/libu= tils.lax/libshared.a/libshared_la-hex_gnutls.o .libs/libutils.lax/libshared= =2Ea/libshared_la-path.o .libs/libutils.lax/libshared.a/libshared_la-pem.o= =20 libtool: link: ranlib .libs/libutils.a libtool: link: rm -fr .libs/libutils.lax libtool: link: ( cd ".libs" && rm -f "libutils.la" && ln -s "../libutils.la= " "libutils.la" ) /bin/sh ../../../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 = -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-securit= y -Werror=3Dimplicit -fstack-protector -o keymgr keymgr.o libutils.la -lp= thread -lm libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/keymgr keymgr.o ./.libs/libutils.a /wrkdirs/usr/ports/dns/knot2/wo= rk/knot-2.0.0/src/dnssec/.libs/libdnssec.so -L/usr/local/lib /wrkdirs/usr/p= orts/dns/knot2/work/knot-2.0.0/src/zscanner/.libs/libzscanner.so -lgnutls -= lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib Making all in tests Making all in dnstap /usr/bin/make all-am Making all in . /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-binary.lo -MD -MP -MF libknot/.deps/libknot_la-= binary.Tpo -c -o libknot/libknot_la-binary.lo `test -f 'libknot/binary.c' |= | echo './'`libknot/binary.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-consts.lo -MD -MP -MF libknot/.deps/libknot_la-= consts.Tpo -c -o libknot/libknot_la-consts.lo `test -f 'libknot/consts.c' |= | echo './'`libknot/consts.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-descriptor.lo -MD -MP -MF libknot/.deps/libknot= _la-descriptor.Tpo -c -o libknot/libknot_la-descriptor.lo `test -f 'libknot= /descriptor.c' || echo './'`libknot/descriptor.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-dname.lo -MD -MP -MF libknot/.deps/libknot_la-d= name.Tpo -c -o libknot/libknot_la-dname.lo `test -f 'libknot/dname.c' || ec= ho './'`libknot/dname.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-binary.lo -M= D -MP -MF libknot/.deps/libknot_la-binary.Tpo -c libknot/binary.c -fPIC -D= PIC -o libknot/.libs/libknot_la-binary.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-consts.lo -M= D -MP -MF libknot/.deps/libknot_la-consts.Tpo -c libknot/consts.c -fPIC -D= PIC -o libknot/.libs/libknot_la-consts.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-descriptor.l= o -MD -MP -MF libknot/.deps/libknot_la-descriptor.Tpo -c libknot/descriptor= =2Ec -fPIC -DPIC -o libknot/.libs/libknot_la-descriptor.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-dname.lo -MD= -MP -MF libknot/.deps/libknot_la-dname.Tpo -c libknot/dname.c -fPIC -DPIC= -o libknot/.libs/libknot_la-dname.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-consts.lo -M= D -MP -MF libknot/.deps/libknot_la-consts.Tpo -c libknot/consts.c -o libkno= t/libknot_la-consts.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-binary.lo -M= D -MP -MF libknot/.deps/libknot_la-binary.Tpo -c libknot/binary.c -o libkno= t/libknot_la-binary.o >/dev/null 2>&1 mv -f libknot/.deps/libknot_la-consts.Tpo libknot/.deps/libknot_la-consts.P= lo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-errcode.lo -MD -MP -MF libknot/.deps/libknot_la= -errcode.Tpo -c -o libknot/libknot_la-errcode.lo `test -f 'libknot/errcode.= c' || echo './'`libknot/errcode.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-errcode.lo -= MD -MP -MF libknot/.deps/libknot_la-errcode.Tpo -c libknot/errcode.c -fPIC= -DPIC -o libknot/.libs/libknot_la-errcode.o mv -f libknot/.deps/libknot_la-binary.Tpo libknot/.deps/libknot_la-binary.P= lo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-descriptor.l= o -MD -MP -MF libknot/.deps/libknot_la-descriptor.Tpo -c libknot/descriptor= =2Ec -o libknot/libknot_la-descriptor.o >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-rdata.lo -MD -MP -MF libknot/.deps/libknot_la-r= data.Tpo -c -o libknot/libknot_la-rdata.lo `test -f 'libknot/rdata.c' || ec= ho './'`libknot/rdata.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-errcode.lo -= MD -MP -MF libknot/.deps/libknot_la-errcode.Tpo -c libknot/errcode.c -o lib= knot/libknot_la-errcode.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rdata.lo -MD= -MP -MF libknot/.deps/libknot_la-rdata.Tpo -c libknot/rdata.c -fPIC -DPIC= -o libknot/.libs/libknot_la-rdata.o mv -f libknot/.deps/libknot_la-errcode.Tpo libknot/.deps/libknot_la-errcode= =2EPlo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-rdataset.lo -MD -MP -MF libknot/.deps/libknot_l= a-rdataset.Tpo -c -o libknot/libknot_la-rdataset.lo `test -f 'libknot/rdata= set.c' || echo './'`libknot/rdataset.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rdata.lo -MD= -MP -MF libknot/.deps/libknot_la-rdata.Tpo -c libknot/rdata.c -o libknot/l= ibknot_la-rdata.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rdataset.lo = -MD -MP -MF libknot/.deps/libknot_la-rdataset.Tpo -c libknot/rdataset.c -f= PIC -DPIC -o libknot/.libs/libknot_la-rdataset.o mv -f libknot/.deps/libknot_la-descriptor.Tpo libknot/.deps/libknot_la-desc= riptor.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-rrset-dump.lo -MD -MP -MF libknot/.deps/libknot= _la-rrset-dump.Tpo -c -o libknot/libknot_la-rrset-dump.lo `test -f 'libknot= /rrset-dump.c' || echo './'`libknot/rrset-dump.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rrset-dump.l= o -MD -MP -MF libknot/.deps/libknot_la-rrset-dump.Tpo -c libknot/rrset-dump= =2Ec -fPIC -DPIC -o libknot/.libs/libknot_la-rrset-dump.o mv -f libknot/.deps/libknot_la-rdata.Tpo libknot/.deps/libknot_la-rdata.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-rrset.lo -MD -MP -MF libknot/.deps/libknot_la-r= rset.Tpo -c -o libknot/libknot_la-rrset.lo `test -f 'libknot/rrset.c' || ec= ho './'`libknot/rrset.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rrset.lo -MD= -MP -MF libknot/.deps/libknot_la-rrset.Tpo -c libknot/rrset.c -fPIC -DPIC= -o libknot/.libs/libknot_la-rrset.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-dname.lo -MD= -MP -MF libknot/.deps/libknot_la-dname.Tpo -c libknot/dname.c -o libknot/l= ibknot_la-dname.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rdataset.lo = -MD -MP -MF libknot/.deps/libknot_la-rdataset.Tpo -c libknot/rdataset.c -o = libknot/libknot_la-rdataset.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rrset.lo -MD= -MP -MF libknot/.deps/libknot_la-rrset.Tpo -c libknot/rrset.c -o libknot/l= ibknot_la-rrset.o >/dev/null 2>&1 mv -f libknot/.deps/libknot_la-rrset.Tpo libknot/.deps/libknot_la-rrset.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/packet/libknot_la-compr.lo -MD -MP -MF libknot/packet/.dep= s/libknot_la-compr.Tpo -c -o libknot/packet/libknot_la-compr.lo `test -f 'l= ibknot/packet/compr.c' || echo './'`libknot/packet/compr.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/packet/libknot_la-compr= =2Elo -MD -MP -MF libknot/packet/.deps/libknot_la-compr.Tpo -c libknot/pack= et/compr.c -fPIC -DPIC -o libknot/packet/.libs/libknot_la-compr.o mv -f libknot/.deps/libknot_la-rdataset.Tpo libknot/.deps/libknot_la-rdatas= et.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/packet/libknot_la-pkt.lo -MD -MP -MF libknot/packet/.deps/= libknot_la-pkt.Tpo -c -o libknot/packet/libknot_la-pkt.lo `test -f 'libknot= /packet/pkt.c' || echo './'`libknot/packet/pkt.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/packet/libknot_la-pkt.l= o -MD -MP -MF libknot/packet/.deps/libknot_la-pkt.Tpo -c libknot/packet/pkt= =2Ec -fPIC -DPIC -o libknot/packet/.libs/libknot_la-pkt.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/packet/libknot_la-compr= =2Elo -MD -MP -MF libknot/packet/.deps/libknot_la-compr.Tpo -c libknot/pack= et/compr.c -o libknot/packet/libknot_la-compr.o >/dev/null 2>&1 mv -f libknot/.deps/libknot_la-dname.Tpo libknot/.deps/libknot_la-dname.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/packet/libknot_la-rrset-wire.lo -MD -MP -MF libknot/packet= /.deps/libknot_la-rrset-wire.Tpo -c -o libknot/packet/libknot_la-rrset-wire= =2Elo `test -f 'libknot/packet/rrset-wire.c' || echo './'`libknot/packet/rr= set-wire.c mv -f libknot/packet/.deps/libknot_la-compr.Tpo libknot/packet/.deps/libkno= t_la-compr.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-tsig-op.lo -MD -MP -MF libknot/.deps/libknot_la= -tsig-op.Tpo -c -o libknot/libknot_la-tsig-op.lo `test -f 'libknot/tsig-op.= c' || echo './'`libknot/tsig-op.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/packet/libknot_la-rrset= -wire.lo -MD -MP -MF libknot/packet/.deps/libknot_la-rrset-wire.Tpo -c libk= not/packet/rrset-wire.c -fPIC -DPIC -o libknot/packet/.libs/libknot_la-rrs= et-wire.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-tsig-op.lo -= MD -MP -MF libknot/.deps/libknot_la-tsig-op.Tpo -c libknot/tsig-op.c -fPIC= -DPIC -o libknot/.libs/libknot_la-tsig-op.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/packet/libknot_la-pkt.l= o -MD -MP -MF libknot/packet/.deps/libknot_la-pkt.Tpo -c libknot/packet/pkt= =2Ec -o libknot/packet/libknot_la-pkt.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-rrset-dump.l= o -MD -MP -MF libknot/.deps/libknot_la-rrset-dump.Tpo -c libknot/rrset-dump= =2Ec -o libknot/libknot_la-rrset-dump.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/packet/libknot_la-rrset= -wire.lo -MD -MP -MF libknot/packet/.deps/libknot_la-rrset-wire.Tpo -c libk= not/packet/rrset-wire.c -o libknot/packet/libknot_la-rrset-wire.o >/dev/nul= l 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-tsig-op.lo -= MD -MP -MF libknot/.deps/libknot_la-tsig-op.Tpo -c libknot/tsig-op.c -o lib= knot/libknot_la-tsig-op.o >/dev/null 2>&1 mv -f libknot/packet/.deps/libknot_la-rrset-wire.Tpo libknot/packet/.deps/l= ibknot_la-rrset-wire.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/libknot_la-tsig.lo -MD -MP -MF libknot/.deps/libknot_la-ts= ig.Tpo -c -o libknot/libknot_la-tsig.lo `test -f 'libknot/tsig.c' || echo '= =2E/'`libknot/tsig.c mv -f libknot/.deps/libknot_la-tsig-op.Tpo libknot/.deps/libknot_la-tsig-op= =2EPlo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/processing/libknot_la-layer.lo -MD -MP -MF libknot/process= ing/.deps/libknot_la-layer.Tpo -c -o libknot/processing/libknot_la-layer.lo= `test -f 'libknot/processing/layer.c' || echo './'`libknot/processing/laye= r.c mv -f libknot/packet/.deps/libknot_la-pkt.Tpo libknot/packet/.deps/libknot_= la-pkt.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/processing/libknot_la-overlay.lo -MD -MP -MF libknot/proce= ssing/.deps/libknot_la-overlay.Tpo -c -o libknot/processing/libknot_la-over= lay.lo `test -f 'libknot/processing/overlay.c' || echo './'`libknot/process= ing/overlay.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-tsig.lo -MD = -MP -MF libknot/.deps/libknot_la-tsig.Tpo -c libknot/tsig.c -fPIC -DPIC -o= libknot/.libs/libknot_la-tsig.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/processing/libknot_la-l= ayer.lo -MD -MP -MF libknot/processing/.deps/libknot_la-layer.Tpo -c libkno= t/processing/layer.c -fPIC -DPIC -o libknot/processing/.libs/libknot_la-la= yer.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/processing/libknot_la-o= verlay.lo -MD -MP -MF libknot/processing/.deps/libknot_la-overlay.Tpo -c li= bknot/processing/overlay.c -fPIC -DPIC -o libknot/processing/.libs/libknot= _la-overlay.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/libknot_la-tsig.lo -MD = -MP -MF libknot/.deps/libknot_la-tsig.Tpo -c libknot/tsig.c -o libknot/libk= not_la-tsig.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/processing/libknot_la-l= ayer.lo -MD -MP -MF libknot/processing/.deps/libknot_la-layer.Tpo -c libkno= t/processing/layer.c -o libknot/processing/libknot_la-layer.o >/dev/null 2>= &1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/processing/libknot_la-o= verlay.lo -MD -MP -MF libknot/processing/.deps/libknot_la-overlay.Tpo -c li= bknot/processing/overlay.c -o libknot/processing/libknot_la-overlay.o >/dev= /null 2>&1 mv -f libknot/processing/.deps/libknot_la-layer.Tpo libknot/processing/.dep= s/libknot_la-layer.Plo mv -f libknot/.deps/libknot_la-tsig.Tpo libknot/.deps/libknot_la-tsig.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/processing/libknot_la-requestor.lo -MD -MP -MF libknot/pro= cessing/.deps/libknot_la-requestor.Tpo -c -o libknot/processing/libknot_la-= requestor.lo `test -f 'libknot/processing/requestor.c' || echo './'`libknot= /processing/requestor.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/rrtype/libknot_la-nsec3.lo -MD -MP -MF libknot/rrtype/.dep= s/libknot_la-nsec3.Tpo -c -o libknot/rrtype/libknot_la-nsec3.lo `test -f 'l= ibknot/rrtype/nsec3.c' || echo './'`libknot/rrtype/nsec3.c mv -f libknot/processing/.deps/libknot_la-overlay.Tpo libknot/processing/.d= eps/libknot_la-overlay.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/rrtype/libknot_la-nsec3param.lo -MD -MP -MF libknot/rrtype= /.deps/libknot_la-nsec3param.Tpo -c -o libknot/rrtype/libknot_la-nsec3param= =2Elo `test -f 'libknot/rrtype/nsec3param.c' || echo './'`libknot/rrtype/ns= ec3param.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/processing/libknot_la-r= equestor.lo -MD -MP -MF libknot/processing/.deps/libknot_la-requestor.Tpo -= c libknot/processing/requestor.c -fPIC -DPIC -o libknot/processing/.libs/l= ibknot_la-requestor.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3= =2Elo -MD -MP -MF libknot/rrtype/.deps/libknot_la-nsec3.Tpo -c libknot/rrty= pe/nsec3.c -fPIC -DPIC -o libknot/rrtype/.libs/libknot_la-nsec3.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3= param.lo -MD -MP -MF libknot/rrtype/.deps/libknot_la-nsec3param.Tpo -c libk= not/rrtype/nsec3param.c -fPIC -DPIC -o libknot/rrtype/.libs/libknot_la-nse= c3param.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3= =2Elo -MD -MP -MF libknot/rrtype/.deps/libknot_la-nsec3.Tpo -c libknot/rrty= pe/nsec3.c -o libknot/rrtype/libknot_la-nsec3.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-nsec3= param.lo -MD -MP -MF libknot/rrtype/.deps/libknot_la-nsec3param.Tpo -c libk= not/rrtype/nsec3param.c -o libknot/rrtype/libknot_la-nsec3param.o >/dev/nul= l 2>&1 mv -f libknot/rrtype/.deps/libknot_la-nsec3.Tpo libknot/rrtype/.deps/libkno= t_la-nsec3.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/rrtype/libknot_la-opt.lo -MD -MP -MF libknot/rrtype/.deps/= libknot_la-opt.Tpo -c -o libknot/rrtype/libknot_la-opt.lo `test -f 'libknot= /rrtype/opt.c' || echo './'`libknot/rrtype/opt.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/processing/libknot_la-r= equestor.lo -MD -MP -MF libknot/processing/.deps/libknot_la-requestor.Tpo -= c libknot/processing/requestor.c -o libknot/processing/libknot_la-requestor= =2Eo >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-opt.l= o -MD -MP -MF libknot/rrtype/.deps/libknot_la-opt.Tpo -c libknot/rrtype/opt= =2Ec -fPIC -DPIC -o libknot/rrtype/.libs/libknot_la-opt.o mv -f libknot/rrtype/.deps/libknot_la-nsec3param.Tpo libknot/rrtype/.deps/l= ibknot_la-nsec3param.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -fvisibility=3Dhidden -I/usr/local/include -O2 -pipe -fstack-pr= otector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimpl= icit -MT libknot/rrtype/libknot_la-tsig.lo -MD -MP -MF libknot/rrtype/.deps= /libknot_la-tsig.Tpo -c -o libknot/rrtype/libknot_la-tsig.lo `test -f 'libk= not/rrtype/tsig.c' || echo './'`libknot/rrtype/tsig.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-tsig.= lo -MD -MP -MF libknot/rrtype/.deps/libknot_la-tsig.Tpo -c libknot/rrtype/t= sig.c -fPIC -DPIC -o libknot/rrtype/.libs/libknot_la-tsig.o mv -f libknot/processing/.deps/libknot_la-requestor.Tpo libknot/processing/= =2Edeps/libknot_la-requestor.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-base32hex.lo -MD -MP -MF libknot/internal/.deps/l= ibknot_internal_la-base32hex.Tpo -c -o libknot/internal/libknot_internal_la= -base32hex.lo `test -f 'libknot/internal/base32hex.c' || echo './'`libknot/= internal/base32hex.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-opt.l= o -MD -MP -MF libknot/rrtype/.deps/libknot_la-opt.Tpo -c libknot/rrtype/opt= =2Ec -o libknot/rrtype/libknot_la-opt.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -fvisibility=3Dhidden -I/usr= /local/include -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werr= or=3Dformat-security -Werror=3Dimplicit -MT libknot/rrtype/libknot_la-tsig.= lo -MD -MP -MF libknot/rrtype/.deps/libknot_la-tsig.Tpo -c libknot/rrtype/t= sig.c -o libknot/rrtype/libknot_la-tsig.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-base32hex.lo -MD= -MP -MF libknot/internal/.deps/libknot_internal_la-base32hex.Tpo -c libkno= t/internal/base32hex.c -fPIC -DPIC -o libknot/internal/.libs/libknot_inter= nal_la-base32hex.o mv -f libknot/.deps/libknot_la-rrset-dump.Tpo libknot/.deps/libknot_la-rrse= t-dump.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-base64.lo -MD -MP -MF libknot/internal/.deps/libk= not_internal_la-base64.Tpo -c -o libknot/internal/libknot_internal_la-base6= 4.lo `test -f 'libknot/internal/base64.c' || echo './'`libknot/internal/bas= e64.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-base64.lo -MD -M= P -MF libknot/internal/.deps/libknot_internal_la-base64.Tpo -c libknot/inte= rnal/base64.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-ba= se64.o mv -f libknot/rrtype/.deps/libknot_la-tsig.Tpo libknot/rrtype/.deps/libknot= _la-tsig.Plo mv -f libknot/rrtype/.deps/libknot_la-opt.Tpo libknot/rrtype/.deps/libknot_= la-opt.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-errcode.lo -MD -MP -MF libknot/internal/.deps/lib= knot_internal_la-errcode.Tpo -c -o libknot/internal/libknot_internal_la-err= code.lo `test -f 'libknot/internal/errcode.c' || echo './'`libknot/internal= /errcode.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-getline.lo -MD -MP -MF libknot/internal/.deps/lib= knot_internal_la-getline.Tpo -c -o libknot/internal/libknot_internal_la-get= line.lo `test -f 'libknot/internal/getline.c' || echo './'`libknot/internal= /getline.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-base64.lo -MD -M= P -MF libknot/internal/.deps/libknot_internal_la-base64.Tpo -c libknot/inte= rnal/base64.c -o libknot/internal/libknot_internal_la-base64.o >/dev/null 2= >&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-base32hex.lo -MD= -MP -MF libknot/internal/.deps/libknot_internal_la-base32hex.Tpo -c libkno= t/internal/base32hex.c -o libknot/internal/libknot_internal_la-base32hex.o = >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-errcode.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-errcode.Tpo -c libknot/in= ternal/errcode.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la= -errcode.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-getline.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-getline.Tpo -c libknot/in= ternal/getline.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la= -getline.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-errcode.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-errcode.Tpo -c libknot/in= ternal/errcode.c -o libknot/internal/libknot_internal_la-errcode.o >/dev/nu= ll 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-getline.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-getline.Tpo -c libknot/in= ternal/getline.c -o libknot/internal/libknot_internal_la-getline.o >/dev/nu= ll 2>&1 mv -f libknot/internal/.deps/libknot_internal_la-base64.Tpo libknot/interna= l/.deps/libknot_internal_la-base64.Plo mv -f libknot/internal/.deps/libknot_internal_la-errcode.Tpo libknot/intern= al/.deps/libknot_internal_la-errcode.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-heap.lo -MD -MP -MF libknot/internal/.deps/libkno= t_internal_la-heap.Tpo -c -o libknot/internal/libknot_internal_la-heap.lo `= test -f 'libknot/internal/heap.c' || echo './'`libknot/internal/heap.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-hhash.lo -MD -MP -MF libknot/internal/.deps/libkn= ot_internal_la-hhash.Tpo -c -o libknot/internal/libknot_internal_la-hhash.l= o `test -f 'libknot/internal/hhash.c' || echo './'`libknot/internal/hhash.c mv -f libknot/internal/.deps/libknot_internal_la-getline.Tpo libknot/intern= al/.deps/libknot_internal_la-getline.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-lists.lo -MD -MP -MF libknot/internal/.deps/libkn= ot_internal_la-lists.Tpo -c -o libknot/internal/libknot_internal_la-lists.l= o `test -f 'libknot/internal/lists.c' || echo './'`libknot/internal/lists.c mv -f libknot/internal/.deps/libknot_internal_la-base32hex.Tpo libknot/inte= rnal/.deps/libknot_internal_la-base32hex.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-heap.lo -MD -MP = -MF libknot/internal/.deps/libknot_internal_la-heap.Tpo -c libknot/internal= /heap.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-heap.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-hhash.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-hhash.Tpo -c libknot/intern= al/hhash.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-hhash= =2Eo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-mem.lo -MD -MP -MF libknot/internal/.deps/libknot= _internal_la-mem.Tpo -c -o libknot/internal/libknot_internal_la-mem.lo `tes= t -f 'libknot/internal/mem.c' || echo './'`libknot/internal/mem.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-lists.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-lists.Tpo -c libknot/intern= al/lists.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-lists= =2Eo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-mem.lo -MD -MP -= MF libknot/internal/.deps/libknot_internal_la-mem.Tpo -c libknot/internal/m= em.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-mem.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-lists.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-lists.Tpo -c libknot/intern= al/lists.c -o libknot/internal/libknot_internal_la-lists.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-heap.lo -MD -MP = -MF libknot/internal/.deps/libknot_internal_la-heap.Tpo -c libknot/internal= /heap.c -o libknot/internal/libknot_internal_la-heap.o >/dev/null 2>&1 mv -f libknot/internal/.deps/libknot_internal_la-lists.Tpo libknot/internal= /.deps/libknot_internal_la-lists.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-mempattern.lo -MD -MP -MF libknot/internal/.deps/= libknot_internal_la-mempattern.Tpo -c -o libknot/internal/libknot_internal_= la-mempattern.lo `test -f 'libknot/internal/mempattern.c' || echo './'`libk= not/internal/mempattern.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-mem.lo -MD -MP -= MF libknot/internal/.deps/libknot_internal_la-mem.Tpo -c libknot/internal/m= em.c -o libknot/internal/libknot_internal_la-mem.o >/dev/null 2>&1 mv -f libknot/internal/.deps/libknot_internal_la-heap.Tpo libknot/internal/= =2Edeps/libknot_internal_la-heap.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-mempattern.lo -M= D -MP -MF libknot/internal/.deps/libknot_internal_la-mempattern.Tpo -c libk= not/internal/mempattern.c -fPIC -DPIC -o libknot/internal/.libs/libknot_in= ternal_la-mempattern.o /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-mempool.lo -MD -MP -MF libknot/internal/.deps/lib= knot_internal_la-mempool.Tpo -c -o libknot/internal/libknot_internal_la-mem= pool.lo `test -f 'libknot/internal/mempool.c' || echo './'`libknot/internal= /mempool.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-mempattern.lo -M= D -MP -MF libknot/internal/.deps/libknot_internal_la-mempattern.Tpo -c libk= not/internal/mempattern.c -o libknot/internal/libknot_internal_la-mempatter= n.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-hhash.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-hhash.Tpo -c libknot/intern= al/hhash.c -o libknot/internal/libknot_internal_la-hhash.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-mempool.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-mempool.Tpo -c libknot/in= ternal/mempool.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la= -mempool.o mv -f libknot/internal/.deps/libknot_internal_la-mem.Tpo libknot/internal/.= deps/libknot_internal_la-mem.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-net.lo -MD -MP -MF libknot/internal/.deps/libknot= _internal_la-net.Tpo -c -o libknot/internal/libknot_internal_la-net.lo `tes= t -f 'libknot/internal/net.c' || echo './'`libknot/internal/net.c mv -f libknot/internal/.deps/libknot_internal_la-mempattern.Tpo libknot/int= ernal/.deps/libknot_internal_la-mempattern.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-print.lo -MD -MP -MF libknot/internal/.deps/libkn= ot_internal_la-print.Tpo -c -o libknot/internal/libknot_internal_la-print.l= o `test -f 'libknot/internal/print.c' || echo './'`libknot/internal/print.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-net.lo -MD -MP -= MF libknot/internal/.deps/libknot_internal_la-net.Tpo -c libknot/internal/n= et.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-net.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-print.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-print.Tpo -c libknot/intern= al/print.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-print= =2Eo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-print.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-print.Tpo -c libknot/intern= al/print.c -o libknot/internal/libknot_internal_la-print.o >/dev/null 2>&1 mv -f libknot/internal/.deps/libknot_internal_la-print.Tpo libknot/internal= /.deps/libknot_internal_la-print.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-mempool.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-mempool.Tpo -c libknot/in= ternal/mempool.c -o libknot/internal/libknot_internal_la-mempool.o >/dev/nu= ll 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-sockaddr.lo -MD -MP -MF libknot/internal/.deps/li= bknot_internal_la-sockaddr.Tpo -c -o libknot/internal/libknot_internal_la-s= ockaddr.lo `test -f 'libknot/internal/sockaddr.c' || echo './'`libknot/inte= rnal/sockaddr.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-net.lo -MD -MP -= MF libknot/internal/.deps/libknot_internal_la-net.Tpo -c libknot/internal/n= et.c -o libknot/internal/libknot_internal_la-net.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-sockaddr.lo -MD = -MP -MF libknot/internal/.deps/libknot_internal_la-sockaddr.Tpo -c libknot/= internal/sockaddr.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal= _la-sockaddr.o mv -f libknot/internal/.deps/libknot_internal_la-hhash.Tpo libknot/internal= /.deps/libknot_internal_la-hhash.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-strlcat.lo -MD -MP -MF libknot/internal/.deps/lib= knot_internal_la-strlcat.Tpo -c -o libknot/internal/libknot_internal_la-str= lcat.lo `test -f 'libknot/internal/strlcat.c' || echo './'`libknot/internal= /strlcat.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-strlcat.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-strlcat.Tpo -c libknot/in= ternal/strlcat.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la= -strlcat.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-sockaddr.lo -MD = -MP -MF libknot/internal/.deps/libknot_internal_la-sockaddr.Tpo -c libknot/= internal/sockaddr.c -o libknot/internal/libknot_internal_la-sockaddr.o >/de= v/null 2>&1 mv -f libknot/internal/.deps/libknot_internal_la-mempool.Tpo libknot/intern= al/.deps/libknot_internal_la-mempool.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-strlcat.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-strlcat.Tpo -c libknot/in= ternal/strlcat.c -o libknot/internal/libknot_internal_la-strlcat.o >/dev/nu= ll 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-strlcpy.lo -MD -MP -MF libknot/internal/.deps/lib= knot_internal_la-strlcpy.Tpo -c -o libknot/internal/libknot_internal_la-str= lcpy.lo `test -f 'libknot/internal/strlcpy.c' || echo './'`libknot/internal= /strlcpy.c mv -f libknot/internal/.deps/libknot_internal_la-net.Tpo libknot/internal/.= deps/libknot_internal_la-net.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-tolower.lo -MD -MP -MF libknot/internal/.deps/lib= knot_internal_la-tolower.Tpo -c -o libknot/internal/libknot_internal_la-tol= ower.lo `test -f 'libknot/internal/tolower.c' || echo './'`libknot/internal= /tolower.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-strlcpy.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-strlcpy.Tpo -c libknot/in= ternal/strlcpy.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la= -strlcpy.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-tolower.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-tolower.Tpo -c libknot/in= ternal/tolower.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la= -tolower.o mv -f libknot/internal/.deps/libknot_internal_la-strlcat.Tpo libknot/intern= al/.deps/libknot_internal_la-strlcat.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/libknot_internal_la-utils.lo -MD -MP -MF libknot/internal/.deps/libkn= ot_internal_la-utils.Tpo -c -o libknot/internal/libknot_internal_la-utils.l= o `test -f 'libknot/internal/utils.c' || echo './'`libknot/internal/utils.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-strlcpy.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-strlcpy.Tpo -c libknot/in= ternal/strlcpy.c -o libknot/internal/libknot_internal_la-strlcpy.o >/dev/nu= ll 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-tolower.lo -MD -= MP -MF libknot/internal/.deps/libknot_internal_la-tolower.Tpo -c libknot/in= ternal/tolower.c -o libknot/internal/libknot_internal_la-tolower.o >/dev/nu= ll 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-utils.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-utils.Tpo -c libknot/intern= al/utils.c -fPIC -DPIC -o libknot/internal/.libs/libknot_internal_la-utils= =2Eo mv -f libknot/internal/.deps/libknot_internal_la-sockaddr.Tpo libknot/inter= nal/.deps/libknot_internal_la-sockaddr.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/namedb/libknot_internal_la-namedb_lmdb.lo -MD -MP -MF libknot/interna= l/namedb/.deps/libknot_internal_la-namedb_lmdb.Tpo -c -o libknot/internal/n= amedb/libknot_internal_la-namedb_lmdb.lo `test -f 'libknot/internal/namedb/= namedb_lmdb.c' || echo './'`libknot/internal/namedb/namedb_lmdb.c mv -f libknot/internal/.deps/libknot_internal_la-tolower.Tpo libknot/intern= al/.deps/libknot_internal_la-tolower.Plo mv -f libknot/internal/.deps/libknot_internal_la-strlcpy.Tpo libknot/intern= al/.deps/libknot_internal_la-strlcpy.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/namedb/libknot_internal_la-namedb_trie.lo -MD -MP -MF libknot/interna= l/namedb/.deps/libknot_internal_la-namedb_trie.Tpo -c -o libknot/internal/n= amedb/libknot_internal_la-namedb_trie.lo `test -f 'libknot/internal/namedb/= namedb_trie.c' || echo './'`libknot/internal/namedb/namedb_trie.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/trie/libknot_internal_la-hat-trie.lo -MD -MP -MF libknot/internal/tri= e/.deps/libknot_internal_la-hat-trie.Tpo -c -o libknot/internal/trie/libkno= t_internal_la-hat-trie.lo `test -f 'libknot/internal/trie/hat-trie.c' || ec= ho './'`libknot/internal/trie/hat-trie.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/namedb/libknot_internal_la-namedb_lm= db.lo -MD -MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_= lmdb.Tpo -c libknot/internal/namedb/namedb_lmdb.c -fPIC -DPIC -o libknot/i= nternal/namedb/.libs/libknot_internal_la-namedb_lmdb.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/namedb/libknot_internal_la-namedb_tr= ie.lo -MD -MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_= trie.Tpo -c libknot/internal/namedb/namedb_trie.c -fPIC -DPIC -o libknot/i= nternal/namedb/.libs/libknot_internal_la-namedb_trie.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/trie/libknot_internal_la-hat-trie.lo= -MD -MP -MF libknot/internal/trie/.deps/libknot_internal_la-hat-trie.Tpo -= c libknot/internal/trie/hat-trie.c -fPIC -DPIC -o libknot/internal/trie/.l= ibs/libknot_internal_la-hat-trie.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/libknot_internal_la-utils.lo -MD -MP= -MF libknot/internal/.deps/libknot_internal_la-utils.Tpo -c libknot/intern= al/utils.c -o libknot/internal/libknot_internal_la-utils.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/namedb/libknot_internal_la-namedb_tr= ie.lo -MD -MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_= trie.Tpo -c libknot/internal/namedb/namedb_trie.c -o libknot/internal/named= b/libknot_internal_la-namedb_trie.o >/dev/null 2>&1 mv -f libknot/internal/.deps/libknot_internal_la-utils.Tpo libknot/internal= /.deps/libknot_internal_la-utils.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-strict-= aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/int= ernal/trie/libknot_internal_la-murmurhash3.lo -MD -MP -MF libknot/internal/= trie/.deps/libknot_internal_la-murmurhash3.Tpo -c -o libknot/internal/trie/= libknot_internal_la-murmurhash3.lo `test -f 'libknot/internal/trie/murmurha= sh3.c' || echo './'`libknot/internal/trie/murmurhash3.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/trie/libknot_internal_la-murmurhash3= =2Elo -MD -MP -MF libknot/internal/trie/.deps/libknot_internal_la-murmurhas= h3.Tpo -c libknot/internal/trie/murmurhash3.c -fPIC -DPIC -o libknot/inter= nal/trie/.libs/libknot_internal_la-murmurhash3.o mv -f libknot/internal/namedb/.deps/libknot_internal_la-namedb_trie.Tpo lib= knot/internal/namedb/.deps/libknot_internal_la-namedb_trie.Plo depbase=3D`echo libknot/yparser/yparser.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$= ||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -D= HAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/e= tc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"'= -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall= -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yparser/yparser.l= o -MD -MP -MF $depbase.Tpo -c -o libknot/yparser/yparser.lo libknot/yparser= /yparser.c && mv -f $depbase.Tpo $depbase.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/namedb/libknot_internal_la-namedb_lm= db.lo -MD -MP -MF libknot/internal/namedb/.deps/libknot_internal_la-namedb_= lmdb.Tpo -c libknot/internal/namedb/namedb_lmdb.c -o libknot/internal/named= b/libknot_internal_la-namedb_lmdb.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/trie/libknot_internal_la-murmurhash3= =2Elo -MD -MP -MF libknot/internal/trie/.deps/libknot_internal_la-murmurhas= h3.Tpo -c libknot/internal/trie/murmurhash3.c -o libknot/internal/trie/libk= not_internal_la-murmurhash3.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/yparser.lo -MD -MP -MF libknot/yparser/.deps/yparser.Tpo -= c libknot/yparser/yparser.c -fPIC -DPIC -o libknot/yparser/.libs/yparser.o mv -f libknot/internal/trie/.deps/libknot_internal_la-murmurhash3.Tpo libkn= ot/internal/trie/.deps/libknot_internal_la-murmurhash3.Plo depbase=3D`echo libknot/yparser/ypbody.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$|= |'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DH= AVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/et= c/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' = -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall = -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yparser/ypbody.lo = -MD -MP -MF $depbase.Tpo -c -o libknot/yparser/ypbody.lo libknot/yparser/yp= body.c && mv -f $depbase.Tpo $depbase.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/ypbody.lo -MD -MP -MF libknot/yparser/.deps/ypbody.Tpo -c = libknot/yparser/ypbody.c -fPIC -DPIC -o libknot/yparser/.libs/ypbody.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/yparser.lo -MD -MP -MF libknot/yparser/.deps/yparser.Tpo -= c libknot/yparser/yparser.c -o libknot/yparser/yparser.o >/dev/null 2>&1 mv -f libknot/internal/namedb/.deps/libknot_internal_la-namedb_lmdb.Tpo lib= knot/internal/namedb/.deps/libknot_internal_la-namedb_lmdb.Plo depbase=3D`echo libknot/yparser/ypformat.lo | sed 's|[^/]*$|.deps/&|;s|\.lo= $||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -= DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/= etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"= ' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yparser/ypformat= =2Elo -MD -MP -MF $depbase.Tpo -c -o libknot/yparser/ypformat.lo libknot/yp= arser/ypformat.c && mv -f $depbase.Tpo $depbase.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/ypformat.lo -MD -MP -MF libknot/yparser/.deps/ypformat.Tpo= -c libknot/yparser/ypformat.c -fPIC -DPIC -o libknot/yparser/.libs/ypform= at.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/ypbody.lo -MD -MP -MF libknot/yparser/.deps/ypbody.Tpo -c = libknot/yparser/ypbody.c -o libknot/yparser/ypbody.o >/dev/null 2>&1 depbase=3D`echo libknot/yparser/ypscheme.lo | sed 's|[^/]*$|.deps/&|;s|\.lo= $||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -= DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/= etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"= ' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wal= l -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yparser/ypscheme= =2Elo -MD -MP -MF $depbase.Tpo -c -o libknot/yparser/ypscheme.lo libknot/yp= arser/ypscheme.c && mv -f $depbase.Tpo $depbase.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT libknot/internal/trie/libknot_internal_la-hat-trie.lo= -MD -MP -MF libknot/internal/trie/.deps/libknot_internal_la-hat-trie.Tpo -= c libknot/internal/trie/hat-trie.c -o libknot/internal/trie/libknot_interna= l_la-hat-trie.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/ypformat.lo -MD -MP -MF libknot/yparser/.deps/ypformat.Tpo= -c libknot/yparser/ypformat.c -o libknot/yparser/ypformat.o >/dev/null 2>&1 depbase=3D`echo libknot/yparser/yptrafo.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$= ||'`; /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -D= HAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/e= tc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"'= -I./dnssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall= -Werror=3Dformat-security -Werror=3Dimplicit -MT libknot/yparser/yptrafo.l= o -MD -MP -MF $depbase.Tpo -c -o libknot/yparser/yptrafo.lo libknot/yparser= /yptrafo.c && mv -f $depbase.Tpo $depbase.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/ypscheme.lo -MD -MP -MF libknot/yparser/.deps/ypscheme.Tpo= -c libknot/yparser/ypscheme.c -fPIC -DPIC -o libknot/yparser/.libs/ypsche= me.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/yptrafo.lo -MD -MP -MF libknot/yparser/.deps/yptrafo.Tpo -= c libknot/yparser/yptrafo.c -fPIC -DPIC -o libknot/yparser/.libs/yptrafo.o /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf= /libknotd_la-base.lo -MD -MP -MF knot/conf/.deps/libknotd_la-base.Tpo -c -o= knot/conf/libknotd_la-base.lo `test -f 'knot/conf/base.c' || echo './'`kno= t/conf/base.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-base.lo -MD -MP -MF knot/conf/.= deps/libknotd_la-base.Tpo -c knot/conf/base.c -fPIC -DPIC -o knot/conf/.li= bs/libknotd_la-base.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/ypscheme.lo -MD -MP -MF libknot/yparser/.deps/ypscheme.Tpo= -c libknot/yparser/ypscheme.c -o libknot/yparser/ypscheme.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= libknot/yparser/yptrafo.lo -MD -MP -MF libknot/yparser/.deps/yptrafo.Tpo -= c libknot/yparser/yptrafo.c -o libknot/yparser/yptrafo.o >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf= /libknotd_la-conf.lo -MD -MP -MF knot/conf/.deps/libknotd_la-conf.Tpo -c -o= knot/conf/libknotd_la-conf.lo `test -f 'knot/conf/conf.c' || echo './'`kno= t/conf/conf.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-conf.lo -MD -MP -MF knot/conf/.= deps/libknotd_la-conf.Tpo -c knot/conf/conf.c -fPIC -DPIC -o knot/conf/.li= bs/libknotd_la-conf.o mv -f libknot/internal/trie/.deps/libknot_internal_la-hat-trie.Tpo libknot/= internal/trie/.deps/libknot_internal_la-hat-trie.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf= /libknotd_la-confdb.lo -MD -MP -MF knot/conf/.deps/libknotd_la-confdb.Tpo -= c -o knot/conf/libknotd_la-confdb.lo `test -f 'knot/conf/confdb.c' || echo = './'`knot/conf/confdb.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-confdb.lo -MD -MP -MF knot/conf= /.deps/libknotd_la-confdb.Tpo -c knot/conf/confdb.c -fPIC -DPIC -o knot/co= nf/.libs/libknotd_la-confdb.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-base.lo -MD -MP -MF knot/conf/.= deps/libknotd_la-base.Tpo -c knot/conf/base.c -o knot/conf/libknotd_la-base= =2Eo >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf= /libknotd_la-scheme.lo -MD -MP -MF knot/conf/.deps/libknotd_la-scheme.Tpo -= c -o knot/conf/libknotd_la-scheme.lo `test -f 'knot/conf/scheme.c' || echo = './'`knot/conf/scheme.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-scheme.lo -MD -MP -MF knot/conf= /.deps/libknotd_la-scheme.Tpo -c knot/conf/scheme.c -fPIC -DPIC -o knot/co= nf/.libs/libknotd_la-scheme.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-confdb.lo -MD -MP -MF knot/conf= /.deps/libknotd_la-confdb.Tpo -c knot/conf/confdb.c -o knot/conf/libknotd_l= a-confdb.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-scheme.lo -MD -MP -MF knot/conf= /.deps/libknotd_la-scheme.Tpo -c knot/conf/scheme.c -o knot/conf/libknotd_l= a-scheme.o >/dev/null 2>&1 mv -f knot/conf/.deps/libknotd_la-base.Tpo knot/conf/.deps/libknotd_la-base= =2EPlo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-conf.lo -MD -MP -MF knot/conf/.= deps/libknotd_la-conf.Tpo -c knot/conf/conf.c -o knot/conf/libknotd_la-conf= =2Eo >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/conf= /libknotd_la-tools.lo -MD -MP -MF knot/conf/.deps/libknotd_la-tools.Tpo -c = -o knot/conf/libknotd_la-tools.lo `test -f 'knot/conf/tools.c' || echo './'= `knot/conf/tools.c mv -f knot/conf/.deps/libknotd_la-scheme.Tpo knot/conf/.deps/libknotd_la-sc= heme.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl/= libknotd_la-estimator.lo -MD -MP -MF knot/ctl/.deps/libknotd_la-estimator.T= po -c -o knot/ctl/libknotd_la-estimator.lo `test -f 'knot/ctl/estimator.c' = || echo './'`knot/ctl/estimator.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-tools.lo -MD -MP -MF knot/conf/= =2Edeps/libknotd_la-tools.Tpo -c knot/conf/tools.c -fPIC -DPIC -o knot/con= f/.libs/libknotd_la-tools.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/ctl/libknotd_la-estimator.lo -MD -MP -MF knot/ct= l/.deps/libknotd_la-estimator.Tpo -c knot/ctl/estimator.c -fPIC -DPIC -o k= not/ctl/.libs/libknotd_la-estimator.o mv -f knot/conf/.deps/libknotd_la-confdb.Tpo knot/conf/.deps/libknotd_la-co= nfdb.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl/= libknotd_la-process.lo -MD -MP -MF knot/ctl/.deps/libknotd_la-process.Tpo -= c -o knot/ctl/libknotd_la-process.lo `test -f 'knot/ctl/process.c' || echo = './'`knot/ctl/process.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/ctl/libknotd_la-estimator.lo -MD -MP -MF knot/ct= l/.deps/libknotd_la-estimator.Tpo -c knot/ctl/estimator.c -o knot/ctl/libkn= otd_la-estimator.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/ctl/libknotd_la-process.lo -MD -MP -MF knot/ctl/= =2Edeps/libknotd_la-process.Tpo -c knot/ctl/process.c -fPIC -DPIC -o knot/= ctl/.libs/libknotd_la-process.o mv -f knot/ctl/.deps/libknotd_la-estimator.Tpo knot/ctl/.deps/libknotd_la-e= stimator.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl/= libknotd_la-remote.lo -MD -MP -MF knot/ctl/.deps/libknotd_la-remote.Tpo -c = -o knot/ctl/libknotd_la-remote.lo `test -f 'knot/ctl/remote.c' || echo './'= `knot/ctl/remote.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/conf/libknotd_la-tools.lo -MD -MP -MF knot/conf/= =2Edeps/libknotd_la-tools.Tpo -c knot/conf/tools.c -o knot/conf/libknotd_la= -tools.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/ctl/libknotd_la-remote.lo -MD -MP -MF knot/ctl/.= deps/libknotd_la-remote.Tpo -c knot/ctl/remote.c -fPIC -DPIC -o knot/ctl/.= libs/libknotd_la-remote.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/ctl/libknotd_la-process.lo -MD -MP -MF knot/ctl/= =2Edeps/libknotd_la-process.Tpo -c knot/ctl/process.c -o knot/ctl/libknotd_= la-process.o >/dev/null 2>&1 mv -f knot/conf/.deps/libknotd_la-conf.Tpo knot/conf/.deps/libknotd_la-conf= =2EPlo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-context.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-context= =2ETpo -c -o knot/dnssec/libknotd_la-context.lo `test -f 'knot/dnssec/conte= xt.c' || echo './'`knot/dnssec/context.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-context.lo -MD -MP -MF knot/d= nssec/.deps/libknotd_la-context.Tpo -c knot/dnssec/context.c -fPIC -DPIC -= o knot/dnssec/.libs/libknotd_la-context.o mv -f knot/conf/.deps/libknotd_la-tools.Tpo knot/conf/.deps/libknotd_la-too= ls.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-nsec-chain.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-nsec= -chain.Tpo -c -o knot/dnssec/libknotd_la-nsec-chain.lo `test -f 'knot/dnsse= c/nsec-chain.c' || echo './'`knot/dnssec/nsec-chain.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-nsec-chain.lo -MD -MP -MF kno= t/dnssec/.deps/libknotd_la-nsec-chain.Tpo -c knot/dnssec/nsec-chain.c -fPI= C -DPIC -o knot/dnssec/.libs/libknotd_la-nsec-chain.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-context.lo -MD -MP -MF knot/d= nssec/.deps/libknotd_la-context.Tpo -c knot/dnssec/context.c -o knot/dnssec= /libknotd_la-context.o >/dev/null 2>&1 mv -f knot/ctl/.deps/libknotd_la-process.Tpo knot/ctl/.deps/libknotd_la-pro= cess.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-nsec3-chain.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-nse= c3-chain.Tpo -c -o knot/dnssec/libknotd_la-nsec3-chain.lo `test -f 'knot/dn= ssec/nsec3-chain.c' || echo './'`knot/dnssec/nsec3-chain.c mv -f knot/dnssec/.deps/libknotd_la-context.Tpo knot/dnssec/.deps/libknotd_= la-context.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-nsec3-chain.lo -MD -MP -MF kn= ot/dnssec/.deps/libknotd_la-nsec3-chain.Tpo -c knot/dnssec/nsec3-chain.c -= fPIC -DPIC -o knot/dnssec/.libs/libknotd_la-nsec3-chain.o /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-policy.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-policy.T= po -c -o knot/dnssec/libknotd_la-policy.lo `test -f 'knot/dnssec/policy.c' = || echo './'`knot/dnssec/policy.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-policy.lo -MD -MP -MF knot/dn= ssec/.deps/libknotd_la-policy.Tpo -c knot/dnssec/policy.c -fPIC -DPIC -o k= not/dnssec/.libs/libknotd_la-policy.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-nsec-chain.lo -MD -MP -MF kno= t/dnssec/.deps/libknotd_la-nsec-chain.Tpo -c knot/dnssec/nsec-chain.c -o kn= ot/dnssec/libknotd_la-nsec-chain.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/ctl/libknotd_la-remote.lo -MD -MP -MF knot/ctl/.= deps/libknotd_la-remote.Tpo -c knot/ctl/remote.c -o knot/ctl/libknotd_la-re= mote.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-policy.lo -MD -MP -MF knot/dn= ssec/.deps/libknotd_la-policy.Tpo -c knot/dnssec/policy.c -o knot/dnssec/li= bknotd_la-policy.o >/dev/null 2>&1 mv -f knot/dnssec/.deps/libknotd_la-policy.Tpo knot/dnssec/.deps/libknotd_l= a-policy.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-rrset-sign.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-rrse= t-sign.Tpo -c -o knot/dnssec/libknotd_la-rrset-sign.lo `test -f 'knot/dnsse= c/rrset-sign.c' || echo './'`knot/dnssec/rrset-sign.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-rrset-sign.lo -MD -MP -MF kno= t/dnssec/.deps/libknotd_la-rrset-sign.Tpo -c knot/dnssec/rrset-sign.c -fPI= C -DPIC -o knot/dnssec/.libs/libknotd_la-rrset-sign.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-nsec3-chain.lo -MD -MP -MF kn= ot/dnssec/.deps/libknotd_la-nsec3-chain.Tpo -c knot/dnssec/nsec3-chain.c -o= knot/dnssec/libknotd_la-nsec3-chain.o >/dev/null 2>&1 mv -f knot/dnssec/.deps/libknotd_la-nsec-chain.Tpo knot/dnssec/.deps/libkno= td_la-nsec-chain.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-zone-events.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zon= e-events.Tpo -c -o knot/dnssec/libknotd_la-zone-events.lo `test -f 'knot/dn= ssec/zone-events.c' || echo './'`knot/dnssec/zone-events.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-events.lo -MD -MP -MF kn= ot/dnssec/.deps/libknotd_la-zone-events.Tpo -c knot/dnssec/zone-events.c -= fPIC -DPIC -o knot/dnssec/.libs/libknotd_la-zone-events.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-rrset-sign.lo -MD -MP -MF kno= t/dnssec/.deps/libknotd_la-rrset-sign.Tpo -c knot/dnssec/rrset-sign.c -o kn= ot/dnssec/libknotd_la-rrset-sign.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-events.lo -MD -MP -MF kn= ot/dnssec/.deps/libknotd_la-zone-events.Tpo -c knot/dnssec/zone-events.c -o= knot/dnssec/libknotd_la-zone-events.o >/dev/null 2>&1 mv -f knot/dnssec/.deps/libknotd_la-rrset-sign.Tpo knot/dnssec/.deps/libkno= td_la-rrset-sign.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-zone-keys.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zone-= keys.Tpo -c -o knot/dnssec/libknotd_la-zone-keys.lo `test -f 'knot/dnssec/z= one-keys.c' || echo './'`knot/dnssec/zone-keys.c mv -f knot/dnssec/.deps/libknotd_la-nsec3-chain.Tpo knot/dnssec/.deps/libkn= otd_la-nsec3-chain.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-zone-nsec.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zone-= nsec.Tpo -c -o knot/dnssec/libknotd_la-zone-nsec.lo `test -f 'knot/dnssec/z= one-nsec.c' || echo './'`knot/dnssec/zone-nsec.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-keys.lo -MD -MP -MF knot= /dnssec/.deps/libknotd_la-zone-keys.Tpo -c knot/dnssec/zone-keys.c -fPIC -= DPIC -o knot/dnssec/.libs/libknotd_la-zone-keys.o mv -f knot/ctl/.deps/libknotd_la-remote.Tpo knot/ctl/.deps/libknotd_la-remo= te.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/dnss= ec/libknotd_la-zone-sign.lo -MD -MP -MF knot/dnssec/.deps/libknotd_la-zone-= sign.Tpo -c -o knot/dnssec/libknotd_la-zone-sign.lo `test -f 'knot/dnssec/z= one-sign.c' || echo './'`knot/dnssec/zone-sign.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-nsec.lo -MD -MP -MF knot= /dnssec/.deps/libknotd_la-zone-nsec.Tpo -c knot/dnssec/zone-nsec.c -fPIC -= DPIC -o knot/dnssec/.libs/libknotd_la-zone-nsec.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-sign.lo -MD -MP -MF knot= /dnssec/.deps/libknotd_la-zone-sign.Tpo -c knot/dnssec/zone-sign.c -fPIC -= DPIC -o knot/dnssec/.libs/libknotd_la-zone-sign.o mv -f knot/dnssec/.deps/libknotd_la-zone-events.Tpo knot/dnssec/.deps/libkn= otd_la-zone-events.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/modu= les/libknotd_la-synth_record.lo -MD -MP -MF knot/modules/.deps/libknotd_la-= synth_record.Tpo -c -o knot/modules/libknotd_la-synth_record.lo `test -f 'k= not/modules/synth_record.c' || echo './'`knot/modules/synth_record.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-nsec.lo -MD -MP -MF knot= /dnssec/.deps/libknotd_la-zone-nsec.Tpo -c knot/dnssec/zone-nsec.c -o knot/= dnssec/libknotd_la-zone-nsec.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-keys.lo -MD -MP -MF knot= /dnssec/.deps/libknotd_la-zone-keys.Tpo -c knot/dnssec/zone-keys.c -o knot/= dnssec/libknotd_la-zone-keys.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/modules/libknotd_la-synth_record.lo -MD -MP -MF = knot/modules/.deps/libknotd_la-synth_record.Tpo -c knot/modules/synth_recor= d.c -fPIC -DPIC -o knot/modules/.libs/libknotd_la-synth_record.o mv -f knot/dnssec/.deps/libknotd_la-zone-nsec.Tpo knot/dnssec/.deps/libknot= d_la-zone-nsec.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/modu= les/libknotd_la-dnsproxy.lo -MD -MP -MF knot/modules/.deps/libknotd_la-dnsp= roxy.Tpo -c -o knot/modules/libknotd_la-dnsproxy.lo `test -f 'knot/modules/= dnsproxy.c' || echo './'`knot/modules/dnsproxy.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/modules/libknotd_la-dnsproxy.lo -MD -MP -MF knot= /modules/.deps/libknotd_la-dnsproxy.Tpo -c knot/modules/dnsproxy.c -fPIC -= DPIC -o knot/modules/.libs/libknotd_la-dnsproxy.o mv -f knot/dnssec/.deps/libknotd_la-zone-keys.Tpo knot/dnssec/.deps/libknot= d_la-zone-keys.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-axfr.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-ax= fr.Tpo -c -o knot/nameserver/libknotd_la-axfr.lo `test -f 'knot/nameserver/= axfr.c' || echo './'`knot/nameserver/axfr.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-axfr.lo -MD -MP -MF knot/= nameserver/.deps/libknotd_la-axfr.Tpo -c knot/nameserver/axfr.c -fPIC -DPI= C -o knot/nameserver/.libs/libknotd_la-axfr.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/modules/libknotd_la-synth_record.lo -MD -MP -MF = knot/modules/.deps/libknotd_la-synth_record.Tpo -c knot/modules/synth_recor= d.c -o knot/modules/libknotd_la-synth_record.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/modules/libknotd_la-dnsproxy.lo -MD -MP -MF knot= /modules/.deps/libknotd_la-dnsproxy.Tpo -c knot/modules/dnsproxy.c -o knot/= modules/libknotd_la-dnsproxy.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/dnssec/libknotd_la-zone-sign.lo -MD -MP -MF knot= /dnssec/.deps/libknotd_la-zone-sign.Tpo -c knot/dnssec/zone-sign.c -o knot/= dnssec/libknotd_la-zone-sign.o >/dev/null 2>&1 mv -f knot/modules/.deps/libknotd_la-dnsproxy.Tpo knot/modules/.deps/libkno= td_la-dnsproxy.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-capture.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la= -capture.Tpo -c -o knot/nameserver/libknotd_la-capture.lo `test -f 'knot/na= meserver/capture.c' || echo './'`knot/nameserver/capture.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-axfr.lo -MD -MP -MF knot/= nameserver/.deps/libknotd_la-axfr.Tpo -c knot/nameserver/axfr.c -o knot/nam= eserver/libknotd_la-axfr.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-capture.lo -MD -MP -MF kn= ot/nameserver/.deps/libknotd_la-capture.Tpo -c knot/nameserver/capture.c -= fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-capture.o mv -f knot/modules/.deps/libknotd_la-synth_record.Tpo knot/modules/.deps/li= bknotd_la-synth_record.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-capture.lo -MD -MP -MF kn= ot/nameserver/.deps/libknotd_la-capture.Tpo -c knot/nameserver/capture.c -o= knot/nameserver/libknotd_la-capture.o >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-chaos.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-c= haos.Tpo -c -o knot/nameserver/libknotd_la-chaos.lo `test -f 'knot/nameserv= er/chaos.c' || echo './'`knot/nameserver/chaos.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-chaos.lo -MD -MP -MF knot= /nameserver/.deps/libknotd_la-chaos.Tpo -c knot/nameserver/chaos.c -fPIC -= DPIC -o knot/nameserver/.libs/libknotd_la-chaos.o mv -f knot/nameserver/.deps/libknotd_la-capture.Tpo knot/nameserver/.deps/l= ibknotd_la-capture.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-internet.lo -MD -MP -MF knot/nameserver/.deps/libknotd_l= a-internet.Tpo -c -o knot/nameserver/libknotd_la-internet.lo `test -f 'knot= /nameserver/internet.c' || echo './'`knot/nameserver/internet.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-internet.lo -MD -MP -MF k= not/nameserver/.deps/libknotd_la-internet.Tpo -c knot/nameserver/internet.c= -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-internet.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-chaos.lo -MD -MP -MF knot= /nameserver/.deps/libknotd_la-chaos.Tpo -c knot/nameserver/chaos.c -o knot/= nameserver/libknotd_la-chaos.o >/dev/null 2>&1 mv -f knot/nameserver/.deps/libknotd_la-axfr.Tpo knot/nameserver/.deps/libk= notd_la-axfr.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-ixfr.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-ix= fr.Tpo -c -o knot/nameserver/libknotd_la-ixfr.lo `test -f 'knot/nameserver/= ixfr.c' || echo './'`knot/nameserver/ixfr.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-ixfr.lo -MD -MP -MF knot/= nameserver/.deps/libknotd_la-ixfr.Tpo -c knot/nameserver/ixfr.c -fPIC -DPI= C -o knot/nameserver/.libs/libknotd_la-ixfr.o mv -f knot/nameserver/.deps/libknotd_la-chaos.Tpo knot/nameserver/.deps/lib= knotd_la-chaos.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-notify.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-= notify.Tpo -c -o knot/nameserver/libknotd_la-notify.lo `test -f 'knot/names= erver/notify.c' || echo './'`knot/nameserver/notify.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-notify.lo -MD -MP -MF kno= t/nameserver/.deps/libknotd_la-notify.Tpo -c knot/nameserver/notify.c -fPI= C -DPIC -o knot/nameserver/.libs/libknotd_la-notify.o mv -f knot/dnssec/.deps/libknotd_la-zone-sign.Tpo knot/dnssec/.deps/libknot= d_la-zone-sign.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-nsec_proofs.lo -MD -MP -MF knot/nameserver/.deps/libknot= d_la-nsec_proofs.Tpo -c -o knot/nameserver/libknotd_la-nsec_proofs.lo `test= -f 'knot/nameserver/nsec_proofs.c' || echo './'`knot/nameserver/nsec_proof= s.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-nsec_proofs.lo -MD -MP -M= F knot/nameserver/.deps/libknotd_la-nsec_proofs.Tpo -c knot/nameserver/nsec= _proofs.c -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-nsec_proofs.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-notify.lo -MD -MP -MF kno= t/nameserver/.deps/libknotd_la-notify.Tpo -c knot/nameserver/notify.c -o kn= ot/nameserver/libknotd_la-notify.o >/dev/null 2>&1 mv -f knot/nameserver/.deps/libknotd_la-notify.Tpo knot/nameserver/.deps/li= bknotd_la-notify.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-process_answer.lo -MD -MP -MF knot/nameserver/.deps/libk= notd_la-process_answer.Tpo -c -o knot/nameserver/libknotd_la-process_answer= =2Elo `test -f 'knot/nameserver/process_answer.c' || echo './'`knot/nameser= ver/process_answer.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-ixfr.lo -MD -MP -MF knot/= nameserver/.deps/libknotd_la-ixfr.Tpo -c knot/nameserver/ixfr.c -o knot/nam= eserver/libknotd_la-ixfr.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-process_answer.lo -MD -MP= -MF knot/nameserver/.deps/libknotd_la-process_answer.Tpo -c knot/nameserve= r/process_answer.c -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-proces= s_answer.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-internet.lo -MD -MP -MF k= not/nameserver/.deps/libknotd_la-internet.Tpo -c knot/nameserver/internet.c= -o knot/nameserver/libknotd_la-internet.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-process_answer.lo -MD -MP= -MF knot/nameserver/.deps/libknotd_la-process_answer.Tpo -c knot/nameserve= r/process_answer.c -o knot/nameserver/libknotd_la-process_answer.o >/dev/nu= ll 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-nsec_proofs.lo -MD -MP -M= F knot/nameserver/.deps/libknotd_la-nsec_proofs.Tpo -c knot/nameserver/nsec= _proofs.c -o knot/nameserver/libknotd_la-nsec_proofs.o >/dev/null 2>&1 mv -f knot/nameserver/.deps/libknotd_la-process_answer.Tpo knot/nameserver/= =2Edeps/libknotd_la-process_answer.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-process_query.lo -MD -MP -MF knot/nameserver/.deps/libkn= otd_la-process_query.Tpo -c -o knot/nameserver/libknotd_la-process_query.lo= `test -f 'knot/nameserver/process_query.c' || echo './'`knot/nameserver/pr= ocess_query.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-process_query.lo -MD -MP = -MF knot/nameserver/.deps/libknotd_la-process_query.Tpo -c knot/nameserver/= process_query.c -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-process_q= uery.o mv -f knot/nameserver/.deps/libknotd_la-ixfr.Tpo knot/nameserver/.deps/libk= notd_la-ixfr.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-query_module.lo -MD -MP -MF knot/nameserver/.deps/libkno= td_la-query_module.Tpo -c -o knot/nameserver/libknotd_la-query_module.lo `t= est -f 'knot/nameserver/query_module.c' || echo './'`knot/nameserver/query_= module.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-query_module.lo -MD -MP -= MF knot/nameserver/.deps/libknotd_la-query_module.Tpo -c knot/nameserver/qu= ery_module.c -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-query_module= =2Eo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-query_module.lo -MD -MP -= MF knot/nameserver/.deps/libknotd_la-query_module.Tpo -c knot/nameserver/qu= ery_module.c -o knot/nameserver/libknotd_la-query_module.o >/dev/null 2>&1 mv -f knot/nameserver/.deps/libknotd_la-nsec_proofs.Tpo knot/nameserver/.de= ps/libknotd_la-nsec_proofs.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-tsig_ctx.lo -MD -MP -MF knot/nameserver/.deps/libknotd_l= a-tsig_ctx.Tpo -c -o knot/nameserver/libknotd_la-tsig_ctx.lo `test -f 'knot= /nameserver/tsig_ctx.c' || echo './'`knot/nameserver/tsig_ctx.c mv -f knot/nameserver/.deps/libknotd_la-internet.Tpo knot/nameserver/.deps/= libknotd_la-internet.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/name= server/libknotd_la-update.lo -MD -MP -MF knot/nameserver/.deps/libknotd_la-= update.Tpo -c -o knot/nameserver/libknotd_la-update.lo `test -f 'knot/names= erver/update.c' || echo './'`knot/nameserver/update.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-tsig_ctx.lo -MD -MP -MF k= not/nameserver/.deps/libknotd_la-tsig_ctx.Tpo -c knot/nameserver/tsig_ctx.c= -fPIC -DPIC -o knot/nameserver/.libs/libknotd_la-tsig_ctx.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-process_query.lo -MD -MP = -MF knot/nameserver/.deps/libknotd_la-process_query.Tpo -c knot/nameserver/= process_query.c -o knot/nameserver/libknotd_la-process_query.o >/dev/null 2= >&1 mv -f knot/nameserver/.deps/libknotd_la-query_module.Tpo knot/nameserver/.d= eps/libknotd_la-query_module.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/comm= on/libknotd_la-evsched.lo -MD -MP -MF knot/common/.deps/libknotd_la-evsched= =2ETpo -c -o knot/common/libknotd_la-evsched.lo `test -f 'knot/common/evsch= ed.c' || echo './'`knot/common/evsched.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-update.lo -MD -MP -MF kno= t/nameserver/.deps/libknotd_la-update.Tpo -c knot/nameserver/update.c -fPI= C -DPIC -o knot/nameserver/.libs/libknotd_la-update.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-tsig_ctx.lo -MD -MP -MF k= not/nameserver/.deps/libknotd_la-tsig_ctx.Tpo -c knot/nameserver/tsig_ctx.c= -o knot/nameserver/libknotd_la-tsig_ctx.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-evsched.lo -MD -MP -MF knot/c= ommon/.deps/libknotd_la-evsched.Tpo -c knot/common/evsched.c -fPIC -DPIC -= o knot/common/.libs/libknotd_la-evsched.o mv -f knot/nameserver/.deps/libknotd_la-tsig_ctx.Tpo knot/nameserver/.deps/= libknotd_la-tsig_ctx.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/comm= on/libknotd_la-fdset.lo -MD -MP -MF knot/common/.deps/libknotd_la-fdset.Tpo= -c -o knot/common/libknotd_la-fdset.lo `test -f 'knot/common/fdset.c' || e= cho './'`knot/common/fdset.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-fdset.lo -MD -MP -MF knot/com= mon/.deps/libknotd_la-fdset.Tpo -c knot/common/fdset.c -fPIC -DPIC -o knot= /common/.libs/libknotd_la-fdset.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-evsched.lo -MD -MP -MF knot/c= ommon/.deps/libknotd_la-evsched.Tpo -c knot/common/evsched.c -o knot/common= /libknotd_la-evsched.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-fdset.lo -MD -MP -MF knot/com= mon/.deps/libknotd_la-fdset.Tpo -c knot/common/fdset.c -o knot/common/libkn= otd_la-fdset.o >/dev/null 2>&1 mv -f knot/nameserver/.deps/libknotd_la-process_query.Tpo knot/nameserver/.= deps/libknotd_la-process_query.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/comm= on/libknotd_la-log.lo -MD -MP -MF knot/common/.deps/libknotd_la-log.Tpo -c = -o knot/common/libknotd_la-log.lo `test -f 'knot/common/log.c' || echo './'= `knot/common/log.c mv -f knot/common/.deps/libknotd_la-evsched.Tpo knot/common/.deps/libknotd_= la-evsched.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/nameserver/libknotd_la-update.lo -MD -MP -MF kno= t/nameserver/.deps/libknotd_la-update.Tpo -c knot/nameserver/update.c -o kn= ot/nameserver/libknotd_la-update.o >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/comm= on/libknotd_la-ref.lo -MD -MP -MF knot/common/.deps/libknotd_la-ref.Tpo -c = -o knot/common/libknotd_la-ref.lo `test -f 'knot/common/ref.c' || echo './'= `knot/common/ref.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-log.lo -MD -MP -MF knot/commo= n/.deps/libknotd_la-log.Tpo -c knot/common/log.c -fPIC -DPIC -o knot/commo= n/.libs/libknotd_la-log.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-ref.lo -MD -MP -MF knot/commo= n/.deps/libknotd_la-ref.Tpo -c knot/common/ref.c -fPIC -DPIC -o knot/commo= n/.libs/libknotd_la-ref.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-ref.lo -MD -MP -MF knot/commo= n/.deps/libknotd_la-ref.Tpo -c knot/common/ref.c -o knot/common/libknotd_la= -ref.o >/dev/null 2>&1 mv -f knot/common/.deps/libknotd_la-fdset.Tpo knot/common/.deps/libknotd_la= -fdset.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/serv= er/libknotd_la-dthreads.lo -MD -MP -MF knot/server/.deps/libknotd_la-dthrea= ds.Tpo -c -o knot/server/libknotd_la-dthreads.lo `test -f 'knot/server/dthr= eads.c' || echo './'`knot/server/dthreads.c mv -f knot/common/.deps/libknotd_la-ref.Tpo knot/common/.deps/libknotd_la-r= ef.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/serv= er/libknotd_la-journal.lo -MD -MP -MF knot/server/.deps/libknotd_la-journal= =2ETpo -c -o knot/server/libknotd_la-journal.lo `test -f 'knot/server/journ= al.c' || echo './'`knot/server/journal.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-dthreads.lo -MD -MP -MF knot/= server/.deps/libknotd_la-dthreads.Tpo -c knot/server/dthreads.c -fPIC -DPI= C -o knot/server/.libs/libknotd_la-dthreads.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-journal.lo -MD -MP -MF knot/s= erver/.deps/libknotd_la-journal.Tpo -c knot/server/journal.c -fPIC -DPIC -= o knot/server/.libs/libknotd_la-journal.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/common/libknotd_la-log.lo -MD -MP -MF knot/commo= n/.deps/libknotd_la-log.Tpo -c knot/common/log.c -o knot/common/libknotd_la= -log.o >/dev/null 2>&1 mv -f knot/nameserver/.deps/libknotd_la-update.Tpo knot/nameserver/.deps/li= bknotd_la-update.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/serv= er/libknotd_la-rrl.lo -MD -MP -MF knot/server/.deps/libknotd_la-rrl.Tpo -c = -o knot/server/libknotd_la-rrl.lo `test -f 'knot/server/rrl.c' || echo './'= `knot/server/rrl.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-rrl.lo -MD -MP -MF knot/serve= r/.deps/libknotd_la-rrl.Tpo -c knot/server/rrl.c -fPIC -DPIC -o knot/serve= r/.libs/libknotd_la-rrl.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-dthreads.lo -MD -MP -MF knot/= server/.deps/libknotd_la-dthreads.Tpo -c knot/server/dthreads.c -o knot/ser= ver/libknotd_la-dthreads.o >/dev/null 2>&1 mv -f knot/common/.deps/libknotd_la-log.Tpo knot/common/.deps/libknotd_la-l= og.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/serv= er/libknotd_la-serialization.lo -MD -MP -MF knot/server/.deps/libknotd_la-s= erialization.Tpo -c -o knot/server/libknotd_la-serialization.lo `test -f 'k= not/server/serialization.c' || echo './'`knot/server/serialization.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-serialization.lo -MD -MP -MF = knot/server/.deps/libknotd_la-serialization.Tpo -c knot/server/serializatio= n.c -fPIC -DPIC -o knot/server/.libs/libknotd_la-serialization.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-journal.lo -MD -MP -MF knot/s= erver/.deps/libknotd_la-journal.Tpo -c knot/server/journal.c -o knot/server= /libknotd_la-journal.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-rrl.lo -MD -MP -MF knot/serve= r/.deps/libknotd_la-rrl.Tpo -c knot/server/rrl.c -o knot/server/libknotd_la= -rrl.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-serialization.lo -MD -MP -MF = knot/server/.deps/libknotd_la-serialization.Tpo -c knot/server/serializatio= n.c -o knot/server/libknotd_la-serialization.o >/dev/null 2>&1 mv -f knot/server/.deps/libknotd_la-dthreads.Tpo knot/server/.deps/libknotd= _la-dthreads.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/serv= er/libknotd_la-server.lo -MD -MP -MF knot/server/.deps/libknotd_la-server.T= po -c -o knot/server/libknotd_la-server.lo `test -f 'knot/server/server.c' = || echo './'`knot/server/server.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-server.lo -MD -MP -MF knot/se= rver/.deps/libknotd_la-server.Tpo -c knot/server/server.c -fPIC -DPIC -o k= not/server/.libs/libknotd_la-server.o mv -f knot/server/.deps/libknotd_la-serialization.Tpo knot/server/.deps/lib= knotd_la-serialization.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/serv= er/libknotd_la-tcp-handler.lo -MD -MP -MF knot/server/.deps/libknotd_la-tcp= -handler.Tpo -c -o knot/server/libknotd_la-tcp-handler.lo `test -f 'knot/se= rver/tcp-handler.c' || echo './'`knot/server/tcp-handler.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-tcp-handler.lo -MD -MP -MF kn= ot/server/.deps/libknotd_la-tcp-handler.Tpo -c knot/server/tcp-handler.c -= fPIC -DPIC -o knot/server/.libs/libknotd_la-tcp-handler.o mv -f knot/server/.deps/libknotd_la-rrl.Tpo knot/server/.deps/libknotd_la-r= rl.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/serv= er/libknotd_la-udp-handler.lo -MD -MP -MF knot/server/.deps/libknotd_la-udp= -handler.Tpo -c -o knot/server/libknotd_la-udp-handler.lo `test -f 'knot/se= rver/udp-handler.c' || echo './'`knot/server/udp-handler.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-udp-handler.lo -MD -MP -MF kn= ot/server/.deps/libknotd_la-udp-handler.Tpo -c knot/server/udp-handler.c -= fPIC -DPIC -o knot/server/.libs/libknotd_la-udp-handler.o mv -f knot/server/.deps/libknotd_la-journal.Tpo knot/server/.deps/libknotd_= la-journal.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/upda= tes/libknotd_la-acl.lo -MD -MP -MF knot/updates/.deps/libknotd_la-acl.Tpo -= c -o knot/updates/libknotd_la-acl.lo `test -f 'knot/updates/acl.c' || echo = './'`knot/updates/acl.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-server.lo -MD -MP -MF knot/se= rver/.deps/libknotd_la-server.Tpo -c knot/server/server.c -o knot/server/li= bknotd_la-server.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-tcp-handler.lo -MD -MP -MF kn= ot/server/.deps/libknotd_la-tcp-handler.Tpo -c knot/server/tcp-handler.c -o= knot/server/libknotd_la-tcp-handler.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-acl.lo -MD -MP -MF knot/upda= tes/.deps/libknotd_la-acl.Tpo -c knot/updates/acl.c -fPIC -DPIC -o knot/up= dates/.libs/libknotd_la-acl.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/server/libknotd_la-udp-handler.lo -MD -MP -MF kn= ot/server/.deps/libknotd_la-udp-handler.Tpo -c knot/server/udp-handler.c -o= knot/server/libknotd_la-udp-handler.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-acl.lo -MD -MP -MF knot/upda= tes/.deps/libknotd_la-acl.Tpo -c knot/updates/acl.c -o knot/updates/libknot= d_la-acl.o >/dev/null 2>&1 mv -f knot/server/.deps/libknotd_la-tcp-handler.Tpo knot/server/.deps/libkn= otd_la-tcp-handler.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/upda= tes/libknotd_la-apply.lo -MD -MP -MF knot/updates/.deps/libknotd_la-apply.T= po -c -o knot/updates/libknotd_la-apply.lo `test -f 'knot/updates/apply.c' = || echo './'`knot/updates/apply.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-apply.lo -MD -MP -MF knot/up= dates/.deps/libknotd_la-apply.Tpo -c knot/updates/apply.c -fPIC -DPIC -o k= not/updates/.libs/libknotd_la-apply.o mv -f knot/server/.deps/libknotd_la-udp-handler.Tpo knot/server/.deps/libkn= otd_la-udp-handler.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/upda= tes/libknotd_la-changesets.lo -MD -MP -MF knot/updates/.deps/libknotd_la-ch= angesets.Tpo -c -o knot/updates/libknotd_la-changesets.lo `test -f 'knot/up= dates/changesets.c' || echo './'`knot/updates/changesets.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-changesets.lo -MD -MP -MF kn= ot/updates/.deps/libknotd_la-changesets.Tpo -c knot/updates/changesets.c -= fPIC -DPIC -o knot/updates/.libs/libknotd_la-changesets.o mv -f knot/server/.deps/libknotd_la-server.Tpo knot/server/.deps/libknotd_l= a-server.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/upda= tes/libknotd_la-ddns.lo -MD -MP -MF knot/updates/.deps/libknotd_la-ddns.Tpo= -c -o knot/updates/libknotd_la-ddns.lo `test -f 'knot/updates/ddns.c' || e= cho './'`knot/updates/ddns.c mv -f knot/updates/.deps/libknotd_la-acl.Tpo knot/updates/.deps/libknotd_la= -acl.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/upda= tes/libknotd_la-zone-update.lo -MD -MP -MF knot/updates/.deps/libknotd_la-z= one-update.Tpo -c -o knot/updates/libknotd_la-zone-update.lo `test -f 'knot= /updates/zone-update.c' || echo './'`knot/updates/zone-update.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-ddns.lo -MD -MP -MF knot/upd= ates/.deps/libknotd_la-ddns.Tpo -c knot/updates/ddns.c -fPIC -DPIC -o knot= /updates/.libs/libknotd_la-ddns.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-zone-update.lo -MD -MP -MF k= not/updates/.deps/libknotd_la-zone-update.Tpo -c knot/updates/zone-update.c= -fPIC -DPIC -o knot/updates/.libs/libknotd_la-zone-update.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-changesets.lo -MD -MP -MF kn= ot/updates/.deps/libknotd_la-changesets.Tpo -c knot/updates/changesets.c -o= knot/updates/libknotd_la-changesets.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-zone-update.lo -MD -MP -MF k= not/updates/.deps/libknotd_la-zone-update.Tpo -c knot/updates/zone-update.c= -o knot/updates/libknotd_la-zone-update.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-apply.lo -MD -MP -MF knot/up= dates/.deps/libknotd_la-apply.Tpo -c knot/updates/apply.c -o knot/updates/l= ibknotd_la-apply.o >/dev/null 2>&1 mv -f knot/updates/.deps/libknotd_la-zone-update.Tpo knot/updates/.deps/lib= knotd_la-zone-update.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/work= er/libknotd_la-pool.lo -MD -MP -MF knot/worker/.deps/libknotd_la-pool.Tpo -= c -o knot/worker/libknotd_la-pool.lo `test -f 'knot/worker/pool.c' || echo = './'`knot/worker/pool.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/worker/libknotd_la-pool.lo -MD -MP -MF knot/work= er/.deps/libknotd_la-pool.Tpo -c knot/worker/pool.c -fPIC -DPIC -o knot/wo= rker/.libs/libknotd_la-pool.o mv -f knot/updates/.deps/libknotd_la-changesets.Tpo knot/updates/.deps/libk= notd_la-changesets.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/work= er/libknotd_la-queue.lo -MD -MP -MF knot/worker/.deps/libknotd_la-queue.Tpo= -c -o knot/worker/libknotd_la-queue.lo `test -f 'knot/worker/queue.c' || e= cho './'`knot/worker/queue.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/worker/libknotd_la-queue.lo -MD -MP -MF knot/wor= ker/.deps/libknotd_la-queue.Tpo -c knot/worker/queue.c -fPIC -DPIC -o knot= /worker/.libs/libknotd_la-queue.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/worker/libknotd_la-queue.lo -MD -MP -MF knot/wor= ker/.deps/libknotd_la-queue.Tpo -c knot/worker/queue.c -o knot/worker/libkn= otd_la-queue.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/worker/libknotd_la-pool.lo -MD -MP -MF knot/work= er/.deps/libknotd_la-pool.Tpo -c knot/worker/pool.c -o knot/worker/libknotd= _la-pool.o >/dev/null 2>&1 mv -f knot/worker/.deps/libknotd_la-queue.Tpo knot/worker/.deps/libknotd_la= -queue.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-contents.lo -MD -MP -MF knot/zone/.deps/libknotd_la-contents.T= po -c -o knot/zone/libknotd_la-contents.lo `test -f 'knot/zone/contents.c' = || echo './'`knot/zone/contents.c mv -f knot/updates/.deps/libknotd_la-apply.Tpo knot/updates/.deps/libknotd_= la-apply.Plo mv -f knot/worker/.deps/libknotd_la-pool.Tpo knot/worker/.deps/libknotd_la-= pool.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-contents.lo -MD -MP -MF knot/zo= ne/.deps/libknotd_la-contents.Tpo -c knot/zone/contents.c -fPIC -DPIC -o k= not/zone/.libs/libknotd_la-contents.o /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-node.lo -MD -MP -MF knot/zone/.deps/libknotd_la-node.Tpo -c -o= knot/zone/libknotd_la-node.lo `test -f 'knot/zone/node.c' || echo './'`kno= t/zone/node.c /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-semantic-check.lo -MD -MP -MF knot/zone/.deps/libknotd_la-sema= ntic-check.Tpo -c -o knot/zone/libknotd_la-semantic-check.lo `test -f 'knot= /zone/semantic-check.c' || echo './'`knot/zone/semantic-check.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-semantic-check.lo -MD -MP -MF k= not/zone/.deps/libknotd_la-semantic-check.Tpo -c knot/zone/semantic-check.c= -fPIC -DPIC -o knot/zone/.libs/libknotd_la-semantic-check.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/updates/libknotd_la-ddns.lo -MD -MP -MF knot/upd= ates/.deps/libknotd_la-ddns.Tpo -c knot/updates/ddns.c -o knot/updates/libk= notd_la-ddns.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-node.lo -MD -MP -MF knot/zone/.= deps/libknotd_la-node.Tpo -c knot/zone/node.c -fPIC -DPIC -o knot/zone/.li= bs/libknotd_la-node.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-node.lo -MD -MP -MF knot/zone/.= deps/libknotd_la-node.Tpo -c knot/zone/node.c -o knot/zone/libknotd_la-node= =2Eo >/dev/null 2>&1 mv -f knot/zone/.deps/libknotd_la-node.Tpo knot/zone/.deps/libknotd_la-node= =2EPlo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-serial.lo -MD -MP -MF knot/zone/.deps/libknotd_la-serial.Tpo -= c -o knot/zone/libknotd_la-serial.lo `test -f 'knot/zone/serial.c' || echo = './'`knot/zone/serial.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-semantic-check.lo -MD -MP -MF k= not/zone/.deps/libknotd_la-semantic-check.Tpo -c knot/zone/semantic-check.c= -o knot/zone/libknotd_la-semantic-check.o >/dev/null 2>&1 mv -f knot/updates/.deps/libknotd_la-ddns.Tpo knot/updates/.deps/libknotd_l= a-ddns.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-timers.lo -MD -MP -MF knot/zone/.deps/libknotd_la-timers.Tpo -= c -o knot/zone/libknotd_la-timers.lo `test -f 'knot/zone/timers.c' || echo = './'`knot/zone/timers.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-contents.lo -MD -MP -MF knot/zo= ne/.deps/libknotd_la-contents.Tpo -c knot/zone/contents.c -o knot/zone/libk= notd_la-contents.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-serial.lo -MD -MP -MF knot/zone= /.deps/libknotd_la-serial.Tpo -c knot/zone/serial.c -fPIC -DPIC -o knot/zo= ne/.libs/libknotd_la-serial.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-timers.lo -MD -MP -MF knot/zone= /.deps/libknotd_la-timers.Tpo -c knot/zone/timers.c -fPIC -DPIC -o knot/zo= ne/.libs/libknotd_la-timers.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-serial.lo -MD -MP -MF knot/zone= /.deps/libknotd_la-serial.Tpo -c knot/zone/serial.c -o knot/zone/libknotd_l= a-serial.o >/dev/null 2>&1 mv -f knot/zone/.deps/libknotd_la-serial.Tpo knot/zone/.deps/libknotd_la-se= rial.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zone-diff.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-diff= =2ETpo -c -o knot/zone/libknotd_la-zone-diff.lo `test -f 'knot/zone/zone-di= ff.c' || echo './'`knot/zone/zone-diff.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-timers.lo -MD -MP -MF knot/zone= /.deps/libknotd_la-timers.Tpo -c knot/zone/timers.c -o knot/zone/libknotd_l= a-timers.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-diff.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-diff.Tpo -c knot/zone/zone-diff.c -fPIC -DPIC -= o knot/zone/.libs/libknotd_la-zone-diff.o mv -f knot/zone/.deps/libknotd_la-timers.Tpo knot/zone/.deps/libknotd_la-ti= mers.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zone-dump.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-dump= =2ETpo -c -o knot/zone/libknotd_la-zone-dump.lo `test -f 'knot/zone/zone-du= mp.c' || echo './'`knot/zone/zone-dump.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-dump.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-dump.Tpo -c knot/zone/zone-dump.c -fPIC -DPIC -= o knot/zone/.libs/libknotd_la-zone-dump.o mv -f knot/zone/.deps/libknotd_la-semantic-check.Tpo knot/zone/.deps/libkno= td_la-semantic-check.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zone-load.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-load= =2ETpo -c -o knot/zone/libknotd_la-zone-load.lo `test -f 'knot/zone/zone-lo= ad.c' || echo './'`knot/zone/zone-load.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-load.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-load.Tpo -c knot/zone/zone-load.c -fPIC -DPIC -= o knot/zone/.libs/libknotd_la-zone-load.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-diff.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-diff.Tpo -c knot/zone/zone-diff.c -o knot/zone/l= ibknotd_la-zone-diff.o >/dev/null 2>&1 mv -f knot/zone/.deps/libknotd_la-contents.Tpo knot/zone/.deps/libknotd_la-= contents.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-dump.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-dump.Tpo -c knot/zone/zone-dump.c -o knot/zone/l= ibknotd_la-zone-dump.o >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zone-tree.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone-tree= =2ETpo -c -o knot/zone/libknotd_la-zone-tree.lo `test -f 'knot/zone/zone-tr= ee.c' || echo './'`knot/zone/zone-tree.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-load.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-load.Tpo -c knot/zone/zone-load.c -o knot/zone/l= ibknotd_la-zone-load.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-tree.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-tree.Tpo -c knot/zone/zone-tree.c -fPIC -DPIC -= o knot/zone/.libs/libknotd_la-zone-tree.o mv -f knot/zone/.deps/libknotd_la-zone-dump.Tpo knot/zone/.deps/libknotd_la= -zone-dump.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zone.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zone.Tpo -c -o= knot/zone/libknotd_la-zone.lo `test -f 'knot/zone/zone.c' || echo './'`kno= t/zone/zone.c mv -f knot/zone/.deps/libknotd_la-zone-load.Tpo knot/zone/.deps/libknotd_la= -zone-load.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zonedb-load.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zonedb-= load.Tpo -c -o knot/zone/libknotd_la-zonedb-load.lo `test -f 'knot/zone/zon= edb-load.c' || echo './'`knot/zone/zonedb-load.c mv -f knot/zone/.deps/libknotd_la-zone-diff.Tpo knot/zone/.deps/libknotd_la= -zone-diff.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zonedb.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zonedb.Tpo -= c -o knot/zone/libknotd_la-zonedb.lo `test -f 'knot/zone/zonedb.c' || echo = './'`knot/zone/zonedb.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone.lo -MD -MP -MF knot/zone/.= deps/libknotd_la-zone.Tpo -c knot/zone/zone.c -fPIC -DPIC -o knot/zone/.li= bs/libknotd_la-zone.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone-tree.lo -MD -MP -MF knot/z= one/.deps/libknotd_la-zone-tree.Tpo -c knot/zone/zone-tree.c -o knot/zone/l= ibknotd_la-zone-tree.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zonedb-load.lo -MD -MP -MF knot= /zone/.deps/libknotd_la-zonedb-load.Tpo -c knot/zone/zonedb-load.c -fPIC -= DPIC -o knot/zone/.libs/libknotd_la-zonedb-load.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zonedb.lo -MD -MP -MF knot/zone= /.deps/libknotd_la-zonedb.Tpo -c knot/zone/zonedb.c -fPIC -DPIC -o knot/zo= ne/.libs/libknotd_la-zonedb.o mv -f knot/zone/.deps/libknotd_la-zone-tree.Tpo knot/zone/.deps/libknotd_la= -zone-tree.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /libknotd_la-zonefile.lo -MD -MP -MF knot/zone/.deps/libknotd_la-zonefile.T= po -c -o knot/zone/libknotd_la-zonefile.lo `test -f 'knot/zone/zonefile.c' = || echo './'`knot/zone/zonefile.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zonedb.lo -MD -MP -MF knot/zone= /.deps/libknotd_la-zonedb.Tpo -c knot/zone/zonedb.c -o knot/zone/libknotd_l= a-zonedb.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zonefile.lo -MD -MP -MF knot/zo= ne/.deps/libknotd_la-zonefile.Tpo -c knot/zone/zonefile.c -fPIC -DPIC -o k= not/zone/.libs/libknotd_la-zonefile.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zonedb-load.lo -MD -MP -MF knot= /zone/.deps/libknotd_la-zonedb-load.Tpo -c knot/zone/zonedb-load.c -o knot/= zone/libknotd_la-zonedb-load.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zone.lo -MD -MP -MF knot/zone/.= deps/libknotd_la-zone.Tpo -c knot/zone/zone.c -o knot/zone/libknotd_la-zone= =2Eo >/dev/null 2>&1 mv -f knot/zone/.deps/libknotd_la-zonedb.Tpo knot/zone/.deps/libknotd_la-zo= nedb.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /events/libknotd_la-events.lo -MD -MP -MF knot/zone/events/.deps/libknotd_l= a-events.Tpo -c -o knot/zone/events/libknotd_la-events.lo `test -f 'knot/zo= ne/events/events.c' || echo './'`knot/zone/events/events.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/events/libknotd_la-events.lo -MD -MP -MF kn= ot/zone/events/.deps/libknotd_la-events.Tpo -c knot/zone/events/events.c -= fPIC -DPIC -o knot/zone/events/.libs/libknotd_la-events.o mv -f knot/zone/.deps/libknotd_la-zonedb-load.Tpo knot/zone/.deps/libknotd_= la-zonedb-load.Plo libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/libknotd_la-zonefile.lo -MD -MP -MF knot/zo= ne/.deps/libknotd_la-zonefile.Tpo -c knot/zone/zonefile.c -o knot/zone/libk= notd_la-zonefile.o >/dev/null 2>&1 /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /events/libknotd_la-handlers.lo -MD -MP -MF knot/zone/events/.deps/libknotd= _la-handlers.Tpo -c -o knot/zone/events/libknotd_la-handlers.lo `test -f 'k= not/zone/events/handlers.c' || echo './'`knot/zone/events/handlers.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/events/libknotd_la-handlers.lo -MD -MP -MF = knot/zone/events/.deps/libknotd_la-handlers.Tpo -c knot/zone/events/handler= s.c -fPIC -DPIC -o knot/zone/events/.libs/libknotd_la-handlers.o mv -f knot/zone/.deps/libknotd_la-zone.Tpo knot/zone/.deps/libknotd_la-zone= =2EPlo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -I/usr/local/include -O2 -pipe -fstack-protector -fno-stric= t-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/zone= /events/libknotd_la-replan.lo -MD -MP -MF knot/zone/events/.deps/libknotd_l= a-replan.Tpo -c -o knot/zone/events/libknotd_la-replan.lo `test -f 'knot/zo= ne/events/replan.c' || echo './'`knot/zone/events/replan.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/events/libknotd_la-replan.lo -MD -MP -MF kn= ot/zone/events/.deps/libknotd_la-replan.Tpo -c knot/zone/events/replan.c -= fPIC -DPIC -o knot/zone/events/.libs/libknotd_la-replan.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/events/libknotd_la-events.lo -MD -MP -MF kn= ot/zone/events/.deps/libknotd_la-events.Tpo -c knot/zone/events/events.c -o= knot/zone/events/libknotd_la-events.o >/dev/null 2>&1 mv -f knot/zone/.deps/libknotd_la-zonefile.Tpo knot/zone/.deps/libknotd_la-= zonefile.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-exec.lo= -MD -MP -MF utils/common/.deps/libknotus_la-exec.Tpo -c -o utils/common/li= bknotus_la-exec.lo `test -f 'utils/common/exec.c' || echo './'`utils/common= /exec.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/events/libknotd_la-replan.lo -MD -MP -MF kn= ot/zone/events/.deps/libknotd_la-replan.Tpo -c knot/zone/events/replan.c -o= knot/zone/events/libknotd_la-replan.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-exec.lo -MD -MP -MF utils/common/.deps/libknotus= _la-exec.Tpo -c utils/common/exec.c -fPIC -DPIC -o utils/common/.libs/libk= notus_la-exec.o mv -f knot/zone/events/.deps/libknotd_la-replan.Tpo knot/zone/events/.deps/= libknotd_la-replan.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-hex.lo = -MD -MP -MF utils/common/.deps/libknotus_la-hex.Tpo -c -o utils/common/libk= notus_la-hex.lo `test -f 'utils/common/hex.c' || echo './'`utils/common/hex= =2Ec mv -f knot/zone/events/.deps/libknotd_la-events.Tpo knot/zone/events/.deps/= libknotd_la-events.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-msg.lo = -MD -MP -MF utils/common/.deps/libknotus_la-msg.Tpo -c -o utils/common/libk= notus_la-msg.lo `test -f 'utils/common/msg.c' || echo './'`utils/common/msg= =2Ec libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-hex.lo -MD -MP -MF utils/common/.deps/libknotus_= la-hex.Tpo -c utils/common/hex.c -fPIC -DPIC -o utils/common/.libs/libknot= us_la-hex.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -I/usr/local/include -O2 -pi= pe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -= Werror=3Dimplicit -MT knot/zone/events/libknotd_la-handlers.lo -MD -MP -MF = knot/zone/events/.deps/libknotd_la-handlers.Tpo -c knot/zone/events/handler= s.c -o knot/zone/events/libknotd_la-handlers.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-msg.lo -MD -MP -MF utils/common/.deps/libknotus_= la-msg.Tpo -c utils/common/msg.c -fPIC -DPIC -o utils/common/.libs/libknot= us_la-msg.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-msg.lo -MD -MP -MF utils/common/.deps/libknotus_= la-msg.Tpo -c utils/common/msg.c -o utils/common/libknotus_la-msg.o >/dev/n= ull 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-hex.lo -MD -MP -MF utils/common/.deps/libknotus_= la-hex.Tpo -c utils/common/hex.c -o utils/common/libknotus_la-hex.o >/dev/n= ull 2>&1 mv -f utils/common/.deps/libknotus_la-msg.Tpo utils/common/.deps/libknotus_= la-msg.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-netio.l= o -MD -MP -MF utils/common/.deps/libknotus_la-netio.Tpo -c -o utils/common/= libknotus_la-netio.lo `test -f 'utils/common/netio.c' || echo './'`utils/co= mmon/netio.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-netio.lo -MD -MP -MF utils/common/.deps/libknotu= s_la-netio.Tpo -c utils/common/netio.c -fPIC -DPIC -o utils/common/.libs/l= ibknotus_la-netio.o mv -f utils/common/.deps/libknotus_la-hex.Tpo utils/common/.deps/libknotus_= la-hex.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-params.= lo -MD -MP -MF utils/common/.deps/libknotus_la-params.Tpo -c -o utils/commo= n/libknotus_la-params.lo `test -f 'utils/common/params.c' || echo './'`util= s/common/params.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-exec.lo -MD -MP -MF utils/common/.deps/libknotus= _la-exec.Tpo -c utils/common/exec.c -o utils/common/libknotus_la-exec.o >/d= ev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-params.lo -MD -MP -MF utils/common/.deps/libknot= us_la-params.Tpo -c utils/common/params.c -fPIC -DPIC -o utils/common/.lib= s/libknotus_la-params.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-params.lo -MD -MP -MF utils/common/.deps/libknot= us_la-params.Tpo -c utils/common/params.c -o utils/common/libknotus_la-para= ms.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-netio.lo -MD -MP -MF utils/common/.deps/libknotu= s_la-netio.Tpo -c utils/common/netio.c -o utils/common/libknotus_la-netio.o= >/dev/null 2>&1 mv -f knot/zone/events/.deps/libknotd_la-handlers.Tpo knot/zone/events/.dep= s/libknotd_la-handlers.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-resolv.= lo -MD -MP -MF utils/common/.deps/libknotus_la-resolv.Tpo -c -o utils/commo= n/libknotus_la-resolv.lo `test -f 'utils/common/resolv.c' || echo './'`util= s/common/resolv.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-resolv.lo -MD -MP -MF utils/common/.deps/libknot= us_la-resolv.Tpo -c utils/common/resolv.c -fPIC -DPIC -o utils/common/.lib= s/libknotus_la-resolv.o mv -f utils/common/.deps/libknotus_la-exec.Tpo utils/common/.deps/libknotus= _la-exec.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-sign.lo= -MD -MP -MF utils/common/.deps/libknotus_la-sign.Tpo -c -o utils/common/li= bknotus_la-sign.lo `test -f 'utils/common/sign.c' || echo './'`utils/common= /sign.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-sign.lo -MD -MP -MF utils/common/.deps/libknotus= _la-sign.Tpo -c utils/common/sign.c -fPIC -DPIC -o utils/common/.libs/libk= notus_la-sign.o mv -f utils/common/.deps/libknotus_la-params.Tpo utils/common/.deps/libknot= us_la-params.Plo /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -std=3Dgnu99 -DHAVE_CO= NFIG_H -I. -include ../src/config.h -DCONFIG_DIR=3D'"/usr/local/etc/knot"= ' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D'"/var/run/knot"' -I./d= nssec/lib -O2 -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror= =3Dformat-security -Werror=3Dimplicit -MT utils/common/libknotus_la-token.l= o -MD -MP -MF utils/common/.deps/libknotus_la-token.Tpo -c -o utils/common/= libknotus_la-token.lo `test -f 'utils/common/token.c' || echo './'`utils/co= mmon/token.c libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-resolv.lo -MD -MP -MF utils/common/.deps/libknot= us_la-resolv.Tpo -c utils/common/resolv.c -o utils/common/libknotus_la-reso= lv.o >/dev/null 2>&1 libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-token.lo -MD -MP -MF utils/common/.deps/libknotu= s_la-token.Tpo -c utils/common/token.c -fPIC -DPIC -o utils/common/.libs/l= ibknotus_la-token.o libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-sign.lo -MD -MP -MF utils/common/.deps/libknotus= _la-sign.Tpo -c utils/common/sign.c -o utils/common/libknotus_la-sign.o >/d= ev/null 2>&1 mv -f utils/common/.deps/libknotus_la-netio.Tpo utils/common/.deps/libknotu= s_la-netio.Plo depbase=3D`echo utils/kdig/kdig_exec.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;= cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DI= R=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR= =3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils= /kdig/kdig_exec.o -MD -MP -MF $depbase.Tpo -c -o utils/kdig/kdig_exec.o uti= ls/kdig/kdig_exec.c && mv -f $depbase.Tpo $depbase.Po mv -f utils/common/.deps/libknotus_la-resolv.Tpo utils/common/.deps/libknot= us_la-resolv.Plo mv -f utils/common/.deps/libknotus_la-sign.Tpo utils/common/.deps/libknotus= _la-sign.Plo depbase=3D`echo utils/kdig/kdig_main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;= cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DI= R=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR= =3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils= /kdig/kdig_main.o -MD -MP -MF $depbase.Tpo -c -o utils/kdig/kdig_main.o uti= ls/kdig/kdig_main.c && mv -f $depbase.Tpo $depbase.Po depbase=3D`echo utils/kdig/kdig_params.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'= `; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_= DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR= =3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils= /kdig/kdig_params.o -MD -MP -MF $depbase.Tpo -c -o utils/kdig/kdig_params.o= utils/kdig/kdig_params.c && mv -f $depbase.Tpo $depbase.Po libtool: compile: cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/conf= ig.h -DCONFIG_DIR=3D\"/usr/local/etc/knot\" -DSTORAGE_DIR=3D\"/var/db/knot\= " -DRUN_DIR=3D\"/var/run/knot\" -I./dnssec/lib -O2 -pipe -fstack-protector = -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT= utils/common/libknotus_la-token.lo -MD -MP -MF utils/common/.deps/libknotu= s_la-token.Tpo -c utils/common/token.c -o utils/common/libknotus_la-token.o= >/dev/null 2>&1 depbase=3D`echo utils/khost/khost_main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'= `; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_= DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR= =3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils= /khost/khost_main.o -MD -MP -MF $depbase.Tpo -c -o utils/khost/khost_main.o= utils/khost/khost_main.c && mv -f $depbase.Tpo $depbase.Po mv -f utils/common/.deps/libknotus_la-token.Tpo utils/common/.deps/libknotu= s_la-token.Plo depbase=3D`echo utils/khost/khost_params.o | sed 's|[^/]*$|.deps/&|;s|\.o$|= |'`; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFI= G_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_D= IR=3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno= -strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT uti= ls/khost/khost_params.o -MD -MP -MF $depbase.Tpo -c -o utils/khost/khost_pa= rams.o utils/khost/khost_params.c && mv -f $depbase.Tpo $depbase.Po depbase=3D`echo knot/ctl/knotc_main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; = cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR= =3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D= '"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-stri= ct-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT knot/ctl= /knotc_main.o -MD -MP -MF $depbase.Tpo -c -o knot/ctl/knotc_main.o knot/ctl= /knotc_main.c && mv -f $depbase.Tpo $depbase.Po depbase=3D`echo utils/knsupdate/knsupdate_exec.o | sed 's|[^/]*$|.deps/&|;s= |\.o$||'`; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -= DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -= DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protecto= r -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -= MT utils/knsupdate/knsupdate_exec.o -MD -MP -MF $depbase.Tpo -c -o utils/kn= supdate/knsupdate_exec.o utils/knsupdate/knsupdate_exec.c && mv -f $depbase= =2ETpo $depbase.Po depbase=3D`echo utils/knsupdate/knsupdate_main.o | sed 's|[^/]*$|.deps/&|;s= |\.o$||'`; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -= DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -= DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protecto= r -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -= MT utils/knsupdate/knsupdate_main.o -MD -MP -MF $depbase.Tpo -c -o utils/kn= supdate/knsupdate_main.o utils/knsupdate/knsupdate_main.c && mv -f $depbase= =2ETpo $depbase.Po depbase=3D`echo utils/knsupdate/knsupdate_params.o | sed 's|[^/]*$|.deps/&|= ;s|\.o$||'`; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h = -DCONFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' = -DRUN_DIR=3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protec= tor -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit= -MT utils/knsupdate/knsupdate_params.o -MD -MP -MF $depbase.Tpo -c -o util= s/knsupdate/knsupdate_params.o utils/knsupdate/knsupdate_params.c && mv -f = $depbase.Tpo $depbase.Po depbase=3D`echo utils/knot1to2/cf-lex.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`= ; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_D= IR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR= =3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils= /knot1to2/cf-lex.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/cf-lex.o u= tils/knot1to2/cf-lex.c && mv -f $depbase.Tpo $depbase.Po depbase=3D`echo utils/knot1to2/cf-parse.tab.o | sed 's|[^/]*$|.deps/&|;s|\.= o$||'`; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCO= NFIG_DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRU= N_DIR=3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -= fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT = utils/knot1to2/cf-parse.tab.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2= /cf-parse.tab.o utils/knot1to2/cf-parse.tab.c && mv -f $depbase.Tpo $depbas= e.Po depbase=3D`echo utils/knot1to2/extra.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;= cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DI= R=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR= =3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-s= trict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils= /knot1to2/extra.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/extra.o uti= ls/knot1to2/extra.c && mv -f $depbase.Tpo $depbase.Po depbase=3D`echo utils/knot1to2/includes.o | sed 's|[^/]*$|.deps/&|;s|\.o$||= '`; cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG= _DIR=3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DI= R=3D'"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-= strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT util= s/knot1to2/includes.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/include= s.o utils/knot1to2/includes.c && mv -f $depbase.Tpo $depbase.Po depbase=3D`echo utils/knot1to2/main.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; = cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR= =3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D= '"/var/run/knot"' -I./dnssec/lib -O2 -pipe -fstack-protector -fno-stri= ct-aliasing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -MT utils/kn= ot1to2/main.o -MD -MP -MF $depbase.Tpo -c -o utils/knot1to2/main.o utils/kn= ot1to2/main.c && mv -f $depbase.Tpo $depbase.Po cc -std=3Dgnu99 -DHAVE_CONFIG_H -I. -include ../src/config.h -DCONFIG_DIR= =3D'"/usr/local/etc/knot"' -DSTORAGE_DIR=3D'"/var/db/knot"' -DRUN_DIR=3D= '"/var/run/knot"' -I./dnssec/lib -I/usr/local/include -O2 -pipe -fstack= -protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Werror=3Di= mplicit -MT knot/knotd-main.o -MD -MP -MF knot/.deps/knotd-main.Tpo -c -o k= not/knotd-main.o `test -f 'knot/main.c' || echo './'`knot/main.c /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe= -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -We= rror=3Dimplicit -fstack-protector -o libknot-internal.la libknot/interna= l/libknot_internal_la-base32hex.lo libknot/internal/libknot_internal_la-ba= se64.lo libknot/internal/libknot_internal_la-errcode.lo libknot/internal/= libknot_internal_la-getline.lo libknot/internal/libknot_internal_la-heap.l= o libknot/internal/libknot_internal_la-hhash.lo libknot/internal/libknot_= internal_la-lists.lo libknot/internal/libknot_internal_la-mem.lo libknot/= internal/libknot_internal_la-mempattern.lo libknot/internal/libknot_intern= al_la-mempool.lo libknot/internal/namedb/libknot_internal_la-namedb_lmdb.l= o libknot/internal/namedb/libknot_internal_la-namedb_trie.lo libknot/inte= rnal/libknot_internal_la-net.lo libknot/internal/libknot_internal_la-print= =2Elo libknot/internal/libknot_internal_la-sockaddr.lo libknot/internal/l= ibknot_internal_la-strlcat.lo libknot/internal/libknot_internal_la-strlcpy= =2Elo libknot/internal/libknot_internal_la-tolower.lo libknot/internal/tr= ie/libknot_internal_la-hat-trie.lo libknot/internal/trie/libknot_internal_= la-murmurhash3.lo libknot/internal/libknot_internal_la-utils.lo -lpthr= ead -lm libtool: link: ar cru .libs/libknot-internal.a libknot/internal/.libs/libkn= ot_internal_la-base32hex.o libknot/internal/.libs/libknot_internal_la-base6= 4.o libknot/internal/.libs/libknot_internal_la-errcode.o libknot/internal/.= libs/libknot_internal_la-getline.o libknot/internal/.libs/libknot_internal_= la-heap.o libknot/internal/.libs/libknot_internal_la-hhash.o libknot/intern= al/.libs/libknot_internal_la-lists.o libknot/internal/.libs/libknot_interna= l_la-mem.o libknot/internal/.libs/libknot_internal_la-mempattern.o libknot/= internal/.libs/libknot_internal_la-mempool.o libknot/internal/namedb/.libs/= libknot_internal_la-namedb_lmdb.o libknot/internal/namedb/.libs/libknot_int= ernal_la-namedb_trie.o libknot/internal/.libs/libknot_internal_la-net.o lib= knot/internal/.libs/libknot_internal_la-print.o libknot/internal/.libs/libk= not_internal_la-sockaddr.o libknot/internal/.libs/libknot_internal_la-strlc= at.o libknot/internal/.libs/libknot_internal_la-strlcpy.o libknot/internal/= =2Elibs/libknot_internal_la-tolower.o libknot/internal/trie/.libs/libknot_i= nternal_la-hat-trie.o libknot/internal/trie/.libs/libknot_internal_la-murmu= rhash3.o libknot/internal/.libs/libknot_internal_la-utils.o=20 libtool: link: ranlib .libs/libknot-internal.a libtool: link: ( cd ".libs" && rm -f "libknot-internal.la" && ln -s "../lib= knot-internal.la" "libknot-internal.la" ) /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o libknot-yparser.la libknot/yparser/y= parser.lo libknot/yparser/ypbody.lo libknot/yparser/ypformat.lo libknot/y= parser/ypscheme.lo libknot/yparser/yptrafo.lo -lpthread -lm mv -f knot/.deps/knotd-main.Tpo knot/.deps/knotd-main.Po /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe= -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -We= rror=3Dimplicit -version-info 1:0:0 -L/usr/local/lib -llmdb -fstack-protec= tor -o libknot.la -rpath /usr/local/lib libknot/libknot_la-binary.lo libkn= ot/libknot_la-consts.lo libknot/libknot_la-descriptor.lo libknot/libknot_l= a-dname.lo libknot/libknot_la-errcode.lo libknot/packet/libknot_la-compr.l= o libknot/packet/libknot_la-pkt.lo libknot/packet/libknot_la-rrset-wire.l= o libknot/processing/libknot_la-layer.lo libknot/processing/libknot_la-ov= erlay.lo libknot/processing/libknot_la-requestor.lo libknot/libknot_la-rd= ata.lo libknot/libknot_la-rdataset.lo libknot/libknot_la-rrset-dump.lo lib= knot/libknot_la-rrset.lo libknot/rrtype/libknot_la-nsec3.lo libknot/rrtyp= e/libknot_la-nsec3param.lo libknot/rrtype/libknot_la-opt.lo libknot/rrtyp= e/libknot_la-tsig.lo libknot/libknot_la-tsig-op.lo libknot/libknot_la-tsig= =2Elo dnssec/libdnssec.la libknot-internal.la -lpthread -lmlibtool: link:= ar cru .libs/libknot-yparser.a libknot/yparser/.libs/yparser.o libknot/ypa= rser/.libs/ypbody.o libknot/yparser/.libs/ypformat.o libknot/yparser/.libs/= ypscheme.o libknot/yparser/.libs/yptrafo.o=20 libtool: link: ranlib .libs/libknot-yparser.a libtool: link: ( cd ".libs" && rm -f "libknot-yparser.la" && ln -s "../libk= not-yparser.la" "libknot-yparser.la" ) libtool: link: cc -std=3Dgnu99 -shared -fPIC -DPIC libknot/.libs/libknot_= la-binary.o libknot/.libs/libknot_la-consts.o libknot/.libs/libknot_la-desc= riptor.o libknot/.libs/libknot_la-dname.o libknot/.libs/libknot_la-errcode.= o libknot/packet/.libs/libknot_la-compr.o libknot/packet/.libs/libknot_la-p= kt.o libknot/packet/.libs/libknot_la-rrset-wire.o libknot/processing/.libs/= libknot_la-layer.o libknot/processing/.libs/libknot_la-overlay.o libknot/pr= ocessing/.libs/libknot_la-requestor.o libknot/.libs/libknot_la-rdata.o libk= not/.libs/libknot_la-rdataset.o libknot/.libs/libknot_la-rrset-dump.o libkn= ot/.libs/libknot_la-rrset.o libknot/rrtype/.libs/libknot_la-nsec3.o libknot= /rrtype/.libs/libknot_la-nsec3param.o libknot/rrtype/.libs/libknot_la-opt.o= libknot/rrtype/.libs/libknot_la-tsig.o libknot/.libs/libknot_la-tsig-op.o = libknot/.libs/libknot_la-tsig.o -Wl,--whole-archive ./.libs/libknot-intern= al.a -Wl,--no-whole-archive -Wl,-rpath -Wl,/wrkdirs/usr/ports/dns/knot2/wo= rk/knot-2.0.0/src/dnssec/.libs -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/l= ib -llmdb dnssec/.libs/libdnssec.so -lgnutls -lnettle -ljansson -lpthread -= lm -O2 -fstack-protector -fstack-protector -Wl,-soname -Wl,libknot.so.1 = -o .libs/libknot.so.1.0.0 libtool: link: (cd ".libs" && rm -f "libknot.so.1" && ln -s "libknot.so.1.0= =2E0" "libknot.so.1") libtool: link: (cd ".libs" && rm -f "libknot.so" && ln -s "libknot.so.1.0.0= " "libknot.so") libtool: link: (cd .libs/libknot.lax/libknot-internal.a && ar x "/wrkdirs/u= sr/ports/dns/knot2/work/knot-2.0.0/src/./.libs/libknot-internal.a") copying selected object files to avoid basename conflicts... libtool: link: ln libknot/libknot_la-tsig.o .libs/libknot.lax/lt1-libknot_l= a-tsig.o || cp libknot/libknot_la-tsig.o .libs/libknot.lax/lt1-libknot_la-t= sig.o libtool: link: ar cru .libs/libknot.a libknot/libknot_la-binary.o libknot/l= ibknot_la-consts.o libknot/libknot_la-descriptor.o libknot/libknot_la-dname= =2Eo libknot/libknot_la-errcode.o libknot/packet/libknot_la-compr.o libknot= /packet/libknot_la-pkt.o libknot/packet/libknot_la-rrset-wire.o libknot/pro= cessing/libknot_la-layer.o libknot/processing/libknot_la-overlay.o libknot/= processing/libknot_la-requestor.o libknot/libknot_la-rdata.o libknot/libkno= t_la-rdataset.o libknot/libknot_la-rrset-dump.o libknot/libknot_la-rrset.o = libknot/rrtype/libknot_la-nsec3.o libknot/rrtype/libknot_la-nsec3param.o li= bknot/rrtype/libknot_la-opt.o libknot/rrtype/libknot_la-tsig.o libknot/libk= not_la-tsig-op.o .libs/libknot.lax/lt1-libknot_la-tsig.o .libs/libknot.lax/= libknot-internal.a/libknot_internal_la-base32hex.o .libs/libknot.lax/libkno= t-internal.a/libknot_internal_la-base64.o .libs/libknot.lax/libknot-interna= l.a/libknot_internal_la-errcode.o .libs/libknot.lax/libknot-internal.a/libk= not_internal_la-getline.o .libs/libknot.lax/libknot-internal.a/libknot_inte= rnal_la-hat-trie.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la= -heap.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la-hhash.o .l= ibs/libknot.lax/libknot-internal.a/libknot_internal_la-lists.o .libs/libkno= t.lax/libknot-internal.a/libknot_internal_la-mem.o .libs/libknot.lax/libkno= t-internal.a/libknot_internal_la-mempattern.o .libs/libknot.lax/libknot-int= ernal.a/libknot_internal_la-mempool.o .libs/libknot.lax/libknot-internal.a/= libknot_internal_la-murmurhash3.o .libs/libknot.lax/libknot-internal.a/libk= not_internal_la-namedb_lmdb.o .libs/libknot.lax/libknot-internal.a/libknot_= internal_la-namedb_trie.o .libs/libknot.lax/libknot-internal.a/libknot_inte= rnal_la-net.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la-prin= t.o .libs/libknot.lax/libknot-internal.a/libknot_internal_la-sockaddr.o .li= bs/libknot.lax/libknot-internal.a/libknot_internal_la-strlcat.o .libs/libkn= ot.lax/libknot-internal.a/libknot_internal_la-strlcpy.o .libs/libknot.lax/l= ibknot-internal.a/libknot_internal_la-tolower.o .libs/libknot.lax/libknot-i= nternal.a/libknot_internal_la-utils.o libtool: link: ranlib .libs/libknot.a libtool: link: rm -fr .libs/libknot.lax .libs/libknot.lax libtool: link: ( cd ".libs" && rm -f "libknot.la" && ln -s "../libknot.la" = "libknot.la" ) /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -L/usr/local/lib -lurcu -fstack-protector -o libknotd.la = knot/conf/libknotd_la-base.lo knot/conf/libknotd_la-conf.lo knot/conf/li= bknotd_la-confdb.lo knot/conf/libknotd_la-scheme.lo knot/conf/libknotd_la= -tools.lo knot/ctl/libknotd_la-estimator.lo knot/ctl/libknotd_la-process.= lo knot/ctl/libknotd_la-remote.lo knot/dnssec/libknotd_la-context.lo kno= t/dnssec/libknotd_la-nsec-chain.lo knot/dnssec/libknotd_la-nsec3-chain.lo = knot/dnssec/libknotd_la-policy.lo knot/dnssec/libknotd_la-rrset-sign.lo = knot/dnssec/libknotd_la-zone-events.lo knot/dnssec/libknotd_la-zone-keys.l= o knot/dnssec/libknotd_la-zone-nsec.lo knot/dnssec/libknotd_la-zone-sign.= lo knot/modules/libknotd_la-synth_record.lo knot/modules/libknotd_la-dnsp= roxy.lo knot/nameserver/libknotd_la-axfr.lo knot/nameserver/libknotd_la-c= apture.lo knot/nameserver/libknotd_la-chaos.lo knot/nameserver/libknotd_l= a-internet.lo knot/nameserver/libknotd_la-ixfr.lo knot/nameserver/libknot= d_la-notify.lo knot/nameserver/libknotd_la-nsec_proofs.lo knot/nameserver= /libknotd_la-process_answer.lo knot/nameserver/libknotd_la-process_query.l= o knot/nameserver/libknotd_la-query_module.lo knot/nameserver/libknotd_la= -tsig_ctx.lo knot/nameserver/libknotd_la-update.lo knot/common/libknotd_l= a-evsched.lo knot/common/libknotd_la-fdset.lo knot/common/libknotd_la-log= =2Elo knot/common/libknotd_la-ref.lo knot/server/libknotd_la-dthreads.lo = knot/server/libknotd_la-journal.lo knot/server/libknotd_la-rrl.lo knot/s= erver/libknotd_la-serialization.lo knot/server/libknotd_la-server.lo knot= /server/libknotd_la-tcp-handler.lo knot/server/libknotd_la-udp-handler.lo = knot/updates/libknotd_la-acl.lo knot/updates/libknotd_la-apply.lo knot/u= pdates/libknotd_la-changesets.lo knot/updates/libknotd_la-ddns.lo knot/up= dates/libknotd_la-zone-update.lo knot/worker/libknotd_la-pool.lo knot/wor= ker/libknotd_la-queue.lo knot/zone/libknotd_la-contents.lo knot/zone/even= ts/libknotd_la-events.lo knot/zone/events/libknotd_la-handlers.lo knot/zo= ne/events/libknotd_la-replan.lo knot/zone/libknotd_la-node.lo knot/zone/l= ibknotd_la-semantic-check.lo knot/zone/libknotd_la-serial.lo knot/zone/li= bknotd_la-timers.lo knot/zone/libknotd_la-zone-diff.lo knot/zone/libknotd= _la-zone-dump.lo knot/zone/libknotd_la-zone-load.lo knot/zone/libknotd_la= -zone-tree.lo knot/zone/libknotd_la-zone.lo knot/zone/libknotd_la-zonedb-= load.lo knot/zone/libknotd_la-zonedb.lo knot/zone/libknotd_la-zonefile.lo= libknot.la libknot-yparser.la zscanner/libzscanner.la -L/usr/local/lib= -lurcu -lpthread -lm /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o libknotus.la utils/common/libknotus= _la-exec.lo utils/common/libknotus_la-hex.lo utils/common/libknotus_la-ms= g.lo utils/common/libknotus_la-netio.lo utils/common/libknotus_la-params.= lo utils/common/libknotus_la-resolv.lo utils/common/libknotus_la-sign.lo = utils/common/libknotus_la-token.lo libknot.la -lpthread -lm libtool: link: ar cru .libs/libknotus.a utils/common/.libs/libknotus_la-exe= c.o utils/common/.libs/libknotus_la-hex.o utils/common/.libs/libknotus_la-m= sg.o utils/common/.libs/libknotus_la-netio.o utils/common/.libs/libknotus_l= a-params.o utils/common/.libs/libknotus_la-resolv.o utils/common/.libs/libk= notus_la-sign.o utils/common/.libs/libknotus_la-token.o=20 libtool: link: ranlib .libs/libknotus.a libtool: link: ( cd ".libs" && rm -f "libknotus.la" && ln -s "../libknotus.= la" "libknotus.la" ) /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o kdig utils/kdig/kdig_exec.o utils/kd= ig/kdig_main.o utils/kdig/kdig_params.o libknotus.la -lpthread -lm /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o khost utils/kdig/kdig_exec.o utils/k= dig/kdig_params.o utils/khost/khost_main.o utils/khost/khost_params.o li= bknotus.la -lpthread -lm /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o knsupdate utils/knsupdate/knsupdate_e= xec.o utils/knsupdate/knsupdate_main.o utils/knsupdate/knsupdate_params.o= zscanner/libzscanner.la libknotus.la -lpthread -lm libtool: link: (cd .libs/libknotd.lax/libknot-yparser.a && ar x "/wrkdirs/u= sr/ports/dns/knot2/work/knot-2.0.0/src/./.libs/libknot-yparser.a") libtool: link: ar cru .libs/libknotd.a knot/conf/.libs/libknotd_la-base.o k= not/conf/.libs/libknotd_la-conf.o knot/conf/.libs/libknotd_la-confdb.o knot= /conf/.libs/libknotd_la-scheme.o knot/conf/.libs/libknotd_la-tools.o knot/c= tl/.libs/libknotd_la-estimator.o knot/ctl/.libs/libknotd_la-process.o knot/= ctl/.libs/libknotd_la-remote.o knot/dnssec/.libs/libknotd_la-context.o knot= /dnssec/.libs/libknotd_la-nsec-chain.o knot/dnssec/.libs/libknotd_la-nsec3-= chain.o knot/dnssec/.libs/libknotd_la-policy.o knot/dnssec/.libs/libknotd_l= a-rrset-sign.o knot/dnssec/.libs/libknotd_la-zone-events.o knot/dnssec/.lib= s/libknotd_la-zone-keys.o knot/dnssec/.libs/libknotd_la-zone-nsec.o knot/dn= ssec/.libs/libknotd_la-zone-sign.o knot/modules/.libs/libknotd_la-synth_rec= ord.o knot/modules/.libs/libknotd_la-dnsproxy.o knot/nameserver/.libs/libkn= otd_la-axfr.o knot/nameserver/.libs/libknotd_la-capture.o knot/nameserver/.= libs/libknotd_la-chaos.o knot/nameserver/.libs/libknotd_la-internet.o knot/= nameserver/.libs/libknotd_la-ixfr.o knot/nameserver/.libs/libknotd_la-notif= y.o knot/nameserver/.libs/libknotd_la-nsec_proofs.o knot/nameserver/.libs/l= ibknotd_la-process_answer.o knot/nameserver/.libs/libknotd_la-process_query= =2Eo knot/nameserver/.libs/libknotd_la-query_module.o knot/nameserver/.libs= /libknotd_la-tsig_ctx.o knot/nameserver/.libs/libknotd_la-update.o knot/com= mon/.libs/libknotd_la-evsched.o knot/common/.libs/libknotd_la-fdset.o knot/= common/.libs/libknotd_la-log.o knot/common/.libs/libknotd_la-ref.o knot/ser= ver/.libs/libknotd_la-dthreads.o knot/server/.libs/libknotd_la-journal.o kn= ot/server/.libs/libknotd_la-rrl.o knot/server/.libs/libknotd_la-serializati= on.o knot/server/.libs/libknotd_la-server.o knot/server/.libs/libknotd_la-t= cp-handler.o knot/server/.libs/libknotd_la-udp-handler.o knot/updates/.libs= /libknotd_la-acl.o knot/updates/.libs/libknotd_la-apply.o knot/updates/.lib= s/libknotd_la-changesets.o knot/updates/.libs/libknotd_la-ddns.o knot/updat= es/.libs/libknotd_la-zone-update.o knot/worker/.libs/libknotd_la-pool.o kno= t/worker/.libs/libknotd_la-queue.o knot/zone/.libs/libknotd_la-contents.o k= not/zone/events/.libs/libknotd_la-events.o knot/zone/events/.libs/libknotd_= la-handlers.o knot/zone/events/.libs/libknotd_la-replan.o knot/zone/.libs/l= ibknotd_la-node.o knot/zone/.libs/libknotd_la-semantic-check.o knot/zone/.l= ibs/libknotd_la-serial.o knot/zone/.libs/libknotd_la-timers.o knot/zone/.li= bs/libknotd_la-zone-diff.o knot/zone/.libs/libknotd_la-zone-dump.o knot/zon= e/.libs/libknotd_la-zone-load.o knot/zone/.libs/libknotd_la-zone-tree.o kno= t/zone/.libs/libknotd_la-zone.o knot/zone/.libs/libknotd_la-zonedb-load.o k= not/zone/.libs/libknotd_la-zonedb.o knot/zone/.libs/libknotd_la-zonefile.o = .libs/libknotd.lax/libknot-yparser.a/yparser.o .libs/libknotd.lax/libknot= -yparser.a/ypbody.o .libs/libknotd.lax/libknot-yparser.a/ypformat.o .libs/l= ibknotd.lax/libknot-yparser.a/ypscheme.o .libs/libknotd.lax/libknot-yparser= =2Ea/yptrafo.o=20 libtool: link: ranlib .libs/libknotd.a libtool: link: rm -fr .libs/libknotd.lax libtool: link: ( cd ".libs" && rm -f "libknotd.la" && ln -s "../libknotd.la= " "libknotd.la" ) /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o knot1to2 utils/knot1to2/cf-lex.o uti= ls/knot1to2/cf-parse.tab.o utils/knot1to2/extra.o utils/knot1to2/includes= =2Eo utils/knot1to2/main.o libknotd.la -lpthread -lm libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/kdig utils/kdig/kdig_exec.o utils/kdig/kdig_main.o utils/kdig/kdig_= params.o ./.libs/libknotus.a /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/= src/.libs/libknot.so -L/usr/local/lib /wrkdirs/usr/ports/dns/knot2/work/kno= t-2.0.0/src/dnssec/.libs/libdnssec.so -llmdb -lgnutls -lnettle -ljansson -l= pthread -lm -Wl,-rpath -Wl,/usr/local/lib libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/khost utils/kdig/kdig_exec.o utils/kdig/kdig_params.o utils/khost/k= host_main.o utils/khost/khost_params.o ./.libs/libknotus.a /wrkdirs/usr/po= rts/dns/knot2/work/knot-2.0.0/src/.libs/libknot.so -L/usr/local/lib /wrkdir= s/usr/ports/dns/knot2/work/knot-2.0.0/src/dnssec/.libs/libdnssec.so -llmdb = -lgnutls -lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/knsupdate utils/knsupdate/knsupdate_exec.o utils/knsupdate/knsupdat= e_main.o utils/knsupdate/knsupdate_params.o zscanner/.libs/libzscanner.so = =2E/.libs/libknotus.a /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/.lib= s/libknot.so -L/usr/local/lib /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/= src/dnssec/.libs/libdnssec.so -llmdb -lgnutls -lnettle -ljansson -lpthread = -lm -Wl,-rpath -Wl,/usr/local/lib libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/knot1to2 utils/knot1to2/cf-lex.o utils/knot1to2/cf-parse.tab.o util= s/knot1to2/extra.o utils/knot1to2/includes.o utils/knot1to2/main.o ./.libs= /libknotd.a -L/usr/local/lib /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/s= rc/.libs/libknot.so /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/dnssec= /.libs/libdnssec.so /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/zscann= er/.libs/libzscanner.so -lurcu -llmdb -lgnutls -lnettle -ljansson -lpthread= -lm -Wl,-rpath -Wl,/usr/local/lib /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o knotc knot/ctl/knotc_main.o libknotd.= la -lpthread -lm /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o knotd knot/knotd-main.o libknotd.la -= L/usr/local/lib -lurcu -lpthread -lm libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/knotc knot/ctl/knotc_main.o ./.libs/libknotd.a -L/usr/local/lib /w= rkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src/.libs/libknot.so /wrkdirs/us= r/ports/dns/knot2/work/knot-2.0.0/src/dnssec/.libs/libdnssec.so /wrkdirs/us= r/ports/dns/knot2/work/knot-2.0.0/src/zscanner/.libs/libzscanner.so -lurcu = -llmdb -lgnutls -lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/= lib libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/knotd knot/knotd-main.o ./.libs/libknotd.a -L/usr/local/lib /wrkdi= rs/usr/ports/dns/knot2/work/knot-2.0.0/src/.libs/libknot.so /wrkdirs/usr/po= rts/dns/knot2/work/knot-2.0.0/src/dnssec/.libs/libdnssec.so /wrkdirs/usr/po= rts/dns/knot2/work/knot-2.0.0/src/zscanner/.libs/libzscanner.so -lurcu -llm= db -lgnutls -lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib Making all in tests Making all in tests-fuzz depbase=3D`echo packet.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`; cc -std=3Dgnu= 99 -DHAVE_CONFIG_H -I. -I../src -include ../src/config.h -I../src -O2 = -pipe -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-securit= y -Werror=3Dimplicit -MT packet.o -MD -MP -MF $depbase.Tpo -c -o packet.o p= acket.c && mv -f $depbase.Tpo $depbase.Po /bin/sh ../libtool --tag=3DCC --mode=3Dlink cc -std=3Dgnu99 -O2 -pipe = -fstack-protector -fno-strict-aliasing -Wall -Werror=3Dformat-security -Wer= ror=3Dimplicit -fstack-protector -o packet packet.o ../src/libknot.la -lp= thread -lm libtool: link: cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-alia= sing -Wall -Werror=3Dformat-security -Werror=3Dimplicit -fstack-protector -= o .libs/packet packet.o ../src/.libs/libknot.so -L/usr/local/lib /wrkdirs/= usr/ports/dns/knot2/work/knot-2.0.0/src/dnssec/.libs/libdnssec.so -llmdb -l= gnutls -lnettle -ljansson -lpthread -lm -Wl,-rpath -Wl,/usr/local/lib Making all in samples Making all in doc mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knot.conf.5in > man/knot.conf.5 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knotc.8in > man/knotc.8 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/kdig.1in > man/kdig.1 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knotd.8in > man/knotd.8 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/khost.1in > man/khost.1 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knsupdate.1in > man/knsupdate.1 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knot1to2.1in > man/knot1to2.1 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/knsec3hash.1in > man/knsec3hash.1 mkdir -p man; sed -e 's,[@]VERSION@,2.0.0,' -e 's,[@]RELEASE_DATE@,2015-06-= 26,' man/keymgr.8in > man/keymgr.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Checking for filesystem violations... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Recording filesystem state for prestage... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Staging for knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - found (/u= sr/local/lib/libfstrm.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - found (/= usr/local/lib/libgnutls.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - found (= /usr/local/lib/libjansson.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - found (/us= r/local/lib/liblmdb.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - found (/us= r/local/lib/liburcu.so) =3D=3D=3D> Generating temporary packing list =3D=3D=3D> Creating users and/or groups. if test -z 'strip'; then /usr/bin/make INSTALL_PROGRAM=3D"/bin/sh /wrkdir= s/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s" install_sh_PROGRAM= =3D"/bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s" = INSTALL_STRIP_FLAG=3D-s install; else /usr/bin/make INSTALL_PROGRAM=3D"= /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s" ins= tall_sh_PROGRAM=3D"/bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/ins= tall-sh -c -s" INSTALL_STRIP_FLAG=3D-s "INSTALL_PROGRAM_ENV=3DSTRIPPROG=3D= 'strip'" install; fi Making install in libtap Making install in src Making install in zscanner /usr/bin/make install-am /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' /bin/sh ../../libtool --mode=3Dinstall /usr/bin/install -c -s libzscann= er.la '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' libtool: install: /usr/bin/install -c .libs/libzscanner.so.0.0.1 /wrkdirs/u= sr/ports/dns/knot2/work/stage/usr/local/lib/libzscanner.so.0.0.1 libtool: install: strip --strip-unneeded /wrkdirs/usr/ports/dns/knot2/work/= stage/usr/local/lib/libzscanner.so.0.0.1 libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libzscanner.so.0.0.1 libzscanner.so.0 || { rm -f libzscanner= =2Eso.0 && ln -s libzscanner.so.0.0.1 libzscanner.so.0; }; }) libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libzscanner.so.0.0.1 libzscanner.so || { rm -f libzscanner.s= o && ln -s libzscanner.so.0.0.1 libzscanner.so; }; }) libtool: install: /usr/bin/install -c .libs/libzscanner.lai /wrkdirs/usr/po= rts/dns/knot2/work/stage/usr/local/lib/libzscanner.la libtool: install: /usr/bin/install -c .libs/libzscanner.a /wrkdirs/usr/port= s/dns/knot2/work/stage/usr/local/lib/libzscanner.a libtool: install: strip --strip-debug /wrkdirs/usr/ports/dns/knot2/work/sta= ge/usr/local/lib/libzscanner.a libtool: install: chmod 644 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/lib/libzscanner.a libtool: install: ranlib /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= lib/libzscanner.a libtool: install: warning: remember to run `libtool --finish /usr/local/lib' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libdata/p= kgconfig' install -m 0644 libzscanner.pc '/wrkdirs/usr/ports/dns/knot2/work/stage/u= sr/local/libdata/pkgconfig' Making install in dnssec Making install in . /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' /bin/sh ../../libtool --mode=3Dinstall /usr/bin/install -c -s libdnssec= =2Ela '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' libtool: install: /usr/bin/install -c .libs/libdnssec.so.0.0.0 /wrkdirs/usr= /ports/dns/knot2/work/stage/usr/local/lib/libdnssec.so.0.0.0 libtool: install: strip --strip-unneeded /wrkdirs/usr/ports/dns/knot2/work/= stage/usr/local/lib/libdnssec.so.0.0.0 libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libdnssec.so.0.0.0 libdnssec.so.0 || { rm -f libdnssec.so.0 = && ln -s libdnssec.so.0.0.0 libdnssec.so.0; }; }) libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libdnssec.so.0.0.0 libdnssec.so || { rm -f libdnssec.so && l= n -s libdnssec.so.0.0.0 libdnssec.so; }; }) libtool: install: /usr/bin/install -c .libs/libdnssec.lai /wrkdirs/usr/port= s/dns/knot2/work/stage/usr/local/lib/libdnssec.la libtool: install: /usr/bin/install -c .libs/libdnssec.a /wrkdirs/usr/ports/= dns/knot2/work/stage/usr/local/lib/libdnssec.a libtool: install: strip --strip-debug /wrkdirs/usr/ports/dns/knot2/work/sta= ge/usr/local/lib/libdnssec.a libtool: install: chmod 644 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/lib/libdnssec.a libtool: install: ranlib /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= lib/libdnssec.a libtool: install: warning: remember to run `libtool --finish /usr/local/lib' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/d= nssec' install -m 0644 lib/dnssec/binary.h lib/dnssec/crypto.h lib/dnssec/error.= h lib/dnssec/event.h lib/dnssec/kasp.h lib/dnssec/key.h lib/dnssec/keyid.h = lib/dnssec/keystore.h lib/dnssec/keytag.h lib/dnssec/list.h lib/dnssec/nsec= =2Eh lib/dnssec/random.h lib/dnssec/sign.h lib/dnssec/tsig.h '/wrkdirs/usr/= ports/dns/knot2/work/stage/usr/local/include/dnssec' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libdata/p= kgconfig' install -m 0644 libdnssec.pc '/wrkdirs/usr/ports/dns/knot2/work/stage/usr= /local/libdata/pkgconfig' Making install in utils /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' STRIPPROG=3D'strip' /bin/sh ../../../libtool --mode=3Dinstall /bin/sh /w= rkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s knsec3hash '/wr= kdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' libtool: install: warning: `./../libdnssec.la' has not been installed in `/= usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knsec3hash /wrkdirs/usr/ports/dns/knot2/work/stage/usr/l= ocal/bin/knsec3hash /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/sbin' STRIPPROG=3D'strip' /bin/sh ../../../libtool --mode=3Dinstall /bin/sh /w= rkdirs/usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s keymgr '/wrkdir= s/usr/ports/dns/knot2/work/stage/usr/local/sbin' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/keymgr /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local= /sbin/keymgr Making install in tests Making install in dnstap /usr/bin/make install-am Making install in . /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' /bin/sh ../libtool --mode=3Dinstall /usr/bin/install -c -s libknot.la '= /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib' libtool: install: warning: relinking `libknot.la' libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/src; /bi= n/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/libtool --tag CC --mode= =3Drelink cc -std=3Dgnu99 -O2 -pipe -fstack-protector -fno-strict-aliasing = -Wall -Werror=3Dformat-security -Werror=3Dimplicit -version-info 1:0:0 -L/u= sr/local/lib -llmdb -fstack-protector -o libknot.la -rpath /usr/local/lib l= ibknot/libknot_la-binary.lo libknot/libknot_la-consts.lo libknot/libknot_la= -descriptor.lo libknot/libknot_la-dname.lo libknot/libknot_la-errcode.lo li= bknot/packet/libknot_la-compr.lo libknot/packet/libknot_la-pkt.lo libknot/p= acket/libknot_la-rrset-wire.lo libknot/processing/libknot_la-layer.lo libkn= ot/processing/libknot_la-overlay.lo libknot/processing/libknot_la-requestor= =2Elo libknot/libknot_la-rdata.lo libknot/libknot_la-rdataset.lo libknot/li= bknot_la-rrset-dump.lo libknot/libknot_la-rrset.lo libknot/rrtype/libknot_l= a-nsec3.lo libknot/rrtype/libknot_la-nsec3param.lo libknot/rrtype/libknot_l= a-opt.lo libknot/rrtype/libknot_la-tsig.lo libknot/libknot_la-tsig-op.lo li= bknot/libknot_la-tsig.lo dnssec/libdnssec.la libknot-internal.la -lpthread = -lm -inst-prefix-dir /wrkdirs/usr/ports/dns/knot2/work/stage) libtool: relink: cc -std=3Dgnu99 -shared -fPIC -DPIC libknot/.libs/libkno= t_la-binary.o libknot/.libs/libknot_la-consts.o libknot/.libs/libknot_la-de= scriptor.o libknot/.libs/libknot_la-dname.o libknot/.libs/libknot_la-errcod= e.o libknot/packet/.libs/libknot_la-compr.o libknot/packet/.libs/libknot_la= -pkt.o libknot/packet/.libs/libknot_la-rrset-wire.o libknot/processing/.lib= s/libknot_la-layer.o libknot/processing/.libs/libknot_la-overlay.o libknot/= processing/.libs/libknot_la-requestor.o libknot/.libs/libknot_la-rdata.o li= bknot/.libs/libknot_la-rdataset.o libknot/.libs/libknot_la-rrset-dump.o lib= knot/.libs/libknot_la-rrset.o libknot/rrtype/.libs/libknot_la-nsec3.o libkn= ot/rrtype/.libs/libknot_la-nsec3param.o libknot/rrtype/.libs/libknot_la-opt= =2Eo libknot/rrtype/.libs/libknot_la-tsig.o libknot/.libs/libknot_la-tsig-o= p.o libknot/.libs/libknot_la-tsig.o -Wl,--whole-archive ./.libs/libknot-in= ternal.a -Wl,--no-whole-archive -Wl,-rpath -Wl,/usr/local/lib -L/usr/local= /lib -llmdb dnssec/.libs/libdnssec.so -lgnutls -lnettle -ljansson -lpthread= -lm -O2 -fstack-protector -fstack-protector -Wl,-soname -Wl,libknot.so.= 1 -o .libs/libknot.so.1.0.0 libtool: install: /usr/bin/install -c .libs/libknot.so.1.0.0T /wrkdirs/usr/= ports/dns/knot2/work/stage/usr/local/lib/libknot.so.1.0.0 libtool: install: strip --strip-unneeded /wrkdirs/usr/ports/dns/knot2/work/= stage/usr/local/lib/libknot.so.1.0.0 libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libknot.so.1.0.0 libknot.so.1 || { rm -f libknot.so.1 && ln = -s libknot.so.1.0.0 libknot.so.1; }; }) libtool: install: (cd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/lib= && { ln -s -f libknot.so.1.0.0 libknot.so || { rm -f libknot.so && ln -s l= ibknot.so.1.0.0 libknot.so; }; }) libtool: install: /usr/bin/install -c .libs/libknot.lai /wrkdirs/usr/ports/= dns/knot2/work/stage/usr/local/lib/libknot.la libtool: install: /usr/bin/install -c .libs/libknot.a /wrkdirs/usr/ports/dn= s/knot2/work/stage/usr/local/lib/libknot.a libtool: install: strip --strip-debug /wrkdirs/usr/ports/dns/knot2/work/sta= ge/usr/local/lib/libknot.a libtool: install: chmod 644 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/lib/libknot.a libtool: install: ranlib /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= lib/libknot.a libtool: install: warning: remember to run `libtool --finish /usr/local/lib' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' STRIPPROG=3D'strip' /bin/sh ../libtool --mode=3Dinstall /bin/sh /wrkdirs= /usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s kdig khost knsupdate = '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/bin' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/kdig /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/b= in/kdig libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/khost /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= bin/khost libtool: install: warning: `zscanner/libzscanner.la' has not been installed= in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knsupdate /wrkdirs/usr/ports/dns/knot2/work/stage/usr/lo= cal/bin/knsupdate /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libexec' STRIPPROG=3D'strip' /bin/sh ../libtool --mode=3Dinstall /bin/sh /wrkdirs= /usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s knot1to2 '/wrkdirs/us= r/ports/dns/knot2/work/stage/usr/local/libexec' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knot1to2 /wrkdirs/usr/ports/dns/knot2/work/stage/usr/loc= al/libexec/knot1to2 /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/sbin' STRIPPROG=3D'strip' /bin/sh ../libtool --mode=3Dinstall /bin/sh /wrkdirs= /usr/ports/dns/knot2/work/knot-2.0.0/install-sh -c -s knotc knotd '/wrkdirs= /usr/ports/dns/knot2/work/stage/usr/local/sbin' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knotc /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= sbin/knotc libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/libknot.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/dnssec/libdnssec.la' has not been installed in `/usr/local/lib' libtool: install: warning: `/wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/sr= c/zscanner/libzscanner.la' has not been installed in `/usr/local/lib' libtool: install: /bin/sh /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/inst= all-sh -c -s .libs/knotd /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/= sbin/knotd /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/internal/trie' install -m 0644 libknot/internal/trie/hat-trie.h libknot/internal/trie/m= urmurhash3.h '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/lib= knot/internal/trie' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/internal' install -m 0644 libknot/internal/array-sort.h libknot/internal/base32hex= =2Eh libknot/internal/base64.h libknot/internal/binsearch.h libknot/interna= l/consts.h libknot/internal/endian.h libknot/internal/errcode.h libknot/int= ernal/getline.h libknot/internal/heap.h libknot/internal/hhash.h libknot/in= ternal/lists.h libknot/internal/macros.h libknot/internal/mem.h libknot/int= ernal/mempattern.h libknot/internal/mempool.h libknot/internal/net.h libkno= t/internal/print.h libknot/internal/sockaddr.h libknot/internal/strlcat.h l= ibknot/internal/strlcpy.h libknot/internal/tolower.h libknot/internal/utils= =2Eh '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/libknot/int= ernal' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/internal/namedb' install -m 0644 libknot/internal/namedb/namedb.h libknot/internal/namedb= /namedb_lmdb.h libknot/internal/namedb/namedb_trie.h '/wrkdirs/usr/ports/dn= s/knot2/work/stage/usr/local/include/libknot/internal/namedb' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot' install -m 0644 libknot/binary.h libknot/consts.h libknot/descriptor.h l= ibknot/dname.h libknot/errcode.h libknot/libknot.h libknot/rdata.h libknot/= rdataset.h libknot/rrset-dump.h libknot/rrset.h libknot/tsig-op.h libknot/t= sig.h '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/libknot' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/rrtype' install -m 0644 libknot/rrtype/aaaa.h libknot/rrtype/dnskey.h libknot/rr= type/naptr.h libknot/rrtype/nsec.h libknot/rrtype/nsec3.h libknot/rrtype/ns= ec3param.h libknot/rrtype/opt.h libknot/rrtype/rdname.h libknot/rrtype/rrsi= g.h libknot/rrtype/soa.h libknot/rrtype/tsig.h '/wrkdirs/usr/ports/dns/knot= 2/work/stage/usr/local/include/libknot/rrtype' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/processing' install -m 0644 libknot/processing/layer.h libknot/processing/overlay.h = libknot/processing/requestor.h '/wrkdirs/usr/ports/dns/knot2/work/stage/usr= /local/include/libknot/processing' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/include/l= ibknot/packet' install -m 0644 libknot/packet/compr.h libknot/packet/pkt.h libknot/pack= et/rrset-wire.h libknot/packet/wire.h '/wrkdirs/usr/ports/dns/knot2/work/st= age/usr/local/include/libknot/packet' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/libdata/p= kgconfig' install -m 0644 libknot.pc '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/l= ocal/libdata/pkgconfig' /usr/bin/make install-data-hook /usr/bin/install -c -d /wrkdirs/usr/ports/dns/knot2/work/stage//usr/local/e= tc/knot #/usr/bin/install -c -d /wrkdirs/usr/ports/dns/knot2/work/stage//var/run/kn= ot #/usr/bin/install -c -d /wrkdirs/usr/ports/dns/knot2/work/stage//var/db/knot Making install in tests Making install in tests-fuzz Making install in samples rm -f knot.sample.conf knot.sample.conf.tmp srcdir=3D''; test -f ./knot.sample.conf.in || srcdir=3D./; sed -e 's|@ve= rsion[@]|2.0.0|g' -e 's|@package[@]|knot|g' -e 's|@localstatedir[@]|/var|= g' -e 's|@prefix[@]|/usr/local|g' -e 's|@sysconfdir[@]|/usr/local/etc|g' = -e 's|@config_dir[@]|/usr/local/etc/knot|g' -e 's|@storage_dir[@]|/var/db= /knot|g' -e 's|@run_dir[@]|/var/run/knot|g' ${srcdir}knot.sample.conf.in >= knot.sample.conf.tmp mv knot.sample.conf.tmp knot.sample.conf if [ \! -f /wrkdirs/usr/ports/dns/knot2/work/stage//usr/local/etc/knot/knot= =2Esample.conf ]; then /usr/bin/install -c -d /wrkdirs/usr/ports/dns/knot2= /work/stage//usr/local/etc/knot; install -m 0644 knot.sample.conf ./examp= le.com.zone /wrkdirs/usr/ports/dns/knot2/work/stage//usr/local/etc/knot; fi Making install in doc /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man1' install -m 0644 man/kdig.1 man/khost.1 man/knsupdate.1 man/knot1to2.1 man= /knsec3hash.1 '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man1' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man5' install -m 0644 man/knot.conf.5 '/wrkdirs/usr/ports/dns/knot2/work/stage/= usr/local/man/man5' /bin/mkdir -p '/wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/man/man8' install -m 0644 man/knotc.8 man/knotd.8 man/keymgr.8 '/wrkdirs/usr/ports/= dns/knot2/work/stage/usr/local/man/man8' /bin/mv /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/etc/knot/knot.sam= ple.conf /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/etc/knot/knot.c= onf.sample install -m 0644 /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/AUTHORS /wrkd= irs/usr/ports/dns/knot2/work/knot-2.0.0/COPYING /wrkdirs/usr/ports/dns/knot= 2/work/knot-2.0.0/ChangeLog /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/IN= STALL /wrkdirs/usr/ports/dns/knot2/work/knot-2.0.0/NEWS /wrkdirs/usr/ports/= dns/knot2/work/knot-2.0.0/README /wrkdirs/usr/ports/dns/knot2/work/knot-2.0= =2E0/THANKS /wrkdirs/usr/ports/dns/knot2/work/stage/usr/local/share/doc/kno= t/ =3D=3D=3D=3D> Compressing man pages (compress-man) =3D=3D=3D> Staging rc.d startup script(s) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D> Running Q/A tests (stage-qa) =3D=3D=3D=3D> Checking for pkg-plist issues (check-plist) =3D=3D=3D> Parsing plist =3D=3D=3D> Checking for items in STAGEDIR missing from pkg-plist =3D=3D=3D> Checking for items in pkg-plist which are not in STAGEDIR =3D=3D=3D> No pkg-plist issues found (check-plist) =3D=3D=3D=3D>> Checking for staging violations... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Building package for knot2-2.0.0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Recording filesystem state for preinst... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Installing for knot2-2.0.0 =3D=3D=3D> knot2-2.0.0 depends on shared library: libfstrm.so - found (/u= sr/local/lib/libfstrm.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libgnutls.so - found (/= usr/local/lib/libgnutls.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libjansson.so - found (= /usr/local/lib/libjansson.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liblmdb.so - found (/us= r/local/lib/liblmdb.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: libnettle.so - found (/= usr/local/lib/libnettle.so) =3D=3D=3D> knot2-2.0.0 depends on shared library: liburcu.so - found (/us= r/local/lib/liburcu.so) =3D=3D=3D> Checking if knot2 already installed =3D=3D=3D> Registering installation for knot2-2.0.0 [93amd64-default] Installing knot2-2.0.0... =3D=3D=3D> Creating users and/or groups. Creating group 'knot' with gid '553'. Creating user 'knot' with uid '553'. ###################################################################### To start using Knot DNS, you should complete the following tasks: cp /usr/local/etc/knot/knot.conf.sample /usr/local/etc/knot/knot.conf $EDITOR /usr/local/etc/knot/knot.conf sysrc knot_enable=3DYES sysrc knot_config=3D/usr/local/etc/knot/knot.conf service knot start Traditional (pre-FreeBSD 9.2) method, for last three commands: echo knot_enable=3D\"YES\" >> /etc/rc.conf echo knot_config=3D\"/usr/local/etc/knot/knot.conf\" >> /etc/rc.conf /usr/local/etc/rc.d/knot start ###################################################################### When upgrading from a previous version of Knot, the configuration syntax changed changed severely. Please consult the documentation: - man knot.conf - https://www.knot-dns.cz/docs/2.0/html/configuration.html ###################################################################### =3D=3D=3D> SECURITY REPORT:=20 This port has installed the following files which may act as network servers and may therefore pose a remote security risk to the system. /usr/local/bin/knsupdate /usr/local/bin/khost /usr/local/sbin/knotc /usr/local/sbin/knotd /usr/local/bin/kdig This port has installed the following startup scripts which may cause these network services to be started at boot time. /usr/local/etc/rc.d/knot If there are vulnerabilities in these programs there may be a security risk to the system. FreeBSD makes no guarantee about the security of ports included in the Ports Collection. Please type 'make deinstall' to deinstall the port if this is a concern. For more information, and contact details about the security status of this software, see the following webpage:=20 http://www.knot-dns.cz/ =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Checking shared library dependencies 0x0000000000000001 (NEEDED) Shared library: [libc.so.7] 0x0000000000000001 (NEEDED) Shared library: [libdnssec.so.0] 0x0000000000000001 (NEEDED) Shared library: [libgnutls.so.28] 0x0000000000000001 (NEEDED) Shared library: [libjansson.so.4] 0x0000000000000001 (NEEDED) Shared library: [libknot.so.1] 0x0000000000000001 (NEEDED) Shared library: [liblmdb.so] 0x0000000000000001 (NEEDED) Shared library: [libm.so.5] 0x0000000000000001 (NEEDED) Shared library: [libnettle.so.4] 0x0000000000000001 (NEEDED) Shared library: [libthr.so.3] 0x0000000000000001 (NEEDED) Shared library: [liburcu.so.1] 0x0000000000000001 (NEEDED) Shared library: [libzscanner.so.0] =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Deinstalling for knot2 =3D=3D=3D> Deinstalling knot2-2.0.0 Updating database digests format: .......... done Checking integrity... done (0 conflicting) Deinstallation has been requested for the following 1 packages (of 0 packag= es in the universe): Installed packages to be REMOVED: knot2-2.0.0 The operation will free 2 MiB. [93amd64-default] [1/1] Deinstalling knot2-2.0.0... =3D=3D> You should manually remove the "knot" user.=20 [93amd64-default] [1/1] Deleting files for knot2-2.0.0: .......... done =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D>> Checking for extra files and directories [00:01:59] =3D=3D=3D=3D>> Installing from package [93amd64-default] Installing knot2-2.0.0... =3D=3D=3D> Creating users and/or groups. Using existing group 'knot'. Using existing user 'knot'. [93amd64-default] Extracting knot2-2.0.0: .......... done Message for knot2-2.0.0: ###################################################################### To start using Knot DNS, you should complete the following tasks: cp /usr/local/etc/knot/knot.conf.sample /usr/local/etc/knot/knot.conf $EDITOR /usr/local/etc/knot/knot.conf sysrc knot_enable=3DYES sysrc knot_config=3D/usr/local/etc/knot/knot.conf service knot start Traditional (pre-FreeBSD 9.2) method, for last three commands: echo knot_enable=3D\"YES\" >> /etc/rc.conf echo knot_config=3D\"/usr/local/etc/knot/knot.conf\" >> /etc/rc.conf /usr/local/etc/rc.d/knot start ###################################################################### When upgrading from a previous version of Knot, the configuration syntax changed changed severely. Please consult the documentation: - man knot.conf - https://www.knot-dns.cz/docs/2.0/html/configuration.html ###################################################################### [00:01:59] =3D=3D=3D=3D>> Cleaning up =3D=3D=3D> Cleaning for knot2-2.0.0 [00:01:59] =3D=3D=3D=3D>> Deinstalling package Updating database digests format: . done Checking integrity... done (0 conflicting) Deinstallation has been requested for the following 1 packages (of 0 packag= es in the universe): Installed packages to be REMOVED: knot2-2.0.0 The operation will free 2 MiB. [93amd64-default] [1/1] Deinstalling knot2-2.0.0... =3D=3D> You should manually remove the "knot" user.=20 [93amd64-default] [1/1] Deleting files for knot2-2.0.0: .......... done build of dns/knot2 ended at Sun Aug 9 13:24:09 UTC 2015 build time: 00:00:29 --IJpNTDwzlM2Ie8A6-- From owner-svn-ports-all@freebsd.org Sun Aug 9 12:14:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4414F99D9ED; Sun, 9 Aug 2015 12:14:19 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A9CAA49; Sun, 9 Aug 2015 12:14:19 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79CEIJa007550; Sun, 9 Aug 2015 12:14:18 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79CEIrN007547; Sun, 9 Aug 2015 12:14:18 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201508091214.t79CEIrN007547@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Sun, 9 Aug 2015 12:14:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393780 - in head/sysutils: bacula-docs bacula5-docs bareos-docs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:14:19 -0000 Author: mat Date: Sun Aug 9 12:14:17 2015 New Revision: 393780 URL: https://svnweb.freebsd.org/changeset/ports/393780 Log: If the port only install documentation, don't create an option to disable the docs. With hat: portmgr Sponsored by: Absolight Modified: head/sysutils/bacula-docs/Makefile head/sysutils/bacula5-docs/Makefile head/sysutils/bareos-docs/Makefile Modified: head/sysutils/bacula-docs/Makefile ============================================================================== --- head/sysutils/bacula-docs/Makefile Sun Aug 9 11:42:05 2015 (r393779) +++ head/sysutils/bacula-docs/Makefile Sun Aug 9 12:14:17 2015 (r393780) @@ -17,14 +17,6 @@ UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} PORTDOCS= *.pdf -OPTIONS_DEFINE= DOCS - -.include - -.if empty(PORT_OPTIONS:MDOCS) -IGNORE= consists of only documentation, please enable DOCS and try again -.endif - do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/sysutils/bacula5-docs/Makefile ============================================================================== --- head/sysutils/bacula5-docs/Makefile Sun Aug 9 11:42:05 2015 (r393779) +++ head/sysutils/bacula5-docs/Makefile Sun Aug 9 12:14:17 2015 (r393780) @@ -19,14 +19,6 @@ UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} PORTDOCS= *.pdf -OPTIONS_DEFINE= DOCS - -.include - -.if empty(PORT_OPTIONS:MDOCS) -IGNORE= consists of only documentation, please enable DOCS and try again -.endif - do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${FIND} ${WRKDIR}/${PORTNAME}-docs-${PORTVERSION}/manuals/en \ Modified: head/sysutils/bareos-docs/Makefile ============================================================================== --- head/sysutils/bareos-docs/Makefile Sun Aug 9 11:42:05 2015 (r393779) +++ head/sysutils/bareos-docs/Makefile Sun Aug 9 12:14:17 2015 (r393780) @@ -17,14 +17,6 @@ UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} PORTDOCS= *.pdf -OPTIONS_DEFINE= DOCS - -.include - -.if empty(PORT_OPTIONS:MDOCS) -IGNORE= consists of only documentation, please enable DOCS and try again -.endif - do-extract: ${MKDIR} ${WRKSRC} ${CP} ${DISTDIR}/${PORTNAME}-manual-main-reference.pdf ${WRKSRC} From owner-svn-ports-all@freebsd.org Sun Aug 9 12:19:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C2D599DADE; Sun, 9 Aug 2015 12:19:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D526BBE; Sun, 9 Aug 2015 12:19:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79CJ1kG007830; Sun, 9 Aug 2015 12:19:01 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79CJ1CI007829; Sun, 9 Aug 2015 12:19:01 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201508091219.t79CJ1CI007829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Sun, 9 Aug 2015 12:19:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393781 - head/dns/knot2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:19:01 -0000 Author: mat Date: Sun Aug 9 12:19:00 2015 New Revision: 393781 URL: https://svnweb.freebsd.org/changeset/ports/393781 Log: Fix build WITHOUT=DNSTAP. Submitted by: maintainer (via email) Sponsored by: Absolight Modified: head/dns/knot2/Makefile Modified: head/dns/knot2/Makefile ============================================================================== --- head/dns/knot2/Makefile Sun Aug 9 12:14:17 2015 (r393780) +++ head/dns/knot2/Makefile Sun Aug 9 12:19:00 2015 (r393781) @@ -13,7 +13,8 @@ COMMENT= High performance authoritative- LICENSE= GPLv3 -LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \ +LIB_DEPENDS= libfstrm.so:${PORTSDIR}/devel/fstrm \ + libgnutls.so:${PORTSDIR}/security/gnutls \ libjansson.so:${PORTSDIR}/devel/jansson \ liblmdb.so:${PORTSDIR}/databases/lmdb \ libnettle.so:${PORTSDIR}/security/nettle \ @@ -48,8 +49,7 @@ OPTIONS_DEFINE= DNSTAP FASTPARSER IDN DNSTAP_DESC= dnstap support (see dnstap.info) DNSTAP_CONFIGURE_ENABLE= dnstap -DNSTAP_LIB_DEPENDS= libfstrm.so:${PORTSDIR}/devel/fstrm \ - libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c +DNSTAP_LIB_DEPENDS= libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c FASTPARSER_DESC= Fast zone parser (demanding compilation) FASTPARSER_CONFIGURE_ENABLE= fastparser From owner-svn-ports-all@freebsd.org Sun Aug 9 12:19:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1765799DB57; Sun, 9 Aug 2015 12:19:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id D18DFCB3; Sun, 9 Aug 2015 12:19:55 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 58116BDC3E; Sun, 9 Aug 2015 14:19:47 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 2FA3FBDC1E; Sun, 9 Aug 2015 14:19:47 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 9D708408CBBF; Sun, 9 Aug 2015 14:19:46 +0200 (CEST) Date: Sun, 09 Aug 2015 14:19:46 +0200 From: Mathieu Arnold To: Leo Vandewoestijne cc: erwin@FreeBSD.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393685 - in head/dns/knot2: . files Message-ID: <10D5B78430B398008D69C140@atuin.in.mat.cc> In-Reply-To: <20150809115256.GA50813@relay7.ucia.gov> References: <201508070751.t777pjLs000674@repo.freebsd.org> <2CC2762BF6ABBED5C57AB963@atuin.in.mat.cc> <20150809115256.GA50813@relay7.ucia.gov> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========0E35CC97391695FA0049==========" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:19:56 -0000 --==========0E35CC97391695FA0049========== Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hi, +--On 9 ao=C3=BBt 2015 11:52:56 +0000 Leo Vandewoestijne = wrote: | Attached my patch and logs. Thanks, I committed the patch, without the PORTREVISION bump, it either built and brought the dependency if WITH=3DDNSTAP, or did not build WITHOUT=3DDNSTAP, so nothing changes. --=20 Mathieu Arnold --==========0E35CC97391695FA0049========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJVx0ViXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IvmMQAILXRa9fcLX5ByIiezObylVE 968ajP/X7q7uq98X36GR5VSVRDveYmp7vkwteQT8SJv6f1l0j0xeCoel7h72YNn9 hR0hxmql8NIb0LGjTd9iELAC9HKwiTRRty0KDgmI0vFmM5AgfUWNEXtQgKr9afdA 4o4nAHKzHQKD38GXGxA2WatrJi4HJIsI9RdMfo3Xc5FuzREDfnD9TTNnOPvLEBTx o4Ej4Nny5XHV9DXMTiobE5KfG7Y6sBznXTfdyjkcJcYq8NbGk8lrr1h3jZqTzFFE sgbwBP2K63pjvUwb7/G7OH3O8raNs/l+T3kBal38991I2TdFN760qh8R0xHZS+k6 DY8DZ5wnLezrJ/h1x1OTwM/Hs/7hDGPxBMgX6JEg3pKkbycNjGt7PwqjxZcBZIzA mA4SEC2IxYpPUX4QIKIL+9YICQfUkN6Bj/WS959Iy7/vtEw2GQxtJQyg0a6uM1oo aFPu8nyxncSXQMPZZF0PmR9jsVv1FAml6Cp7jk2JwPQvWoIqU1hb1caa+f7OgEJ2 XNmHMpewKY26zrccMelou/W40SUhrp7STqtZWtlruo0b08LIq/y+LWICzTvlUkk4 c84lf9fdtm5g5XETVvDLmxAaNTHFLt5D3PA5cz5x/0Pdza18h3ME8uZSyKQFXz+n w6HCMQQp57l32PndeE6g =sgZc -----END PGP SIGNATURE----- --==========0E35CC97391695FA0049==========-- From owner-svn-ports-all@freebsd.org Sun Aug 9 12:25:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E0A599DD68; Sun, 9 Aug 2015 12:25:00 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F041017C; Sun, 9 Aug 2015 12:24:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79COx0V011929; Sun, 9 Aug 2015 12:24:59 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79COx2r011925; Sun, 9 Aug 2015 12:24:59 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508091224.t79COx2r011925@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 9 Aug 2015 12:24:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393782 - head/multimedia/plexmediaserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:25:00 -0000 Author: feld Date: Sun Aug 9 12:24:58 2015 New Revision: 393782 URL: https://svnweb.freebsd.org/changeset/ports/393782 Log: multimedia/plexmediaserver: update to 0.9.12.8.1362 The plugins are now versioned, so use %%PLEX_BUILD%% to cut down on further pkg-plist churn. Relnotes: https://forums.plex.tv/discussion/comment/985893/#Comment_985893 Modified: head/multimedia/plexmediaserver/Makefile head/multimedia/plexmediaserver/distinfo head/multimedia/plexmediaserver/pkg-plist Modified: head/multimedia/plexmediaserver/Makefile ============================================================================== --- head/multimedia/plexmediaserver/Makefile Sun Aug 9 12:19:00 2015 (r393781) +++ head/multimedia/plexmediaserver/Makefile Sun Aug 9 12:24:58 2015 (r393782) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= plexmediaserver -PORTVERSION?= 0.9.12.4.1192 +PORTVERSION?= 0.9.12.8.1362 PORTREVISION?= 0 CATEGORIES= multimedia MASTER_SITES= http://downloads.plexapp.com/plex-media-server/${PORTVERSION}-${PLEX_BUILD}/ \ @@ -13,7 +13,7 @@ MAINTAINER?= feld@FreeBSD.org COMMENT= Plex Media Server component USES= tar:bzip2 -PLEX_BUILD?= 9a47d21 +PLEX_BUILD?= 4601e39 NO_BUILD= yes WRKSRC= ${WRKDIR}/PlexMediaServer-${PORTVERSION}-${PLEX_BUILD} @@ -21,6 +21,7 @@ USE_RC_SUBR?= ${PORTNAME} SUB_FILES= pkg-message SUB_LIST?= PORTNAME=${PORTNAME} DATADIR=${DATADIR} USERS=${USERS} GROUPS=${GROUPS} +PLIST_SUB+= PLEX_BUILD=${PLEX_BUILD} USERS= plex GROUPS= ${USERS} Modified: head/multimedia/plexmediaserver/distinfo ============================================================================== --- head/multimedia/plexmediaserver/distinfo Sun Aug 9 12:19:00 2015 (r393781) +++ head/multimedia/plexmediaserver/distinfo Sun Aug 9 12:24:58 2015 (r393782) @@ -1,2 +1,2 @@ -SHA256 (PlexMediaServer-0.9.12.4.1192-9a47d21-freebsd-amd64.tar.bz2) = fba8d1ac60705dfc43426f5a4fcb2908dd374a99f4917edb9eab56c05dd7d889 -SIZE (PlexMediaServer-0.9.12.4.1192-9a47d21-freebsd-amd64.tar.bz2) = 97168436 +SHA256 (PlexMediaServer-0.9.12.8.1362-4601e39-freebsd-amd64.tar.bz2) = d01187f7b8867f10a3d7389dca3ea35b0e8028c7e6c5f6e0c7d9e230874491b2 +SIZE (PlexMediaServer-0.9.12.8.1362-4601e39-freebsd-amd64.tar.bz2) = 96460717 Modified: head/multimedia/plexmediaserver/pkg-plist ============================================================================== --- head/multimedia/plexmediaserver/pkg-plist Sun Aug 9 12:19:00 2015 (r393781) +++ head/multimedia/plexmediaserver/pkg-plist Sun Aug 9 12:24:58 2015 (r393782) @@ -62,1945 +62,1797 @@ %%DATADIR%%/Resources/LICENSE %%DATADIR%%/Resources/Plex New Transcoder %%DATADIR%%/Resources/Plex Transcoder -%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Code/__init__.py -%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/DefaultPrefs.json -%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Resources/attribution.png -%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Resources/icon-default.png -%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/VERSION -%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/README.md -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD/i386/Frameworks/README -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD/i386/Libraries/README -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/BeautifulSoup.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/Eval.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/Guards.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/Limits.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/MutatingWalker.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/PrintCollector.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/RCompile.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/README.txt -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/RestrictionMutator.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/SelectCompiler.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/Utilities.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/notes.txt -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/before_and_after.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/before_and_after24.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/before_and_after25.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/before_and_after26.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/class.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/lambda.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/restricted_module.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/security_in_syntax.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/security_in_syntax26.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/testCompile.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/testREADME.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/testRestrictions.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/testUtiliities.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/unpack.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests/verify.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/binascii_plus.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/cerealizer/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/LICENSE.txt -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/aes.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/aes_cbc.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/aes_sbox_analysis.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/arc4.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/cbc.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/ccm.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/icedoll.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/rijndael.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/tkip_encr.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/trolldoll.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher/wep.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/common.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/entropy/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/entropy/pagingEntropy.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/entropy/prn_rijndael.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/errors.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/hash/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/hash/hash.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/hash/md5Hash.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/hash/sha1Hash.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash/hmacHash.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash/michael.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash/pbkdf2.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash/prf_dot11.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash/tkip_key_mixing.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash/tkip_mic.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/daemon.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/easter.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/parser.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/relativedelta.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/rrule.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/tz.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/tzwin.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/zoneinfo/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/demjson.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/feedparser.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/httplib_new.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/_version.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_array.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_collections.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_decimal.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_django_contrib_auth_models.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_django_db_models_base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_django_db_models_fields.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_django_db_models_query.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_django_utils_translation.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_elixir.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_google_appengine_ext_blobstore.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_google_appengine_ext_db.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_sets.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_sqlalchemy_orm.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/_sqlalchemy_orm_collections.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters/util.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/alias.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/amf0.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/amf3.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/codec.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/flex/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/flex/data.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/flex/messaging.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/python.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/amf0.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/amf3.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/client/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/gateway/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/gateway/django.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/gateway/google.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/gateway/twisted.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/gateway/wsgi.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/sol.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/util/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/util/imports.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/util/pure.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/versions.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/xml.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/LICENSE -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/lru.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/mapper.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/middleware.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/route.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes/util.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/subprocess_new.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/threading_new.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/auth.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/autoreload.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/database.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/epoll.c -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/escape.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/httpclient.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/httpserver.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/httputil.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/ioloop.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/iostream.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/locale.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/options.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/s3server.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/stack_context.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/template.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/README -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/httpserver_test.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/ioloop_test.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/runtests.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/stack_context_test.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/testing_test.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test/web_test.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/testing.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/web.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/win32_support.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/wsgi.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/urllib2_new.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/xpython.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/DB.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/FileTypes.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/HTTP.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/JSON.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/Locale.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/Log.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/MediaXML.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/MimeTypes.json -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/Plugin.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/Prefs.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/RSS.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/Shorthand.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/Thread.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/Utils.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/XML.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/YAML.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/__error.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS/oauth.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/bootstrap.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/importer.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/platform.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Client.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Constants.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Data.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Database.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Datetime.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Decorators.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Dict.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/HTTP.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Hash.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Helper.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/JSON.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Locale.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/MimeTypes.json -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Network.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Objects.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Platform.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Plist.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Plugin.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Prefs.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/RSS.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Request.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Resource.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Routes.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Shortcuts.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/String.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/Thread.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/XML.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/YAML.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/__error.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS/__objectManager.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/bootstrap.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/importer.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/platform.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Book1.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Book2.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/CD.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Camera.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Favorite.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/FlagGreen.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/FlagRed.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Gamepad.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Gear.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/History.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/More.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Network.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Popular.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Recent.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/Search.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/TV.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources/trust.json -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/__init__.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/common_models.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/common_records.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/common_templates.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/extra_models.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/movie_models.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/music_models.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/photo_models.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata/tv_models.pym -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/agentkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/cloudkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/constkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/corekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/cryptokit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/datakit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/helperkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/localekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/logkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/messagekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/modelkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/networkkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/objectkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/parsekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/playerkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/resourcekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/runtimekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/servicekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/streamkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/templatekit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/threadkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api/utilkit.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code/context.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code/loader.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code/preferences.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code/sandbox.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/caching.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/data.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/debugging.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/localization.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/messaging.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/myplex.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/notifications.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/runtime.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/services.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/storage.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/constants.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/core.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/docutils.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/exceptions.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/debugging.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/messaging.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/plugin.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/resources.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/runtime.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers/services.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/interfaces/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/interfaces/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/interfaces/pipeinterface.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/interfaces/socketinterface.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/accessor.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/attributes.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/classes.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/combination.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/model.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/namespace.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/objects.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/serialization.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling/templates.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/objects.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/base.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/cloudpolicy.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/elevatedpolicy.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/modelpolicy.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/servicepolicy.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/standardpolicy.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies/unpicklepolicy.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/utils.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/config.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/subsystem/__init__.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/subsystem/importer.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/subsystem/ospathfix.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/subsystem/propertyfix.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/subsystem/weakreffix.py -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Book1.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Book2.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Bundle.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/CD.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Camera.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Favorite.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/FlagGreen.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/FlagRed.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Gamepad.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Gear.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/History.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/LEGAL -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/More.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Network.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/NewStuff.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/NextPage.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Popular.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Prefs.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Recent.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/Search.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/TV.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources/World.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/icon-default.png -%%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/VERSION -%%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents/Code/__init__.py -%%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents/Resources/attribution.png -%%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents/Resources/icon-default.png -%%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents/VERSION -%%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/README.md -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Code/__init__.py -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/DefaultPrefs.json -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Resources/attribution.png -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Resources/icon-default.png -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Services/ServiceInfo.plist -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Services/URL/IVA/ServiceCode.pys -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/VERSION -%%DATADIR%%/Resources/Plug-ins/IMDB.bundle/README.md -%%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents/Code/__init__.py -%%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents/DefaultPrefs.json -%%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents/Resources/icon-default.png -%%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents/VERSION -%%DATADIR%%/Resources/Plug-ins/LastFM.bundle/README.md -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code/__init__.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code/audiohelpers.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code/config.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code/helpers.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code/localmedia.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code/subtitlehelpers.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code/videohelpers.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/DefaultPrefs.json -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/ID3.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/ID3v2.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/UnicodeHelper.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/PKG-INFO -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/__init__.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/atom.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/atomsearch.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/atomsearch_test.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/mp4file.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/__init__.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_compat.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_constants.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_id3frames.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_id3specs.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_id3util.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_util.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_vorbis.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/aiff.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/apev2.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/asf.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/easyid3.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/easymp4.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/flac.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/id3.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/m4a.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/monkeysaudio.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/mp3.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/mp4.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/musepack.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/ogg.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggflac.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggopus.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggspeex.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggtheora.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggvorbis.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/optimfrog.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/trueaudio.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/wavpack.py -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Resources/icon-default.png -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/VERSION -%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/README.md -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Info.plist -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio/1.33.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio/1.66.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio/1.78.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio/1.85.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio/2.20.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio/2.25.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio/2.35.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Channels/1.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Channels/2.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Channels/5.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Channels/6.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Channels/7.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Channels/8.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/aac.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/aif.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/aifc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/aiff.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/alac.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/ape.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/cdda.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/dolby_digital.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/dolby_pro.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/dolby_truehd.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/dts.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/dtshd_ma.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/eac3.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/flac.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/m4a.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/mlp.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/mp2.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/mp3.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/mpc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/ogg.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/pcm.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/ra.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/shn.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/wav.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/wave.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/wma.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/wmahd.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/wmapro.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/wmav2.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec/wv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/G.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/NC-17.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/NR.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/Not Rated.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/PG-13.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/PG.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/R.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/TV-14.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/TV-G.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/TV-MA.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/TV-PG.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/TV-Y.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/TV-Y7-FV.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/TV-Y7.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/Unrated.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/X.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/E.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/G.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/M.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/MA15+.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/MA15.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/PG.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/R18+.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/R18.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/X18+.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au/X18.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/ca/14A.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/ca/18A.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/ca/E.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/ca/G.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/ca/PG.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/ca/R.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/de/0.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/de/12.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/de/16.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/de/18.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/de/6.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/fr/-10.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/fr/-12.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/fr/-16.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/fr/-18.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/fr/Tout Public.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/fr/U.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb/12.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb/12A.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb/15.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb/18.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb/PG.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb/R18.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb/U.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/nl/12.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/nl/16.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/nl/6.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/nl/9.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/nl/AL.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/nl/Alle Leeftijden.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/1492_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/20th_century_fox.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/2929.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/360_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/40_acres.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/57_irving.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/777_film_corp.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/a_and_e.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/aardman.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/abandon.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/abc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/abc_australia.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/abc_family.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/adult_swim.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/afi.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/after_dark.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/alcon_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/alfred_hitchcock_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/alliance_atlantis.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/alloy.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/alphaville.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/amazon_studios.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ambience.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/amblin_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/amc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/american_masters.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/american_zoetrope.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/anchor_bay_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/animal_planet.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/antena_3.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/apatow_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/apple.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ard.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ark.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/arte.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/artisan_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/aspen_film_society.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/atom_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/audience_network.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/australian_film_commission.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/avalanche_studios.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/avnet_kerner.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/babylonian.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bad_boy_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bad_robot.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/baltimore_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bandai.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bandai_visual.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bandapart.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/batjac.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bazmark.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bbc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bbc_america.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bbc_four.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bbc_one.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bbc_prime.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bbc_three.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bbc_two.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/beacon.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/becker_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/belair_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bet.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bigtalk.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/biography_channel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/blackdog.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/blind_ambition_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/blue_sky.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/blue_underground.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bnn.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/boomerang.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bravo.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/brightlight.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bristol_bay.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/broken_lizard.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/brooklyn_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/buena_vista.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/bulletproof.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/c2_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/canalplus.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cannon_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/capcom.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/capitol_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/caravan_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/carnaby.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/carolco.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cartoonnetwork.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/casablanca_filmes.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cascade_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/casey_silver_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/castle_rock_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cat_in_the_hat.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cbbc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cbc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cbs.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/celador.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/centropolis_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ceska_televize.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/channel4.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/channel5.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/channel_nine.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/channel_seven.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/channel_ten.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cheyenne.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cinemax.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cmt.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cnc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/columbia_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/comedy_central.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/concorde.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/condemned.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/constantin_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/constellation.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cookie_jar.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cpfilms.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/criterion.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ctv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/cw.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/czolowka.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/damselfly.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/danjaq.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dark_castle_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dark_horse.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/davis_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dc_comics.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/de_laurentiis.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/destination_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dfi.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dickhouse_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/digital_factory.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/digital_playground.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dimension_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/discovery_channel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/disney_channel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/disney_xd.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/distant_horizon.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dmax.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dna.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dolores_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/don_simpson_jerry_bruckheimer_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/donners.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/dreamworks.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/e4.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ealing.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/eclectic.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/edmonds_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/electric_enterteinment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/electric_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/eleven_eleven.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/emmedia.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/encore.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/endgame_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/entara.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/entertainment_television.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/eon_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/escape_artists.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/espn.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/eurimages.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/europa_corp.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/eurosport.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/excel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/eyekiss_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fact.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/figaro.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/film_colony.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/film_four.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/film_institut.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/film_media.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/film_polski.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/film_tv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/filmauro.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/filmax_animation.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/filmforderung_hamburg.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/filmoteka narodowa.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/filmstiftung_nordrhein-westfalen.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/finos_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fireworks_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/first_look_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/five.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/flower_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/focus_features.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/food_network.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/forte_cinema.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fourhands_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fox.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fox_atomic.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fox_searchlight_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/france_2.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/france_3.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/france_4.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/franchise_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fuji_tv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/future_flix.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/fx.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/g4.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/gaumont.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/geffen.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ghost_house.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/gk_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/glass_eye_pix.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/global_tv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/glue_works_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/gofilms.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/gold_circle_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/goldwyn.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/gracie_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/gramercy_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/grandhustle.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/green_street.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/greentree_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/grub_street_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/guinea_pig_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/gutek.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/halestorm.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hallucination_on_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hand_made_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/happy_madison.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hasbro.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hbo.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hemus_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/heyday_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hgtv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/history_channel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hollywood_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hustler_video.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/hyde_park_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/icon_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ifc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/illumination_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/image.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/image_movers.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/imagi_studios.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/imaginary_forces.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/imagine.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/imax.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/imperial_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/independent_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/industrial_light_and_magic.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/infilm.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ingenious_film_partners.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ingenius_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/inside_track.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/interactual.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/intermedia.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/interscope_shady_aftermath.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/intrepid_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/island_world.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/itv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/itv1.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/itv2.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/janus.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/jarowskij.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/jawa.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/jerry_bruckheimer_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/jersey_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/jim_henson.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kadokawa_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kadr.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kamera.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kanal_5.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kennedymarshall.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kid_rhino.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/killer_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kinepolis.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/king_world.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kinowelt.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/kopelson.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ladd.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lakeshore_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/latham.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lawrence_bender_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/league of noble peers.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/legendary_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/liberty_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lifetime.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lift.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lightstorm_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lionsgate.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/little_chicken.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/london_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lookout.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lucasfilm.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/lucky_7.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/madman.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/magnolia_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mandalay_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mandate_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/manga.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/marc_dorcel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/marvel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/maverick.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/maya_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/media8.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mediapro.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/meridian_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mgm.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mibac.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/midway_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mike_zoss_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/milkshake.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/millenium.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/minds_eye_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mirage.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/miramax.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/momentum_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/monarch_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/monolith.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/montecito_picture_company.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/morgan_creek.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mosaic_media.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mosfilm.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mpca.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/msnbc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mtv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mtv3.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/musashi_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mutual_film_company.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/myriad.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/mytv.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nala.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nat_geo_wild.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/national_general_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nbc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nbc_universal.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nelvana.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/netflix.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/new_deal_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/new_line_cinema.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/new_zealand_film_commission.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/newmarket.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/ngc.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nick_at_nite.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nick_jr.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nickelodeon.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nicktoons.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nine network.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nord_ouest.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nordisk film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/northern_lights_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nothing.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/nuimage.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/o2_filmes.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/oddlot.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/oko.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/only_vegas.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/orf.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/orion.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/overturefilms.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pan_vision.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pandora_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/paramount_classics.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/paramount_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/paramount_vantage.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/participant.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pathe.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pbs.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/peacearch.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pecf.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/peters_entertainment2.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pheonix.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/picturehouse.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pisf.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pixar.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/plan_b.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/platige.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/platinum_dunes.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/play_uk.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/playtone.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/polsat.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/polygram.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/porchlight.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/portman_film.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/premiere direkt.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/premiere.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/private_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/pro7.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/profilm_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/promotion_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/prosieben.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/radical_media.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rai_cinema.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rankin.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/red_hour.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/red_wagon_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/redrum.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/reel_dog_productions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/regency.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/relativity_media.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/renaissance_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/republic_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/resident_evil.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/revere_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/revision3.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/revolution_studios.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rhombus.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rick_mill.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rickety_shack_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/river_road_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/roadside_attractions.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rogue_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/romar.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rtl.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rtl4.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rtl5.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rtl7.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rtl8.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rtl_ii.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/rysher_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/salter_street_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/sandrew.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/sat1.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/saturn_films.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/saul_zaentz.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/sbs.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/scifi.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/scott_free.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/screen australia.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/screen_gems.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/selznick_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/semafor.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/seven network.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/sfi.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/shady_acres_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/shangri-la_entertainment.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/shout_factory.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/showcase.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/showtime.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/sidney_kimmel.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/silver_pictures.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/sky.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/sky_1.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Aug 9 12:35:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED83F99DFE2; Sun, 9 Aug 2015 12:35:37 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE4D9934; Sun, 9 Aug 2015 12:35:37 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79CZb58016583; Sun, 9 Aug 2015 12:35:37 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79CZbrq016581; Sun, 9 Aug 2015 12:35:37 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508091235.t79CZbrq016581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sun, 9 Aug 2015 12:35:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393783 - head/multimedia/plexmediaserver-plexpass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:35:38 -0000 Author: feld Date: Sun Aug 9 12:35:36 2015 New Revision: 393783 URL: https://svnweb.freebsd.org/changeset/ports/393783 Log: multimedia/plexmediaserver-plexpass: update to 0.9.12.10.1368 Relnotes: https://forums.plex.tv/discussion/176124/plex-media-server-transcoder-preview-0-9-12-10 Modified: head/multimedia/plexmediaserver-plexpass/Makefile head/multimedia/plexmediaserver-plexpass/distinfo Modified: head/multimedia/plexmediaserver-plexpass/Makefile ============================================================================== --- head/multimedia/plexmediaserver-plexpass/Makefile Sun Aug 9 12:24:58 2015 (r393782) +++ head/multimedia/plexmediaserver-plexpass/Makefile Sun Aug 9 12:35:36 2015 (r393783) @@ -1,13 +1,13 @@ # Created by: KalleDK # $FreeBSD$ -PORTVERSION= 0.9.12.8.1362 +PORTVERSION= 0.9.12.10.1368 PORTREVISION= 0 PKGNAMESUFFIX= -plexpass MAINTAINER= feld@FreeBSD.org -PLEX_BUILD= 4601e39 +PLEX_BUILD= 63adf2b USE_RC_SUBR= ${PORTNAME}_plexpass Modified: head/multimedia/plexmediaserver-plexpass/distinfo ============================================================================== --- head/multimedia/plexmediaserver-plexpass/distinfo Sun Aug 9 12:24:58 2015 (r393782) +++ head/multimedia/plexmediaserver-plexpass/distinfo Sun Aug 9 12:35:36 2015 (r393783) @@ -1,2 +1,2 @@ -SHA256 (PlexMediaServer-0.9.12.8.1362-4601e39-freebsd-amd64.tar.bz2) = d01187f7b8867f10a3d7389dca3ea35b0e8028c7e6c5f6e0c7d9e230874491b2 -SIZE (PlexMediaServer-0.9.12.8.1362-4601e39-freebsd-amd64.tar.bz2) = 96460717 +SHA256 (PlexMediaServer-0.9.12.10.1368-63adf2b-freebsd-amd64.tar.bz2) = 7796c3c48ed87080e58f9f090b990e60ac570223d650f478c02016c7ec5f01f6 +SIZE (PlexMediaServer-0.9.12.10.1368-63adf2b-freebsd-amd64.tar.bz2) = 97077382 From owner-svn-ports-all@freebsd.org Sun Aug 9 12:43:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 769B7998296; Sun, 9 Aug 2015 12:43:43 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A844DC4; Sun, 9 Aug 2015 12:43:43 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Chhrs021374; Sun, 9 Aug 2015 12:43:43 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79ChgIP021367; Sun, 9 Aug 2015 12:43:42 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201508091243.t79ChgIP021367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 9 Aug 2015 12:43:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393784 - in head/www/chromium: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:43:43 -0000 Author: rene Date: Sun Aug 9 12:43:41 2015 New Revision: 393784 URL: https://svnweb.freebsd.org/changeset/ports/393784 Log: - Update to 44.0.2403.130 - Port over some UI and timezone fixes from OpenBSD Submitted by: LeFroid Obtained from: https://github.com/gliaskos/freebsd-chromium/pull/28 MFH: 2015Q3 Added: head/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc (contents, props changed) head/www/chromium/files/patch-content__browser__time_zone_monitor.cc (contents, props changed) head/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc (contents, props changed) Modified: head/www/chromium/Makefile head/www/chromium/distinfo Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Sun Aug 9 12:35:36 2015 (r393783) +++ head/www/chromium/Makefile Sun Aug 9 12:43:41 2015 (r393784) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 44.0.2403.125 +PORTVERSION= 44.0.2403.130 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Sun Aug 9 12:35:36 2015 (r393783) +++ head/www/chromium/distinfo Sun Aug 9 12:43:41 2015 (r393784) @@ -1,4 +1,4 @@ -SHA256 (chromium-44.0.2403.125.tar.xz) = 78568ec613443b5b7be83216f2c86cb4e64e7398eee9bbc0a35d1c0cef402452 -SIZE (chromium-44.0.2403.125.tar.xz) = 292968928 -SHA256 (chromium-44.0.2403.125-testdata.tar.xz) = 29bcdbfbb7356f3699e0ede49561251fbc66ad96fbfe5ff94878703799419edc -SIZE (chromium-44.0.2403.125-testdata.tar.xz) = 128645864 +SHA256 (chromium-44.0.2403.130.tar.xz) = 37779b2f4844e1a6ac75d69897031955541ad97f3dd1d4ad641c371c1d63b414 +SIZE (chromium-44.0.2403.130.tar.xz) = 293332128 +SHA256 (chromium-44.0.2403.130-testdata.tar.xz) = 47a0e7808f7c98ea02fb4aaaedf83fcbd78901da134de3cf1d53312a56710f49 +SIZE (chromium-44.0.2403.130-testdata.tar.xz) = 128611776 Added: head/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc Sun Aug 9 12:43:41 2015 (r393784) @@ -0,0 +1,20 @@ +--- chrome/browser/extensions/api/tabs/tabs_api.cc.orig 2015-08-02 00:29:44.653703000 -0400 ++++ chrome/browser/extensions/api/tabs/tabs_api.cc 2015-08-02 00:32:45.945039000 -0400 +@@ -659,7 +659,7 @@ + + WindowController* controller = new_window->extension_window_controller(); + +-#if defined(OS_LINUX) || defined(OS_CHROMEOS) ++#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_BSD) + // On Desktop Linux, window managers may ignore hints until the X11 window is + // mapped, which happens in the blocking call to Show() above. + // DesktopWindowTreeHostX11 currently only checks for an attempt to maximize +@@ -669,7 +669,7 @@ + if (create_params.initial_show_state == ui::SHOW_STATE_MINIMIZED) + new_window->window()->Minimize(); + #endif +-#if (defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(OS_WIN) ++#if ((defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS)) || defined(OS_WIN) + // On Desktop Linux and Windows, managers don't handle fullscreen state to + // create window for now. + if (create_params.initial_show_state == ui::SHOW_STATE_FULLSCREEN) Added: head/www/chromium/files/patch-content__browser__time_zone_monitor.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-content__browser__time_zone_monitor.cc Sun Aug 9 12:43:41 2015 (r393784) @@ -0,0 +1,11 @@ +--- content/browser/time_zone_monitor.cc.orig 2015-08-02 12:15:31.521732000 -0400 ++++ content/browser/time_zone_monitor.cc 2015-08-02 12:16:05.094405000 -0400 +@@ -28,7 +28,7 @@ + scoped_ptr new_zone(icu::TimeZone::createDefault()); + #else + icu::TimeZone* new_zone = icu::TimeZone::detectHostTimeZone(); +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + // We get here multiple times on Linux per a single tz change, but + // want to update the ICU default zone and notify renderer only once. + scoped_ptr current_zone(icu::TimeZone::createDefault()); Added: head/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc Sun Aug 9 12:43:41 2015 (r393784) @@ -0,0 +1,20 @@ +--- ui/base/user_activity/user_activity_detector.cc.orig 2015-08-02 12:18:35.398386000 -0400 ++++ ui/base/user_activity/user_activity_detector.cc 2015-08-02 12:19:07.874736000 -0400 +@@ -52,7 +52,7 @@ + + ui::PlatformEventSource* platform_event_source = + ui::PlatformEventSource::GetInstance(); +-#if defined(OS_CHROMEOS) || defined(OS_LINUX) ++#if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_BSD) + CHECK(platform_event_source); + #endif + if (platform_event_source) +@@ -62,7 +62,7 @@ + UserActivityDetector::~UserActivityDetector() { + ui::PlatformEventSource* platform_event_source = + ui::PlatformEventSource::GetInstance(); +-#if defined(OS_CHROMEOS) || defined(OS_LINUX) ++#if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_BSD) + CHECK(platform_event_source); + #endif + if (platform_event_source) From owner-svn-ports-all@freebsd.org Sun Aug 9 12:55:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AF4799871E; Sun, 9 Aug 2015 12:55:21 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D60D465D; Sun, 9 Aug 2015 12:55:20 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79CtKCx026650; Sun, 9 Aug 2015 12:55:20 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79CtKNn026648; Sun, 9 Aug 2015 12:55:20 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091255.t79CtKNn026648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 12:55:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393785 - in head/graphics/argyllcms: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:55:21 -0000 Author: kwm Date: Sun Aug 9 12:55:19 2015 New Revision: 393785 URL: https://svnweb.freebsd.org/changeset/ports/393785 Log: * Set USES=compiler:c11 to select clang on 9.3-R. Pass MAKE_ENV to jam in the do-build target so CC & friends get set in the enviroment so jam can pick them up. This fixes the build on 9.3-R amd64. [1] * Add patch from debian to fix segfault in dispwin with bad command line options Submitted by: pkg-fallout [1] Added: head/graphics/argyllcms/files/patch-spectro_dispwin.c (contents, props changed) Modified: head/graphics/argyllcms/Makefile Modified: head/graphics/argyllcms/Makefile ============================================================================== --- head/graphics/argyllcms/Makefile Sun Aug 9 12:43:41 2015 (r393784) +++ head/graphics/argyllcms/Makefile Sun Aug 9 12:55:19 2015 (r393785) @@ -3,6 +3,7 @@ PORTNAME= argyllcms PORTVERSION= 1.7.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://www.argyllcms.com/ DISTNAME= Argyll_V${PORTVERSION}_src @@ -17,14 +18,14 @@ LIB_DEPENDS= libtiff.so:${PORTSDIR}/grap WRKSRC= ${WRKDIR}/Argyll_V${PORTVERSION} -USES= cpe jpeg zip +USES= compiler:c11 cpe jpeg zip USE_XORG= x11 xau xdmcp xext xinerama xrandr xscrnsaver xxf86vm post-patch: @${REINPLACE_CMD} 's:711:755:g' ${WRKSRC}/Jambase do-build: - @cd ${WRKSRC} && jam -q -fJambase -j${MAKE_JOBS_NUMBER} + @cd ${WRKSRC} && ${MAKE_ENV} jam -q -fJambase -j${MAKE_JOBS_NUMBER} do-install: @cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} PREFIX=${PREFIX} \ Added: head/graphics/argyllcms/files/patch-spectro_dispwin.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/argyllcms/files/patch-spectro_dispwin.c Sun Aug 9 12:55:19 2015 (r393785) @@ -0,0 +1,17 @@ +Description: Add check for NULL pointer +Author: Jörg Frings-Fürst +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=700253 +Forwarded: http://www.freelists.org/post/argyllcms/dispwin-bad-command-line-option-makes-dispwin-segfault +Reviewed-by: +Last-Update: 2014-09-14 +--- +--- spectro/dispwin.c.orig 2015-05-01 10:15:55.000000000 +0200 ++++ spectro/dispwin.c 2015-08-09 14:48:49.778919000 +0200 +@@ -5547,6 +5547,7 @@ + + /* Display number */ + else if (argv[fa][1] == 'd') { ++ if(na == NULL) usage(0,"-d parameter missing"); + if (strncmp(na,"web",3) == 0 + || strncmp(na,"WEB",3) == 0) { + webdisp = 8080; From owner-svn-ports-all@freebsd.org Sun Aug 9 12:59:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B32A49988C7; Sun, 9 Aug 2015 12:59:54 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A41C8B12; Sun, 9 Aug 2015 12:59:54 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Cxsfg027399; Sun, 9 Aug 2015 12:59:54 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79CxsXp027397; Sun, 9 Aug 2015 12:59:54 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201508091259.t79CxsXp027397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Sun, 9 Aug 2015 12:59:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393786 - head/devel/liblognorm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 12:59:54 -0000 Author: bofh Date: Sun Aug 9 12:59:53 2015 New Revision: 393786 URL: https://svnweb.freebsd.org/changeset/ports/393786 Log: devel/liblognorm: Update version 1.1.1=>1.1.2 - Honor portlint PR: 202061 Submitted by: brd Modified: head/devel/liblognorm/Makefile head/devel/liblognorm/distinfo Modified: head/devel/liblognorm/Makefile ============================================================================== --- head/devel/liblognorm/Makefile Sun Aug 9 12:55:19 2015 (r393785) +++ head/devel/liblognorm/Makefile Sun Aug 9 12:59:53 2015 (r393786) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= liblognorm -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= devel net security MASTER_SITES= http://www.liblognorm.com/download/files/download/ @@ -14,13 +14,14 @@ LIB_DEPENDS= libjson-c.so:${PORTSDIR}/de libestr.so:${PORTSDIR}/devel/libestr BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx -USES= pathfix pkgconfig libtool +USES= libtool pathfix pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip SUB_FILES= pkg-message +.include # Try to fix parallel (-jX) builds post-patch: @${REINPLACE_CMD} -e \ Modified: head/devel/liblognorm/distinfo ============================================================================== --- head/devel/liblognorm/distinfo Sun Aug 9 12:55:19 2015 (r393785) +++ head/devel/liblognorm/distinfo Sun Aug 9 12:59:53 2015 (r393786) @@ -1,2 +1,2 @@ -SHA256 (liblognorm-1.1.1.tar.gz) = a75db38419356f8638c29e817806328db1a9edbef258c789a15b2aa88a4522f2 -SIZE (liblognorm-1.1.1.tar.gz) = 521231 +SHA256 (liblognorm-1.1.2.tar.gz) = 935a112fb5310877aaa5046ac8bd2ec7d0e9fed03e2fffccb84b6f93b92a536c +SIZE (liblognorm-1.1.2.tar.gz) = 547224 From owner-svn-ports-all@freebsd.org Sun Aug 9 13:10:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60066998B75; Sun, 9 Aug 2015 13:10:25 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 508D3F8; Sun, 9 Aug 2015 13:10:25 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79DAPNI032909; Sun, 9 Aug 2015 13:10:25 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79DAOcG032902; Sun, 9 Aug 2015 13:10:24 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201508091310.t79DAOcG032902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 9 Aug 2015 13:10:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393787 - in head/www/lighttpd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 13:10:25 -0000 Author: madpilot Date: Sun Aug 9 13:10:23 2015 New Revision: 393787 URL: https://svnweb.freebsd.org/changeset/ports/393787 Log: - Update to 1.4.36 - Regenerate patches to silence portlint warnings Modified: head/www/lighttpd/Makefile head/www/lighttpd/distinfo head/www/lighttpd/files/patch-configure.ac head/www/lighttpd/files/patch-src-fdevent.h Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Sun Aug 9 12:59:53 2015 (r393786) +++ head/www/lighttpd/Makefile Sun Aug 9 13:10:23 2015 (r393787) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= lighttpd -PORTVERSION= 1.4.35 -PORTREVISION= 5 +PORTVERSION= 1.4.36 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ Modified: head/www/lighttpd/distinfo ============================================================================== --- head/www/lighttpd/distinfo Sun Aug 9 12:59:53 2015 (r393786) +++ head/www/lighttpd/distinfo Sun Aug 9 13:10:23 2015 (r393787) @@ -1,5 +1,5 @@ -SHA256 (lighttpd-1.4.35.tar.xz) = 113e9b72ccbd1da5deb0774bf93cf0ca15dc82aad2da0f04e5ab27d37d3f30a3 -SIZE (lighttpd-1.4.35.tar.xz) = 556896 +SHA256 (lighttpd-1.4.36.tar.xz) = 897ab6b1cc7bd51671f8af759e7846245fbbca0685c30017e93a5882a9ac1a53 +SIZE (lighttpd-1.4.36.tar.xz) = 570756 SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = d7c3704d5253c4f3c18459f89059063b311e50096cd2c38fc982cec683c32e61 SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = 44695 SHA256 (lighttpd-1.4.26_mod_geoip.patch.gz) = db43cc0ed7c808b5eed3185d97346e70dea0f1ef4fa9ed436d08e4faff7f97e7 Modified: head/www/lighttpd/files/patch-configure.ac ============================================================================== --- head/www/lighttpd/files/patch-configure.ac Sun Aug 9 12:59:53 2015 (r393786) +++ head/www/lighttpd/files/patch-configure.ac Sun Aug 9 13:10:23 2015 (r393787) @@ -1,6 +1,6 @@ ---- configure.ac.orig 2012-11-19 11:05:29.000000000 +0100 -+++ configure.ac 2012-11-21 14:22:53.723233779 +0100 -@@ -16,6 +16,7 @@ +--- configure.ac.orig 2015-07-26 10:36:36 UTC ++++ configure.ac +@@ -46,6 +46,7 @@ AC_DEFUN([TRY_CFLAGS], dnl Checks for programs. AC_PROG_CC AM_PROG_CC_C_O @@ -8,7 +8,7 @@ AC_PROG_LD AC_PROG_INSTALL AC_PROG_AWK -@@ -30,11 +31,6 @@ +@@ -60,11 +61,6 @@ m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], [AC dnl AM_PROG_AR requires automake 1.11 (and uses AC_COMPILE_IFELSE which wants AC_USE_SYSTEM_EXTENSIONS) m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) Modified: head/www/lighttpd/files/patch-src-fdevent.h ============================================================================== --- head/www/lighttpd/files/patch-src-fdevent.h Sun Aug 9 12:59:53 2015 (r393786) +++ head/www/lighttpd/files/patch-src-fdevent.h Sun Aug 9 13:10:23 2015 (r393787) @@ -1,11 +1,11 @@ ---- src/fdevent.h.orig 2011-12-19 07:41:33.183877666 +0100 -+++ src/fdevent.h 2011-12-19 07:42:01.457863868 +0100 -@@ -54,7 +54,7 @@ +--- src/fdevent.h.orig 2015-07-26 10:36:36 UTC ++++ src/fdevent.h +@@ -46,7 +46,7 @@ # include #endif -#if defined HAVE_SYS_EVENT_H && defined HAVE_KQUEUE +#if defined HAVE_SYS_EVENT_H && defined HAVE_KQUEUE && !defined HAVE_LIBEV # define USE_FREEBSD_KQUEUE - # include #endif + From owner-svn-ports-all@freebsd.org Sun Aug 9 13:23:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DCE5998F96; Sun, 9 Aug 2015 13:23:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0DC53ACB; Sun, 9 Aug 2015 13:23:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79DMxWV039699; Sun, 9 Aug 2015 13:22:59 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79DMwpP039694; Sun, 9 Aug 2015 13:22:58 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201508091322.t79DMwpP039694@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 9 Aug 2015 13:22:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393788 - in branches/2015Q3/www/chromium: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 13:23:00 -0000 Author: rene Date: Sun Aug 9 13:22:57 2015 New Revision: 393788 URL: https://svnweb.freebsd.org/changeset/ports/393788 Log: MFH: r393784 - Update to 44.0.2403.130 - Port over some UI and timezone fixes from OpenBSD Submitted by: LeFroid Obtained from: https://github.com/gliaskos/freebsd-chromium/pull/28 Approved by: ports-secteam (feld) Added: branches/2015Q3/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc - copied unchanged from r393784, head/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc branches/2015Q3/www/chromium/files/patch-content__browser__time_zone_monitor.cc - copied unchanged from r393784, head/www/chromium/files/patch-content__browser__time_zone_monitor.cc branches/2015Q3/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc - copied unchanged from r393784, head/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc Modified: branches/2015Q3/www/chromium/Makefile branches/2015Q3/www/chromium/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/chromium/Makefile ============================================================================== --- branches/2015Q3/www/chromium/Makefile Sun Aug 9 13:10:23 2015 (r393787) +++ branches/2015Q3/www/chromium/Makefile Sun Aug 9 13:22:57 2015 (r393788) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 44.0.2403.107 +PORTVERSION= 44.0.2403.130 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # default, but needed to get distinfo correct if TEST is on Modified: branches/2015Q3/www/chromium/distinfo ============================================================================== --- branches/2015Q3/www/chromium/distinfo Sun Aug 9 13:10:23 2015 (r393787) +++ branches/2015Q3/www/chromium/distinfo Sun Aug 9 13:22:57 2015 (r393788) @@ -1,4 +1,4 @@ -SHA256 (chromium-44.0.2403.107.tar.xz) = d0634ffbe4f158010852fde3ee32aaf7bdf200932573fdf57328dd9ba5983d71 -SIZE (chromium-44.0.2403.107.tar.xz) = 292924752 -SHA256 (chromium-44.0.2403.107-testdata.tar.xz) = 43ba2f8df021fd1787cf4a96bb5068190905c21e0130db29a6d9e976176074c3 -SIZE (chromium-44.0.2403.107-testdata.tar.xz) = 128646184 +SHA256 (chromium-44.0.2403.130.tar.xz) = 37779b2f4844e1a6ac75d69897031955541ad97f3dd1d4ad641c371c1d63b414 +SIZE (chromium-44.0.2403.130.tar.xz) = 293332128 +SHA256 (chromium-44.0.2403.130-testdata.tar.xz) = 47a0e7808f7c98ea02fb4aaaedf83fcbd78901da134de3cf1d53312a56710f49 +SIZE (chromium-44.0.2403.130-testdata.tar.xz) = 128611776 Copied: branches/2015Q3/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc (from r393784, head/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc Sun Aug 9 13:22:57 2015 (r393788, copy of r393784, head/www/chromium/files/patch-chrome__browser__extensions__api__tabs__tabs_api.cc) @@ -0,0 +1,20 @@ +--- chrome/browser/extensions/api/tabs/tabs_api.cc.orig 2015-08-02 00:29:44.653703000 -0400 ++++ chrome/browser/extensions/api/tabs/tabs_api.cc 2015-08-02 00:32:45.945039000 -0400 +@@ -659,7 +659,7 @@ + + WindowController* controller = new_window->extension_window_controller(); + +-#if defined(OS_LINUX) || defined(OS_CHROMEOS) ++#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_BSD) + // On Desktop Linux, window managers may ignore hints until the X11 window is + // mapped, which happens in the blocking call to Show() above. + // DesktopWindowTreeHostX11 currently only checks for an attempt to maximize +@@ -669,7 +669,7 @@ + if (create_params.initial_show_state == ui::SHOW_STATE_MINIMIZED) + new_window->window()->Minimize(); + #endif +-#if (defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(OS_WIN) ++#if ((defined(OS_LINUX) || defined(OS_BSD)) && !defined(OS_CHROMEOS)) || defined(OS_WIN) + // On Desktop Linux and Windows, managers don't handle fullscreen state to + // create window for now. + if (create_params.initial_show_state == ui::SHOW_STATE_FULLSCREEN) Copied: branches/2015Q3/www/chromium/files/patch-content__browser__time_zone_monitor.cc (from r393784, head/www/chromium/files/patch-content__browser__time_zone_monitor.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/www/chromium/files/patch-content__browser__time_zone_monitor.cc Sun Aug 9 13:22:57 2015 (r393788, copy of r393784, head/www/chromium/files/patch-content__browser__time_zone_monitor.cc) @@ -0,0 +1,11 @@ +--- content/browser/time_zone_monitor.cc.orig 2015-08-02 12:15:31.521732000 -0400 ++++ content/browser/time_zone_monitor.cc 2015-08-02 12:16:05.094405000 -0400 +@@ -28,7 +28,7 @@ + scoped_ptr new_zone(icu::TimeZone::createDefault()); + #else + icu::TimeZone* new_zone = icu::TimeZone::detectHostTimeZone(); +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + // We get here multiple times on Linux per a single tz change, but + // want to update the ICU default zone and notify renderer only once. + scoped_ptr current_zone(icu::TimeZone::createDefault()); Copied: branches/2015Q3/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc (from r393784, head/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc Sun Aug 9 13:22:57 2015 (r393788, copy of r393784, head/www/chromium/files/patch-ui__base__user_activity__user_activity_detector.cc) @@ -0,0 +1,20 @@ +--- ui/base/user_activity/user_activity_detector.cc.orig 2015-08-02 12:18:35.398386000 -0400 ++++ ui/base/user_activity/user_activity_detector.cc 2015-08-02 12:19:07.874736000 -0400 +@@ -52,7 +52,7 @@ + + ui::PlatformEventSource* platform_event_source = + ui::PlatformEventSource::GetInstance(); +-#if defined(OS_CHROMEOS) || defined(OS_LINUX) ++#if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_BSD) + CHECK(platform_event_source); + #endif + if (platform_event_source) +@@ -62,7 +62,7 @@ + UserActivityDetector::~UserActivityDetector() { + ui::PlatformEventSource* platform_event_source = + ui::PlatformEventSource::GetInstance(); +-#if defined(OS_CHROMEOS) || defined(OS_LINUX) ++#if defined(OS_CHROMEOS) || defined(OS_LINUX) || defined(OS_BSD) + CHECK(platform_event_source); + #endif + if (platform_event_source) From owner-svn-ports-all@freebsd.org Sun Aug 9 13:28:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A2FE99D087; Sun, 9 Aug 2015 13:28:43 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A0E1BFC; Sun, 9 Aug 2015 13:28:43 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79DShoK040179; Sun, 9 Aug 2015 13:28:43 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79DSfvv040173; Sun, 9 Aug 2015 13:28:41 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091328.t79DSfvv040173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 13:28:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393789 - in head/sysutils/polkit: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 13:28:43 -0000 Author: kwm Date: Sun Aug 9 13:28:40 2015 New Revision: 393789 URL: https://svnweb.freebsd.org/changeset/ports/393789 Log: Update polkit to 0.113. [1] - Add LICENSE blob - Adjust dependencies - Reorganize options helper - Update description file PR: 201362 [1], 194789 Submitted by: olivierd@ [1] Tested by: olivierd@, Tobias Berner , and myself Added: head/sysutils/polkit/files/patch-docs_man_polkit.xml (contents, props changed) Deleted: head/sysutils/polkit/files/patch-data_Makefile.in head/sysutils/polkit/files/patch-src_polkitagent_polkitagenthelperprivate.c head/sysutils/polkit/files/patch-src_polkitbackend_Makefile.in head/sysutils/polkit/files/patch-src_polkitbackend_polkitbackendinteractiveauthority.c head/sysutils/polkit/files/patch-src_polkitbackend_polkitbackendlocalauthority.c head/sysutils/polkit/files/patch-src_polkitd_gposixsignal.c Modified: head/sysutils/polkit/Makefile head/sysutils/polkit/distinfo head/sysutils/polkit/files/patch-Makefile.in head/sysutils/polkit/pkg-descr head/sysutils/polkit/pkg-plist Modified: head/sysutils/polkit/Makefile ============================================================================== --- head/sysutils/polkit/Makefile Sun Aug 9 13:22:57 2015 (r393788) +++ head/sysutils/polkit/Makefile Sun Aug 9 13:28:40 2015 (r393789) @@ -2,59 +2,63 @@ # $FreeBSD$ PORTNAME= polkit -PORTVERSION= 0.105 -PORTREVISION= 7 +PORTVERSION= 0.113 CATEGORIES= sysutils gnome MASTER_SITES= http://www.freedesktop.org/software/polkit/releases/ MAINTAINER= gnome@FreeBSD.org COMMENT= Framework for controlling access to system-wide components -LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 \ + libmozjs-17.0.so:${PORTSDIR}/lang/spidermonkey170 RUN_DEPENDS= dbus-launch:${PORTSDIR}/devel/dbus -USE_GNOME= glib20 intlhack introspection -USES= gettext gmake libtool pathfix pkgconfig +USERS= polkitd +GROUPS= polkitd + +USE_GNOME= glib20 intlhack introspection:build +USES= gettext gmake libtool pathfix pkgconfig shebangfix +SHEBANG_FILES= ${WRKSRC}/src/polkitbackend/toarray.pl GNU_CONFIGURE= yes USE_LDCONFIG= yes -CONFIGURE_ARGS= --disable-gtk-doc \ +CONFIGURE_ARGS= --disable-gtk-doc-html \ + --without-html-dir \ --with-authfw=pam \ --with-pam-include=system \ --with-os-type=freebsd \ - --disable-systemd \ - --enable-introspection \ + --with-polkitd-user=${USERS} \ + --disable-static \ + --disable-examples \ + --with-mozjs=mozjs-17.0 \ + --disable-libsystemd-login \ + --disable-test \ + --enable-introspection=yes \ --localstatedir=/var -MAKE_JOBS_UNSAFE=yes -CONFIGURE_ENV= GTKDOC="false" +#MAKE_JOBS_UNSAFE=yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip OPTIONS_DEFINE= MANPAGES - -.include - -.if ${PORT_OPTIONS:MMANPAGES} -BUILD_DEPENDS+= docbook-sgml>0:${PORTSDIR}/textproc/docbook-sgml \ - ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl - -USE_GNOME+= libxslt:build -PLIST_SUB+= MANPAGES="" -.else -CONFIGURE_ARGS+=--disable-man-pages -PLIST_SUB+= MANPAGES="@comment " -.endif +MANPAGES_BUILD_DEPENDS= docbook-sgml>=4.5:${PORTSDIR}/textproc/docbook-sgml \ + docbook-xsl>=1.76:${PORTSDIR}/textproc/docbook-xsl +MANPAGES_USE= gnome=libxslt:build +MANPAGES_CONFIGURE_ENABLE= man-pages +OPTIONS_SUB= yes post-patch: @${REINPLACE_CMD} -e 's|/usr/bin/|${PREFIX}/bin/|g' \ ${WRKSRC}/docs/man/pkexec.xml \ ${WRKSRC}/src/examples/org.freedesktop.policykit.examples.pkexec.policy.in + @${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' \ + ${WRKSRC}/docs/man/polkit.xml post-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/etc/dbus-1/system.d/ - @${MKDIR} ${STAGEDIR}${PREFIX}/share/polkit-1/rules.d/ + @${MKDIR} ${STAGEDIR}/var/lib/polkit-1 ${INSTALL_DATA} ${WRKSRC}/data/org.freedesktop.PolicyKit1.conf \ - ${STAGEDIR}${PREFIX}/etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf.dist - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so* - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/polkit-1/extensions/lib*.so + ${STAGEDIR}${PREFIX}/etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf.sample .include Modified: head/sysutils/polkit/distinfo ============================================================================== --- head/sysutils/polkit/distinfo Sun Aug 9 13:22:57 2015 (r393788) +++ head/sysutils/polkit/distinfo Sun Aug 9 13:28:40 2015 (r393789) @@ -1,2 +1,2 @@ -SHA256 (polkit-0.105.tar.gz) = 8fdc7cc8ba4750fcce1a4db9daa759c12afebc7901237e1c993c38f08985e1df -SIZE (polkit-0.105.tar.gz) = 1431080 +SHA256 (polkit-0.113.tar.gz) = e1c095093c654951f78f8618d427faf91cf62abdefed98de40ff65eca6413c81 +SIZE (polkit-0.113.tar.gz) = 1448865 Modified: head/sysutils/polkit/files/patch-Makefile.in ============================================================================== --- head/sysutils/polkit/files/patch-Makefile.in Sun Aug 9 13:22:57 2015 (r393788) +++ head/sysutils/polkit/files/patch-Makefile.in Sun Aug 9 13:28:40 2015 (r393789) @@ -1,11 +1,11 @@ ---- Makefile.in.orig 2012-05-15 22:09:33.000000000 +0200 -+++ Makefile.in 2012-05-15 22:10:16.000000000 +0200 -@@ -292,7 +292,7 @@ - top_build_prefix = @top_build_prefix@ - top_builddir = @top_builddir@ - top_srcdir = @top_srcdir@ --SUBDIRS = actions data src docs po test -+SUBDIRS = actions data src docs po - NULL = - EXTRA_DIST = \ - HACKING \ +--- Makefile.in.orig 2015-06-19 20:31:12 UTC ++++ Makefile.in +@@ -157,7 +157,7 @@ am__define_uniq_tagged_files = \ + ETAGS = etags + CTAGS = ctags + CSCOPE = cscope +-DIST_SUBDIRS = actions data src docs po test ++DIST_SUBDIRS = actions data src docs po + am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \ + COPYING ChangeLog INSTALL NEWS README compile config.guess \ + config.sub depcomp install-sh ltmain.sh missing Added: head/sysutils/polkit/files/patch-docs_man_polkit.xml ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/polkit/files/patch-docs_man_polkit.xml Sun Aug 9 13:28:40 2015 (r393789) @@ -0,0 +1,89 @@ +--- docs/man/polkit.xml.orig 2013-05-06 18:28:21 UTC ++++ docs/man/polkit.xml +@@ -100,17 +100,17 @@ System Context | + | polkitd(8) | + +------------------+ + | org.freedesktop. | +-| PolicyKit1 |<---------+ +-+------------------+ | +- ^ | +- | +--------------------------------------+ +- | | /usr/share/polkit-1/actions/*.policy | +- | +--------------------------------------+ ++| PolicyKit1 |<------+ +++------------------+ | ++ ^ | ++ | +--------------------------------------------+ ++ | | /usr/local/share/polkit-1/actions/*.policy | ++ | +--------------------------------------------+ + | +- +--------------------------------------+ +- | /etc/polkit-1/rules.d/*.rules | +- | /usr/share/polkit-1/rules.d/*.rules | +- +--------------------------------------+ ++ +------------------------------------------------+ ++ | /usr/local/etc/polkit-1/rules.d/*.rules | ++ | /usr/local/share/polkit-1/rules.d/*.rules | ++ +------------------------------------------------+ + ]]> + + +@@ -217,7 +217,7 @@ System Context | + order to use polkit. Actions correspond to operations that + clients can request the mechanism to carry out and are defined + in XML files that the mechanism installs into the /usr/share/polkit-1/actions ++ class='directory'>/usr/local/share/polkit-1/actions + directory. + + +@@ -473,21 +473,21 @@ System Context | + + polkitd reads + .rules files from the +- /etc/polkit-1/rules.d and +- /usr/share/polkit-1/rules.d ++ /usr/local/etc/polkit-1/rules.d and ++ /usr/local/share/polkit-1/rules.d + directories by sorting the files in lexical order based on the + basename on each file (if there's a tie, files in +- /etc ++ /usr/local/etc + are processed before files in +- /usr). ++ /usr/local/share). + For example, for the following four + files, the order is + + +- /etc/polkit-1/rules.d/10-auth.rules +- /usr/share/polkit-1/rules.d/10-auth.rules +- /etc/polkit-1/rules.d/15-auth.rules +- /usr/share/polkit-1/rules.d/20-auth.rules ++ /usr/local/etc/polkit-1/rules.d/10-auth.rules ++ /usr/local/share/polkit-1/rules.d/10-auth.rules ++ /usr/local/etc/polkit-1/rules.d/15-auth.rules ++ /usr/local/share/polkit-1/rules.d/20-auth.rules + + + Both directories are monitored so if a rules file is changed, +@@ -683,8 +683,8 @@ polkit.addRule(function(action, subject) + will produce the following when the user runs 'pkexec -u bateman bash -i' from a shell: + + + + +@@ -916,7 +916,7 @@ polkit.addRule(function(action, subject) + Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8B6899D986; Sun, 9 Aug 2015 14:03:13 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA127C4F; Sun, 9 Aug 2015 14:03:13 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79E3DDm056264; Sun, 9 Aug 2015 14:03:13 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79E3DGC056262; Sun, 9 Aug 2015 14:03:13 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091403.t79E3DGC056262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 14:03:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393790 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 14:03:13 -0000 Author: kwm Date: Sun Aug 9 14:03:12 2015 New Revision: 393790 URL: https://svnweb.freebsd.org/changeset/ports/393790 Log: Add new polkit UID and GID. Forgotten in r393789 Modified: head/GIDs head/UIDs Modified: head/GIDs ============================================================================== --- head/GIDs Sun Aug 9 13:28:40 2015 (r393789) +++ head/GIDs Sun Aug 9 14:03:12 2015 (r393790) @@ -206,6 +206,7 @@ distcc:*:561: polkit:*:562: pulse:*:563: pulse-access:*:564: +polkitd:*:565: assp:*:587: avahi-autoipd:*:588: _xsi:*:600: Modified: head/UIDs ============================================================================== --- head/UIDs Sun Aug 9 13:28:40 2015 (r393789) +++ head/UIDs Sun Aug 9 14:03:12 2015 (r393790) @@ -211,6 +211,7 @@ haldaemon:*:560:560::0:0:HAL Daemon User distcc:*:561:561::0:0:Distcc user:/nonexistent:/usr/sbin/nologin polkit:*:562:562::0:0:PolicyKit User:/nonexistent:/usr/sbin/nologin pulse:*:563:563::0:0:PulseAudio System User:/nonexistent:/usr/sbin/nologin +polkitd:*:565:565::0:0:Polkit Daemon User:/var/empty:/usr/sbin/nologin assp:*:587:587::0:0:ASSP Anti-Spam Proxy:/var/db/assp:/usr/sbin/nologin avahi-autoipd:*:588:588::0:0:Avahi Autoipd Daemon user:/nonexistent:/usr/sbin/nologin _xsi:*:600:600::0:0:XMLSysInfo User:/nonexistent:/usr/sbin/nologin From owner-svn-ports-all@freebsd.org Sun Aug 9 14:18:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07C1E99DBD4; Sun, 9 Aug 2015 14:18:17 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBDADB3; Sun, 9 Aug 2015 14:18:16 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79EIGma060623; Sun, 9 Aug 2015 14:18:16 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79EIGO1060620; Sun, 9 Aug 2015 14:18:16 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508091418.t79EIGO1060620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 14:18:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393791 - head/www/node010 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 14:18:17 -0000 Author: olivierd Date: Sun Aug 9 14:18:15 2015 New Revision: 393791 URL: https://svnweb.freebsd.org/changeset/ports/393791 Log: Update to 0.10.40 Changelog: http://nodejs.org/dist/v0.10.40/docs/changelog.html#v0.10.40 PR: 202191 Submitted by: (maintainer) Modified: head/www/node010/Makefile head/www/node010/distinfo head/www/node010/pkg-plist Modified: head/www/node010/Makefile ============================================================================== --- head/www/node010/Makefile Sun Aug 9 14:03:12 2015 (r393790) +++ head/www/node010/Makefile Sun Aug 9 14:18:15 2015 (r393791) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= node -PORTVERSION= 0.10.38 +PORTVERSION= 0.10.40 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ PKGNAMESUFFIX= 010 Modified: head/www/node010/distinfo ============================================================================== --- head/www/node010/distinfo Sun Aug 9 14:03:12 2015 (r393790) +++ head/www/node010/distinfo Sun Aug 9 14:18:15 2015 (r393791) @@ -1,2 +1,2 @@ -SHA256 (node-v0.10.38.tar.gz) = 513da8ed5e48abefdfab664f1cabc160238d314a0481148804aff8fc6552b78b -SIZE (node-v0.10.38.tar.gz) = 14451274 +SHA256 (node-v0.10.40.tar.gz) = bae79c2fd959aebe1629af36077bebbb760128db753da226d2344cd91499149f +SIZE (node-v0.10.40.tar.gz) = 14761139 Modified: head/www/node010/pkg-plist ============================================================================== --- head/www/node010/pkg-plist Sun Aug 9 14:03:12 2015 (r393790) +++ head/www/node010/pkg-plist Sun Aug 9 14:18:15 2015 (r393791) @@ -9,7 +9,81 @@ include/node/node_buffer.h include/node/node_internals.h include/node/node_object_wrap.h include/node/node_version.h +include/node/openssl/aes.h +include/node/openssl/asn1.h +include/node/openssl/asn1_mac.h +include/node/openssl/asn1t.h +include/node/openssl/bio.h +include/node/openssl/blowfish.h +include/node/openssl/bn.h +include/node/openssl/buffer.h +include/node/openssl/camellia.h +include/node/openssl/cast.h +include/node/openssl/cmac.h +include/node/openssl/cms.h +include/node/openssl/comp.h +include/node/openssl/conf.h +include/node/openssl/conf_api.h +include/node/openssl/crypto.h +include/node/openssl/des.h +include/node/openssl/des_old.h +include/node/openssl/dh.h +include/node/openssl/dsa.h +include/node/openssl/dso.h +include/node/openssl/dtls1.h +include/node/openssl/e_os2.h +include/node/openssl/ebcdic.h +include/node/openssl/ec.h +include/node/openssl/ecdh.h +include/node/openssl/ecdsa.h +include/node/openssl/engine.h +include/node/openssl/err.h +include/node/openssl/evp.h +include/node/openssl/hmac.h +include/node/openssl/idea.h +include/node/openssl/krb5_asn.h +include/node/openssl/kssl.h +include/node/openssl/lhash.h +include/node/openssl/md4.h +include/node/openssl/md5.h +include/node/openssl/mdc2.h +include/node/openssl/modes.h +include/node/openssl/obj_mac.h +include/node/openssl/objects.h +include/node/openssl/ocsp.h include/node/openssl/opensslconf.h +include/node/openssl/opensslv.h +include/node/openssl/ossl_typ.h +include/node/openssl/pem.h +include/node/openssl/pem2.h +include/node/openssl/pkcs12.h +include/node/openssl/pkcs7.h +include/node/openssl/pqueue.h +include/node/openssl/rand.h +include/node/openssl/rc2.h +include/node/openssl/rc4.h +include/node/openssl/ripemd.h +include/node/openssl/rsa.h +include/node/openssl/safestack.h +include/node/openssl/seed.h +include/node/openssl/sha.h +include/node/openssl/srp.h +include/node/openssl/srtp.h +include/node/openssl/ssl.h +include/node/openssl/ssl2.h +include/node/openssl/ssl23.h +include/node/openssl/ssl3.h +include/node/openssl/stack.h +include/node/openssl/symhacks.h +include/node/openssl/tls1.h +include/node/openssl/ts.h +include/node/openssl/txt_db.h +include/node/openssl/ui.h +include/node/openssl/ui_compat.h +include/node/openssl/whrlpool.h +include/node/openssl/x509.h +include/node/openssl/x509_vfy.h +include/node/openssl/x509v3.h include/node/uv-private/ngx-queue.h include/node/uv-private/stdint-msvc2008.h include/node/uv-private/tree.h From owner-svn-ports-all@freebsd.org Sun Aug 9 14:25:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 088CA99DDF0; Sun, 9 Aug 2015 14:25:12 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D46EF6CD; Sun, 9 Aug 2015 14:25:11 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79EPBkS064749; Sun, 9 Aug 2015 14:25:11 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79EPBJ8064746; Sun, 9 Aug 2015 14:25:11 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201508091425.t79EPBJ8064746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Sun, 9 Aug 2015 14:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393792 - head/devel/log4c X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 14:25:12 -0000 Author: rodrigo Date: Sun Aug 9 14:25:10 2015 New Revision: 393792 URL: https://svnweb.freebsd.org/changeset/ports/393792 Log: Update log4c to 1.2.4 Modified: head/devel/log4c/Makefile head/devel/log4c/distinfo head/devel/log4c/pkg-plist Modified: head/devel/log4c/Makefile ============================================================================== --- head/devel/log4c/Makefile Sun Aug 9 14:18:15 2015 (r393791) +++ head/devel/log4c/Makefile Sun Aug 9 14:25:10 2015 (r393792) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= log4c -PORTVERSION= 1.2.3 +PORTVERSION= 1.2.4 PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF Modified: head/devel/log4c/distinfo ============================================================================== --- head/devel/log4c/distinfo Sun Aug 9 14:18:15 2015 (r393791) +++ head/devel/log4c/distinfo Sun Aug 9 14:25:10 2015 (r393792) @@ -1,2 +1,2 @@ -SHA256 (log4c-1.2.3.tar.gz) = dcb5e0d9dd3a7a51b91dcd0fe00145521e681f1454f3c3eba159b3a93212ffe0 -SIZE (log4c-1.2.3.tar.gz) = 534781 +SHA256 (log4c-1.2.4.tar.gz) = 5991020192f52cc40fa852fbf6bbf5bd5db5d5d00aa9905c67f6f0eadeed48ea +SIZE (log4c-1.2.4.tar.gz) = 559789 Modified: head/devel/log4c/pkg-plist ============================================================================== --- head/devel/log4c/pkg-plist Sun Aug 9 14:18:15 2015 (r393791) +++ head/devel/log4c/pkg-plist Sun Aug 9 14:25:10 2015 (r393792) @@ -1,5 +1,5 @@ bin/log4c-config -etc/log4crc.sample +%%ETCDIR%%rc.sample include/log4c.h include/log4c/appender.h include/log4c/appender_type_mmap.h @@ -16,6 +16,8 @@ include/log4c/layout.h include/log4c/layout_type_basic.h include/log4c/layout_type_basic_r.h include/log4c/layout_type_dated.h +include/log4c/layout_type_dated_local.h +include/log4c/layout_type_dated_local_r.h include/log4c/layout_type_dated_r.h include/log4c/location_info.h include/log4c/logging_event.h @@ -27,7 +29,7 @@ include/log4c/version.h lib/liblog4c.a lib/liblog4c.so lib/liblog4c.so.3 -lib/liblog4c.so.3.3.0 +lib/liblog4c.so.3.3.1 libdata/pkgconfig/log4c.pc man/man1/log4c-config.1.gz share/aclocal/log4c.m4 From owner-svn-ports-all@freebsd.org Sun Aug 9 14:29:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2BDF99DE58; Sun, 9 Aug 2015 14:29:00 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BFEA0843; Sun, 9 Aug 2015 14:29:00 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79ET0r2065004; Sun, 9 Aug 2015 14:29:00 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79ET0DA065003; Sun, 9 Aug 2015 14:29:00 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091429.t79ET0DA065003@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 14:29:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393793 - head/sysutils/cinnamon-control-center/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 14:29:00 -0000 Author: kwm Date: Sun Aug 9 14:29:00 2015 New Revision: 393793 URL: https://svnweb.freebsd.org/changeset/ports/393793 Log: Unbreak cinnamon-control-center after gnome-common change in the GNOME 3.16 import. Submitted by: pkg-fallout Modified: head/sysutils/cinnamon-control-center/files/patch-configure.ac Modified: head/sysutils/cinnamon-control-center/files/patch-configure.ac ============================================================================== --- head/sysutils/cinnamon-control-center/files/patch-configure.ac Sun Aug 9 14:25:10 2015 (r393792) +++ head/sysutils/cinnamon-control-center/files/patch-configure.ac Sun Aug 9 14:29:00 2015 (r393793) @@ -1,6 +1,14 @@ ---- configure.ac.orig 2014-11-12 01:19:37.000000000 +0100 -+++ configure.ac 2014-11-24 22:20:09.360210664 +0100 -@@ -138,13 +138,6 @@ +--- configure.ac.orig 2014-11-26 22:11:51.000000000 +0100 ++++ configure.ac 2015-08-09 16:26:26.690975000 +0200 +@@ -35,7 +35,6 @@ + AC_SUBST(GETTEXT_PACKAGE) + AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package]) + +-GNOME_DEBUG_CHECK + GNOME_COMPILE_WARNINGS([maximum]) + + AC_PATH_XTRA +@@ -138,13 +137,6 @@ #---------------------------------------------- # Network Manager Stuff From owner-svn-ports-all@freebsd.org Sun Aug 9 14:53:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 146FF99D572; Sun, 9 Aug 2015 14:53:34 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE8657EF; Sun, 9 Aug 2015 14:53:33 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79ErXj0077019; Sun, 9 Aug 2015 14:53:33 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79ErXx3077018; Sun, 9 Aug 2015 14:53:33 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508091453.t79ErXx3077018@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 14:53:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393794 - head/x11-wm/xfce4-session/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 14:53:34 -0000 Author: olivierd Date: Sun Aug 9 14:53:33 2015 New Revision: 393794 URL: https://svnweb.freebsd.org/changeset/ports/393794 Log: Update end-user information after revision r393789 Modified: head/x11-wm/xfce4-session/files/pkg-message.in Modified: head/x11-wm/xfce4-session/files/pkg-message.in ============================================================================== --- head/x11-wm/xfce4-session/files/pkg-message.in Sun Aug 9 14:29:00 2015 (r393793) +++ head/x11-wm/xfce4-session/files/pkg-message.in Sun Aug 9 14:53:33 2015 (r393794) @@ -1,26 +1,20 @@ -To be able to shutdown or reboot your system, you'll have to add a .pkla file -in %%LOCALBASE%%/etc/polkit-1/localauthority/50-local.d directory. Which looks +To be able to shutdown or reboot your system, you'll have to add .rules +files in %%LOCALBASE%%/etc/polkit-1/rules.d directory. Which looks like this (replace PUTYOURGROUPHERE by your group): -[Restart] -Identity=unix-group:PUTYOURGROUPHERE -Action=org.freedesktop.consolekit.system.restart -ResultAny=yes -ResultInactive=yes -ResultActive=yes - -[Shutdown] -Identity=unix-group:PUTYOURGROUPHERE -Action=org.freedesktop.consolekit.system.stop -ResultAny=yes -ResultInactive=yes -ResultActive=yes +polkit.addRule(function (action, subject) { + if (action.id == "org.freedesktop.consolekit.system.restart" || + action.id == "org.freedesktop.consolekit.system.stop" + && subject.isInGroup("PUTYOURGROUPHERE")) { + return polkit.Result.YES; + } +}); For those who have working suspend/resume: -[Suspend] -Identity=unix-group:PUTYOURGROUPHERE -Action=org.freedesktop.upower.suspend -ResultAny=yes -ResultInactive=yes -ResultActive=yes +polkit.addRule(function (action, subject) { + if (action.id == "org.freedesktop.consolekit.system.suspend" + && subject.isInGroup("PUTYOURGROUPHERE")) { + return polkit.Result.YES; + } +}); From owner-svn-ports-all@freebsd.org Sun Aug 9 15:22:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 128D599DAA6; Sun, 9 Aug 2015 15:22:13 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA551939; Sun, 9 Aug 2015 15:22:12 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79FMCto089215; Sun, 9 Aug 2015 15:22:12 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79FMC7l089212; Sun, 9 Aug 2015 15:22:12 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508091522.t79FMC7l089212@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 15:22:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393795 - in head: . sysutils/xfce4-power-manager sysutils/xfce4-power-manager/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 15:22:13 -0000 Author: olivierd Date: Sun Aug 9 15:22:11 2015 New Revision: 393795 URL: https://svnweb.freebsd.org/changeset/ports/393795 Log: - Update to 1.5.2 - Sort USES - Remove unneeded patches Obtained from: Xfce devel repo Deleted: head/sysutils/xfce4-power-manager/files/ Modified: head/UPDATING head/sysutils/xfce4-power-manager/Makefile head/sysutils/xfce4-power-manager/distinfo Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Aug 9 14:53:33 2015 (r393794) +++ head/UPDATING Sun Aug 9 15:22:11 2015 (r393795) @@ -5,6 +5,25 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20150809: + AFFECTS: users of sysutils/xfce4-power-manager + AUTHOR: olivierd@FreeBSD.org + + After upgrading to 1.5.2, by default a label is displayed next to the + panel icon (it shows percentage and remaining time). + + To hide this label, a new property /xfce4-power-manager/show-panel-label + must be created: + + xfconf-query -c xfce4-power-manager \ + -p /xfce4-power-manager/show-panel-label -n -t int -s 0 + + Possible values are: + - 0 -> does not display label + - 1 -> displays only percentage + - 2 -> displays only remaining time + - 3 -> displays only percentage and remaining time (default value) + 20150806: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org Modified: head/sysutils/xfce4-power-manager/Makefile ============================================================================== --- head/sysutils/xfce4-power-manager/Makefile Sun Aug 9 14:53:33 2015 (r393794) +++ head/sysutils/xfce4-power-manager/Makefile Sun Aug 9 15:22:11 2015 (r393795) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xfce4-power-manager -PORTVERSION= 1.5.0 +PORTVERSION= 1.5.2 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R}/ DIST_SUBDIR= xfce4 @@ -18,7 +18,7 @@ LIB_DEPENDS= libnotify.so:${PORTSDIR}/de libupower-glib.so:${PORTSDIR}/sysutils/upower GNU_CONFIGURE= yes -USES= gettext pkgconfig gmake libtool xfce:gtk3 tar:bzip2 +USES= gettext gmake libtool pkgconfig tar:bzip2 xfce:gtk3 USE_GNOME= glib20 gtk30 intltool intlhack USE_XFCE= panel INSTALLS_ICONS= yes Modified: head/sysutils/xfce4-power-manager/distinfo ============================================================================== --- head/sysutils/xfce4-power-manager/distinfo Sun Aug 9 14:53:33 2015 (r393794) +++ head/sysutils/xfce4-power-manager/distinfo Sun Aug 9 15:22:11 2015 (r393795) @@ -1,2 +1,2 @@ -SHA256 (xfce4/xfce4-power-manager-1.5.0.tar.bz2) = 62bc832d9474094fd7481c4658c0dd67e1b41fe89fdaa75b2803d3d2096f9fb7 -SIZE (xfce4/xfce4-power-manager-1.5.0.tar.bz2) = 1108153 +SHA256 (xfce4/xfce4-power-manager-1.5.2.tar.bz2) = 8bdc640f227ffccbdcfbbcca8ba36d1ce054236c0a32dbf87a4a751f3a835415 +SIZE (xfce4/xfce4-power-manager-1.5.2.tar.bz2) = 1165775 From owner-svn-ports-all@freebsd.org Sun Aug 9 15:45:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2621299DF52; Sun, 9 Aug 2015 15:45:52 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15C9114BC; Sun, 9 Aug 2015 15:45:52 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Fjp6b097709; Sun, 9 Aug 2015 15:45:51 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79FjpxG097708; Sun, 9 Aug 2015 15:45:51 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508091545.t79FjpxG097708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 15:45:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393796 - head/editors/mousepad X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 15:45:52 -0000 Author: olivierd Date: Sun Aug 9 15:45:51 2015 New Revision: 393796 URL: https://svnweb.freebsd.org/changeset/ports/393796 Log: Clean up options helper Obtained from: Xfce devel repo Modified: head/editors/mousepad/Makefile Modified: head/editors/mousepad/Makefile ============================================================================== --- head/editors/mousepad/Makefile Sun Aug 9 15:22:11 2015 (r393795) +++ head/editors/mousepad/Makefile Sun Aug 9 15:45:51 2015 (r393796) @@ -23,9 +23,7 @@ USE_GNOME= glib20 intltool intlhack OPTIONS_DEFINE= GTK3 GTK3_CONFIGURE_ENABLE= gtk3 GTK3_USE= gnome=gtk30,gtksourceview3 -GTK3_USES= xfce:gtk3 GTK3_USE_OFF= gnome=gtk20,gtksourceview2 -GTK3_USES_OFF= xfce GLIB_SCHEMAS= org.xfce.mousepad.gschema.xml From owner-svn-ports-all@freebsd.org Sun Aug 9 15:51:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5819E99D159; Sun, 9 Aug 2015 15:51:34 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47F5B171A; Sun, 9 Aug 2015 15:51:34 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79FpYTB001789; Sun, 9 Aug 2015 15:51:34 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79FpYbH001788; Sun, 9 Aug 2015 15:51:34 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508091551.t79FpYbH001788@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sun, 9 Aug 2015 15:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393797 - head/x11/xfce4-taskmanager X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 15:51:34 -0000 Author: olivierd Date: Sun Aug 9 15:51:33 2015 New Revision: 393797 URL: https://svnweb.freebsd.org/changeset/ports/393797 Log: Rewrite options helper Obtained from: Xfce devel repo Modified: head/x11/xfce4-taskmanager/Makefile Modified: head/x11/xfce4-taskmanager/Makefile ============================================================================== --- head/x11/xfce4-taskmanager/Makefile Sun Aug 9 15:45:51 2015 (r393796) +++ head/x11/xfce4-taskmanager/Makefile Sun Aug 9 15:51:33 2015 (r393797) @@ -16,20 +16,17 @@ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes USES= gettext gmake pkgconfig tar:bzip2 -USE_GNOME= glib20 cairo intltool intlhack +USE_GNOME= gtk20 glib20 cairo intltool intlhack CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_SINGLE= GTK -OPTIONS_SINGLE_GTK= GTK2 GTK3 -OPTIONS_DEFAULT= GTK2 - -GTK2_USE= GNOME=gtk20,libwnck -GTK2_CONFIGURE_ON= --enable-wnck --disable-wnck3 -GTK3_USE= GNOME=gtk20,gtk30,libwnck3 +OPTIONS_DEFINE= GTK3 +GTK3_USE= gnome=gtk30,libwnck3 GTK3_CONFIGURE_ON= --enable-gtk3 --enable-wnck3 --disable-wnck +GTK3_USE_OFF= gnome=libwnck +GTK3_CONFIGURE_OFF= --enable-wnck --disable-wnck3 -CONFIGURE_ARGS= --disable-gksu +CONFIGURE_ARGS+= --disable-gksu post-patch: @${REINPLACE_CMD} -e 's|prefix)/$$(DATADIRNAME)|datadir)|' \ From owner-svn-ports-all@freebsd.org Sun Aug 9 16:02:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C28B99D5CD; Sun, 9 Aug 2015 16:02:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B96DFC; Sun, 9 Aug 2015 16:02:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79G2iZ2006155; Sun, 9 Aug 2015 16:02:44 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79G2hbd006153; Sun, 9 Aug 2015 16:02:43 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091602.t79G2hbd006153@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 16:02:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393798 - in head/devel: . rubygem-coffee-rails41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:02:44 -0000 Author: swills Date: Sun Aug 9 16:02:42 2015 New Revision: 393798 URL: https://svnweb.freebsd.org/changeset/ports/393798 Log: devel/rubygem-coffee-rails41: create port Add rails 4.1 version of coffee-rails PR: 201819 Submitted by: Torsten Zühlsdorff Added: head/devel/rubygem-coffee-rails41/ head/devel/rubygem-coffee-rails41/Makefile (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 15:51:33 2015 (r393797) +++ head/devel/Makefile Sun Aug 9 16:02:42 2015 (r393798) @@ -4583,6 +4583,7 @@ SUBDIR += rubygem-coercible SUBDIR += rubygem-coffee-rails SUBDIR += rubygem-coffee-rails4 + SUBDIR += rubygem-coffee-rails41 SUBDIR += rubygem-coffee-script SUBDIR += rubygem-coffee-script-source SUBDIR += rubygem-colorize Added: head/devel/rubygem-coffee-rails41/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-coffee-rails41/Makefile Sun Aug 9 16:02:42 2015 (r393798) @@ -0,0 +1,13 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PKGNAMESUFFIX= 41 + +RUN_DEPENDS= rubygem-coffee-script>=2.2.0:${PORTSDIR}/devel/rubygem-coffee-script \ + rubygem-railties41>=4.1.12:${PORTSDIR}/www/rubygem-railties41 + +MASTERDIR= ${.CURDIR}/../rubygem-coffee-rails4 + +PORTSCOUT= limit:^4\.1 + +.include "${MASTERDIR}/Makefile" From owner-svn-ports-all@freebsd.org Sun Aug 9 16:04:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC1A099D64B; Sun, 9 Aug 2015 16:04:42 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB307204; Sun, 9 Aug 2015 16:04:42 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79G4gS4006346; Sun, 9 Aug 2015 16:04:42 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79G4gel006345; Sun, 9 Aug 2015 16:04:42 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091604.t79G4gel006345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 16:04:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393799 - head/devel/rubygem-coffee-rails4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:04:42 -0000 Author: swills Date: Sun Aug 9 16:04:41 2015 New Revision: 393799 URL: https://svnweb.freebsd.org/changeset/ports/393799 Log: devel/rubygem-coffee-rails4: make master Allow overriding PKGNAMESUFFIX and RUN_DEPENDS to support slave port PR: 201819 Modified: head/devel/rubygem-coffee-rails4/Makefile Modified: head/devel/rubygem-coffee-rails4/Makefile ============================================================================== --- head/devel/rubygem-coffee-rails4/Makefile Sun Aug 9 16:02:42 2015 (r393798) +++ head/devel/rubygem-coffee-rails4/Makefile Sun Aug 9 16:04:41 2015 (r393799) @@ -5,14 +5,14 @@ PORTNAME= coffee-rails PORTVERSION= 4.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG -PKGNAMESUFFIX= 4 +PKGNAMESUFFIX?= 4 MAINTAINER= ruby@FreeBSD.org COMMENT= Coffee Script adapter for the Rails asset pipeline LICENSE= MIT -RUN_DEPENDS= rubygem-coffee-script>=2.2.0:${PORTSDIR}/devel/rubygem-coffee-script \ +RUN_DEPENDS?= rubygem-coffee-script>=2.2.0:${PORTSDIR}/devel/rubygem-coffee-script \ rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 NO_ARCH= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 16:09:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF1A499D742; Sun, 9 Aug 2015 16:09:25 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CEC0D3A0; Sun, 9 Aug 2015 16:09:25 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79G9PGQ006690; Sun, 9 Aug 2015 16:09:25 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79G9PUY006689; Sun, 9 Aug 2015 16:09:25 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091609.t79G9PUY006689@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 16:09:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393800 - head/devel/rubygem-coffee-rails41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:09:26 -0000 Author: swills Date: Sun Aug 9 16:09:25 2015 New Revision: 393800 URL: https://svnweb.freebsd.org/changeset/ports/393800 Log: devel/rubygem-coffee-rails41: remove portscout PORTSCOUT line isn't needed here Modified: head/devel/rubygem-coffee-rails41/Makefile Modified: head/devel/rubygem-coffee-rails41/Makefile ============================================================================== --- head/devel/rubygem-coffee-rails41/Makefile Sun Aug 9 16:04:41 2015 (r393799) +++ head/devel/rubygem-coffee-rails41/Makefile Sun Aug 9 16:09:25 2015 (r393800) @@ -8,6 +8,4 @@ RUN_DEPENDS= rubygem-coffee-script>=2.2. MASTERDIR= ${.CURDIR}/../rubygem-coffee-rails4 -PORTSCOUT= limit:^4\.1 - .include "${MASTERDIR}/Makefile" From owner-svn-ports-all@freebsd.org Sun Aug 9 16:13:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76C4299D848; Sun, 9 Aug 2015 16:13:29 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4436D912; Sun, 9 Aug 2015 16:13:29 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GDT7R010623; Sun, 9 Aug 2015 16:13:29 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GDSUi010620; Sun, 9 Aug 2015 16:13:28 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091613.t79GDSUi010620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 16:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393801 - in head/devel: . rubygem-jbuilder rubygem-jbuilder-rails41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:13:29 -0000 Author: swills Date: Sun Aug 9 16:13:27 2015 New Revision: 393801 URL: https://svnweb.freebsd.org/changeset/ports/393801 Log: devel/rubygem-jbuilder-rails41: create port Add rails 4.1 version of jbuilder PR: 201820 Submitted by: Torsten Zühlsdorff Added: head/devel/rubygem-jbuilder-rails41/ head/devel/rubygem-jbuilder-rails41/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/rubygem-jbuilder/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 16:09:25 2015 (r393800) +++ head/devel/Makefile Sun Aug 9 16:13:27 2015 (r393801) @@ -4701,6 +4701,7 @@ SUBDIR += rubygem-iobuffer SUBDIR += rubygem-jammit SUBDIR += rubygem-jbuilder + SUBDIR += rubygem-jbuilder-rails41 SUBDIR += rubygem-jekyll-coffeescript SUBDIR += rubygem-jeweler SUBDIR += rubygem-jmespath Added: head/devel/rubygem-jbuilder-rails41/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-jbuilder-rails41/Makefile Sun Aug 9 16:13:27 2015 (r393801) @@ -0,0 +1,11 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PKGNAMESUFFIX= -rails41 + +RUN_DEPENDS= rubygem-activesupport41>=4.1.12:${PORTSDIR}/devel/rubygem-activesupport41 \ + rubygem-multi_json>=1.2:${PORTSDIR}/devel/rubygem-multi_json + +MASTERDIR= ${.CURDIR}/../rubygem-jbuilder + +.include "${MASTERDIR}/Makefile" Modified: head/devel/rubygem-jbuilder/Makefile ============================================================================== --- head/devel/rubygem-jbuilder/Makefile Sun Aug 9 16:09:25 2015 (r393800) +++ head/devel/rubygem-jbuilder/Makefile Sun Aug 9 16:13:27 2015 (r393801) @@ -11,7 +11,7 @@ COMMENT= Create JSON structures via a Bu LICENSE= MIT -RUN_DEPENDS= rubygem-activesupport4>=3.0.0:${PORTSDIR}/devel/rubygem-activesupport4 \ +RUN_DEPENDS?= rubygem-activesupport4>=3.0.0:${PORTSDIR}/devel/rubygem-activesupport4 \ rubygem-multi_json>=1.2:${PORTSDIR}/devel/rubygem-multi_json NO_ARCH= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 16:18:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 067BC99D92B; Sun, 9 Aug 2015 16:18:21 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D110FA55; Sun, 9 Aug 2015 16:18:20 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GIKV8010968; Sun, 9 Aug 2015 16:18:20 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GIKDj010967; Sun, 9 Aug 2015 16:18:20 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091618.t79GIKDj010967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 16:18:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393802 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:18:21 -0000 Author: kwm Date: Sun Aug 9 16:18:20 2015 New Revision: 393802 URL: https://svnweb.freebsd.org/changeset/ports/393802 Log: Register group id 44, as used in CURRENT from rev 286524. Modified: head/GIDs Modified: head/GIDs ============================================================================== --- head/GIDs Sun Aug 9 16:13:27 2015 (r393801) +++ head/GIDs Sun Aug 9 16:18:20 2015 (r393802) @@ -7,6 +7,7 @@ operator:*:5:amanda mail:*:6:postfix,clamav ftp:*:14: smmsp:*:25: +video:*:44: bind:*:53: rdfdb:*:55: spamd:*:58: From owner-svn-ports-all@freebsd.org Sun Aug 9 16:25:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C3CE99DB1F; Sun, 9 Aug 2015 16:25:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0BE23DD2; Sun, 9 Aug 2015 16:25:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GPrgH014998; Sun, 9 Aug 2015 16:25:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GPrwP014996; Sun, 9 Aug 2015 16:25:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508091625.t79GPrwP014996@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 9 Aug 2015 16:25:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393803 - in head: Mk www/firefox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:25:54 -0000 Author: jbeich Date: Sun Aug 9 16:25:52 2015 New Revision: 393803 URL: https://svnweb.freebsd.org/changeset/ports/393803 Log: www/firefox: remove broken LOGGING option NSPR logging is now always enabled as upstream partially removed support for disabling it. PR: 202165 Reported by: rsmith@xs4all.nl MFH: 2015Q3 X-MFH-With: r393690 Modified: head/Mk/bsd.gecko.mk (contents, props changed) head/www/firefox/Makefile (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Sun Aug 9 16:18:20 2015 (r393802) +++ head/Mk/bsd.gecko.mk Sun Aug 9 16:25:52 2015 (r393803) @@ -378,10 +378,12 @@ STRIP= MOZ_OPTIONS+= --disable-dtrace .endif -.if ${PORT_OPTIONS:MLOGGING} || ${PORT_OPTIONS:MDEBUG} +.if ${MOZILLA_VER:R:R} < 40 +. if ${PORT_OPTIONS:MLOGGING} || ${PORT_OPTIONS:MDEBUG} MOZ_OPTIONS+= --enable-logging -.else +. else MOZ_OPTIONS+= --disable-logging +. endif .endif .if ${PORT_OPTIONS:MPROFILE} Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sun Aug 9 16:18:20 2015 (r393802) +++ head/www/firefox/Makefile Sun Aug 9 16:25:52 2015 (r393803) @@ -49,6 +49,7 @@ MOZ_OPTIONS= --program-transform-name='s --enable-application=browser \ --enable-official-branding +OPTIONS_EXCLUDE= LOGGING OPTIONS_DEFAULT= GTK2 OPTIONS_SINGLE+= TOOLKIT From owner-svn-ports-all@freebsd.org Sun Aug 9 16:30:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C27BD99DC9C; Sun, 9 Aug 2015 16:30:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5CA8FCD; Sun, 9 Aug 2015 16:30:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GUkUD017960; Sun, 9 Aug 2015 16:30:46 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GUiWo017953; Sun, 9 Aug 2015 16:30:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508091630.t79GUiWo017953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 9 Aug 2015 16:30:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393804 - in head: Mk mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:30:46 -0000 Author: jbeich Date: Sun Aug 9 16:30:43 2015 New Revision: 393804 URL: https://svnweb.freebsd.org/changeset/ports/393804 Log: www/firefox: make testing bundled cairo easier via option BUNDLED_CAIRO does nothing with GTK3 until Firefox 41.0 https://bugzilla.mozilla.org/show_bug.cgi?id=1159273 PR: 202174 MFH: 2015Q3 Modified: head/Mk/bsd.gecko.mk (contents, props changed) head/mail/thunderbird/Makefile (contents, props changed) head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox/Makefile (contents, props changed) head/www/firefox/Makefile.options (contents, props changed) head/www/libxul/Makefile (contents, props changed) head/www/seamonkey/Makefile (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Sun Aug 9 16:25:52 2015 (r393803) +++ head/Mk/bsd.gecko.mk Sun Aug 9 16:30:43 2015 (r393804) @@ -137,8 +137,10 @@ MOZ_OPTIONS+= --enable-jemalloc # Standard depends _ALL_DEPENDS= cairo event ffi graphite harfbuzz hunspell icu jpeg nspr nss opus png pixman soundtouch sqlite vorbis vpx +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} cairo_LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo cairo_MOZ_OPTIONS= --enable-system-cairo +.endif event_LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 event_MOZ_OPTIONS= --with-system-libevent Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Sun Aug 9 16:25:52 2015 (r393803) +++ head/mail/thunderbird/Makefile Sun Aug 9 16:30:43 2015 (r393804) @@ -15,7 +15,6 @@ COMMENT= Mozilla Thunderbird is standalo BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -81,6 +80,10 @@ MOZ_OPTIONS:= ${MOZ_OPTIONS:S/${CONFIGUR RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Sun Aug 9 16:25:52 2015 (r393803) +++ head/www/firefox-esr/Makefile Sun Aug 9 16:30:43 2015 (r393804) @@ -16,7 +16,6 @@ COMMENT= Web browser based on the browse BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -65,6 +64,10 @@ WRKSRC:= ${WRKDIR}/mozilla-esr38 RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sun Aug 9 16:25:52 2015 (r393803) +++ head/www/firefox/Makefile Sun Aug 9 16:30:43 2015 (r393804) @@ -15,7 +15,6 @@ COMMENT= Web browser based on the browse BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -64,6 +63,10 @@ WRKSRC:= ${WRKDIR}/mozilla-release RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: head/www/firefox/Makefile.options ============================================================================== --- head/www/firefox/Makefile.options Sun Aug 9 16:25:52 2015 (r393803) +++ head/www/firefox/Makefile.options Sun Aug 9 16:30:43 2015 (r393804) @@ -1,13 +1,15 @@ # -*- makefile-bsdmake -*- -OPTIONS_DEFINE+= CANBERRA DBUS DEBUG DTRACE GCONF GIO GNOMEUI \ - GSTREAMER LIBPROXY LOGGING OPTIMIZED_CFLAGS \ +OPTIONS_DEFINE+= BUNDLED_CAIRO CANBERRA DBUS DEBUG DTRACE GCONF GIO \ + GNOMEUI GSTREAMER LIBPROXY LOGGING OPTIMIZED_CFLAGS \ PGO PROFILE TEST + OPTIONS_DEFAULT+= ALSA DBUS GIO GSTREAMER LOGGING OPTIMIZED_CFLAGS OPTIONS_MULTI+= AUDIO OPTIONS_MULTI_AUDIO= ALSA PULSEAUDIO +BUNDLED_CAIRO_DESC?= Use bundled fork of cairo-1.9.5 CANBERRA_DESC?= Sound theme alerts ENIGMAIL_DESC?= Enigmail extension GNOMEUI_DESC?= libgnomeui support module Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Sun Aug 9 16:25:52 2015 (r393803) +++ head/www/libxul/Makefile Sun Aug 9 16:30:43 2015 (r393804) @@ -14,7 +14,6 @@ COMMENT?= Mozilla runtime package that c BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -67,6 +66,10 @@ MOZ_PKGCONFIG_FILES+= mozilla-nss RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Sun Aug 9 16:25:52 2015 (r393803) +++ head/www/seamonkey/Makefile Sun Aug 9 16:30:43 2015 (r393804) @@ -16,7 +16,6 @@ COMMENT= The open source, standards comp BUILD_DEPENDS= nspr>=4.10.6:${PORTSDIR}/devel/nspr \ nss>=3.17.4:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -79,6 +78,10 @@ XPI_LIBDIR= ${PREFIX}/lib/xpi RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif From owner-svn-ports-all@freebsd.org Sun Aug 9 16:31:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE7EE99DCC6; Sun, 9 Aug 2015 16:31:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3D78238; Sun, 9 Aug 2015 16:31:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GV2HT018117; Sun, 9 Aug 2015 16:31:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GV24E018114; Sun, 9 Aug 2015 16:31:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508091631.t79GV24E018114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 9 Aug 2015 16:31:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393805 - in head/www/firefox: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:31:02 -0000 Author: jbeich Date: Sun Aug 9 16:31:01 2015 New Revision: 393805 URL: https://svnweb.freebsd.org/changeset/ports/393805 Log: www/firefox: temporarily disable OMTC to avoid crashes OMTC on X11 platforms uses BasicCompositor unless GL layers are also enabled. Change the default value of its pref in about:config. For now, bundled cairo is left as is pending more testing. No upstream bug as I cannot reproduce reliably to get the stacktrace(s) with a clean profile. PR: 202174 Reported by: many Tested by: Martin Birgmeier, Andrey Fesenko, Konstantin Belousov MFH: 2015Q3 X-MFH-With: r393690 Added: head/www/firefox/files/patch-modules-libpref-init-all.js (contents, props changed) Modified: head/www/firefox/Makefile (contents, props changed) Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Sun Aug 9 16:30:43 2015 (r393804) +++ head/www/firefox/Makefile Sun Aug 9 16:31:01 2015 (r393805) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Added: head/www/firefox/files/patch-modules-libpref-init-all.js ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-modules-libpref-init-all.js Sun Aug 9 16:31:01 2015 (r393805) @@ -0,0 +1,15 @@ +--- modules/libpref/init/all.js.orig 2015-08-06 22:39:34 UTC ++++ modules/libpref/init/all.js +@@ -4052,7 +4052,12 @@ pref("layers.max-active", -1); + pref("layers.tiles.adjust", true); + + // Set the default values, and then override per-platform as needed ++#ifdef MOZ_TREE_CAIRO + pref("layers.offmainthreadcomposition.enabled", true); ++#else ++// Disable for system cairo on suspicion of causing random crashes ++pref("layers.offmainthreadcomposition.enabled", false); ++#endif + // Compositor target frame rate. NOTE: If vsync is enabled the compositor + // frame rate will still be capped. + // -1 -> default (match layout.frame_rate or 60 FPS) From owner-svn-ports-all@freebsd.org Sun Aug 9 16:33:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1609B99DD87; Sun, 9 Aug 2015 16:33:33 +0000 (UTC) (envelope-from grembo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED8D466A; Sun, 9 Aug 2015 16:33:32 +0000 (UTC) (envelope-from grembo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GXWUX019534; Sun, 9 Aug 2015 16:33:32 GMT (envelope-from grembo@FreeBSD.org) Received: (from grembo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GXWuw019532; Sun, 9 Aug 2015 16:33:32 GMT (envelope-from grembo@FreeBSD.org) Message-Id: <201508091633.t79GXWuw019532@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: grembo set sender to grembo@FreeBSD.org using -f From: Michael Gmelin Date: Sun, 9 Aug 2015 16:33:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393806 - in head/devel/cdash: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:33:33 -0000 Author: grembo Date: Sun Aug 9 16:33:31 2015 New Revision: 393806 URL: https://svnweb.freebsd.org/changeset/ports/393806 Log: Use dos2unix, so patches apply cleanly after commit. Differential Revision: https://reviews.freebsd.org/D3310 Approved by: mentors (implicit) Modified: head/devel/cdash/Makefile head/devel/cdash/files/patch-CMakeLists.txt Modified: head/devel/cdash/Makefile ============================================================================== --- head/devel/cdash/Makefile Sun Aug 9 16:31:01 2015 (r393805) +++ head/devel/cdash/Makefile Sun Aug 9 16:33:31 2015 (r393806) @@ -16,7 +16,9 @@ OPTIONS_MULTI= DB OPTIONS_MULTI_DB= MYSQL PGSQL OPTIONS_DEFAULT=MYSQL -USES= cmake:outsource zip +USES= dos2unix cmake:outsource zip +DOS2UNIX_GLOB= *.php *.xml *.xsl *.txt + CMAKE_ARGS+= -DCDASH_DB_NAME:STRING=cdash \ -DCDASH_DB_LOGIN:STRING=cdash \ -DCDASH_DB_TYPE:STRING=${DB_TYPE} Modified: head/devel/cdash/files/patch-CMakeLists.txt ============================================================================== --- head/devel/cdash/files/patch-CMakeLists.txt Sun Aug 9 16:31:01 2015 (r393805) +++ head/devel/cdash/files/patch-CMakeLists.txt Sun Aug 9 16:33:31 2015 (r393806) @@ -1,19 +1,19 @@ --- CMakeLists.txt.orig 2012-03-02 11:38:07.000000000 +0100 +++ CMakeLists.txt 2012-03-02 11:38:47.000000000 +0100 @@ -11,6 +11,7 @@ - set(CDASH_DB_PORT "" CACHE STRING "Port to connect to the database") - set(CDASH_DB_HOST "localhost" CACHE STRING "Hostname of the database server") - set(CDASH_DB_TYPE "mysql" CACHE STRING "Database type") -+set(CDASH_DB_NAME "cdash4simpletest" CACHE STRING "Database name") - option(CDASH_USE_SELENIUM "Should CDash use Selenium to test ajax functionality?" OFF) - option(CDASH_PRO "Are we testing CDashPro?" OFF) - set(CMake_SOURCE_DIR CACHE FILEPATH "Path to CMake source dir. Set this to import tests from CMake") + set(CDASH_DB_PORT "" CACHE STRING "Port to connect to the database") + set(CDASH_DB_HOST "localhost" CACHE STRING "Hostname of the database server") + set(CDASH_DB_TYPE "mysql" CACHE STRING "Database type") ++set(CDASH_DB_NAME "cdash4simpletest" CACHE STRING "Database name") + option(CDASH_USE_SELENIUM "Should CDash use Selenium to test ajax functionality?" OFF) + option(CDASH_PRO "Are we testing CDashPro?" OFF) + set(CMake_SOURCE_DIR CACHE FILEPATH "Path to CMake source dir. Set this to import tests from CMake") @@ -87,7 +88,7 @@ - // - // Some of the CDash tests also inject config settings below as tests run... - // --$CDASH_DB_NAME = 'cdash4simpletest'; -+$CDASH_DB_NAME = '${CDASH_DB_NAME}'; - $CDASH_TESTING_MODE = true; - $CDASH_REGISTRATION_EMAIL_VERIFY = false; - $CDASH_TESTING_RENAME_LOGS = ${rename_logs}; + // + // Some of the CDash tests also inject config settings below as tests run... + // +-$CDASH_DB_NAME = 'cdash4simpletest'; ++$CDASH_DB_NAME = '${CDASH_DB_NAME}'; + $CDASH_TESTING_MODE = true; + $CDASH_REGISTRATION_EMAIL_VERIFY = false; + $CDASH_TESTING_RENAME_LOGS = ${rename_logs}; From owner-svn-ports-all@freebsd.org Sun Aug 9 16:39:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8140C99DEE8; Sun, 9 Aug 2015 16:39:35 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5676889B; Sun, 9 Aug 2015 16:39:35 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GdZ8G019977; Sun, 9 Aug 2015 16:39:35 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GdYlu019974; Sun, 9 Aug 2015 16:39:34 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091639.t79GdYlu019974@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 16:39:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393807 - in head/devel: . rubygem-sprockets-rails rubygem-sprockets-rails-rails41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:39:35 -0000 Author: swills Date: Sun Aug 9 16:39:33 2015 New Revision: 393807 URL: https://svnweb.freebsd.org/changeset/ports/393807 Log: devel/rubygem-sprockets-rails-rails41: create port Add rails 4.1 version of rubygem-sprockets-rails PR: 201822 Submitted by: Torsten Zühlsdorff Added: head/devel/rubygem-sprockets-rails-rails41/ head/devel/rubygem-sprockets-rails-rails41/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/rubygem-sprockets-rails/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 16:33:31 2015 (r393806) +++ head/devel/Makefile Sun Aug 9 16:39:33 2015 (r393807) @@ -4869,6 +4869,7 @@ SUBDIR += rubygem-sprockets SUBDIR += rubygem-sprockets-helpers SUBDIR += rubygem-sprockets-rails + SUBDIR += rubygem-sprockets-rails-rails41 SUBDIR += rubygem-sprockets-sass SUBDIR += rubygem-sprockets211 SUBDIR += rubygem-sprockets22 Added: head/devel/rubygem-sprockets-rails-rails41/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sprockets-rails-rails41/Makefile Sun Aug 9 16:39:33 2015 (r393807) @@ -0,0 +1,12 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PKGNAMESUFFIX= -rails41 + +RUN_DEPENDS= rubygem-actionpack41>=4.1.12:${PORTSDIR}/www/rubygem-actionpack41 \ + rubygem-activesupport41>=4.1.12:${PORTSDIR}/devel/rubygem-activesupport41 \ + rubygem-sprockets3>=3.0.3:${PORTSDIR}/devel/rubygem-sprockets3 + +MASTERDIR= ${.CURDIR}/../rubygem-sprockets-rails + +.include "${MASTERDIR}/Makefile" Modified: head/devel/rubygem-sprockets-rails/Makefile ============================================================================== --- head/devel/rubygem-sprockets-rails/Makefile Sun Aug 9 16:33:31 2015 (r393806) +++ head/devel/rubygem-sprockets-rails/Makefile Sun Aug 9 16:39:33 2015 (r393807) @@ -11,7 +11,7 @@ COMMENT= Sprockets Rails integration LICENSE= MIT -RUN_DEPENDS= rubygem-actionpack4>=4.0:${PORTSDIR}/www/rubygem-actionpack4 \ +RUN_DEPENDS?= rubygem-actionpack4>=4.0:${PORTSDIR}/www/rubygem-actionpack4 \ rubygem-activesupport4>=4.0:${PORTSDIR}/devel/rubygem-activesupport4 \ rubygem-sprockets3>=3.0.3:${PORTSDIR}/devel/rubygem-sprockets3 From owner-svn-ports-all@freebsd.org Sun Aug 9 16:44:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2CB89980DE; Sun, 9 Aug 2015 16:44:47 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 7CC49CBC; Sun, 9 Aug 2015 16:44:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id D5646BDC8B; Sun, 9 Aug 2015 18:44:43 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id AD33CBDC8C; Sun, 9 Aug 2015 18:44:43 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 63B04408F475; Sun, 9 Aug 2015 18:44:43 +0200 (CEST) Date: Sun, 09 Aug 2015 18:44:43 +0200 From: Mathieu Arnold To: Leo Vandewoestijne cc: erwin@FreeBSD.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393685 - in head/dns/knot2: . files Message-ID: <3246FA07B1C61E5E4E07B62B@atuin.in.mat.cc> In-Reply-To: <20150809115256.GA50813@relay7.ucia.gov> References: <201508070751.t777pjLs000674@repo.freebsd.org> <2CC2762BF6ABBED5C57AB963@atuin.in.mat.cc> <20150809115256.GA50813@relay7.ucia.gov> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========025B88D502B250CA85EB==========" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:44:48 -0000 --==========025B88D502B250CA85EB========== Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline +--On 9 ao=C3=BBt 2015 11:52:56 +0000 Leo Vandewoestijne = wrote: | Hello, |=20 | On Sat, 08 Aug 2015, Mathieu Arnold wrote: |=20 |> +--On 7 ao??t 2015 07:51:45 +0000 Erwin Lansing |> wrote: |> | Author: erwin |> | Date: Fri Aug 7 07:51:44 2015 |> | New Revision: 393685 |> | URL: https://svnweb.freebsd.org/changeset/ports/393685 |> |=20 |> | Log: |> | Update to 2.0.0 |> | =20 |> | PR: 201257 |> | Submitted by: Leo Vandewoestijne |> | Sponsored by: DK Hostmaster A/S |>=20 |> After this, I get a build error: |>=20 |> In file included from utils/kdig/kdig_main.c:20: |> In file included from ../src/utils/kdig/kdig_params.h:38: |> ../src/dnstap/reader.h:27:10: fatal error: 'fstrm.h' file not found |> # include |> ^ |> 1 error generated. |> *** [utils/kdig/kdig_main.o] Error code 1 |>=20 |> https://pkg.absolight.fr/data/10amd64-pkgng/20150808T184208Z/logs/errors |> /knot2-2.0.0.log |>=20 |>=20 | Odd I didn't catch that; only explanation I have is maybe my ports in | poudriere was not in sync with the ports-tree I use for initial testing. |=20 | So fstrm turns not only a dependency for dnstap anymore, but now also for | the tools, so fails without dnstap option selected (the default). |=20 | That's easily solved by making fstrm a main dependency. |=20 |=20 | Attached my patch and logs. Ah, strangely, with libstrm installed, it doesn't build much better, same error, build on --=20 Mathieu Arnold --==========025B88D502B250CA85EB========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJVx4N7XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IAA8P+wc529I/Ylc1+Bdv+INtmw7E +OsGpBHQaJjDm1OT2vp7O0mDzMIkafhDqSqOR7lp7UGgYwPLgLcrNohb5G0r7O3p KIfItB40jxflS5g44yR5DUzk8M8o/mK2ANEHGmP2GYsNbo+AZm62XVuqgev72g2w Anm04QM+YBOME0Mu0Fuex8z54pHI+TCGacyTEip1tjzNdvlpHwFzGLxzv1ZLwlzD ccNVJvHlTwm3C0+8nbXo95nT9rzDokOi3JR77U77M2Y87Bo5HfoEd9wuT+m3RSN/ 2pVWiemJIEgpWv9ZWmhAPiilpMuanBQmsCBbeADNj7W0Wrw/mulBANeZR5PeiLEz LpfZ2OJ7+TMT7LiwBrz4iYp6im7GW5xY6WZpEOcI9A7Xq+1N64F1UssJLOovgNFD LB3y44FAtlYx0+8JP2z8v/zfB4XaodIfnG36zbYjkd54qakr0s6FYDyQgTOH4ngP M1tkvOzyVaBxSUk7gLdnW7J0LrodB+W/1oAavKjW2DamfLNK0ZpUC6mf2rOsaTYm CLQ2JbyhCaCnWtpNq9wYhpTVWfRPsrl7CLEOH/AoahloTx32r7nJOFbmfUWLtTTd sZzGQ6OfRQrLR2hqqwaCX91wup88zeAITU14VGRVMz2LLmuhG+Kk8zW3kmIa1ZnW BSZtG6h0DVhMGVnM3O9g =ahuA -----END PGP SIGNATURE----- --==========025B88D502B250CA85EB==========-- From owner-svn-ports-all@freebsd.org Sun Aug 9 16:46:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B77AA99817E; Sun, 9 Aug 2015 16:46:25 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9ABF7DB6; Sun, 9 Aug 2015 16:46:25 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79GkPSm024045; Sun, 9 Aug 2015 16:46:25 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79GkOK8024042; Sun, 9 Aug 2015 16:46:24 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091646.t79GkOK8024042@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 16:46:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393808 - head/www/webkit2-gtk3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 16:46:25 -0000 Author: kwm Date: Sun Aug 9 16:46:24 2015 New Revision: 393808 URL: https://svnweb.freebsd.org/changeset/ports/393808 Log: Update to 2.8.5 [1]. * libxslt is also needed at run time [2], this was fixed in webkit-gtk[23] but didn't make to webkit2-gtk3 or accedently reversed. * Fix portscout macro. PR: 202171 [1] Submitted by: olivierd@ [1], marino@ [2] Modified: head/www/webkit2-gtk3/Makefile head/www/webkit2-gtk3/distinfo head/www/webkit2-gtk3/pkg-plist Modified: head/www/webkit2-gtk3/Makefile ============================================================================== --- head/www/webkit2-gtk3/Makefile Sun Aug 9 16:39:33 2015 (r393807) +++ head/www/webkit2-gtk3/Makefile Sun Aug 9 16:46:24 2015 (r393808) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= webkit -PORTVERSION= 2.8.4 +PORTVERSION= 2.8.5 CATEGORIES= www MASTER_SITES= http://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk3 @@ -23,7 +23,7 @@ LIB_DEPENDS= libenchant.so:${PORTSDIR}/t libsoup-2.4.so:${PORTSDIR}/devel/libsoup RUN_DEPENDS= geoclue>=0:${PORTSDIR}/net/geoclue -PORTSCOUT= ^${PORTVERSION:R:S|.|\.|}\.*$$ +PORTSCOUT= limitw:1,even USE_GSTREAMER1= yes USE_XORG= x11 xext ice @@ -32,7 +32,7 @@ USES= bison compiler:c++11-lib gettext pkgconfig python:2 tar:xz USE_RUBY= yes RUBY_NO_RUN_DEPENDS=yes -USE_GNOME= cairo gtk20 gtk30 introspection:build libxml2 libxslt:build +USE_GNOME= cairo gtk20 gtk30 introspection:build libxml2 libxslt USE_GL= gl egl USE_SQLITE= 3 USE_PERL5= build Modified: head/www/webkit2-gtk3/distinfo ============================================================================== --- head/www/webkit2-gtk3/distinfo Sun Aug 9 16:39:33 2015 (r393807) +++ head/www/webkit2-gtk3/distinfo Sun Aug 9 16:46:24 2015 (r393808) @@ -1,2 +1,2 @@ -SHA256 (webkitgtk-2.8.4.tar.xz) = 30bd366bd970d4bac2f9ef5bff0fb935376bf91ea2aaa2a5183fe5fdbec20fbd -SIZE (webkitgtk-2.8.4.tar.xz) = 10446180 +SHA256 (webkitgtk-2.8.5.tar.xz) = 3d1f0c534935f43fd74df90f2648fcee672d60f1f57a30fa557a77891ae04d20 +SIZE (webkitgtk-2.8.5.tar.xz) = 10455256 Modified: head/www/webkit2-gtk3/pkg-plist ============================================================================== --- head/www/webkit2-gtk3/pkg-plist Sun Aug 9 16:39:33 2015 (r393807) +++ head/www/webkit2-gtk3/pkg-plist Sun Aug 9 16:46:24 2015 (r393808) @@ -272,10 +272,10 @@ lib/girepository-1.0/WebKit2-4.0.typelib lib/girepository-1.0/WebKit2WebExtension-4.0.typelib lib/libjavascriptcoregtk-4.0.so lib/libjavascriptcoregtk-4.0.so.18 -lib/libjavascriptcoregtk-4.0.so.18.1.11 +lib/libjavascriptcoregtk-4.0.so.18.1.12 lib/libwebkit2gtk-4.0.so lib/libwebkit2gtk-4.0.so.37 -lib/libwebkit2gtk-4.0.so.37.6.7 +lib/libwebkit2gtk-4.0.so.37.6.8 lib/webkit2gtk-4.0/injected-bundle/libwebkit2gtkinjectedbundle.so libdata/pkgconfig/javascriptcoregtk-4.0.pc libdata/pkgconfig/webkit2gtk-4.0.pc From owner-svn-ports-all@freebsd.org Sun Aug 9 17:01:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0354699855A; Sun, 9 Aug 2015 17:01:17 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD381628; Sun, 9 Aug 2015 17:01:16 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79H1Gh0031604; Sun, 9 Aug 2015 17:01:16 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79H1GZM031602; Sun, 9 Aug 2015 17:01:16 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091701.t79H1GZM031602@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 17:01:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393809 - head/sysutils/consolekit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 17:01:17 -0000 Author: kwm Date: Sun Aug 9 17:01:15 2015 New Revision: 393809 URL: https://svnweb.freebsd.org/changeset/ports/393809 Log: Don't create the history log file at post-install, and don't list it in the plist with a fixed checksum. Move the touch command to the plist, and clean it up regardless of checksum. PR: 202034 Submitted by: peter@ Modified: head/sysutils/consolekit/Makefile head/sysutils/consolekit/pkg-plist Modified: head/sysutils/consolekit/Makefile ============================================================================== --- head/sysutils/consolekit/Makefile Sun Aug 9 16:46:24 2015 (r393808) +++ head/sysutils/consolekit/Makefile Sun Aug 9 17:01:15 2015 (r393809) @@ -3,7 +3,7 @@ PORTNAME= consolekit PORTVERSION= 0.4.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils gnome MASTER_SITES= http://www.freedesktop.org/software/ConsoleKit/dist/ DISTFILES= ConsoleKit-${PORTVERSION}${EXTRACT_SUFX} @@ -33,6 +33,5 @@ post-install: ${INSTALL_SCRIPT} ${FILESDIR}/ck-get-x11-server-pid \ ${STAGEDIR}${PREFIX}/libexec/ck-get-x11-server-pid @${MKDIR} ${STAGEDIR}/var/log/ConsoleKit - ${TOUCH} ${STAGEDIR}/var/log/ConsoleKit/history .include Modified: head/sysutils/consolekit/pkg-plist ============================================================================== --- head/sysutils/consolekit/pkg-plist Sun Aug 9 16:46:24 2015 (r393808) +++ head/sysutils/consolekit/pkg-plist Sun Aug 9 17:01:15 2015 (r393809) @@ -1,4 +1,3 @@ -/var/log/ConsoleKit/history bin/ck-history bin/ck-launch-session bin/ck-list-sessions @@ -27,6 +26,8 @@ share/dbus-1/system-services/org.freedes share/polkit-1/actions/org.freedesktop.consolekit.policy @dir /var/run/ConsoleKit @dir /var/log/ConsoleKit +@exec /usr/bin/touch /var/log/ConsoleKit/history +@rmtry /var/log/ConsoleKit/history @dir etc/ConsoleKit/run-seat.d @dir etc/ConsoleKit/run-session.d @dir lib/ConsoleKit/run-seat.d From owner-svn-ports-all@freebsd.org Sun Aug 9 17:16:14 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D0DDE998B02; Sun, 9 Aug 2015 17:16:14 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C087AF44; Sun, 9 Aug 2015 17:16:14 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79HGEi2036519; Sun, 9 Aug 2015 17:16:14 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79HGEfV036516; Sun, 9 Aug 2015 17:16:14 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201508091716.t79HGEfV036516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Sun, 9 Aug 2015 17:16:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393810 - head/devel/py-virtualenv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 17:16:14 -0000 Author: nivit Date: Sun Aug 9 17:16:13 2015 New Revision: 393810 URL: https://svnweb.freebsd.org/changeset/ports/393810 Log: - Update to 13.1.0 Relnotes: https://virtualenv.pypa.io/en/latest/changes.html Modified: head/devel/py-virtualenv/Makefile head/devel/py-virtualenv/distinfo Modified: head/devel/py-virtualenv/Makefile ============================================================================== --- head/devel/py-virtualenv/Makefile Sun Aug 9 17:01:15 2015 (r393809) +++ head/devel/py-virtualenv/Makefile Sun Aug 9 17:16:13 2015 (r393810) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= virtualenv -PORTVERSION= 13.0.3 +PORTVERSION= 13.1.0 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-virtualenv/distinfo ============================================================================== --- head/devel/py-virtualenv/distinfo Sun Aug 9 17:01:15 2015 (r393809) +++ head/devel/py-virtualenv/distinfo Sun Aug 9 17:16:13 2015 (r393810) @@ -1,2 +1,2 @@ -SHA256 (pypa-virtualenv-13.0.3_GH0.tar.gz) = 5b9ae6a5417173c7a1441ac85d462ce4e1b308bd410dd5aa89694b98b323f7af -SIZE (pypa-virtualenv-13.0.3_GH0.tar.gz) = 1711711 +SHA256 (pypa-virtualenv-13.1.0_GH0.tar.gz) = 504e705d73251a7f248e0e88d9054a1b4baf5f276a237f8de0830fd0e1661d63 +SIZE (pypa-virtualenv-13.1.0_GH0.tar.gz) = 1705046 From owner-svn-ports-all@freebsd.org Sun Aug 9 17:16:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96091998B27; Sun, 9 Aug 2015 17:16:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 79389A4; Sun, 9 Aug 2015 17:16:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79HGN0B036677; Sun, 9 Aug 2015 17:16:23 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79HGMPL036673; Sun, 9 Aug 2015 17:16:22 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091716.t79HGMPL036673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 17:16:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393811 - in head/mail: . rubygem-actionmailer41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 17:16:23 -0000 Author: swills Date: Sun Aug 9 17:16:21 2015 New Revision: 393811 URL: https://svnweb.freebsd.org/changeset/ports/393811 Log: mail/rubygem-actionmailer41: create port Add rails 4.1 version of actionmailer PR: 201823 Submitted by: Torsten Zühlsdorff Added: head/mail/rubygem-actionmailer41/ head/mail/rubygem-actionmailer41/Makefile (contents, props changed) head/mail/rubygem-actionmailer41/distinfo (contents, props changed) head/mail/rubygem-actionmailer41/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun Aug 9 17:16:13 2015 (r393810) +++ head/mail/Makefile Sun Aug 9 17:16:21 2015 (r393811) @@ -575,6 +575,7 @@ SUBDIR += ruby-rmail SUBDIR += rubygem-actionmailer SUBDIR += rubygem-actionmailer4 + SUBDIR += rubygem-actionmailer41 SUBDIR += rubygem-email_reply_parser-discourse SUBDIR += rubygem-exception_notification SUBDIR += rubygem-larch Added: head/mail/rubygem-actionmailer41/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-actionmailer41/Makefile Sun Aug 9 17:16:21 2015 (r393811) @@ -0,0 +1,25 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= actionmailer +PORTVERSION= 4.1.12 +CATEGORIES= mail rubygems +MASTER_SITES= RG +PKGNAMESUFFIX= 41 + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Easy email delivery and testing for Ruby + +LICENSE= MIT + +RUN_DEPENDS= rubygem-actionpack41>=${PORTVERSION}:${PORTSDIR}/www/rubygem-actionpack41 \ + rubygem-actionview41>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-actionview41 \ + rubygem-mail>=2.5.4:${PORTSDIR}/mail/rubygem-mail + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PORTSCOUT= limit:^4\.1 + +.include Added: head/mail/rubygem-actionmailer41/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-actionmailer41/distinfo Sun Aug 9 17:16:21 2015 (r393811) @@ -0,0 +1,2 @@ +SHA256 (rubygem/actionmailer-4.1.12.gem) = 55c44ed99ce8c0e5d4daa2d1bab169033b3b1b3b3b09ed88b264ede264f3305c +SIZE (rubygem/actionmailer-4.1.12.gem) = 25088 Added: head/mail/rubygem-actionmailer41/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-actionmailer41/pkg-descr Sun Aug 9 17:16:21 2015 (r393811) @@ -0,0 +1,10 @@ +Action Mailer is framework for designing email-service layers. These layers +are used to consolidate code for sending out forgotten passwords, welcoming +wishes on signup, invoices for billing, and any other use case that requires +a written notification to either a person or another system. + +Additionally, an Action Mailer class can be used to process incoming email, +such as allowing a weblog to accept new posts from an email (which could even +have been sent from a phone) + +WWW: http://www.rubyonrails.org From owner-svn-ports-all@freebsd.org Sun Aug 9 18:15:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B2A599DA5B; Sun, 9 Aug 2015 18:15:53 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E31161037; Sun, 9 Aug 2015 18:15:52 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79IFqhn061252; Sun, 9 Aug 2015 18:15:52 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79IFqRx061248; Sun, 9 Aug 2015 18:15:52 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091815.t79IFqRx061248@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 18:15:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393812 - in head/textproc: . rubygem-sass-rails4 rubygem-sass-rails4-rails41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 18:15:53 -0000 Author: swills Date: Sun Aug 9 18:15:51 2015 New Revision: 393812 URL: https://svnweb.freebsd.org/changeset/ports/393812 Log: textproc/rubygem-sass-rails4-rails41: create port Add rails 4.1 version of rubygem-sass-rails4 PR: 201825 Submitted by: Torsten Zühlsdorff Added: head/textproc/rubygem-sass-rails4-rails41/ head/textproc/rubygem-sass-rails4-rails41/Makefile (contents, props changed) Modified: head/textproc/Makefile head/textproc/rubygem-sass-rails4/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Aug 9 17:16:21 2015 (r393811) +++ head/textproc/Makefile Sun Aug 9 18:15:51 2015 (r393812) @@ -1418,6 +1418,7 @@ SUBDIR += rubygem-sass SUBDIR += rubygem-sass-rails SUBDIR += rubygem-sass-rails4 + SUBDIR += rubygem-sass-rails4-rails41 SUBDIR += rubygem-sass-rails5 SUBDIR += rubygem-sass32 SUBDIR += rubygem-sax-machine Added: head/textproc/rubygem-sass-rails4-rails41/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-sass-rails4-rails41/Makefile Sun Aug 9 18:15:51 2015 (r393812) @@ -0,0 +1,13 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PKGNAMESUFFIX= 4-rails41 + +RUN_DEPENDS= rubygem-railties41>=4.1.12:${PORTSDIR}/www/rubygem-railties41 \ + rubygem-sass32>=3.2.0:${PORTSDIR}/textproc/rubygem-sass32 \ + rubygem-sprockets>=2.12.3:${PORTSDIR}/devel/rubygem-sprockets \ + rubygem-sprockets-rails-rails41>=2.0:${PORTSDIR}/devel/rubygem-sprockets-rails-rails41 + +MASTERDIR= ${.CURDIR}/../rubygem-sass-rails4 + +.include "${MASTERDIR}/Makefile" Modified: head/textproc/rubygem-sass-rails4/Makefile ============================================================================== --- head/textproc/rubygem-sass-rails4/Makefile Sun Aug 9 17:16:21 2015 (r393811) +++ head/textproc/rubygem-sass-rails4/Makefile Sun Aug 9 18:15:51 2015 (r393812) @@ -6,14 +6,14 @@ PORTVERSION= 4.0.5 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG -PKGNAMESUFFIX= 4 +PKGNAMESUFFIX?= 4 MAINTAINER= ruby@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline LICENSE= MIT -RUN_DEPENDS= rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 \ +RUN_DEPENDS?= rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 \ rubygem-sass32>=3.2.0:${PORTSDIR}/textproc/rubygem-sass32 \ rubygem-sprockets>=2.12.3:${PORTSDIR}/devel/rubygem-sprockets \ rubygem-sprockets-rails>=2.0:${PORTSDIR}/devel/rubygem-sprockets-rails @@ -23,4 +23,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +PORTSCOUT= limit:^1\.4 + .include From owner-svn-ports-all@freebsd.org Sun Aug 9 18:30:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EDF399DDD2; Sun, 9 Aug 2015 18:30:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 746A917DE; Sun, 9 Aug 2015 18:30:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79IUJw6065649; Sun, 9 Aug 2015 18:30:19 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79IUIK8065646; Sun, 9 Aug 2015 18:30:18 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091830.t79IUIK8065646@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 18:30:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393813 - in head/www: . rubygem-turbolinks rubygem-turbolinks-rails41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 18:30:19 -0000 Author: swills Date: Sun Aug 9 18:30:17 2015 New Revision: 393813 URL: https://svnweb.freebsd.org/changeset/ports/393813 Log: www/rubygem-turbolinks-rails41: create port Add rails 4.1 version of turbolinks PR: 201830 Submitted by: Torsten Zühlsdorff Added: head/www/rubygem-turbolinks-rails41/ head/www/rubygem-turbolinks-rails41/Makefile (contents, props changed) Modified: head/www/Makefile head/www/rubygem-turbolinks/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 9 18:15:51 2015 (r393812) +++ head/www/Makefile Sun Aug 9 18:30:17 2015 (r393813) @@ -1974,6 +1974,7 @@ SUBDIR += rubygem-tinymce-rails SUBDIR += rubygem-tumblr_client SUBDIR += rubygem-turbolinks + SUBDIR += rubygem-turbolinks-rails41 SUBDIR += rubygem-typhoeus SUBDIR += rubygem-uglifier SUBDIR += rubygem-underscore-rails Added: head/www/rubygem-turbolinks-rails41/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-turbolinks-rails41/Makefile Sun Aug 9 18:30:17 2015 (r393813) @@ -0,0 +1,10 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PKGNAMESUFFIX= -rails41 + +RUN_DEPENDS= rubygem-coffee-rails41>=4.1.0:${PORTSDIR}/devel/rubygem-coffee-rails41 + +MASTERDIR= ${.CURDIR}/../rubygem-turbolinks + +.include "${MASTERDIR}/Makefile" Modified: head/www/rubygem-turbolinks/Makefile ============================================================================== --- head/www/rubygem-turbolinks/Makefile Sun Aug 9 18:15:51 2015 (r393812) +++ head/www/rubygem-turbolinks/Makefile Sun Aug 9 18:30:17 2015 (r393813) @@ -10,7 +10,7 @@ COMMENT= Turbolinks makes following link LICENSE= MIT -RUN_DEPENDS= rubygem-coffee-rails4>=4.0.1:${PORTSDIR}/devel/rubygem-coffee-rails4 +RUN_DEPENDS?= rubygem-coffee-rails4>=4.0.1:${PORTSDIR}/devel/rubygem-coffee-rails4 USE_RUBY= yes USE_RUBYGEMS= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 18:38:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5244E99D1A0; Sun, 9 Aug 2015 18:38:52 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42A081E76; Sun, 9 Aug 2015 18:38:52 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Icq8E069699; Sun, 9 Aug 2015 18:38:52 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79IcpxG069698; Sun, 9 Aug 2015 18:38:51 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201508091838.t79IcpxG069698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Sun, 9 Aug 2015 18:38:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393814 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 18:38:52 -0000 Author: flo Date: Sun Aug 9 18:38:51 2015 New Revision: 393814 URL: https://svnweb.freebsd.org/changeset/ports/393814 Log: Mention all CVEs that are fixed in 4.2.4. The release notes only mentioned one. Reported by: junovitch Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Aug 9 18:30:17 2015 (r393813) +++ head/security/vuxml/vuln.xml Sun Aug 9 18:38:51 2015 (r393814) @@ -122,10 +122,16 @@ Notes: https://wordpress.org/news/2015/08/wordpress-4-2-4-security-and-maintenance-release/ CVE-2015-2213 + CVE-2015-5730 + CVE-2015-5731 + CVE-2015-5732 + CVE-2015-5733 + CVE-2015-5734 2015-08-04 2015-08-06 + 2015-08-09 From owner-svn-ports-all@freebsd.org Sun Aug 9 18:41:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32ED499D398; Sun, 9 Aug 2015 18:41:42 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1DEC322F; Sun, 9 Aug 2015 18:41:42 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79IfflP072849; Sun, 9 Aug 2015 18:41:41 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79IffMB072848; Sun, 9 Aug 2015 18:41:41 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201508091841.t79IffMB072848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Sun, 9 Aug 2015 18:41:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393815 - head/x11-fm/librfm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 18:41:42 -0000 Author: rodrigo Date: Sun Aug 9 18:41:41 2015 New Revision: 393815 URL: https://svnweb.freebsd.org/changeset/ports/393815 Log: Fix dependencies : use lang/gawk instead of japanese/gawk Modified: head/x11-fm/librfm/Makefile Modified: head/x11-fm/librfm/Makefile ============================================================================== --- head/x11-fm/librfm/Makefile Sun Aug 9 18:38:51 2015 (r393814) +++ head/x11-fm/librfm/Makefile Sun Aug 9 18:41:41 2015 (r393815) @@ -3,6 +3,7 @@ PORTNAME= librfm PORTVERSION= 5.3.14.6 +PORTREVISION= 1 CATEGORIES= x11-fm MASTER_SITES= SF/xffm/${PORTVERSION} DISTNAME= ${PORTNAME}5-${PORTVERSION} @@ -12,7 +13,7 @@ COMMENT= Basic library used by some rfm LICENSE= GPLv3 -BUILD_DEPENDS= gawk:${PORTSDIR}/japanese/gawk +BUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk LIB_DEPENDS= libtubo.so:${PORTSDIR}/x11-fm/libtubo \ libdbh.so:${PORTSDIR}/databases/dbh \ libzip.so:${PORTSDIR}/archivers/libzip \ @@ -23,7 +24,7 @@ OPTIONS_DEFINE= NLS CONFIGURE_ARGS+=--with-pkglibdata MAKE_JOB_UNSAFE=yes INSTALLS_ICONS= yes -USES= gmake libtool:keepla pkgconfig tar:bzip2 gettext +USES= gettext gmake libtool:keepla pkgconfig tar:bzip2 GNU_CONFIGURE= yes USE_GNOME= gtk20 intltool USE_LDCONFIG= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 18:56:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D934E99D6FA; Sun, 9 Aug 2015 18:56:49 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF643A5B; Sun, 9 Aug 2015 18:56:49 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79IunBw077897; Sun, 9 Aug 2015 18:56:49 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79IumKu077894; Sun, 9 Aug 2015 18:56:48 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508091856.t79IumKu077894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Aug 2015 18:56:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393816 - in head/x11-wm: compiz-plugins-extra compiz-plugins-main compiz-plugins-unsupported X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 18:56:49 -0000 Author: kwm Date: Sun Aug 9 18:56:48 2015 New Revision: 393816 URL: https://svnweb.freebsd.org/changeset/ports/393816 Log: Make sure these compiz ports depend on gconf2 so the GCONF_SCHEMAS will get processed. This fixes the build for these ports due to a new check in bsd.gnome.mk. Pointyhat to: kwm@ for not fixing this during the gnome 3.16 exp-run Modified: head/x11-wm/compiz-plugins-extra/Makefile head/x11-wm/compiz-plugins-main/Makefile head/x11-wm/compiz-plugins-unsupported/Makefile Modified: head/x11-wm/compiz-plugins-extra/Makefile ============================================================================== --- head/x11-wm/compiz-plugins-extra/Makefile Sun Aug 9 18:41:41 2015 (r393815) +++ head/x11-wm/compiz-plugins-extra/Makefile Sun Aug 9 18:56:48 2015 (r393816) @@ -20,7 +20,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} GNU_CONFIGURE= yes USE_GL= yes USES= gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2 -USE_GNOME= intltool +USE_GNOME= gconf2 intltool USE_XORG= glproto USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: head/x11-wm/compiz-plugins-main/Makefile ============================================================================== --- head/x11-wm/compiz-plugins-main/Makefile Sun Aug 9 18:41:41 2015 (r393815) +++ head/x11-wm/compiz-plugins-main/Makefile Sun Aug 9 18:56:48 2015 (r393816) @@ -21,7 +21,7 @@ INSTALL_TARGET= install-strip USE_GL= yes USES= gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2 USE_CSTD= gnu89 -USE_GNOME= intltool +USE_GNOME= gconf2 intltool USE_XORG= glproto USE_LDCONFIG= yes Modified: head/x11-wm/compiz-plugins-unsupported/Makefile ============================================================================== --- head/x11-wm/compiz-plugins-unsupported/Makefile Sun Aug 9 18:41:41 2015 (r393815) +++ head/x11-wm/compiz-plugins-unsupported/Makefile Sun Aug 9 18:56:48 2015 (r393816) @@ -21,7 +21,7 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_GL= yes USES= pathfix gettext gmake libtool:keepla pkgconfig tar:bzip2 -USE_GNOME= intltool +USE_GNOME= gconf2 intltool USE_XORG= glproto USE_LDCONFIG= yes From owner-svn-ports-all@freebsd.org Sun Aug 9 19:14:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0177499DA38; Sun, 9 Aug 2015 19:14:17 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E17863BF; Sun, 9 Aug 2015 19:14:16 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79JEGlk089531; Sun, 9 Aug 2015 19:14:16 GMT (envelope-from netchild@FreeBSD.org) Received: (from netchild@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79JEFpl089520; Sun, 9 Aug 2015 19:14:15 GMT (envelope-from netchild@FreeBSD.org) Message-Id: <201508091914.t79JEFpl089520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: netchild set sender to netchild@FreeBSD.org using -f From: Alexander Leidinger Date: Sun, 9 Aug 2015 19:14:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393817 - in head: Mk accessibility/linux-c6-atk audio/linux-c6-alsa-lib audio/linux-c6-alsa-plugins-oss audio/linux-c6-alsa-plugins-pulseaudio audio/linux-c6-alsa-utils audio/linux-c6-... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 19:14:17 -0000 Author: netchild Date: Sun Aug 9 19:14:13 2015 New Revision: 393817 URL: https://svnweb.freebsd.org/changeset/ports/393817 Log: Re-commit of 64 bit linuxulator support (not activated by default): - most of the work was done by Alan Jude - all errors are mine - 64bit (may) have rough edges - I validated * that the 32bit part doesn't has deinstall regressions (incl. EXP runs by antoine) * 29 of 72 64bit ports ports don't have deinstall leftovers (more validation later, when I dare to activate the 64bit linuxulator in the kernel) - the infrastructure part looks mature enough to let more test-bunnies get some experience with the new 64 bit parts - to use it you shall have no linux ports installed and have to specify (on your own risk) the following in make.conf before installing the ports: OVERRIDE_LINUX_BASE_PORT=c6_64 OVERRIDE_LINUX_NONBASE_PORTS=c6_64 This is on top of the exiting c6 linux ports. Given that CentOS 7 is 64bits only, we decided to have it as an "overlay" instead of new ports. The 64bit part only installs 64bit executables, the 32bit ports can not be installed at the same time (if needed we can think of letting the 64bit overlay install the 32bit parts too, but given the CentOS 7 comment above...). Differential Revision: https://reviews.freebsd.org/D174 Submitted by: alanjude Sponsored by: Essen FreeBSD Hackathon 2015 Reviewed by: xmj, eadler (earlier versions) Approved by: portmgr (antoine after some EXP-runs) Added: head/accessibility/linux-c6-atk/distinfo.x86_64 (contents, props changed) head/accessibility/linux-c6-atk/pkg-plist.i686 - copied unchanged from r392922, head/accessibility/linux-c6-atk/pkg-plist head/accessibility/linux-c6-atk/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-alsa-lib/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-alsa-lib/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-alsa-lib/pkg-plist head/audio/linux-c6-alsa-lib/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-alsa-plugins-oss/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-alsa-plugins-oss/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-alsa-plugins-oss/pkg-plist head/audio/linux-c6-alsa-plugins-oss/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-alsa-plugins-pulseaudio/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-alsa-utils/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-alsa-utils/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-alsa-utils/pkg-plist head/audio/linux-c6-alsa-utils/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-arts/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-arts/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-arts/pkg-plist head/audio/linux-c6-arts/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-esound/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-esound/pkg-plist.i686 (contents, props changed) head/audio/linux-c6-esound/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-flac/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-flac/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-flac/pkg-plist head/audio/linux-c6-flac/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-libaudiofile/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-libaudiofile/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-libaudiofile/pkg-plist head/audio/linux-c6-libaudiofile/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-libogg/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-libogg/pkg-plist.i686 (contents, props changed) head/audio/linux-c6-libogg/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-libsndfile/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-libsndfile/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-libsndfile/pkg-plist head/audio/linux-c6-libsndfile/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-libvorbis/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-libvorbis/pkg-plist.i686 (contents, props changed) head/audio/linux-c6-libvorbis/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-mikmod/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-mikmod/pkg-plist.i686 (contents, props changed) head/audio/linux-c6-mikmod/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-nas-libs/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-nas-libs/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-nas-libs/pkg-plist head/audio/linux-c6-nas-libs/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-openal-soft/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-openal-soft/pkg-plist.i686 (contents, props changed) head/audio/linux-c6-openal-soft/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-pulseaudio-libs/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-pulseaudio-libs/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-pulseaudio-libs/pkg-plist head/audio/linux-c6-pulseaudio-libs/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-pulseaudio-utils/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-pulseaudio-utils/pkg-plist.i686 - copied unchanged from r392922, head/audio/linux-c6-pulseaudio-utils/pkg-plist head/audio/linux-c6-pulseaudio-utils/pkg-plist.x86_64 (contents, props changed) head/audio/linux-c6-sdl_mixer/distinfo.x86_64 (contents, props changed) head/audio/linux-c6-sdl_mixer/pkg-plist.i686 (contents, props changed) head/audio/linux-c6-sdl_mixer/pkg-plist.x86_64 (contents, props changed) head/databases/linux-c6-sqlite3/distinfo.x86_64 (contents, props changed) head/databases/linux-c6-sqlite3/pkg-plist.i686 (contents, props changed) head/databases/linux-c6-sqlite3/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-dbus-glib/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-dbus-glib/pkg-plist.i686 (contents, props changed) head/devel/linux-c6-dbus-glib/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-dbus-libs/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-dbus-libs/pkg-plist.i686 (contents, props changed) head/devel/linux-c6-dbus-libs/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-devtools/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-devtools/pkg-plist.i686 - copied unchanged from r392922, head/devel/linux-c6-devtools/pkg-plist head/devel/linux-c6-devtools/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-libgfortran/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-libgfortran/pkg-plist.i686 (contents, props changed) head/devel/linux-c6-libgfortran/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-libglade2/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-libglade2/pkg-plist.i686 (contents, props changed) head/devel/linux-c6-libglade2/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-libpciaccess/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-libpciaccess/pkg-plist.i686 - copied unchanged from r392922, head/devel/linux-c6-libpciaccess/pkg-plist head/devel/linux-c6-libpciaccess/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-libsigc++20/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-libsigc++20/pkg-plist.i686 (contents, props changed) head/devel/linux-c6-libsigc++20/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-ncurses-base/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-ncurses-base/pkg-plist.i686 - copied unchanged from r392922, head/devel/linux-c6-ncurses-base/pkg-plist head/devel/linux-c6-ncurses-base/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-nspr/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-nspr/pkg-plist.i686 (contents, props changed) head/devel/linux-c6-nspr/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-qt47/distinfo.i686 - copied, changed from r392922, head/devel/linux-c6-qt47/distinfo.i386 head/devel/linux-c6-qt47/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-qt47/pkg-descr (contents, props changed) head/devel/linux-c6-qt47/pkg-plist.i686 - copied, changed from r392922, head/devel/linux-c6-qt47/pkg-plist head/devel/linux-c6-qt47/pkg-plist.x86_64 (contents, props changed) head/devel/linux-c6-sdl12/distinfo.x86_64 (contents, props changed) head/devel/linux-c6-sdl12/pkg-plist.i686 (contents, props changed) head/devel/linux-c6-sdl12/pkg-plist.x86_64 (contents, props changed) head/dns/linux-c6-libasyncns/distinfo.x86_64 (contents, props changed) head/dns/linux-c6-libasyncns/pkg-plist.i686 (contents, props changed) head/dns/linux-c6-libasyncns/pkg-plist.x86_64 (contents, props changed) head/emulators/linux_base-c6/distinfo.x86_64 (contents, props changed) head/emulators/linux_base-c6/pkg-plist.i686 - copied, changed from r392922, head/emulators/linux_base-c6/pkg-plist head/emulators/linux_base-c6/pkg-plist.x86_64 - copied, changed from r392922, head/emulators/linux_base-c6/pkg-plist head/ftp/linux-c6-curl/distinfo.x86_64 (contents, props changed) head/ftp/linux-c6-curl/pkg-plist.i686 (contents, props changed) head/ftp/linux-c6-curl/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-cairo/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-cairo/pkg-plist.i686 (contents, props changed) head/graphics/linux-c6-cairo/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-dri-compat/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-dri-compat/pkg-plist.i686 - copied unchanged from r392922, head/graphics/linux-c6-dri-compat/pkg-plist head/graphics/linux-c6-dri-compat/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-dri/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-dri/pkg-plist.i686 - copied unchanged from r392922, head/graphics/linux-c6-dri/pkg-plist head/graphics/linux-c6-dri/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-gdk-pixbuf2/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-gdk-pixbuf2/pkg-plist.i686 - copied unchanged from r392922, head/graphics/linux-c6-gdk-pixbuf2/pkg-plist head/graphics/linux-c6-gdk-pixbuf2/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-glx-utils/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-glx-utils/pkg-plist.i686 (contents, props changed) head/graphics/linux-c6-glx-utils/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-jpeg/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-jpeg/pkg-plist.i686 - copied unchanged from r392922, head/graphics/linux-c6-jpeg/pkg-plist head/graphics/linux-c6-jpeg/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-libGLU/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-libGLU/pkg-plist.i686 (contents, props changed) head/graphics/linux-c6-libGLU/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-png/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-png/pkg-plist.i686 (contents, props changed) head/graphics/linux-c6-png/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-sdl_image/distinfo.i386 (contents, props changed) head/graphics/linux-c6-sdl_image/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-sdl_image/pkg-plist.i686 (contents, props changed) head/graphics/linux-c6-sdl_image/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-sdl_ttf/distinfo.i386 (contents, props changed) head/graphics/linux-c6-sdl_ttf/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-sdl_ttf/pkg-plist.i686 (contents, props changed) head/graphics/linux-c6-sdl_ttf/pkg-plist.x86_64 (contents, props changed) head/graphics/linux-c6-tiff/distinfo.x86_64 (contents, props changed) head/graphics/linux-c6-tiff/pkg-plist.i686 - copied unchanged from r392922, head/graphics/linux-c6-tiff/pkg-plist head/graphics/linux-c6-tiff/pkg-plist.x86_64 (contents, props changed) head/lang/linux-c6-tcl85/distinfo.x86_64 (contents, props changed) head/lang/linux-c6-tcl85/pkg-plist.i686 - copied unchanged from r392922, head/lang/linux-c6-tcl85/pkg-plist head/lang/linux-c6-tcl85/pkg-plist.x86_64 (contents, props changed) head/multimedia/linux-c6-libtheora/distinfo.x86_64 (contents, props changed) head/multimedia/linux-c6-libtheora/pkg-plist.i686 (contents, props changed) head/multimedia/linux-c6-libtheora/pkg-plist.x86_64 (contents, props changed) head/multimedia/linux-c6-libv4l/distinfo.x86_64 (contents, props changed) head/multimedia/linux-c6-libv4l/pkg-plist.i686 - copied unchanged from r392922, head/multimedia/linux-c6-libv4l/pkg-plist head/multimedia/linux-c6-libv4l/pkg-plist.x86_64 (contents, props changed) head/net/linux-c6-avahi-libs/distinfo.x86_64 (contents, props changed) head/net/linux-c6-avahi-libs/pkg-plist.i686 (contents, props changed) head/net/linux-c6-avahi-libs/pkg-plist.x86_64 (contents, props changed) head/net/linux-c6-openldap/distinfo.x86_64 (contents, props changed) head/net/linux-c6-openldap/pkg-plist.i686 - copied unchanged from r392922, head/net/linux-c6-openldap/pkg-plist head/net/linux-c6-openldap/pkg-plist.x86_64 (contents, props changed) head/net/linux-c6-tcp_wrappers-libs/distinfo.x86_64 (contents, props changed) head/net/linux-c6-tcp_wrappers-libs/pkg-plist.i686 - copied, changed from r392922, head/net/linux-c6-tcp_wrappers-libs/pkg-plist head/net/linux-c6-tcp_wrappers-libs/pkg-plist.x86_64 (contents, props changed) head/print/linux-c6-cups-libs/distinfo.x86_64 (contents, props changed) head/print/linux-c6-cups-libs/pkg-plist.i686 (contents, props changed) head/print/linux-c6-cups-libs/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-cyrus-sasl2/distinfo.x86_64 (contents, props changed) head/security/linux-c6-cyrus-sasl2/pkg-plist.i686 - copied unchanged from r392922, head/security/linux-c6-cyrus-sasl2/pkg-plist head/security/linux-c6-cyrus-sasl2/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-gnutls/distinfo.x86_64 (contents, props changed) head/security/linux-c6-gnutls/pkg-plist.i686 - copied unchanged from r392922, head/security/linux-c6-gnutls/pkg-plist head/security/linux-c6-gnutls/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-libgcrypt/distinfo.x86_64 (contents, props changed) head/security/linux-c6-libgcrypt/pkg-plist.i686 (contents, props changed) head/security/linux-c6-libgcrypt/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-libgpg-error/distinfo.x86_64 (contents, props changed) head/security/linux-c6-libgpg-error/pkg-plist.i686 - copied unchanged from r392922, head/security/linux-c6-libgpg-error/pkg-plist head/security/linux-c6-libgpg-error/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-libssh2/distinfo.x86_64 (contents, props changed) head/security/linux-c6-libssh2/pkg-plist.i686 (contents, props changed) head/security/linux-c6-libssh2/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-libtasn1/distinfo.x86_64 (contents, props changed) head/security/linux-c6-libtasn1/pkg-plist.i686 (contents, props changed) head/security/linux-c6-libtasn1/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-nss/distinfo.x86_64 (contents, props changed) head/security/linux-c6-nss/pkg-plist.i686 - copied unchanged from r392922, head/security/linux-c6-nss/pkg-plist head/security/linux-c6-nss/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-openssl-compat/distinfo.x86_64 (contents, props changed) head/security/linux-c6-openssl-compat/pkg-plist.i686 - copied unchanged from r392922, head/security/linux-c6-openssl-compat/pkg-plist head/security/linux-c6-openssl-compat/pkg-plist.x86_64 (contents, props changed) head/security/linux-c6-openssl/distinfo.x86_64 (contents, props changed) head/security/linux-c6-openssl/pkg-plist.i686 - copied unchanged from r392922, head/security/linux-c6-openssl/pkg-plist head/security/linux-c6-openssl/pkg-plist.x86_64 (contents, props changed) head/textproc/linux-c6-aspell/distinfo.x86_64 (contents, props changed) head/textproc/linux-c6-aspell/pkg-plist.i686 - copied unchanged from r392922, head/textproc/linux-c6-aspell/pkg-plist head/textproc/linux-c6-aspell/pkg-plist.x86_64 (contents, props changed) head/textproc/linux-c6-expat/distinfo.x86_64 (contents, props changed) head/textproc/linux-c6-expat/pkg-plist.i686 (contents, props changed) head/textproc/linux-c6-expat/pkg-plist.x86_64 (contents, props changed) head/textproc/linux-c6-libxml2/distinfo.x86_64 (contents, props changed) head/textproc/linux-c6-libxml2/pkg-plist.i686 (contents, props changed) head/textproc/linux-c6-libxml2/pkg-plist.x86_64 (contents, props changed) head/www/linux-c6-flashplugin11/distinfo.i686 - copied unchanged from r392922, head/www/linux-c6-flashplugin11/distinfo head/www/linux-c6-flashplugin11/distinfo.x86_64 (contents, props changed) head/www/linux-c6-flashplugin11/pkg-plist.i686 - copied, changed from r392922, head/www/linux-c6-flashplugin11/pkg-plist head/www/linux-c6-flashplugin11/pkg-plist.x86_64 (contents, props changed) head/www/linux-c6-qt47-webkit/distinfo.i686 - copied, changed from r392922, head/www/linux-c6-qt47-webkit/distinfo.i386 head/www/linux-c6-qt47-webkit/distinfo.x86_64 (contents, props changed) head/www/linux-c6-qt47-webkit/pkg-plist.i686 - copied unchanged from r392922, head/www/linux-c6-qt47-webkit/pkg-plist head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 (contents, props changed) head/x11-fonts/linux-c6-fontconfig/distinfo.x86_64 (contents, props changed) head/x11-fonts/linux-c6-fontconfig/pkg-plist.i686 - copied unchanged from r392922, head/x11-fonts/linux-c6-fontconfig/pkg-plist head/x11-fonts/linux-c6-fontconfig/pkg-plist.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-gtk2/distinfo.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-gtk2/pkg-plist.i686 - copied unchanged from r392922, head/x11-toolkits/linux-c6-gtk2/pkg-plist head/x11-toolkits/linux-c6-gtk2/pkg-plist.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-openmotif/distinfo.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-openmotif/pkg-plist.i686 - copied unchanged from r392922, head/x11-toolkits/linux-c6-openmotif/pkg-plist head/x11-toolkits/linux-c6-openmotif/pkg-plist.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-pango/distinfo.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-pango/pkg-plist.i686 - copied unchanged from r392922, head/x11-toolkits/linux-c6-pango/pkg-plist head/x11-toolkits/linux-c6-pango/pkg-plist.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-qt47-x11/distinfo.i686 - copied, changed from r392922, head/x11-toolkits/linux-c6-qt47-x11/distinfo.i386 head/x11-toolkits/linux-c6-qt47-x11/distinfo.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-qt47-x11/pkg-plist.i686 - copied unchanged from r392922, head/x11-toolkits/linux-c6-qt47-x11/pkg-plist head/x11-toolkits/linux-c6-qt47-x11/pkg-plist.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-tk85/distinfo.x86_64 (contents, props changed) head/x11-toolkits/linux-c6-tk85/pkg-plist.i686 - copied unchanged from r392922, head/x11-toolkits/linux-c6-tk85/pkg-plist head/x11-toolkits/linux-c6-tk85/pkg-plist.x86_64 (contents, props changed) head/x11/linux-c6-xorg-libs/distinfo.x86_64 (contents, props changed) head/x11/linux-c6-xorg-libs/pkg-plist.i686 - copied unchanged from r392922, head/x11/linux-c6-xorg-libs/pkg-plist head/x11/linux-c6-xorg-libs/pkg-plist.x86_64 (contents, props changed) Deleted: head/accessibility/linux-c6-atk/pkg-plist head/audio/linux-c6-alsa-lib/pkg-plist head/audio/linux-c6-alsa-plugins-oss/pkg-plist head/audio/linux-c6-alsa-plugins-pulseaudio/pkg-plist head/audio/linux-c6-alsa-utils/pkg-plist head/audio/linux-c6-arts/pkg-plist head/audio/linux-c6-flac/pkg-plist head/audio/linux-c6-libaudiofile/pkg-plist head/audio/linux-c6-libsndfile/pkg-plist head/audio/linux-c6-nas-libs/pkg-plist head/audio/linux-c6-pulseaudio-libs/pkg-plist head/audio/linux-c6-pulseaudio-utils/pkg-plist head/devel/linux-c6-devtools/pkg-plist head/devel/linux-c6-libpciaccess/pkg-plist head/devel/linux-c6-ncurses-base/pkg-plist head/devel/linux-c6-qt47/distinfo.i386 head/devel/linux-c6-qt47/pkg-plist head/emulators/linux_base-c6/pkg-plist head/graphics/linux-c6-dri-compat/pkg-plist head/graphics/linux-c6-dri/pkg-plist head/graphics/linux-c6-gdk-pixbuf2/pkg-plist head/graphics/linux-c6-jpeg/pkg-plist head/graphics/linux-c6-tiff/pkg-plist head/lang/linux-c6-tcl85/pkg-plist head/multimedia/linux-c6-libv4l/pkg-plist head/net/linux-c6-openldap/pkg-plist head/net/linux-c6-tcp_wrappers-libs/pkg-plist head/security/linux-c6-cyrus-sasl2/pkg-plist head/security/linux-c6-gnutls/pkg-plist head/security/linux-c6-libgpg-error/pkg-plist head/security/linux-c6-nss/pkg-plist head/security/linux-c6-openssl-compat/pkg-plist head/security/linux-c6-openssl/pkg-plist head/textproc/linux-c6-aspell/pkg-plist head/www/linux-c6-flashplugin11/distinfo head/www/linux-c6-flashplugin11/pkg-plist head/www/linux-c6-qt47-webkit/distinfo.i386 head/www/linux-c6-qt47-webkit/pkg-plist head/x11-fonts/linux-c6-fontconfig/pkg-plist head/x11-toolkits/linux-c6-gtk2/pkg-plist head/x11-toolkits/linux-c6-openmotif/pkg-plist head/x11-toolkits/linux-c6-pango/pkg-plist head/x11-toolkits/linux-c6-qt47-x11/distinfo.i386 head/x11-toolkits/linux-c6-qt47-x11/pkg-plist head/x11-toolkits/linux-c6-tk85/pkg-plist head/x11/linux-c6-xorg-libs/pkg-plist Modified: head/Mk/bsd.linux-apps.mk head/Mk/bsd.linux-rpm.mk head/Mk/bsd.port.mk head/Mk/bsd.sites.mk head/audio/linux-c6-alsa-lib/Makefile head/audio/linux-c6-alsa-plugins-oss/Makefile head/audio/linux-c6-alsa-plugins-pulseaudio/Makefile head/audio/linux-c6-arts/Makefile head/audio/linux-c6-esound/Makefile head/audio/linux-c6-esound/distinfo.i686 head/audio/linux-c6-libogg/Makefile head/audio/linux-c6-libvorbis/Makefile head/audio/linux-c6-mikmod/Makefile head/audio/linux-c6-openal-soft/Makefile head/audio/linux-c6-pulseaudio-libs/Makefile head/audio/linux-c6-pulseaudio-utils/Makefile head/audio/linux-c6-sdl_mixer/Makefile head/databases/linux-c6-sqlite3/Makefile head/devel/linux-c6-dbus-glib/Makefile head/devel/linux-c6-dbus-libs/Makefile head/devel/linux-c6-devtools/Makefile head/devel/linux-c6-libgfortran/Makefile head/devel/linux-c6-libglade2/Makefile head/devel/linux-c6-libsigc++20/Makefile head/devel/linux-c6-ncurses-base/Makefile head/devel/linux-c6-nspr/Makefile head/devel/linux-c6-qt47/Makefile head/devel/linux-c6-sdl12/Makefile head/dns/linux-c6-libasyncns/Makefile head/emulators/linux-c6/Makefile head/emulators/linux_base-c6/Makefile head/emulators/linux_base-c6/pkg-message head/ftp/linux-c6-curl/Makefile head/graphics/linux-c6-cairo/Makefile head/graphics/linux-c6-dri-compat/Makefile head/graphics/linux-c6-dri/Makefile head/graphics/linux-c6-dri/pkg-descr head/graphics/linux-c6-glx-utils/Makefile head/graphics/linux-c6-libGLU/Makefile head/graphics/linux-c6-png/Makefile head/graphics/linux-c6-sdl_image/Makefile head/graphics/linux-c6-sdl_ttf/Makefile head/multimedia/linux-c6-libtheora/Makefile head/net/linux-c6-avahi-libs/Makefile head/net/linux-c6-tcp_wrappers-libs/Makefile head/print/linux-c6-cups-libs/Makefile head/security/linux-c6-cyrus-sasl2/Makefile head/security/linux-c6-libgcrypt/Makefile head/security/linux-c6-libssh2/Makefile head/security/linux-c6-libtasn1/Makefile head/security/linux-c6-nss/Makefile head/security/linux-c6-openssl-compat/Makefile head/sysutils/linux-nero/Makefile head/textproc/linux-c6-expat/Makefile head/textproc/linux-c6-libxml2/Makefile head/www/linux-c6-flashplugin11/Makefile head/www/linux-c6-qt47-webkit/Makefile head/www/linux-f10-flashplugin11/Makefile head/x11-themes/linux-c6-hicolor-icon-theme/Makefile head/x11-toolkits/linux-c6-gtk2/Makefile head/x11-toolkits/linux-c6-pango/Makefile head/x11-toolkits/linux-c6-qt47-x11/Makefile head/x11/linux-c6-xorg-libs/Makefile Modified: head/Mk/bsd.linux-apps.mk ============================================================================== --- head/Mk/bsd.linux-apps.mk Sun Aug 9 18:56:48 2015 (r393816) +++ head/Mk/bsd.linux-apps.mk Sun Aug 9 19:14:13 2015 (r393817) @@ -41,18 +41,19 @@ Linux_APPS_Post_Include= bsd.linux-apps. #new . if defined(OVERRIDE_LINUX_NONBASE_PORTS) -. if ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" || ${OVERRIDE_LINUX_NONBASE_PORTS} == "c6" +. if ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" || ${OVERRIDE_LINUX_NONBASE_PORTS} == "c6" || ${OVERRIDE_LINUX_NONBASE_PORTS} == "c6_64" LINUX_DIST_SUFFIX= -${OVERRIDE_LINUX_NONBASE_PORTS} +LINUX_BASEPORT_NAME= -${OVERRIDE_LINUX_NONBASE_PORTS:S/_64//} . else -IGNORE= valid values for OVERRIDE_LINUX_NONBASE_PORTS are: \"f10\" and \"c6\" +IGNORE= valid values for OVERRIDE_LINUX_NONBASE_PORTS are: \"f10\", \"c6\", and \"c6_64\" . endif . elif defined(USE_LINUX) -. if ${USE_LINUX} == "f10" || ${USE_LINUX} == "c6" LINUX_DIST_SUFFIX= -${USE_LINUX} -. endif +LINUX_BASEPORT_NAME= -${USE_LINUX:S/_64//} . else # default to CentOS LINUX_DIST_SUFFIX= -c6 +LINUX_BASEPORT_NAME= -c6 . endif WEB_AUTH= nvu @@ -70,7 +71,7 @@ _LINUX_APPS_ALL= allegro alsalib alsa-pl # 2.6.16 components _LINUX_26_APPS= blt cyrus-sasl2 dbusglib dbuslibs \ libidn libssh2 libv4l nspr nss openal-soft \ - openldap qt45 sqlite3 tcl85 tk85 qt47 qt47-x11 qt47-webkit + openldap qt45 sqlite3 tcl85 tk85 qt47 qt47-x11 qt47-webkit _LINUX_APPS_ALL+= ${_LINUX_26_APPS} @@ -87,325 +88,377 @@ _LINUX_APPS_ALL+= ${_LINUX_26_APPS} allegro_f10_FILE= ${LINUXBASE}/usr/lib/liballeg-4.2.2.so #FIXME: locate weird location for allegro c6 libs allegro_DETECT= ${allegro${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -allegro_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-allegro +allegro_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-allegro allegro_DEPENDS= xorglibs alsa-plugins-oss_f10_FILE= ${LINUXBASE}/usr/lib/alsa-lib/libasound_module_pcm_oss.so alsa-plugins-oss_c6_FILE= ${LINUXBASE}/usr/lib/alsa-lib/libasound_module_pcm_oss.so +alsa-plugins-oss_c6_64_FILE= ${LINUXBASE}/usr/lib64/alsa-lib/libasound_module_pcm_oss.so alsa-plugins-oss_DETECT= ${alsa-plugins-oss${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -alsa-plugins-oss_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-alsa-plugins-oss +alsa-plugins-oss_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-alsa-plugins-oss alsa-plugins-oss_DEPENDS= alsalib alsa-plugins-pulseaudio_c6_FILE= ${LINUXBASE}/usr/lib/alsa-lib/libasound_module_conf_pulse.so +alsa-plugins-pulseaudio_c6_64_FILE= ${LINUXBASE}/usr/lib64/alsa-lib/libasound_module_conf_pulse.so alsa-plugins-pulseaudio_DETECT= ${alsa-plugins-oss${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -alsa-plugins-pulseaudio_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-alsa-plugins-pulseaudio +alsa-plugins-pulseaudio_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-alsa-plugins-pulseaudio alsa-plugins-pulseaudio_DEPENDS= alsalib alsalib_f10_FILE= ${LINUXBASE}/lib/libasound.so.2.0.0 alsalib_c6_FILE= ${LINUXBASE}/lib/libasound.so.2.0.0 +alsalib_c6_64_FILE= ${LINUXBASE}/lib64/libasound.so.2.0.0 alsalib_DETECT= ${alsalib${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -alsalib_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-alsa-lib +alsalib_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-alsa-lib arts_f10_FILE= ${LINUXBASE}/usr/lib/libartsc.so.0 arts_c6_FILE= ${LINUXBASE}/usr/lib/libartsc.so.0 +arts_c6_64_FILE= ${LINUXBASE}/usr/lib64/libartsc.so.0 arts_DETECT= ${arts${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -arts_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-arts +arts_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-arts aspell_f10_FILE= ${LINUXBASE}/usr/lib/libaspell.so.15.1.4 aspell_c6_FILE= ${LINUXBASE}/usr/lib/libaspell.so.15.1.4 +aspell_c6_64_FILE= ${LINUXBASE}/usr/lib64/libaspell.so.15.1.4 aspell_DETECT= ${aspell${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -aspell_PORT= ${PORTSDIR}/textproc/linux${LINUX_DIST_SUFFIX}-aspell +aspell_PORT= ${PORTSDIR}/textproc/linux${LINUX_BASEPORT_NAME}-aspell atk_f10_FILE= ${LINUXBASE}/usr/lib/libatk-1.0.so.0.2409.1 atk_c6_FILE= ${LINUXBASE}/usr/lib/libatk-1.0.so.0.3009.1 +atk_c6_64_FILE= ${LINUXBASE}/usr/lib64/libatk-1.0.so.0.3009.1 atk_DETECT= ${atk${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -atk_PORT= ${PORTSDIR}/accessibility/linux${LINUX_DIST_SUFFIX}-atk +atk_PORT= ${PORTSDIR}/accessibility/linux${LINUX_BASEPORT_NAME}-atk avahi-libs_c6_FILE= ${LINUXBASE}/usr/lib/libavahi-client.so.3.2.5 +avahi-libs_c6_64_FILE= ${LINUXBASE}/usr/lib64/libavahi-client.so.3.2.5 avahi-libs_DETECT= ${avahi-libs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -avahi-libs_PORT= ${PORTSDIR}/net/linux${LINUX_DIST_SUFFIX}-avahi-libs +avahi-libs_PORT= ${PORTSDIR}/net/linux${LINUX_BASEPORT_NAME}-avahi-libs blt_f10_FILE= ${LINUXBASE}/usr/lib/libBLT24.so # FIXME: deprecated, merged into tcl/tk85 blt_DETECT= ${blt${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -blt_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-blt +blt_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_BASEPORT_NAME}-blt blt_DEPENDS= tcl85 tk85 xorglibs cairo_f10_FILE= ${LINUXBASE}/usr/lib/libcairo.so.2.10800.0 cairo_c6_FILE= ${LINUXBASE}/usr/lib/libcairo.so.2.10800.8 +cairo_c6_64_FILE= ${LINUXBASE}/usr/lib64/libcairo.so.2.10800.8 cairo_DETECT= ${cairo${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -cairo_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-cairo +cairo_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-cairo cairo_DEPENDS= fontconfig png xorglibs cups-libs_f10_FILE= ${LINUXBASE}/usr/lib/libcups.so.2 cups-libs_c6_FILE= ${LINUXBASE}/usr/lib/libcups.so.2 +cups-libs_c6_64_FILE= ${LINUXBASE}/usr/lib64/libcups.so.2 cups-libs_DETECT= ${cups-libs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -cups-libs_PORT= ${PORTSDIR}/print/linux${LINUX_DIST_SUFFIX}-cups-libs +cups-libs_PORT= ${PORTSDIR}/print/linux${LINUX_BASEPORT_NAME}-cups-libs cups-libs_DEPENDS= gnutls curl_f10_FILE= ${LINUXBASE}/usr/lib/libcurl.so.4.1.1 curl_c6_FILE= ${LINUXBASE}/usr/lib/libcurl.so.4.1.1 +curl_c6_64_FILE= ${LINUXBASE}/usr/lib64/libcurl.so.4.1.1 curl_DETECT= ${curl${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -curl_PORT= ${PORTSDIR}/ftp/linux${LINUX_DIST_SUFFIX}-curl +curl_PORT= ${PORTSDIR}/ftp/linux${LINUX_BASEPORT_NAME}-curl curl_DEPENDS= cyrus-sasl2 openldap cyrus-sasl2_f10_FILE= ${LINUXBASE}/usr/lib/libsasl2.so.2.0.22 cyrus-sasl2_c6_FILE= ${LINUXBASE}/usr/lib/libsasl2.so.2.0.23 +cyrus-sasl2_c6_64_FILE= ${LINUXBASE}/usr/lib64/libsasl2.so.2.0.23 cyrus-sasl2_DETECT= ${cyrus-sasl2${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -cyrus-sasl2_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-cyrus-sasl2 +cyrus-sasl2_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-cyrus-sasl2 dbusglib_f10_FILE= ${LINUXBASE}/usr/lib/libdbus-glib-1.so.2 dbusglib_c6_FILE= ${LINUXBASE}/usr/lib/libdbus-glib-1.so.2 +dbusglib_c6_64_FILE= ${LINUXBASE}/usr/lib64/libdbus-glib-1.so.2 dbusglib_DETECT= ${dbusglib${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -dbusglib_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-dbus-glib +dbusglib_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-dbus-glib dbusglib_DEPENDS= dbuslibs expat dbuslibs_f10_FILE= ${LINUXBASE}/lib/libdbus-1.so.3 dbuslibs_c6_FILE= ${LINUXBASE}/lib/libdbus-1.so.3 +dbuslibs_c6_64_FILE= ${LINUXBASE}/lib64/libdbus-1.so.3 dbuslibs_DETECT= ${dbuslibs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -dbuslibs_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-dbus-libs +dbuslibs_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-dbus-libs dri_f10_FILE= ${LINUXBASE}/usr/lib/libGL.so.1.2 dri_c6_FILE= ${LINUXBASE}/usr/lib/libGL.so.1.2.0 +dri_c6_64_FILE= ${LINUXBASE}/usr/lib64/libGL.so.1.2.0 dri_DETECT= ${dri${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -dri_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-dri +dri_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-dri dri_DEPENDS= xorglibs devtools_f10_FILE= ${LINUXBASE}/usr/bin/i386-redhat-linux-gcc devtools_c6_FILE= ${LINUXBASE}/usr/bin/gcc +devtools_c6_64_FILE= ${LINUXBASE}/usr/bin/gcc devtools_DETECT= ${devtools${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -devtools_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-devtools +devtools_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-devtools esound_f10_FILE= ${LINUXBASE}/usr/lib/libesd.so.0.2.39 esound_c6_FILE= ${LINUXBASE}/usr/lib/libesd.so.0.2.39 +esound_c6_64_FILE= ${LINUXBASE}/usr/lib64/libesd.so.0.2.39 esound_DETECT= ${esound${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -esound_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-esound +esound_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-esound esound_DEPENDS= libaudiofile expat_f10_FILE= ${LINUXBASE}/lib/libexpat.so.1 expat_c6_FILE= ${LINUXBASE}/lib/libexpat.so.1 +expat_c6_64_FILE= ${LINUXBASE}/lib64/libexpat.so.1 expat_DETECT= ${expat${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -expat_PORT= ${PORTSDIR}/textproc/linux${LINUX_DIST_SUFFIX}-expat +expat_PORT= ${PORTSDIR}/textproc/linux${LINUX_BASEPORT_NAME}-expat fontconfig_f10_FILE= ${LINUXBASE}/usr/lib/libfontconfig.so.1.3.0 fontconfig_c6_FILE= ${LINUXBASE}/usr/lib/libfontconfig.so.1.4.4 +fontconfig_c6_64_FILE= ${LINUXBASE}/usr/lib64/libfontconfig.so.1.4.4 fontconfig_DETECT= ${fontconfig${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -fontconfig_PORT= ${PORTSDIR}/x11-fonts/linux${LINUX_DIST_SUFFIX}-fontconfig +fontconfig_PORT= ${PORTSDIR}/x11-fonts/linux${LINUX_BASEPORT_NAME}-fontconfig fontconfig_DEPENDS= expat flac_c6_FILE= ${LINUXBASE}/usr/lib/libFLAC.so.8.2.0 +flac_c6_64_FILE= ${LINUXBASE}/usr/lib64/libFLAC.so.8.2.0 flac_DETECT= ${flac${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -flac_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-flac +flac_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-flac freealut_f10_FILE= ${LINUXBASE}/usr/lib/libalut.so.0.1.0 freealut_DETECT= ${freealut${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -freealut_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-freealut +freealut_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-freealut freealut_DEPENDS= openal gdkpixbuf_f10_FILE= ${LINUXBASE}/usr/lib/libgdk_pixbuf.so.2 gdkpixbuf_DETECT= ${gdkpixbuf${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -gdkpixbuf_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-gdk-pixbuf +gdkpixbuf_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-gdk-pixbuf -gdkpixbuf2_f10_FILE=${LINUXBASE}/usr/lib/libgdk_pixbuf-2.0.so.0 +gdkpixbuf2_f10_FILE= ${LINUXBASE}/usr/lib/libgdk_pixbuf-2.0.so.0 gdkpixbuf2_c6_FILE= ${LINUXBASE}/usr/lib/libgdk_pixbuf-2.0.so.0 +gdkpixbuf2_c6_64_FILE= ${LINUXBASE}/usr/lib64/libgdk_pixbuf-2.0.so.0 gdkpixbuf2_DETECT= ${gdkpixbuf2${LINUX_DIST_SUFFIX:S/-/_/}_FILE} .if ${USE_LINUX} == "f10" -gdkpixbuf2_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-gtk2 +gdkpixbuf2_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_BASEPORT_NAME}-gtk2 .else # default to CentOS 6. -gdkpixbuf2_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-gdk-pixbuf2 +gdkpixbuf2_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-gdk-pixbuf2 .endif gnutls_f10_FILE= ${LINUXBASE}/usr/lib/libgnutls.so.26.4.6 gnutls_c6_FILE= ${LINUXBASE}/usr/lib/libgnutls.so.26.14.12 +gnutls_c6_64_FILE= ${LINUXBASE}/usr/lib64/libgnutls.so.26.14.12 gnutls_DETECT= ${gnutls${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -gnutls_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-gnutls +gnutls_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-gnutls gnutls_DEPENDS= libtasn1 libgcrypt libgpg-error gtk2_f10_FILE= ${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0.1400.7 gtk2_c6_FILE= ${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0.2400.23 +gtk2_c6_64_FILE= ${LINUXBASE}/usr/lib64/libgtk-x11-2.0.so.0.2400.23 gtk2_DETECT= ${gtk2${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -gtk2_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-gtk2 +gtk2_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_BASEPORT_NAME}-gtk2 gtk2_DEPENDS= atk gdkpixbuf2 jpeg png pango tiff xorglibs hicontheme_f10_FILE= ${LINUXBASE}/usr/share/icons/hicolor hicontheme_c6_FILE= ${LINUXBASE}/usr/share/icons/hicolor +hicontheme_c6_64_FILE= ${LINUXBASE}/usr/share/icons/hicolor hicontheme_DETECT= ${hicontheme${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -hicontheme_PORT= ${PORTSDIR}/x11-themes/linux${LINUX_DIST_SUFFIX}-hicolor-icon-theme +hicontheme_PORT= ${PORTSDIR}/x11-themes/linux${LINUX_BASEPORT_NAME}-hicolor-icon-theme imlib_f10_FILE= ${LINUXBASE}/usr/lib/libgdk_imlib.so.1.9.15 imlib_DETECT= ${imlib${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -imlib_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-imlib +imlib_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-imlib jpeg_f10_FILE= ${LINUXBASE}/usr/lib/libjpeg.so.62.0.0 jpeg_c6_FILE= ${LINUXBASE}/usr/lib/libjpeg.so.62.0.0 +jpeg_c6_64_FILE= ${LINUXBASE}/usr/lib64/libjpeg.so.62.0.0 jpeg_DETECT= ${jpeg${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -jpeg_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-jpeg +jpeg_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-jpeg libasyncns_f10_FILE= ${LINUXBASE}/usr/lib/libasyncns.so.0.3.1 libasyncns_c6_FILE= ${LINUXBASE}/usr/lib/libasyncns.so.0.3.1 +libasyncns_c6_64_FILE= ${LINUXBASE}/usr/lib64/libasyncns.so.0.3.1 libasyncns_DETECT= ${libasyncns${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libasyncns_PORT= ${PORTSDIR}/dns/linux${LINUX_DIST_SUFFIX}-libasyncns +libasyncns_PORT= ${PORTSDIR}/dns/linux${LINUX_BASEPORT_NAME}-libasyncns libaudiofile_f10_FILE= ${LINUXBASE}/usr/lib/libaudiofile.so.0.0.2 libaudiofile_c6_FILE= ${LINUXBASE}/usr/lib/libaudiofile.so.0.0.2 +libaudiofile_c6_64_FILE=${LINUXBASE}/usr/lib64/libaudiofile.so.0.0.2 libaudiofile_DETECT= ${libaudiofile${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libaudiofile_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-libaudiofile +libaudiofile_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-libaudiofile libg2c_f10_FILE= ${LINUXBASE}/usr/lib/libg2c.so.0.0.0 libg2c_DETECT= ${libg2c${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libg2c_PORT= ${PORTSDIR}/lang/linux${LINUX_DIST_SUFFIX}-libg2c +libg2c_PORT= ${PORTSDIR}/lang/linux${LINUX_BASEPORT_NAME}-libg2c libgcrypt_f10_FILE= ${LINUXBASE}/lib/libgcrypt.so.11.5.2 libgcrypt_c6_FILE= ${LINUXBASE}/lib/libgcrypt.so.11.5.3 +libgcrypt_c6_64_FILE= ${LINUXBASE}/lib64/libgcrypt.so.11.5.3 libgcrypt_DETECT= ${libgcrypt${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libgcrypt_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-libgcrypt +libgcrypt_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-libgcrypt libglade2_f10_FILE= ${LINUXBASE}/usr/lib/libglade-2.0.so.0.0.7 libglade2_c6_FILE= ${LINUXBASE}/usr/lib/libglade-2.0.so.0.0.7 +libglade2_c6_64_FILE= ${LINUXBASE}/usr/lib64/libglade-2.0.so.0.0.7 libglade2_DETECT= ${libglade2${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libglade2_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-libglade2 +libglade2_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-libglade2 libglu_f10_FILE= ${LINUXBASE}/usr/lib/libGLU.so.1 libglu_c6_FILE= ${LINUXBASE}/usr/lib/libGLU.so.1 +libglu_c6_64_FILE= ${LINUXBASE}/usr/lib64/libGLU.so.1 libglu_DETECT= ${libglu${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libglu_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-libGLU +libglu_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-libGLU libgpg-error_f10_FILE= ${LINUXBASE}/lib/libgpg-error.so.0.4.0 libgpg-error_c6_FILE= ${LINUXBASE}/lib/libgpg-error.so.0.5.0 +libgpg-error_c6_64_FILE=${LINUXBASE}/lib64/libgpg-error.so.0.5.0 libgpg-error_DETECT= ${libgpg-error${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libgpg-error_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-libgpg-error +libgpg-error_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-libgpg-error # no libidn_f10_FILE (libidn is integrated into linux_base-f10 port) libidn_DETECT= ${libidn${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libidn_PORT= ${PORTSDIR}/dns/linux${LINUX_DIST_SUFFIX}-libidn +libidn_PORT= ${PORTSDIR}/dns/linux${LINUX_BASEPORT_NAME}-libidn libmng_f10_FILE= ${LINUXBASE}/usr/lib/libmng.so.1.0.0 libmng_DETECT= ${libmng${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libmng_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-libmng +libmng_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-libmng libmng_DEPENDS= jpeg libogg_f10_FILE= ${LINUXBASE}/usr/lib/libogg.so.0.5.3 libogg_c6_FILE= ${LINUXBASE}/usr/lib/libogg.so.0.6.0 +libogg_c6_64_FILE= ${LINUXBASE}/usr/lib64/libogg.so.0.6.0 libogg_DETECT= ${libogg${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libogg_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-libogg +libogg_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-libogg libpciaccess_c6_FILE= ${LINUXBASE}/usr/lib/libpciaccess.so.0.11.1 libpciaccess_DETECT= ${libpciaccess${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libpciaccess_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-libpciaccess +libpciaccess_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-libpciaccess libsigcpp20_f10_FILE= ${LINUXBASE}/usr/lib/libsigc-2.0.so.0 libsigcpp20_c6_FILE= ${LINUXBASE}/usr/lib/libsigc-2.0.so.0 +libsigcpp20_c6_64_FILE= ${LINUXBASE}/usr/lib64/libsigc-2.0.so.0 libsigcpp20_DETECT= ${libsigcpp20${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libsigcpp20_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-libsigc++20 +libsigcpp20_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-libsigc++20 libsndfile_c6_FILE= ${LINUXBASE}/usr/lib/libsndfile.so.1.0.20 +libsndfile_c6_64_FILE= ${LINUXBASE}/usr/lib64/libsndfile.so.1.0.20 libsndfile_DETECT= ${libsndfile${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libsndfile_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-libsndfile +libsndfile_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-libsndfile libssh2_f10_FILE= ${LINUXBASE}/usr/lib/libssh2.so.1 libssh2_c6_FILE= ${LINUXBASE}/usr/lib/libssh2.so.1.0.1 +libssh2_c6_64_FILE= ${LINUXBASE}/usr/lib64/libssh2.so.1.0.1 libssh2_DETECT= ${libssh2${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libssh2_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-libssh2 +libssh2_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-libssh2 libssh2_DEPENDS= openssl libv4l_f10_FILE= ${LINUXBASE}/usr/lib/libv4l1.so.0 libv4l_c6_FILE= ${LINUXBASE}/usr/lib/libv4l1.so.0 +libv4l_c6_64_FILE= ${LINUXBASE}/usr/lib64/libv4l1.so.0 libv4l_DETECT= ${libv4l${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libv4l_PORT= ${PORTSDIR}/multimedia/linux${LINUX_DIST_SUFFIX}-libv4l +libv4l_PORT= ${PORTSDIR}/multimedia/linux${LINUX_BASEPORT_NAME}-libv4l libtasn1_f10_FILE= ${LINUXBASE}/usr/lib/libtasn1.so.3.0.16 libtasn1_c6_FILE= ${LINUXBASE}/usr/lib/libtasn1.so.3.1.6 +libtasn1_c6_64_FILE= ${LINUXBASE}/usr/lib64/libtasn1.so.3.1.6 libtasn1_DETECT= ${libtasn1${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libtasn1_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-libtasn1 +libtasn1_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-libtasn1 libtheora_f10_FILE= ${LINUXBASE}/usr/lib/libtheora.so.0.3.3 libtheora_c6_FILE= ${LINUXBASE}/usr/lib/libtheora.so.0.3.9 +libtheora_c6_64_FILE= ${LINUXBASE}/usr/lib64/libtheora.so.0.3.9 libtheora_DETECT= ${libtheora${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libtheora_PORT= ${PORTSDIR}/multimedia/linux${LINUX_DIST_SUFFIX}-libtheora +libtheora_PORT= ${PORTSDIR}/multimedia/linux${LINUX_BASEPORT_NAME}-libtheora libvorbis_f10_FILE= ${LINUXBASE}/usr/lib/libvorbis.so.0.4.0 libvorbis_c6_FILE= ${LINUXBASE}/usr/lib/libvorbis.so.0.4.3 +libvorbis_c6_64_FILE= ${LINUXBASE}/usr/lib64/libvorbis.so.0.4.3 libvorbis_DETECT= ${libvorbis${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libvorbis_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-libvorbis +libvorbis_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-libvorbis libvorbis_DEPENDS= libogg libxml2_f10_FILE= ${LINUXBASE}/usr/lib/libxml2.so.2.7.3 libxml2_c6_FILE= ${LINUXBASE}/usr/lib/libxml2.so.2.7.6 +libxml2_c6_64_FILE= ${LINUXBASE}/usr/lib64/libxml2.so.2.7.6 libxml2_DETECT= ${libxml2${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -libxml2_PORT= ${PORTSDIR}/textproc/linux${LINUX_DIST_SUFFIX}-libxml2 +libxml2_PORT= ${PORTSDIR}/textproc/linux${LINUX_BASEPORT_NAME}-libxml2 mikmod_f10_FILE= ${LINUXBASE}/usr/lib/libmikmod.so.3.0.0 mikmod_c6_FILE= ${LINUXBASE}/usr/lib/libmikmod.so.3.0.0 +mikmod_c6_64_FILE= ${LINUXBASE}/usr/lib64/libmikmod.so.3.0.0 mikmod_DETECT= ${mikmod${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -mikmod_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-mikmod +mikmod_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-mikmod naslibs_f10_FILE= ${LINUXBASE}/usr/lib/libaudio.so.2 naslibs_c6_FILE= ${LINUXBASE}/usr/lib/libaudio.so.2 +naslibs_c6_64_FILE= ${LINUXBASE}/usr/lib64/libaudio.so.2 naslibs_DETECT= ${naslibs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -naslibs_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-nas-libs +naslibs_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-nas-libs naslibs_DEPENDS= xorglibs openldap_f10_FILE= ${LINUXBASE}/usr/lib/libldap-2.4.so.2.2.0 openldap_c6_FILE= ${LINUXBASE}/lib/libldap-2.4.so.2.10.2 +openldap_c6_64_FILE= ${LINUXBASE}/lib64/libldap-2.4.so.2.10.2 openldap_DETECT= ${openldap${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -openldap_PORT= ${PORTSDIR}/net/linux${LINUX_DIST_SUFFIX}-openldap +openldap_PORT= ${PORTSDIR}/net/linux${LINUX_BASEPORT_NAME}-openldap openmotif_f10_FILE= ${LINUXBASE}/usr/lib/libXm.so.4 openmotif_c6_FILE= ${LINUXBASE}/usr/lib/libXm.so.4.0.3 +openmotif_c6_64_FILE= ${LINUXBASE}/usr/lib64/libXm.so.4.0.3 openmotif_DETECT= ${openmotif${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -openmotif_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-openmotif +openmotif_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_BASEPORT_NAME}-openmotif openmotif_DEPENDS= xorglibs ncurses-base_f10_FILE= ${LINUXBASE}/lib/terminfo/a/ansi ncurses-base_c6_FILE= ${LINUXBASE}/lib/terminfo/a/ansi +ncurses-base_c6_64_FILE=${LINUXBASE}/lib64/terminfo/a/ansi ncurses-base_DETECT= ${ncurses-base${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -ncurses-base_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-ncurses-base +ncurses-base_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-ncurses-base nspr_f10_FILE= ${LINUXBASE}/lib/libnspr4.so nspr_c6_FILE= ${LINUXBASE}/lib/libnspr4.so +nspr_c6_64_FILE= ${LINUXBASE}/lib64/libnspr4.so nspr_DETECT= ${nspr${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -nspr_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-nspr +nspr_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-nspr nss_f10_FILE= ${LINUXBASE}/lib/libnss3.so nss_c6_FILE= ${LINUXBASE}/usr/lib/libnss3.so +nss_c6_64_FILE= ${LINUXBASE}/usr/lib64/libnss3.so nss_DETECT= ${nss${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -nss_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-nss +nss_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-nss nss_DEPENDS= nspr sqlite3 openal_f10_FILE= ${LINUXBASE}/usr/lib/libopenal.so.0.0.0 openal_DETECT= ${openal${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -openal_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-openal +openal_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-openal openal_DEPENDS= alsalib arts esound libaudiofile libvorbis sdl12 openal-soft_f10_FILE= ${LINUXBASE}/usr/lib/libopenal.so.1.8.466 openal-soft_c6_FILE= ${LINUXBASE}/usr/lib/libopenal.so.1.12.854 +openal-soft_c6_64_FILE= ${LINUXBASE}/usr/lib64/libopenal.so.1.12.854 openal-soft_DETECT= ${openal-soft${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -openal-soft_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-openal-soft +openal-soft_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-openal-soft openal-soft_DEPENDS= alsalib arts esound openssl_f10_FILE= ${LINUXBASE}/lib/libssl.so.0.9.8g openssl_c6_FILE= ${LINUXBASE}/usr/lib/libssl.so.10 +openssl_c6_64_FILE= ${LINUXBASE}/usr/lib64/libssl.so.10 openssl_DETECT= ${openssl${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -openssl_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-openssl +openssl_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-openssl openssl-compat_c6_FILE= ${LINUXBASE}/usr/lib/libssl.so.0.9.8e +openssl-compat_c6_64_FILE= ${LINUXBASE}/usr/lib64/libssl.so.0.9.8e openssl-compat_DETECT= ${openssl-compat${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -openssl-compat_PORT= ${PORTSDIR}/security/linux${LINUX_DIST_SUFFIX}-openssl-compat +openssl-compat_PORT= ${PORTSDIR}/security/linux${LINUX_BASEPORT_NAME}-openssl-compat pango_f10_FILE= ${LINUXBASE}/usr/lib/libpango-1.0.so.0.2800.3 pango_c6_FILE= ${LINUXBASE}/usr/lib/libpango-1.0.so.0.2800.1 +pango_c6_64_FILE= ${LINUXBASE}/usr/lib64/libpango-1.0.so.0.2800.1 pango_DETECT= ${pango${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -pango_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-pango +pango_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_BASEPORT_NAME}-pango pango_DEPENDS= cairo expat fontconfig xorglibs png_f10_FILE= ${LINUXBASE}/usr/lib/libpng.so.3.37.0 png_c6_FILE= ${LINUXBASE}/usr/lib/libpng.so.3.49.0 +png_c6_64_FILE= ${LINUXBASE}/usr/lib64/libpng.so.3.49.0 png_DETECT= ${png${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -png_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-png +png_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-png pulseaudio-libs_f10_FILE= ${LINUXBASE}/usr/lib/libpulse.so.0 pulseaudio-libs_c6_FILE= ${LINUXBASE}/usr/lib/libpulse.so.0.12.2 +pulseaudio-libs_c6_64_FILE= ${LINUXBASE}/usr/lib64/libpulse.so.0.12.2 pulseaudio-libs_DETECT= ${pulseaudio-libs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -pulseaudio-libs_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-pulseaudio-libs +pulseaudio-libs_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-pulseaudio-libs qt45_f10_FILE= ${LINUXBASE}/usr/lib/libQtCore.so.4.5.3 qt45_DETECT= ${qt45${LINUX_DIST_SUFFIX:S/-/_/}_FILE} @@ -413,81 +466,91 @@ qt45_DEPENDS= fontconfig libmng png sdl12_f10_FILE= ${LINUXBASE}/usr/lib/libSDL-1.2.so.0.11.2 sdl12_c6_FILE= ${LINUXBASE}/usr/lib/libSDL-1.2.so.0.11.3 +sdl12_c6_64_FILE= ${LINUXBASE}/usr/lib64/libSDL-1.2.so.0.11.3 sdl12_DETECT= ${sdl12${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -sdl12_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-sdl12 +sdl12_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-sdl12 sdl12_DEPENDS= xorglibs sdlimage_f10_FILE= ${LINUXBASE}/usr/lib/libSDL_image-1.2.so.0.1.5 sdlimage_c6_FILE= ${LINUXBASE}/usr/lib/libSDL_image-1.2.so.0.8.4 +sdlimage_c6_64_FILE= ${LINUXBASE}/usr/lib64/libSDL_image-1.2.so.0.8.4 sdlimage_DETECT= ${sdlimage${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -sdlimage_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-sdl_image +sdlimage_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-sdl_image sdlimage_DEPENDS= jpeg png sdl12 tiff sdlmixer_f10_FILE= ${LINUXBASE}/usr/lib/libSDL_mixer-1.2.so.0.2.6 sdlmixer_c6_FILE= ${LINUXBASE}/usr/lib/libSDL_mixer-1.2.so.0.12.0 +sdlmixer_c6_64_FILE= ${LINUXBASE}/usr/lib64/libSDL_mixer-1.2.so.0.12.0 sdlmixer_DETECT= ${sdlmixer${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -sdlmixer_PORT= ${PORTSDIR}/audio/linux${LINUX_DIST_SUFFIX}-sdl_mixer +sdlmixer_PORT= ${PORTSDIR}/audio/linux${LINUX_BASEPORT_NAME}-sdl_mixer sdlmixer_DEPENDS= sdl12 sdlttf_f10_FILE= ${LINUXBASE}/usr/lib/libSDL_ttf-2.0.so.0.6.2 sdlttf_c6_FILE= ${LINUXBASE}/usr/lib/libSDL_ttf-2.0.so.0.6.3 +sdlttf_c6_64_FILE= ${LINUXBASE}/usr/lib64/libSDL_ttf-2.0.so.0.6.3 sdlttf_DETECT= ${sdlttf${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -sdlttf_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-sdl_ttf +sdlttf_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-sdl_ttf sdlttf_DEPENDS= sdl12 scimgtk_f10_FILE= ${LINUXBASE}/usr/lib/gtk-2.0/immodules/im-scim.so scimgtk_DETECT= ${scimgtk${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -scimgtk_PORT= ${PORTSDIR}/textproc/linux${LINUX_DIST_SUFFIX}-scim-gtk +scimgtk_PORT= ${PORTSDIR}/textproc/linux${LINUX_BASEPORT_NAME}-scim-gtk scimgtk_DEPENDS= gtk2 scimlibs scimlibs_f10_FILE= ${LINUXBASE}/usr/lib/libscim-1.0.so.8 scimlibs_DETECT= ${scimlibs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -scimlibs_PORT= ${PORTSDIR}/textproc/linux${LINUX_DIST_SUFFIX}-scim-libs +scimlibs_PORT= ${PORTSDIR}/textproc/linux${LINUX_BASEPORT_NAME}-scim-libs scimlibs_DEPENDS= gtk2 sqlite3_f10_FILE= ${LINUXBASE}/usr/lib/libsqlite3.so.0 sqlite3_c6_FILE= ${LINUXBASE}/usr/lib/libsqlite3.so.0 +sqlite3_c6_64_FILE= ${LINUXBASE}/usr/lib64/libsqlite3.so.0 sqlite3_DETECT= ${sqlite3${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -sqlite3_PORT= ${PORTSDIR}/databases/linux${LINUX_DIST_SUFFIX}-sqlite3 +sqlite3_PORT= ${PORTSDIR}/databases/linux${LINUX_BASEPORT_NAME}-sqlite3 tcl85_f10_FILE= ${LINUXBASE}/usr/lib/libtcl8.5.so tcl85_c6_FILE= ${LINUXBASE}/usr/lib/libtcl8.5.so +tcl85_c6_64_FILE= ${LINUXBASE}/usr/lib64/libtcl8.5.so tcl85_DETECT= ${tcl85${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -tcl85_PORT= ${PORTSDIR}/lang/linux${LINUX_DIST_SUFFIX}-tcl85 +tcl85_PORT= ${PORTSDIR}/lang/linux${LINUX_BASEPORT_NAME}-tcl85 tcp_wrappers-libs_c6_FILE= ${LINUXBASE}/lib/libwrap.so.0 +tcp_wrappers-libs_c6_64_FILE= ${LINUXBASE}/lib64/libwrap.so.0 tcp_wrappers-libs_DETECT= ${tcp_wrappers-libs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -tcp_wrappers-libs_PORT= ${PORTSDIR}/net/linux${LINUX_DIST_SUFFIX}-tcp_wrappers-libs +tcp_wrappers-libs_PORT= ${PORTSDIR}/net/linux${LINUX_BASEPORT_NAME}-tcp_wrappers-libs tiff_f10_FILE= ${LINUXBASE}/usr/lib/libtiff.so.3.8.2 tiff_c6_FILE= ${LINUXBASE}/usr/lib/libtiff.so.3.9.4 +tiff_c6_64_FILE= ${LINUXBASE}/usr/lib64/libtiff.so.3.9.4 tiff_DETECT= ${tiff${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -tiff_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-tiff +tiff_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-tiff tiff_DEPENDS= jpeg tk85_f10_FILE= ${LINUXBASE}/usr/lib/libtk8.5.so tk85_c6_FILE= ${LINUXBASE}/usr/lib/libtk8.5.so +tk85_c6_64_FILE= ${LINUXBASE}/usr/lib64/libtk8.5.so tk85_DETECT= ${tk85${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -tk85_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-tk85 +tk85_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_BASEPORT_NAME}-tk85 tk85_DEPENDS= xorglibs xorglibs_f10_FILE= ${LINUXBASE}/usr/lib/libXrandr.so.2.1.0 xorglibs_c6_FILE= ${LINUXBASE}/usr/lib/libXrandr.so.2.2.0 +xorglibs_c6_64_FILE= ${LINUXBASE}/usr/lib64/libXrandr.so.2.2.0 xorglibs_DETECT= ${xorglibs${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -xorglibs_PORT= ${PORTSDIR}/x11/linux${LINUX_DIST_SUFFIX}-xorg-libs +xorglibs_PORT= ${PORTSDIR}/x11/linux${LINUX_BASEPORT_NAME}-xorg-libs xorglibs_DEPENDS= fontconfig ucl_f10_FILE= ${LINUXBASE}/usr/lib/libucl.so.1 ucl_DETECT= ${ucl${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -ucl_PORT= ${PORTSDIR}/archivers/linux${LINUX_DIST_SUFFIX}-ucl +ucl_PORT= ${PORTSDIR}/archivers/linux${LINUX_BASEPORT_NAME}-ucl ungif_f10_FILE= ${LINUXBASE}/usr/lib/libgif.so.4.1.3 ungif_DETECT= ${ungif${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -ungif_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-ungif +ungif_PORT= ${PORTSDIR}/graphics/linux${LINUX_BASEPORT_NAME}-ungif upx_f10_FILE= ${LINUXBASE}/usr/bin/upx upx_DETECT= ${upx${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -upx_PORT= ${PORTSDIR}/archivers/linux${LINUX_DIST_SUFFIX}-upx +upx_PORT= ${PORTSDIR}/archivers/linux${LINUX_BASEPORT_NAME}-upx upx_DEPENDS= ucl webauth_f10_FILE= ${LOCALBASE}/bin/linux-nvu @@ -496,16 +559,19 @@ webauth_PORT= ${PORTSDIR}/www/linux-${W webauth_DEPENDS= gtk2 atk pango fontconfig qt47_c6_FILE= ${LINUXBASE}/usr/lib/qt47/libQtCore.so.4.7.2 +qt47_c6_64_FILE= ${LINUXBASE}/usr/lib64/qt47/libQtCore.so.4.7.2 qt47_DETECT= ${qt47${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -qt47_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-qt47 +qt47_PORT= ${PORTSDIR}/devel/linux${LINUX_BASEPORT_NAME}-qt47 qt47-x11_c6_FILE= ${LINUXBASE}/usr/lib/qt47/libQtGui.so.4.7.2 +qt47-x11_c6_64_FILE= ${LINUXBASE}/usr/lib64/qt47/libQtGui.so.4.7.2 qt47-x11_DETECT= ${qt47-x11${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -qt47-x11_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-qt47-x11 +qt47-x11_PORT= ${PORTSDIR}/x11-toolkits/linux${LINUX_BASEPORT_NAME}-qt47-x11 qt47-webkit_c6_FILE= ${LINUXBASE}/usr/lib/qt47/libQtWebKit.so.4.7.2 +qt47-webkit_c6_64_FILE= ${LINUXBASE}/usr/lib64/qt47/libQtWebKit.so.4.7.2 qt47-webkit_DETECT= ${qt47-webkit${LINUX_DIST_SUFFIX:S/-/_/}_FILE} -qt47-webkit_PORT= ${PORTSDIR}/www/linux${LINUX_DIST_SUFFIX}-qt47-webkit +qt47-webkit_PORT= ${PORTSDIR}/www/linux${LINUX_BASEPORT_NAME}-qt47-webkit # End component definition section Modified: head/Mk/bsd.linux-rpm.mk ============================================================================== --- head/Mk/bsd.linux-rpm.mk Sun Aug 9 18:56:48 2015 (r393816) +++ head/Mk/bsd.linux-rpm.mk Sun Aug 9 19:14:13 2015 (r393817) @@ -10,6 +10,8 @@ # LINUX_DIST_VER - Use depends upon the dist-specific presets. # Valid values for "fedora": all version numbers # e.g. 10 for fedora 10 +# Valid values for "centos": all version numbers +# e.g. 6.6 for centos 6.6 # This is used to set MASTER_SITE_{,SRC_}SUBDIR # if it isn't already set. # MASTER_SITE_SRC_SUBDIR @@ -42,26 +44,13 @@ USE_LINUX_PREFIX= yes NO_WRKSUBDIR= yes NO_BUILD= yes -. if ${ARCH} == "amd64" || ${ARCH} == "i386" -. if ${USE_LINUX} == "c6" || ${USE_LINUX} == "yes" # default to CentOS +. if ${USE_LINUX} == "c6" || ${USE_LINUX} == "yes" # default to CentOS # Do not build CentOS 6 ports if overridden by f10 -. if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" -IGNORE= This port requires CentOS ${LINUX_DIST_VER}. Please remove OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf. -. endif -LINUX_RPM_ARCH?= i686 # ?= because of nasty c5 qt ports -. elif ${USE_LINUX} == "f10" -# Do not build Fedora 10 ports unless specifically overridden. -#. if ! defined(OVERRIDE_LINUX_NONBASE_PORTS) || ${OVERRIDE_LINUX_NONBASE_PORTS} != "f10" -#IGNORE= This port requires Fedora 10, yet Fedora 10 is heavily outdated and contains many vulnerable ports. If you really need it, add OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf. -#. endif -LINUX_RPM_ARCH?= i386 # the linuxulator does not yet support amd64 code -. else -LINUX_RPM_ARCH?= ${ARCH} -. endif - -. elif ${ARCH} == "powerpc" -LINUX_RPM_ARCH?= ppc +. if defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" +IGNORE= This port requires CentOS ${LINUX_DIST_VER}. Please remove OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf. +. endif . endif + .endif .if defined(_POSTMKINCLUDED) && !defined(Linux_RPM_Post_Include) @@ -77,56 +66,41 @@ LINUX_DIST= centos LINUX_DIST_VER= 6.6 .endif -. if defined(LINUX_DIST) +.if defined(LINUX_DIST) DIST_SUBDIR?= rpm/${LINUX_RPM_ARCH}/${LINUX_DIST}/${LINUX_DIST_VER} -. if ${LINUX_DIST} == "fedora" +. if ${LINUX_DIST} == "fedora" # we do not want to define MASTER_SITES and MASTER_SITE_* if they are already defined # ex.: MASTER_SITES=file:///... -. ifndef MASTER_SITES -MASTER_SITES= ${MASTER_SITE_FEDORA_LINUX} -. if ${LINUX_DIST_VER} == 10 +. ifndef MASTER_SITES +MASTER_SITES= ${MASTER_SITE_FEDORA_LINUX} +. if ${LINUX_DIST_VER} == 10 MASTER_SITE_SUBDIR?= ../releases/${LINUX_DIST_VER}/Everything/${LINUX_RPM_ARCH}/os/Packages \ ../updates/${LINUX_DIST_VER}/${LINUX_RPM_ARCH} MASTER_SITE_SRC_SUBDIR?= ../releases/${LINUX_DIST_VER}/Everything/source/SRPMS \ ../updates/${LINUX_DIST_VER}/SRPMS -. else +. else MASTER_SITE_SUBDIR?= ${LINUX_DIST_VER}/${LINUX_RPM_ARCH}/os/Fedora/RPMS \ updates/${LINUX_DIST_VER}/${LINUX_RPM_ARCH} MASTER_SITE_SRC_SUBDIR?= ${LINUX_DIST_VER}/SRPMS \ updates/${LINUX_DIST_VER}/SRPMS -. endif . endif -. elif ${LINUX_DIST} == "centos" -MASTER_SITES_SUBDIR= /centos/6/os/i386/Packages/ -. if ${LINUX_DIST_VER} == "5" #needed for Qt... -LINUX_RPM_ARCH= i386 -MASTER_SITES_SUBDIR= /centos/5/os/i386/Packages/ -. endif - -. ifndef MASTER_SITES -MASTER_SITES= ${MASTER_SITE_CENTOS_LINUX} -. if ${LINUX_DIST_VER} == "6.6" -. if ! defined(PACKAGE_BUILDING) -MASTER_SITES= http://mirror.centos.org/centos/6/os/i386/Packages/ -MASTER_SITES_SUBDIR= /centos/6/os/i386/Packages/ -. else -MASTER_SITES?= http://vault.centos.org/%SUBDIR%/ -MASTER_SITES_SUBDIR= /${LINUX_DIST_VER}/os/Source/SPackages/ -. endif - -. else -MASTER_SITES= http://vault.centos.org/${LINUX_DIST_VER}/os/i386/Packages/ -. endif -. endif - +. endif +. elif ${LINUX_DIST} == "centos" +MASTER_SITES?= ${MASTER_SITE_CENTOS_LINUX} ${MASTER_SITE_CENTOS_LINUX_UPDATES} +MASTER_SITE_SUBDIR?= centos/${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/ \ + centos/${LINUX_DIST_VER}/updates/${LINUX_REPO_ARCH}/Packages/ +. if ${LINUX_DIST_VER} == "5" #needed for Qt... +LINUX_RPM_ARCH= i386 +MASTER_SITE_SUBDIR= centos/5/os/i386/Packages/ +. endif +. if defined(PACKAGE_BUILDING) +MASTER_SITES+= http://vault.centos.org/%SUBDIR%/:SOURCE +MASTER_SITE_SUBDIR+= ${LINUX_DIST_VER}/os/Source/SPackages/:SOURCE . endif . endif +.endif - -#.if ${USE_LINUX:L} == "yes" #redundant with bsd.port.mk fu -#USE_LINUX= c6 -#.endif PKGNAMEPREFIX?= linux-${USE_LINUX}- # DISTFILES and SRC_DISTFILES assume that there is only one bindist @@ -138,7 +112,7 @@ DISTVERSION= ${PORTVERSION}-${RPMVERSION DISTNAME?= ${PORTNAME}-${DISTVERSION} DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} BIN_DISTFILES:= ${DISTFILES} -SRC_DISTFILES?= ${DISTNAME}${SRC_SUFX} +SRC_DISTFILES?= ${DISTNAME}${SRC_SUFX}:SOURCE EXTRACT_ONLY?= ${BIN_DISTFILES:C/:[^:]+$//} . if defined(PACKAGE_BUILDING) @@ -177,16 +151,21 @@ linux-rpm-clean-portdocs: . endif . endif +. if ${USE_LINUX} != "f10" +PLIST?= ${MASTERDIR}/pkg-plist.${LINUX_RPM_ARCH} +. endif + . if defined(AUTOMATIC_PLIST) -. if ${USE_LINUX} == "f10" || ${USE_LINUX} == "yes" +. if ${USE_LINUX} == "f10" _LINUX_BASE_SUFFIX= f10 -. elif ${USE_LINUX} == "c6" -USE_LINUX= c6 +. elif ${USE_LINUX} == "c6" || ${USE_LINUX} == "yes" +_LINUX_BASE_SUFFIX= c6 +. elif ${USE_LINUX} == "c6_64 _LINUX_BASE_SUFFIX= c6 . else # other linux_base ports do not provide a pkg-plist file -IGNORE= uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"f10\" and \"c6\" +IGNORE= uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"f10\", \"c6\", and \"c6_64\" . endif PLIST?= ${WRKDIR}/.PLIST.linux-rpm Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Sun Aug 9 18:56:48 2015 (r393816) +++ head/Mk/bsd.port.mk Sun Aug 9 19:14:13 2015 (r393817) @@ -1719,6 +1719,8 @@ STRIP_CMD= ${TRUE} . if defined(OVERRIDE_LINUX_BASE_PORT) . if ${USE_LINUX:tl} == yes USE_LINUX= ${OVERRIDE_LINUX_BASE_PORT} +. elif ${USE_LINUX} == "c6" && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64" +USE_LINUX= ${OVERRIDE_LINUX_BASE_PORT} . endif . endif @@ -1731,11 +1733,26 @@ LINUX_BASE_PORT= ${LINUXBASE}/bin/sh:${P . if ${USE_LINUX:tl} == "yes" USE_LINUX= c6 LINUX_BASE_PORT= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base-c6 +. elif ${USE_LINUX} == "c6_64" +LINUX_BASE_PORT= ${LINUXBASE}/etc/redhat-release:${PORTSDIR}/emulators/linux_base-c6 . else IGNORE= cannot be built: there is no emulators/linux_base-${USE_LINUX}, perhaps wrong use of USE_LINUX or OVERRIDE_LINUX_BASE_PORT . endif . endif +. if ${USE_LINUX} == "c6_64" || (defined(OVERRIDE_LINUX_BASE_PORT) && ${OVERRIDE_LINUX_BASE_PORT} == "c6_64") +. if ${ARCH} != "amd64" +IGNORE= Cannot install 64 bit Linux on non-64bit platforms +. endif +LINUX_RPM_ARCH?= x86_64 +LINUX_REPO_ARCH?= x86_64 +. elif ${USE_LINUX} == "c6" || ${USE_LINUX} == "yes" # default to CentOS +LINUX_RPM_ARCH?= i686 +LINUX_REPO_ARCH?= i386 +. elif ${USE_LINUX} == "f10" +LINUX_RPM_ARCH?= i386 +LINUX_REPO_ARCH?= i386 +. endif RUN_DEPENDS+= ${LINUX_BASE_PORT} .endif Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Sun Aug 9 18:56:48 2015 (r393816) +++ head/Mk/bsd.sites.mk Sun Aug 9 19:14:13 2015 (r393817) @@ -232,23 +232,23 @@ MASTER_SITE_EXIM+= \ .if !defined(IGNORE_MASTER_SITE_CENTOS_LINUX) MASTER_SITE_CENTOS_LINUX+= \ - http://mirror.centos.org/centos/6/os/i386/Packages/ \ - http://vault.centos.org/6.6/os/Source/SPackages/ \ http://mirror.centos.org/%SUBDIR%/ \ - http://vault.centos.org/%SUBDIR%/ - + http://vault.centos.org/%SUBDIR%/ \ + http://mirror.centos.org/centos/${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/ \ + http://vault.centos.org/${LINUX_DIST_VER}/os/${LINUX_REPO_ARCH}/Packages/ \ + http://vault.centos.org/${LINUX_DIST_VER}/os/Source/SPackages/:SOURCE .endif .if !defined(IGNORE_MASTER_SITE_CENTOS_LINUX) MASTER_SITE_CENTOS_LINUX_UPDATES+= \ - http://mirror.centos.org/centos/6/updates/i386/Packages/ \ - http://vault.centos.org/${LINUX_DIST_VER}/updates/Source/SPackages/ + http://mirror.centos.org/centos/${LINUX_DIST_VER}/updates/${LINUX_REPO_ARCH}/Packages/ \ + http://vault.centos.org/${LINUX_DIST_VER}/updates/Source/SPackages/:SOURCE .endif .if !defined(IGNORE_MASTER_SITE_EPEL) MASTER_SITE_EPEL+= \ - http://dl.fedoraproject.org/pub/epel/6/i386/ \ - http://dl.fedoraproject.org/pub/epel/6/SRPMS/ + http://dl.fedoraproject.org/pub/epel/6/${LINUX_REPO_ARCH}/ \ + http://dl.fedoraproject.org/pub/epel/6/SRPMS/:DEFAULT,SOURCE .endif .if !defined(IGNORE_MASTER_SITE_FEDORA_LINUX) Added: head/accessibility/linux-c6-atk/distinfo.x86_64 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/accessibility/linux-c6-atk/distinfo.x86_64 Sun Aug 9 19:14:13 2015 (r393817) @@ -0,0 +1,4 @@ +SHA256 (rpm/x86_64/centos/6.6/atk-1.30.0-1.el6.x86_64.rpm) = 0627b9fa757608512a7f7fd0f887717212e58f3d8af8e0ca338af73a38d9b65b +SIZE (rpm/x86_64/centos/6.6/atk-1.30.0-1.el6.x86_64.rpm) = 200052 +SHA256 (rpm/x86_64/centos/6.6/atk-1.30.0-1.el6.src.rpm) = fc87523ecb6cb944f9452a9da4385c73346acc3714ea494d3110245c4fbce12a +SIZE (rpm/x86_64/centos/6.6/atk-1.30.0-1.el6.src.rpm) = 758480 Copied: head/accessibility/linux-c6-atk/pkg-plist.i686 (from r392922, head/accessibility/linux-c6-atk/pkg-plist) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/accessibility/linux-c6-atk/pkg-plist.i686 Sun Aug 9 19:14:13 2015 (r393817, copy of r392922, head/accessibility/linux-c6-atk/pkg-plist) @@ -0,0 +1,97 @@ +usr/lib/libatk-1.0.so.0 +usr/lib/libatk-1.0.so.0.3009.1 +usr/share/doc/atk-1.30.0/AUTHORS +usr/share/doc/atk-1.30.0/COPYING +usr/share/doc/atk-1.30.0/NEWS +usr/share/doc/atk-1.30.0/README +usr/share/locale/af/LC_MESSAGES/atk10.mo +usr/share/locale/am/LC_MESSAGES/atk10.mo +usr/share/locale/ar/LC_MESSAGES/atk10.mo +usr/share/locale/as/LC_MESSAGES/atk10.mo +usr/share/locale/ast/LC_MESSAGES/atk10.mo +usr/share/locale/az/LC_MESSAGES/atk10.mo +usr/share/locale/be/LC_MESSAGES/atk10.mo +usr/share/locale/be@latin/LC_MESSAGES/atk10.mo +usr/share/locale/bg/LC_MESSAGES/atk10.mo +usr/share/locale/bn/LC_MESSAGES/atk10.mo +usr/share/locale/bn_IN/LC_MESSAGES/atk10.mo +usr/share/locale/bs/LC_MESSAGES/atk10.mo +usr/share/locale/ca/LC_MESSAGES/atk10.mo +usr/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +usr/share/locale/cs/LC_MESSAGES/atk10.mo +usr/share/locale/cy/LC_MESSAGES/atk10.mo +usr/share/locale/da/LC_MESSAGES/atk10.mo +usr/share/locale/de/LC_MESSAGES/atk10.mo +usr/share/locale/dz/LC_MESSAGES/atk10.mo +usr/share/locale/el/LC_MESSAGES/atk10.mo +usr/share/locale/en_CA/LC_MESSAGES/atk10.mo +usr/share/locale/en@shaw/LC_MESSAGES/atk10.mo +usr/share/locale/en_GB/LC_MESSAGES/atk10.mo +usr/share/locale/eo/LC_MESSAGES/atk10.mo +usr/share/locale/es/LC_MESSAGES/atk10.mo +usr/share/locale/et/LC_MESSAGES/atk10.mo +usr/share/locale/eu/LC_MESSAGES/atk10.mo +usr/share/locale/fa/LC_MESSAGES/atk10.mo +usr/share/locale/fi/LC_MESSAGES/atk10.mo +usr/share/locale/fr/LC_MESSAGES/atk10.mo +usr/share/locale/ga/LC_MESSAGES/atk10.mo +usr/share/locale/gl/LC_MESSAGES/atk10.mo +usr/share/locale/gu/LC_MESSAGES/atk10.mo +usr/share/locale/he/LC_MESSAGES/atk10.mo +usr/share/locale/hi/LC_MESSAGES/atk10.mo +usr/share/locale/hr/LC_MESSAGES/atk10.mo +usr/share/locale/hu/LC_MESSAGES/atk10.mo +usr/share/locale/id/LC_MESSAGES/atk10.mo +usr/share/locale/is/LC_MESSAGES/atk10.mo +usr/share/locale/it/LC_MESSAGES/atk10.mo +usr/share/locale/ja/LC_MESSAGES/atk10.mo +usr/share/locale/ka/LC_MESSAGES/atk10.mo +usr/share/locale/kn/LC_MESSAGES/atk10.mo +usr/share/locale/ko/LC_MESSAGES/atk10.mo +usr/share/locale/ku/LC_MESSAGES/atk10.mo +usr/share/locale/li/LC_MESSAGES/atk10.mo +usr/share/locale/lt/LC_MESSAGES/atk10.mo +usr/share/locale/lv/LC_MESSAGES/atk10.mo +usr/share/locale/mai/LC_MESSAGES/atk10.mo +usr/share/locale/mk/LC_MESSAGES/atk10.mo +usr/share/locale/ml/LC_MESSAGES/atk10.mo +usr/share/locale/mn/LC_MESSAGES/atk10.mo +usr/share/locale/mr/LC_MESSAGES/atk10.mo +usr/share/locale/ms/LC_MESSAGES/atk10.mo +usr/share/locale/nb/LC_MESSAGES/atk10.mo +usr/share/locale/ne/LC_MESSAGES/atk10.mo +usr/share/locale/nl/LC_MESSAGES/atk10.mo +usr/share/locale/nn/LC_MESSAGES/atk10.mo +usr/share/locale/oc/LC_MESSAGES/atk10.mo +usr/share/locale/or/LC_MESSAGES/atk10.mo +usr/share/locale/pa/LC_MESSAGES/atk10.mo +usr/share/locale/pl/LC_MESSAGES/atk10.mo +usr/share/locale/ps/LC_MESSAGES/atk10.mo +usr/share/locale/pt/LC_MESSAGES/atk10.mo +usr/share/locale/pt_BR/LC_MESSAGES/atk10.mo +usr/share/locale/ro/LC_MESSAGES/atk10.mo +usr/share/locale/ru/LC_MESSAGES/atk10.mo +usr/share/locale/rw/LC_MESSAGES/atk10.mo +usr/share/locale/si/LC_MESSAGES/atk10.mo +usr/share/locale/sk/LC_MESSAGES/atk10.mo +usr/share/locale/sl/LC_MESSAGES/atk10.mo +usr/share/locale/sq/LC_MESSAGES/atk10.mo +usr/share/locale/sr/LC_MESSAGES/atk10.mo +usr/share/locale/sr@ije/LC_MESSAGES/atk10.mo +usr/share/locale/sr@latin/LC_MESSAGES/atk10.mo +usr/share/locale/sv/LC_MESSAGES/atk10.mo +usr/share/locale/ta/LC_MESSAGES/atk10.mo +usr/share/locale/te/LC_MESSAGES/atk10.mo +usr/share/locale/th/LC_MESSAGES/atk10.mo +usr/share/locale/tk/LC_MESSAGES/atk10.mo +usr/share/locale/tr/LC_MESSAGES/atk10.mo +usr/share/locale/tt/LC_MESSAGES/atk10.mo +usr/share/locale/ug/LC_MESSAGES/atk10.mo +usr/share/locale/uk/LC_MESSAGES/atk10.mo +usr/share/locale/vi/LC_MESSAGES/atk10.mo +usr/share/locale/wa/LC_MESSAGES/atk10.mo +usr/share/locale/xh/LC_MESSAGES/atk10.mo +usr/share/locale/yi/LC_MESSAGES/atk10.mo +usr/share/locale/zh_CN/LC_MESSAGES/atk10.mo +usr/share/locale/zh_HK/LC_MESSAGES/atk10.mo +usr/share/locale/zh_TW/LC_MESSAGES/atk10.mo Added: head/accessibility/linux-c6-atk/pkg-plist.x86_64 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/accessibility/linux-c6-atk/pkg-plist.x86_64 Sun Aug 9 19:14:13 2015 (r393817) @@ -0,0 +1,97 @@ +usr/lib64/libatk-1.0.so.0 +usr/lib64/libatk-1.0.so.0.3009.1 +usr/share/doc/atk-1.30.0/AUTHORS +usr/share/doc/atk-1.30.0/COPYING +usr/share/doc/atk-1.30.0/NEWS +usr/share/doc/atk-1.30.0/README +usr/share/locale/af/LC_MESSAGES/atk10.mo +usr/share/locale/am/LC_MESSAGES/atk10.mo +usr/share/locale/ar/LC_MESSAGES/atk10.mo +usr/share/locale/as/LC_MESSAGES/atk10.mo +usr/share/locale/ast/LC_MESSAGES/atk10.mo +usr/share/locale/az/LC_MESSAGES/atk10.mo +usr/share/locale/be/LC_MESSAGES/atk10.mo +usr/share/locale/be@latin/LC_MESSAGES/atk10.mo +usr/share/locale/bg/LC_MESSAGES/atk10.mo +usr/share/locale/bn/LC_MESSAGES/atk10.mo +usr/share/locale/bn_IN/LC_MESSAGES/atk10.mo +usr/share/locale/bs/LC_MESSAGES/atk10.mo +usr/share/locale/ca/LC_MESSAGES/atk10.mo +usr/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +usr/share/locale/cs/LC_MESSAGES/atk10.mo +usr/share/locale/cy/LC_MESSAGES/atk10.mo +usr/share/locale/da/LC_MESSAGES/atk10.mo +usr/share/locale/de/LC_MESSAGES/atk10.mo +usr/share/locale/dz/LC_MESSAGES/atk10.mo +usr/share/locale/el/LC_MESSAGES/atk10.mo +usr/share/locale/en_CA/LC_MESSAGES/atk10.mo +usr/share/locale/en@shaw/LC_MESSAGES/atk10.mo +usr/share/locale/en_GB/LC_MESSAGES/atk10.mo +usr/share/locale/eo/LC_MESSAGES/atk10.mo +usr/share/locale/es/LC_MESSAGES/atk10.mo +usr/share/locale/et/LC_MESSAGES/atk10.mo +usr/share/locale/eu/LC_MESSAGES/atk10.mo +usr/share/locale/fa/LC_MESSAGES/atk10.mo +usr/share/locale/fi/LC_MESSAGES/atk10.mo +usr/share/locale/fr/LC_MESSAGES/atk10.mo +usr/share/locale/ga/LC_MESSAGES/atk10.mo +usr/share/locale/gl/LC_MESSAGES/atk10.mo +usr/share/locale/gu/LC_MESSAGES/atk10.mo +usr/share/locale/he/LC_MESSAGES/atk10.mo +usr/share/locale/hi/LC_MESSAGES/atk10.mo +usr/share/locale/hr/LC_MESSAGES/atk10.mo +usr/share/locale/hu/LC_MESSAGES/atk10.mo +usr/share/locale/id/LC_MESSAGES/atk10.mo +usr/share/locale/is/LC_MESSAGES/atk10.mo +usr/share/locale/it/LC_MESSAGES/atk10.mo +usr/share/locale/ja/LC_MESSAGES/atk10.mo +usr/share/locale/ka/LC_MESSAGES/atk10.mo +usr/share/locale/kn/LC_MESSAGES/atk10.mo +usr/share/locale/ko/LC_MESSAGES/atk10.mo +usr/share/locale/ku/LC_MESSAGES/atk10.mo +usr/share/locale/li/LC_MESSAGES/atk10.mo +usr/share/locale/lt/LC_MESSAGES/atk10.mo +usr/share/locale/lv/LC_MESSAGES/atk10.mo +usr/share/locale/mai/LC_MESSAGES/atk10.mo +usr/share/locale/mk/LC_MESSAGES/atk10.mo +usr/share/locale/ml/LC_MESSAGES/atk10.mo *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Aug 9 19:28:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13FC799DD62; Sun, 9 Aug 2015 19:28:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E089BF15; Sun, 9 Aug 2015 19:28:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79JSXlj094087; Sun, 9 Aug 2015 19:28:33 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79JSWjO094083; Sun, 9 Aug 2015 19:28:32 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091928.t79JSWjO094083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 19:28:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393818 - in head/www: . rubygem-task_list X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 19:28:34 -0000 Author: swills Date: Sun Aug 9 19:28:32 2015 New Revision: 393818 URL: https://svnweb.freebsd.org/changeset/ports/393818 Log: www/rubygem-tasklist: create port Provides various components necessary for integrating Task Lists into GitHub-flavored-Markdown user content. WWW: https://github.com/github/task_list PR: 201765 Submitted by: Torsten Zühlsdorff Added: head/www/rubygem-task_list/ head/www/rubygem-task_list/Makefile (contents, props changed) head/www/rubygem-task_list/distinfo (contents, props changed) head/www/rubygem-task_list/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 9 19:14:13 2015 (r393817) +++ head/www/Makefile Sun Aug 9 19:28:32 2015 (r393818) @@ -1969,6 +1969,7 @@ SUBDIR += rubygem-sinatra-contrib SUBDIR += rubygem-sinatra-r18n SUBDIR += rubygem-sinatra-respond_to + SUBDIR += rubygem-task_list SUBDIR += rubygem-thin SUBDIR += rubygem-tinyatom SUBDIR += rubygem-tinymce-rails Added: head/www/rubygem-task_list/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-task_list/Makefile Sun Aug 9 19:28:32 2015 (r393818) @@ -0,0 +1,22 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= task_list +PORTVERSION= 1.0.2 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@freebsd.org +COMMENT= GitHub-flavored-Markdown TaskList components + +LICENSE= MIT + +RUN_DEPENDS?= rubygem-html-pipeline>=0.0.0:${PORTSDIR}/textproc/rubygem-html-pipeline + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/www/rubygem-task_list/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-task_list/distinfo Sun Aug 9 19:28:32 2015 (r393818) @@ -0,0 +1,2 @@ +SHA256 (rubygem/task_list-1.0.2.gem) = 4bf18f5a3a18a755fc929b6f1eeb868e0402366afd915b091b8610b07e7461c7 +SIZE (rubygem/task_list-1.0.2.gem) = 16384 Added: head/www/rubygem-task_list/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-task_list/pkg-descr Sun Aug 9 19:28:32 2015 (r393818) @@ -0,0 +1,4 @@ +Provides various components necessary for integrating Task Lists +into GitHub-flavored-Markdown user content. + +WWW: https://github.com/github/task_list From owner-svn-ports-all@freebsd.org Sun Aug 9 19:34:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7D6899D06A; Sun, 9 Aug 2015 19:34:08 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7EC979BD; Sun, 9 Aug 2015 19:34:08 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79JY8ZQ098136; Sun, 9 Aug 2015 19:34:08 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79JY7Rl098132; Sun, 9 Aug 2015 19:34:07 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091934.t79JY7Rl098132@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 19:34:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393819 - in head/devel: . rubygem-ice_cube X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 19:34:08 -0000 Author: swills Date: Sun Aug 9 19:34:06 2015 New Revision: 393819 URL: https://svnweb.freebsd.org/changeset/ports/393819 Log: devel/rubygem-ice_cube: create port Ruby Date Recurrence Library - Allows easy creation of recurrence rules and fast querying WWW: http://seejohncode.com/ice_cube/ PR: 201790 Submitted by: Torsten Zühlsdorff Added: head/devel/rubygem-ice_cube/ head/devel/rubygem-ice_cube/Makefile (contents, props changed) head/devel/rubygem-ice_cube/distinfo (contents, props changed) head/devel/rubygem-ice_cube/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 19:28:32 2015 (r393818) +++ head/devel/Makefile Sun Aug 9 19:34:06 2015 (r393819) @@ -4693,6 +4693,7 @@ SUBDIR += rubygem-holidays SUBDIR += rubygem-i18n SUBDIR += rubygem-icalendar + SUBDIR += rubygem-ice_cube SUBDIR += rubygem-ice_nine SUBDIR += rubygem-igraph SUBDIR += rubygem-inflecto Added: head/devel/rubygem-ice_cube/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ice_cube/Makefile Sun Aug 9 19:34:06 2015 (r393819) @@ -0,0 +1,18 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= ice_cube +PORTVERSION= 0.13.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@freebsd.org +COMMENT= Recurring date library for Ruby + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-ice_cube/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ice_cube/distinfo Sun Aug 9 19:34:06 2015 (r393819) @@ -0,0 +1,2 @@ +SHA256 (rubygem/ice_cube-0.13.0.gem) = 3f57d137a42a7b847a0a92298b459ca6168d75d2407c120907a1d39a3b82ac4b +SIZE (rubygem/ice_cube-0.13.0.gem) = 23552 Added: head/devel/rubygem-ice_cube/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-ice_cube/pkg-descr Sun Aug 9 19:34:06 2015 (r393819) @@ -0,0 +1,4 @@ +Ruby Date Recurrence Library - Allows easy creation of recurrence rules and +fast querying + +WWW: http://seejohncode.com/ice_cube/ From owner-svn-ports-all@freebsd.org Sun Aug 9 19:50:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94AAC99D476; Sun, 9 Aug 2015 19:50:36 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B7F71FA; Sun, 9 Aug 2015 19:50:36 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Joafs002869; Sun, 9 Aug 2015 19:50:36 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79JoZoa002862; Sun, 9 Aug 2015 19:50:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091950.t79JoZoa002862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 19:50:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393820 - in head/devel: . rubygem-rotp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 19:50:36 -0000 Author: swills Date: Sun Aug 9 19:50:34 2015 New Revision: 393820 URL: https://svnweb.freebsd.org/changeset/ports/393820 Log: devel/rubygem-rotp: create port A ruby library for generating one time passwords (HOTP & TOTP) according to RFC 4226 and RFC 6238. WWW: https://github.com/mdp/rotp PR: 201791 Submitted by: Torsten Zühlsdorff Added: head/devel/rubygem-rotp/ head/devel/rubygem-rotp/Makefile (contents, props changed) head/devel/rubygem-rotp/distinfo (contents, props changed) head/devel/rubygem-rotp/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 19:34:06 2015 (r393819) +++ head/devel/Makefile Sun Aug 9 19:50:34 2015 (r393820) @@ -4818,6 +4818,7 @@ SUBDIR += rubygem-retryable SUBDIR += rubygem-rgl SUBDIR += rubygem-rodzilla + SUBDIR += rubygem-rotp SUBDIR += rubygem-rr SUBDIR += rubygem-rrd-ffi SUBDIR += rubygem-rscm Added: head/devel/rubygem-rotp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rotp/Makefile Sun Aug 9 19:50:34 2015 (r393820) @@ -0,0 +1,18 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= rotp +PORTVERSION= 1.6.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby library for generating one time passwords + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/devel/rubygem-rotp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rotp/distinfo Sun Aug 9 19:50:34 2015 (r393820) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rotp-1.6.1.gem) = 07e5d891538ec4e55a7ba578b0baa033e522f51759109174349def7059f15222 +SIZE (rubygem/rotp-1.6.1.gem) = 56320 Added: head/devel/rubygem-rotp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rotp/pkg-descr Sun Aug 9 19:50:34 2015 (r393820) @@ -0,0 +1,4 @@ +A ruby library for generating one time passwords (HOTP & TOTP) +according to RFC 4226 and RFC 6238. + +WWW: https://github.com/mdp/rotp From owner-svn-ports-all@freebsd.org Sun Aug 9 20:00:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0535899D772; Sun, 9 Aug 2015 20:00:08 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9E76A52; Sun, 9 Aug 2015 20:00:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79K07fH007169; Sun, 9 Aug 2015 20:00:07 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79K06bY007164; Sun, 9 Aug 2015 20:00:06 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092000.t79K06bY007164@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:00:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393821 - in head/devel: . rubygem-sidetiq rubygem-sidetiq/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:00:08 -0000 Author: swills Date: Sun Aug 9 20:00:06 2015 New Revision: 393821 URL: https://svnweb.freebsd.org/changeset/ports/393821 Log: devel/rubygem-sidetiq: create port Recurring jobs for Sidekiq WWW: https://github.com/tobiassvn/sidetiq PR: 201792 Submitted by: Torsten Zühlsdorff Added: head/devel/rubygem-sidetiq/ head/devel/rubygem-sidetiq/Makefile (contents, props changed) head/devel/rubygem-sidetiq/distinfo (contents, props changed) head/devel/rubygem-sidetiq/files/ head/devel/rubygem-sidetiq/files/patch-sidetiq.gemspec (contents, props changed) head/devel/rubygem-sidetiq/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 19:50:34 2015 (r393820) +++ head/devel/Makefile Sun Aug 9 20:00:06 2015 (r393821) @@ -4860,6 +4860,7 @@ SUBDIR += rubygem-shoulda-context SUBDIR += rubygem-shoulda-matchers SUBDIR += rubygem-sidekiq + SUBDIR += rubygem-sidetiq SUBDIR += rubygem-sigdump SUBDIR += rubygem-simple_form SUBDIR += rubygem-simplecov Added: head/devel/rubygem-sidetiq/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sidetiq/Makefile Sun Aug 9 20:00:06 2015 (r393821) @@ -0,0 +1,24 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= sidetiq +PORTVERSION= 0.6.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@freebsd.org +COMMENT= Recurring jobs for Sidekiq + +LICENSE= BSD + +RUN_DEPENDS= rubygem-celluloid>=0.14.1:${PORTSDIR}/devel/rubygem-celluloid \ + rubygem-ice_cube>=0.11.1:${PORTSDIR}/devel/rubygem-ice_cube \ + rubygem-sidekiq>=3.0.0:${PORTSDIR}/devel/rubygem-sidekiq + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-sidetiq/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sidetiq/distinfo Sun Aug 9 20:00:06 2015 (r393821) @@ -0,0 +1,2 @@ +SHA256 (rubygem/sidetiq-0.6.3.gem) = 550956fdff4ad0d1f79cc431b547c92c662cb72e0e4027d019fcd8ec6dd8d4eb +SIZE (rubygem/sidetiq-0.6.3.gem) = 22528 Added: head/devel/rubygem-sidetiq/files/patch-sidetiq.gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sidetiq/files/patch-sidetiq.gemspec Sun Aug 9 20:00:06 2015 (r393821) @@ -0,0 +1,29 @@ +--- sidetiq.gemspec.orig 2015-07-06 11:49:20 UTC ++++ sidetiq.gemspec +@@ -24,7 +24,7 @@ Gem::Specification.new do |s| + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 3.0.0"]) + s.add_runtime_dependency(%q, [">= 0.14.1"]) +- s.add_runtime_dependency(%q, ["= 0.11.1"]) ++ s.add_runtime_dependency(%q, [">= 0.11.1"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) +@@ -34,7 +34,7 @@ Gem::Specification.new do |s| + else + s.add_dependency(%q, [">= 3.0.0"]) + s.add_dependency(%q, [">= 0.14.1"]) +- s.add_dependency(%q, ["= 0.11.1"]) ++ s.add_dependency(%q, [">= 0.11.1"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) +@@ -45,7 +45,7 @@ Gem::Specification.new do |s| + else + s.add_dependency(%q, [">= 3.0.0"]) + s.add_dependency(%q, [">= 0.14.1"]) +- s.add_dependency(%q, ["= 0.11.1"]) ++ s.add_dependency(%q, [">= 0.11.1"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) Added: head/devel/rubygem-sidetiq/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sidetiq/pkg-descr Sun Aug 9 20:00:06 2015 (r393821) @@ -0,0 +1,3 @@ +Recurring jobs for Sidekiq + +WWW: https://github.com/tobiassvn/sidetiq From owner-svn-ports-all@freebsd.org Sun Aug 9 20:03:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 527FD99D86E; Sun, 9 Aug 2015 20:03:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43C50B3; Sun, 9 Aug 2015 20:03:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79K3mSs011089; Sun, 9 Aug 2015 20:03:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79K3mOK011088; Sun, 9 Aug 2015 20:03:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508092003.t79K3mOK011088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 9 Aug 2015 20:03:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393822 - head/games/outerspace X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:03:48 -0000 Author: amdmi3 Date: Sun Aug 9 20:03:47 2015 New Revision: 393822 URL: https://svnweb.freebsd.org/changeset/ports/393822 Log: - Add NO_ARCH Modified: head/games/outerspace/Makefile Modified: head/games/outerspace/Makefile ============================================================================== --- head/games/outerspace/Makefile Sun Aug 9 20:00:06 2015 (r393821) +++ head/games/outerspace/Makefile Sun Aug 9 20:03:47 2015 (r393822) @@ -14,6 +14,7 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame USES= python NO_BUILD= yes +NO_ARCH= yes SUB_FILES= outerspace SUB_LIST= PROGRAM_DIR="${PREFIX}/lib/${PORTNAME}" From owner-svn-ports-all@freebsd.org Sun Aug 9 20:10:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02DEE99DAC3; Sun, 9 Aug 2015 20:10:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CEB33C23; Sun, 9 Aug 2015 20:10:36 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79KAacd014116; Sun, 9 Aug 2015 20:10:36 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79KAZq6013617; Sun, 9 Aug 2015 20:10:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092010.t79KAZq6013617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:10:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393823 - in head/www: . rubygem-rqrcode-rails3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:10:37 -0000 Author: swills Date: Sun Aug 9 20:10:35 2015 New Revision: 393823 URL: https://svnweb.freebsd.org/changeset/ports/393823 Log: www/rubygem-rqrcode-rails3: create port Render QR codes with Rails 3 WWW: https://github.com/samvincent/rqrcode-rails3 PR: 201793 Submitted by: Torsten Zühlsdorff Added: head/www/rubygem-rqrcode-rails3/ head/www/rubygem-rqrcode-rails3/Makefile (contents, props changed) head/www/rubygem-rqrcode-rails3/distinfo (contents, props changed) head/www/rubygem-rqrcode-rails3/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Aug 9 20:03:47 2015 (r393822) +++ head/www/Makefile Sun Aug 9 20:10:35 2015 (r393823) @@ -1956,6 +1956,7 @@ SUBDIR += rubygem-robotex SUBDIR += rubygem-robots SUBDIR += rubygem-rqrcode + SUBDIR += rubygem-rqrcode-rails3 SUBDIR += rubygem-rtlit SUBDIR += rubygem-ruby-readability SUBDIR += rubygem-savon Added: head/www/rubygem-rqrcode-rails3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rqrcode-rails3/Makefile Sun Aug 9 20:10:35 2015 (r393823) @@ -0,0 +1,22 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= rqrcode-rails3 +PORTVERSION= 0.1.7 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Render QR codes with Rails 3 + +LICENSE= MIT + +RUN_DEPENDS= rubygem-rqrcode>=0.4.2:${PORTSDIR}/www/rubygem-rqrcode + +NO_ARCH= yes + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/www/rubygem-rqrcode-rails3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rqrcode-rails3/distinfo Sun Aug 9 20:10:35 2015 (r393823) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rqrcode-rails3-0.1.7.gem) = 6f0582f26485123e5ed6f2a8a2871f00d86d353e0f58c8429a5a13212bcf48c4 +SIZE (rubygem/rqrcode-rails3-0.1.7.gem) = 7168 Added: head/www/rubygem-rqrcode-rails3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rqrcode-rails3/pkg-descr Sun Aug 9 20:10:35 2015 (r393823) @@ -0,0 +1,3 @@ +Render QR codes with Rails 3 + +WWW: https://github.com/samvincent/rqrcode-rails3 From owner-svn-ports-all@freebsd.org Sun Aug 9 20:17:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E51F299DC52; Sun, 9 Aug 2015 20:17:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B98DFE79; Sun, 9 Aug 2015 20:17:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79KHn7W015848; Sun, 9 Aug 2015 20:17:49 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79KHm0Y015844; Sun, 9 Aug 2015 20:17:48 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092017.t79KHm0Y015844@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:17:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393824 - in head/security: . rubygem-encryptor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:17:50 -0000 Author: swills Date: Sun Aug 9 20:17:48 2015 New Revision: 393824 URL: https://svnweb.freebsd.org/changeset/ports/393824 Log: security/rubygem-encryptor: create port A simple wrapper for the standard ruby OpenSSL library to encrypt and decrypt strings WWW: https://github.com/attr-encrypted/encryptor PR: 201808 Submitted by: Torsten Zühlsdorff Added: head/security/rubygem-encryptor/ head/security/rubygem-encryptor/Makefile (contents, props changed) head/security/rubygem-encryptor/distinfo (contents, props changed) head/security/rubygem-encryptor/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 9 20:10:35 2015 (r393823) +++ head/security/Makefile Sun Aug 9 20:17:48 2015 (r393824) @@ -915,6 +915,7 @@ SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-doorkeeper + SUBDIR += rubygem-encryptor SUBDIR += rubygem-ezcrypto SUBDIR += rubygem-gpgr SUBDIR += rubygem-gssapi Added: head/security/rubygem-encryptor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-encryptor/Makefile Sun Aug 9 20:17:48 2015 (r393824) @@ -0,0 +1,18 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= encryptor +PORTVERSION= 1.3.0 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Wrapper for the standard ruby OpenSSL library + +LICENSE= MIT + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/security/rubygem-encryptor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-encryptor/distinfo Sun Aug 9 20:17:48 2015 (r393824) @@ -0,0 +1,2 @@ +SHA256 (rubygem/encryptor-1.3.0.gem) = 3e6ce2ce8efdaeb0713f03ed278b4653f67c3bf6a14bc9618507060454c39813 +SIZE (rubygem/encryptor-1.3.0.gem) = 8704 Added: head/security/rubygem-encryptor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-encryptor/pkg-descr Sun Aug 9 20:17:48 2015 (r393824) @@ -0,0 +1,4 @@ +A simple wrapper for the standard ruby OpenSSL library to encrypt +and decrypt strings + +WWW: https://github.com/attr-encrypted/encryptor From owner-svn-ports-all@freebsd.org Sun Aug 9 20:21:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3002599DD23; Sun, 9 Aug 2015 20:21:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13ECC108; Sun, 9 Aug 2015 20:21:04 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79KL3Q4016863; Sun, 9 Aug 2015 20:21:03 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79KL3ZD016859; Sun, 9 Aug 2015 20:21:03 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092021.t79KL3ZD016859@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:21:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393825 - in head/security: . rubygem-attr_encrypted X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:21:04 -0000 Author: swills Date: Sun Aug 9 20:21:02 2015 New Revision: 393825 URL: https://svnweb.freebsd.org/changeset/ports/393825 Log: secrutiy/rubygem-attr_encrypted: create port Ruby library which generates attr_accessors that encrypt and decrypt attributes transparently WWW: https://github.com/attr-encrypted/attr_encrypted PR: 201806 Submitted by: Torsten Zühlsdorff Added: head/security/rubygem-attr_encrypted/ head/security/rubygem-attr_encrypted/Makefile (contents, props changed) head/security/rubygem-attr_encrypted/distinfo (contents, props changed) head/security/rubygem-attr_encrypted/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 9 20:17:48 2015 (r393824) +++ head/security/Makefile Sun Aug 9 20:21:02 2015 (r393825) @@ -912,6 +912,7 @@ SUBDIR += ruby-hmac SUBDIR += ruby-password SUBDIR += ruby-tcpwrap + SUBDIR += rubygem-attr_encrypted SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby SUBDIR += rubygem-doorkeeper Added: head/security/rubygem-attr_encrypted/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-attr_encrypted/Makefile Sun Aug 9 20:21:02 2015 (r393825) @@ -0,0 +1,20 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= attr_encrypted +PORTVERSION= 1.3.4 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Generates attr_accessors that encrypt and decrypt attributes + +LICENSE= MIT + +RUN_DEPENDS= rubygem-encryptor>=1.3.0:${PORTSDIR}/security/rubygem-encryptor + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/security/rubygem-attr_encrypted/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-attr_encrypted/distinfo Sun Aug 9 20:21:02 2015 (r393825) @@ -0,0 +1,2 @@ +SHA256 (rubygem/attr_encrypted-1.3.4.gem) = 175d9e2a9193f251419818900be9627069c573141dec823175f38c8a0941a2c2 +SIZE (rubygem/attr_encrypted-1.3.4.gem) = 20992 Added: head/security/rubygem-attr_encrypted/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-attr_encrypted/pkg-descr Sun Aug 9 20:21:02 2015 (r393825) @@ -0,0 +1,4 @@ +Ruby library which generates attr_accessors that encrypt +and decrypt attributes transparently + +WWW: https://github.com/attr-encrypted/attr_encrypted From owner-svn-ports-all@freebsd.org Sun Aug 9 20:26:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A85499DF3C; Sun, 9 Aug 2015 20:26:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B01E946; Sun, 9 Aug 2015 20:26:37 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79KQbaM020333; Sun, 9 Aug 2015 20:26:37 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79KQZFO020326; Sun, 9 Aug 2015 20:26:35 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092026.t79KQZFO020326@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:26:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393826 - in head/security: . rubygem-devise-two-factor rubygem-devise-two-factor/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:26:37 -0000 Author: swills Date: Sun Aug 9 20:26:35 2015 New Revision: 393826 URL: https://svnweb.freebsd.org/changeset/ports/393826 Log: security/rubygem-devise-two-factor: create port Barebones two-factor authentication with Devise WWW: https://github.com/tinfoil/devise-two-factor PR: 201807 Submitted by: Torsten Zühlsdorff Added: head/security/rubygem-devise-two-factor/ head/security/rubygem-devise-two-factor/Makefile (contents, props changed) head/security/rubygem-devise-two-factor/distinfo (contents, props changed) head/security/rubygem-devise-two-factor/files/ head/security/rubygem-devise-two-factor/files/patch-devise-two-factor.gemspec (contents, props changed) head/security/rubygem-devise-two-factor/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 9 20:21:02 2015 (r393825) +++ head/security/Makefile Sun Aug 9 20:26:35 2015 (r393826) @@ -915,6 +915,7 @@ SUBDIR += rubygem-attr_encrypted SUBDIR += rubygem-bcrypt SUBDIR += rubygem-bcrypt-ruby + SUBDIR += rubygem-devise-two-factor SUBDIR += rubygem-doorkeeper SUBDIR += rubygem-encryptor SUBDIR += rubygem-ezcrypto Added: head/security/rubygem-devise-two-factor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-devise-two-factor/Makefile Sun Aug 9 20:26:35 2015 (r393826) @@ -0,0 +1,25 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= devise-two-factor +PORTVERSION= 1.0.2 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Barebones two-factor authentication with Devise + +LICENSE= MIT + +RUN_DEPENDS?= rubygem-activemodel4>=4.0.0:${PORTSDIR}/databases/rubygem-activemodel4 \ + rubygem-activesupport4>=4.0.0:${PORTSDIR}/devel/rubygem-activesupport4 \ + rubygem-attr_encrypted>=1.3.4:${PORTSDIR}/security/rubygem-attr_encrypted \ + rubygem-devise-rails4>=3.2.4:${PORTSDIR}/devel/rubygem-devise-rails4 \ + rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 \ + rubygem-rotp<=2.0.0:${PORTSDIR}/devel/rubygem-rotp + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/security/rubygem-devise-two-factor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-devise-two-factor/distinfo Sun Aug 9 20:26:35 2015 (r393826) @@ -0,0 +1,2 @@ +SHA256 (rubygem/devise-two-factor-1.0.2.gem) = 07380181436a893255b1f82e1d03d1a6b5e1c7dc841bfb39c34bac2aba193322 +SIZE (rubygem/devise-two-factor-1.0.2.gem) = 25600 Added: head/security/rubygem-devise-two-factor/files/patch-devise-two-factor.gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-devise-two-factor/files/patch-devise-two-factor.gemspec Sun Aug 9 20:26:35 2015 (r393826) @@ -0,0 +1,13 @@ +--- devise-two-factor.gemspec.orig 2015-07-06 11:45:00 UTC ++++ devise-two-factor.gemspec +@@ -27,8 +27,8 @@ Gem::Specification.new do |s| + s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 0"]) +- s.add_runtime_dependency(%q, ["~> 1.3.2"]) +- s.add_runtime_dependency(%q, ["< 3.5", ">= 3.2.4"]) ++ s.add_runtime_dependency(%q, [">= 1.3.2"]) ++ s.add_runtime_dependency(%q, ["< 3.5.2", ">= 3.2.4"]) + s.add_runtime_dependency(%q, ["< 2"]) + s.add_development_dependency(%q, ["> 1.0"]) + s.add_development_dependency(%q, ["< 3", "> 2"]) Added: head/security/rubygem-devise-two-factor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-devise-two-factor/pkg-descr Sun Aug 9 20:26:35 2015 (r393826) @@ -0,0 +1,3 @@ +Barebones two-factor authentication with Devise + +WWW: https://github.com/tinfoil/devise-two-factor From owner-svn-ports-all@freebsd.org Sun Aug 9 20:39:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 115E299D41C; Sun, 9 Aug 2015 20:39:09 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE58D113C; Sun, 9 Aug 2015 20:39:08 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Kd8kR024946; Sun, 9 Aug 2015 20:39:08 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79Kd7gk024942; Sun, 9 Aug 2015 20:39:07 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092039.t79Kd7gk024942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:39:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393827 - in head/security: . rubygem-ruby-saml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:39:09 -0000 Author: swills Date: Sun Aug 9 20:39:07 2015 New Revision: 393827 URL: https://svnweb.freebsd.org/changeset/ports/393827 Log: security/rubygem-ruby-saml: create port SAML toolkit for Ruby on Rails WWW: https://github.com/onelogin/ruby-saml PR: 201810 Submitted by: Torsten Zühlsdorff Added: head/security/rubygem-ruby-saml/ head/security/rubygem-ruby-saml/Makefile (contents, props changed) head/security/rubygem-ruby-saml/distinfo (contents, props changed) head/security/rubygem-ruby-saml/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 9 20:26:35 2015 (r393826) +++ head/security/Makefile Sun Aug 9 20:39:07 2015 (r393827) @@ -946,6 +946,7 @@ SUBDIR += rubygem-roauth SUBDIR += rubygem-ruby-hmac SUBDIR += rubygem-ruby-rc4 + SUBDIR += rubygem-ruby-saml SUBDIR += rubygem-scrypt SUBDIR += rubygem-six SUBDIR += rubygem-sshkit Added: head/security/rubygem-ruby-saml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-ruby-saml/Makefile Sun Aug 9 20:39:07 2015 (r393827) @@ -0,0 +1,20 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= ruby-saml +PORTVERSION= 0.9.2 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= SAML toolkit for Ruby on Rails + +RUN_DEPENDS= rubygem-nokogiri>=1.5.10:${PORTSDIR}/textproc/rubygem-nokogiri \ + rubygem-uuid>=2.3:${PORTSDIR}/devel/rubygem-uuid + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/security/rubygem-ruby-saml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-ruby-saml/distinfo Sun Aug 9 20:39:07 2015 (r393827) @@ -0,0 +1,2 @@ +SHA256 (rubygem/ruby-saml-0.9.2.gem) = 3161d7bfd1c07bab038d3dbe3dfa91706506f71bd1d448ba19423c01bb00eaff +SIZE (rubygem/ruby-saml-0.9.2.gem) = 90624 Added: head/security/rubygem-ruby-saml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-ruby-saml/pkg-descr Sun Aug 9 20:39:07 2015 (r393827) @@ -0,0 +1,3 @@ +SAML toolkit for Ruby on Rails + +WWW: https://github.com/onelogin/ruby-saml From owner-svn-ports-all@freebsd.org Sun Aug 9 20:49:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 766A399D710; Sun, 9 Aug 2015 20:49:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 673DA1A23; Sun, 9 Aug 2015 20:49:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79KndoO029262; Sun, 9 Aug 2015 20:49:39 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79KncjD029257; Sun, 9 Aug 2015 20:49:38 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508092049.t79KncjD029257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 20:49:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393828 - in head/security: . rubygem-omniauth-saml rubygem-omniauth-saml/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 20:49:39 -0000 Author: swills Date: Sun Aug 9 20:49:37 2015 New Revision: 393828 URL: https://svnweb.freebsd.org/changeset/ports/393828 Log: security/rubygem-omniauth-saml: create port A generic SAML strategy for OmniAuth WWW: https://github.com/PracticallyGreen/omniauth-saml PR: 201809 Submitted by: Torsten Zühlsdorff Added: head/security/rubygem-omniauth-saml/ head/security/rubygem-omniauth-saml/Makefile (contents, props changed) head/security/rubygem-omniauth-saml/distinfo (contents, props changed) head/security/rubygem-omniauth-saml/files/ head/security/rubygem-omniauth-saml/files/patch-omniauth-saml.gemspec (contents, props changed) head/security/rubygem-omniauth-saml/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Aug 9 20:39:07 2015 (r393827) +++ head/security/Makefile Sun Aug 9 20:49:37 2015 (r393828) @@ -937,6 +937,7 @@ SUBDIR += rubygem-omniauth-bitbucket SUBDIR += rubygem-omniauth-gitlab SUBDIR += rubygem-omniauth-multipassword + SUBDIR += rubygem-omniauth-saml SUBDIR += rubygem-omniauth-shibboleth SUBDIR += rubygem-origami SUBDIR += rubygem-pyu-ruby-sasl Added: head/security/rubygem-omniauth-saml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-saml/Makefile Sun Aug 9 20:49:37 2015 (r393828) @@ -0,0 +1,22 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= omniauth-saml +PORTVERSION= 1.3.1 +CATEGORIES= security rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= OmniAuth strategy for SAML + +LICENSE= MIT + +RUN_DEPENDS= rubygem-omniauth>=1.1:${PORTSDIR}/security/rubygem-omniauth \ + rubygem-ruby-saml>=0.8.1:${PORTSDIR}/security/rubygem-ruby-saml + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/security/rubygem-omniauth-saml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-saml/distinfo Sun Aug 9 20:49:37 2015 (r393828) @@ -0,0 +1,2 @@ +SHA256 (rubygem/omniauth-saml-1.3.1.gem) = 41d23d263f928b8b301c4a1a02e7a7a917952665d0f79d3bf587cd99f83d8a85 +SIZE (rubygem/omniauth-saml-1.3.1.gem) = 9728 Added: head/security/rubygem-omniauth-saml/files/patch-omniauth-saml.gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-saml/files/patch-omniauth-saml.gemspec Sun Aug 9 20:49:37 2015 (r393828) @@ -0,0 +1,11 @@ +--- omniauth-saml.gemspec.orig 2015-07-06 11:43:34 UTC ++++ omniauth-saml.gemspec +@@ -23,7 +23,7 @@ Gem::Specification.new do |s| + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, ["~> 1.1"]) +- s.add_runtime_dependency(%q, ["~> 0.8.1"]) ++ s.add_runtime_dependency(%q, [">= 0.8.1"]) + s.add_development_dependency(%q, ["~> 2.8"]) + s.add_development_dependency(%q, ["~> 0.6"]) + s.add_development_dependency(%q, ["~> 0.6"]) Added: head/security/rubygem-omniauth-saml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/rubygem-omniauth-saml/pkg-descr Sun Aug 9 20:49:37 2015 (r393828) @@ -0,0 +1,3 @@ +A generic SAML strategy for OmniAuth + +WWW: https://github.com/PracticallyGreen/omniauth-saml From owner-svn-ports-all@freebsd.org Sun Aug 9 21:46:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18DEF99E46E; Sun, 9 Aug 2015 21:46:56 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A2EC7AA; Sun, 9 Aug 2015 21:46:56 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79LktoM053537; Sun, 9 Aug 2015 21:46:55 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79LktlA053533; Sun, 9 Aug 2015 21:46:55 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508092146.t79LktlA053533@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 9 Aug 2015 21:46:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393829 - in head/ftp: . R-cran-curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 21:46:56 -0000 Author: tota Date: Sun Aug 9 21:46:54 2015 New Revision: 393829 URL: https://svnweb.freebsd.org/changeset/ports/393829 Log: - Add new port: ftp/R-cran-curl The curl() and curl_download() functions provide highly configurable drop-in replacements for base url() and download.file() with better performance, support for encryption (https://, ftps://), 'gzip' compression, authentication, and other 'libcurl' goodies. The core of the package implements a framework for performing fully customized requests where data can be processed either in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr' package which builds on this package with HTTP specific tools and logic. WWW: https://cran.r-project.org/web/packages/curl/ Added: head/ftp/R-cran-curl/ head/ftp/R-cran-curl/Makefile (contents, props changed) head/ftp/R-cran-curl/distinfo (contents, props changed) head/ftp/R-cran-curl/pkg-descr (contents, props changed) Modified: head/ftp/Makefile Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Sun Aug 9 20:49:37 2015 (r393828) +++ head/ftp/Makefile Sun Aug 9 21:46:54 2015 (r393829) @@ -4,6 +4,7 @@ COMMENT = FTP client and server utilities SUBDIR += R-cran-RCurl + SUBDIR += R-cran-curl SUBDIR += atftp SUBDIR += axel SUBDIR += bareftp Added: head/ftp/R-cran-curl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/R-cran-curl/Makefile Sun Aug 9 21:46:54 2015 (r393829) @@ -0,0 +1,19 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= curl +PORTVERSION= 0.9.2 +CATEGORIES= ftp +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Modern and Flexible Web Client for R + +LICENSE= MIT + +BUILD_DEPENDS= ${LOCALBASE}/include/curl/curl.h:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl + +USES= cran:auto-plist + +.include Added: head/ftp/R-cran-curl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/R-cran-curl/distinfo Sun Aug 9 21:46:54 2015 (r393829) @@ -0,0 +1,2 @@ +SHA256 (curl_0.9.2.tar.gz) = a6fe7126586cb9dee7128884b41667f68637c45931313628e475b27960efc966 +SIZE (curl_0.9.2.tar.gz) = 244688 Added: head/ftp/R-cran-curl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/R-cran-curl/pkg-descr Sun Aug 9 21:46:54 2015 (r393829) @@ -0,0 +1,12 @@ +The curl() and curl_download() functions provide highly configurable +drop-in replacements for base url() and download.file() with better +performance, support for encryption (https://, ftps://), 'gzip' +compression, authentication, and other 'libcurl' goodies. The core +of the package implements a framework for performing fully customized +requests where data can be processed either in memory, on disk, or +streaming via the callback or connection interfaces. Some knowledge +of 'libcurl' is recommended; for a more-user-friendly web client +see the 'httr' package which builds on this package with HTTP +specific tools and logic. + +WWW: https://cran.r-project.org/web/packages/curl/ From owner-svn-ports-all@freebsd.org Sun Aug 9 22:23:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A02F999EAB4; Sun, 9 Aug 2015 22:23:27 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C9B882B; Sun, 9 Aug 2015 22:23:27 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79MNRsi069799; Sun, 9 Aug 2015 22:23:27 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79MNRKt069797; Sun, 9 Aug 2015 22:23:27 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201508092223.t79MNRKt069797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Sun, 9 Aug 2015 22:23:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393830 - in head/ports-mgmt/portlint: . src X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 22:23:27 -0000 Author: marcus Date: Sun Aug 9 22:23:26 2015 New Revision: 393830 URL: https://svnweb.freebsd.org/changeset/ports/393830 Log: Update to 2.16.6. * Only report "make makepatch" once per patch file [1] * Attempt to re-word the make makepatch warning to avoid unnecessary repo churn [2] * Attempt to test some other macros for sorting [3] * Do not check empty dependencies for validity [4] PR: 202050 [1] 201647 [2] 201409 [3] 202052 [4] Submitted by: gerald [1] Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Sun Aug 9 21:46:54 2015 (r393829) +++ head/ports-mgmt/portlint/Makefile Sun Aug 9 22:23:26 2015 (r393830) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= portlint -PORTVERSION= 2.16.5 +PORTVERSION= 2.16.6 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Sun Aug 9 21:46:54 2015 (r393829) +++ head/ports-mgmt/portlint/src/portlint.pl Sun Aug 9 22:23:26 2015 (r393830) @@ -15,7 +15,7 @@ # was removed. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.366 2015/07/06 14:48:28 jclarke Exp $ +# $MCom: portlint/portlint.pl,v 1.371 2015/08/09 22:21:09 jclarke Exp $ # use strict; @@ -50,7 +50,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 16; -my $micro = 5; +my $micro = 6; # default setting - for FreeBSD my $portsdir = '/usr/ports'; @@ -933,8 +933,10 @@ sub checkpatch { if ($_ !~ /UTC\s*$/) { &perror("WARN", $file, -1, "patch was not generated using ". "``make makepatch''. It is recommended to use ". - "``make makepatch'' to ensure proper patch format."); + "``make makepatch'' when you need to [re-]generate a ". + "patch to ensure proper patch format."); } + last; } } @@ -983,6 +985,9 @@ sub check_depends_syntax { if ($k =~ /^\$\{(\w+)\}$/) { $k = get_makevar($1); } + if ($k eq '') { + next; + } my @l = split(':', $k); print "OK: checking dependency value for $j.\n" @@ -1644,16 +1649,23 @@ sub checkmakefile { } # - # whole file: Check if USES is sorted + # whole file: Check if USES stuff is sorted # - print "OK: checking to see if USES is sorted.\n" if ($verbose); - while ($whole =~ /\nUSES.?=\s*(.+)\n/g) { - my $lineno = &linenumber($`); - my $srex = $1; - my @suses = sort(split / /, $srex); - if (join(" ", @suses) ne $srex) { - &perror("WARN", $file, $lineno, "the options to USES are not ". - "sorted. Please consider sorting them."); + my @uses_to_sort = qw( + USES + USE_PYTHON + USE_XORG + ); + print "OK: checking to see if USES_* stuff is sorted.\n" if ($verbose); + foreach my $sorted_use (@uses_to_sort) { + while ($whole =~ /\n$sorted_use.?=\s*(.+)\n/g) { + my $lineno = &linenumber($`); + my $srex = $1; + my @suses = sort(split / /, $srex); + if (join(" ", @suses) ne $srex) { + &perror("WARN", $file, $lineno, "the options to $sorted_use ". + "are not sorted. Please consider sorting them."); + } } } From owner-svn-ports-all@freebsd.org Sun Aug 9 22:24:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 782E699EAFB; Sun, 9 Aug 2015 22:24:07 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 685D0921; Sun, 9 Aug 2015 22:24:07 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79MO7QS070071; Sun, 9 Aug 2015 22:24:07 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79MO5Gh070063; Sun, 9 Aug 2015 22:24:05 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201508092224.t79MO5Gh070063@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sun, 9 Aug 2015 22:24:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393831 - in head: archivers/p7zip audio/liba52 devel/libmsocket graphics/freeimage irc/irssi-xmpp multimedia/openquicktime security/lockdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 22:24:07 -0000 Author: andrew (src committer) Date: Sun Aug 9 22:24:04 2015 New Revision: 393831 URL: https://svnweb.freebsd.org/changeset/ports/393831 Log: Adds -fPIC to CFLAGS_aarch64 to a number of ports that already have it in the amd64 CFLAGS and are failing to build. Approved by: bapt Differential Revision: https://reviews.freebsd.org/D3321 Modified: head/archivers/p7zip/Makefile head/audio/liba52/Makefile head/devel/libmsocket/Makefile head/graphics/freeimage/Makefile head/irc/irssi-xmpp/Makefile head/multimedia/openquicktime/Makefile head/security/lockdown/Makefile Modified: head/archivers/p7zip/Makefile ============================================================================== --- head/archivers/p7zip/Makefile Sun Aug 9 22:23:26 2015 (r393830) +++ head/archivers/p7zip/Makefile Sun Aug 9 22:24:04 2015 (r393831) @@ -20,6 +20,7 @@ MAKEFILE= makefile MAKE_ARGS= OPTFLAGS="${CXXFLAGS}" WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC CFLAGS_ia64= -fPIC Modified: head/audio/liba52/Makefile ============================================================================== --- head/audio/liba52/Makefile Sun Aug 9 22:23:26 2015 (r393830) +++ head/audio/liba52/Makefile Sun Aug 9 22:24:04 2015 (r393831) @@ -30,6 +30,7 @@ DJBFFT_CONFIGURE_ON= --enable-djbfft .include +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC CFLAGS_powerpc= -fPIC Modified: head/devel/libmsocket/Makefile ============================================================================== --- head/devel/libmsocket/Makefile Sun Aug 9 22:23:26 2015 (r393830) +++ head/devel/libmsocket/Makefile Sun Aug 9 22:24:04 2015 (r393831) @@ -26,6 +26,7 @@ PLIST_FILES= lib/libmsocket.so \ include/msocket.h \ include/msocketutils.h +CFLAGS_aarch64+=-fPIC -DPIC CFLAGS_amd64+= -fPIC -DPIC CFLAGS_iad64+= -fPIC -DPIC Modified: head/graphics/freeimage/Makefile ============================================================================== --- head/graphics/freeimage/Makefile Sun Aug 9 22:23:26 2015 (r393830) +++ head/graphics/freeimage/Makefile Sun Aug 9 22:24:04 2015 (r393831) @@ -17,6 +17,7 @@ WRKSRC= ${WRKDIR}/FreeImage MAKE_ARGS= CC="${CC}" CPP="${CPP}" CXX="${CXX}" CFLAGS+= -fexceptions -fvisibility=hidden +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC PLIST_FILES= include/FreeImage.h \ Modified: head/irc/irssi-xmpp/Makefile ============================================================================== --- head/irc/irssi-xmpp/Makefile Sun Aug 9 22:23:26 2015 (r393830) +++ head/irc/irssi-xmpp/Makefile Sun Aug 9 22:24:04 2015 (r393831) @@ -21,6 +21,7 @@ USE_LDCONFIG= yes MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" DATADIR= ${PREFIX}/share/irssi DOCSDIR= ${PREFIX}/share/doc/irssi +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC OPTIONS_DEFINE= DOCS Modified: head/multimedia/openquicktime/Makefile ============================================================================== --- head/multimedia/openquicktime/Makefile Sun Aug 9 22:23:26 2015 (r393830) +++ head/multimedia/openquicktime/Makefile Sun Aug 9 22:24:04 2015 (r393831) @@ -20,6 +20,7 @@ USES= gmake jpeg tar:tgz USE_LDCONFIG= yes PKGDEINSTALL= ${PKGINSTALL} +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC OPTIONS_DEFINE= DEBUG Modified: head/security/lockdown/Makefile ============================================================================== --- head/security/lockdown/Makefile Sun Aug 9 22:23:26 2015 (r393830) +++ head/security/lockdown/Makefile Sun Aug 9 22:24:04 2015 (r393831) @@ -14,6 +14,7 @@ USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/lockdown +CFLAGS_aarch64+=-fPIC CFLAGS_amd64+= -fPIC do-install: From owner-svn-ports-all@freebsd.org Sun Aug 9 22:38:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E50C299ED46; Sun, 9 Aug 2015 22:38:25 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4B45FB5; Sun, 9 Aug 2015 22:38:25 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79McPDm074588; Sun, 9 Aug 2015 22:38:25 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79McO7t074583; Sun, 9 Aug 2015 22:38:24 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201508092238.t79McO7t074583@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 9 Aug 2015 22:38:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393832 - in head/devel: . simple_components X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 22:38:26 -0000 Author: marino Date: Sun Aug 9 22:38:23 2015 New Revision: 393832 URL: https://svnweb.freebsd.org/changeset/ports/393832 Log: Add new port devel/simple_components Submitted via IRC by Rod Kay (charlie5 on Freenode #ada) ======= This is a library created by Dmitry Kazakov out of necessity, which was released under the GMGPL and provides Ada implementations of: - smart pointers - B-trees - directed graphs - stacks - sets - tables - maps - string editing - unbounded arrays - expression analyzers - lock-free data structures - synchronization primitives (events, race condition free pulse events, arrays of events, reentrant mutexes, deadlock-free arrays of mutexes) - pseudo-random non-repeating numbers - symmetric encoding and decoding - IEEE 754 representations support - multiple connections server/client designing tools. Tables management and strings editing are described in separate documents; see Tables and Strings edit. The library is kept conform to the Ada 95, Ada 2005, Ada 2012 language standards. Added: head/devel/simple_components/ head/devel/simple_components/Makefile (contents, props changed) head/devel/simple_components/distinfo (contents, props changed) head/devel/simple_components/pkg-descr (contents, props changed) head/devel/simple_components/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 9 22:24:04 2015 (r393831) +++ head/devel/Makefile Sun Aug 9 22:38:23 2015 (r393832) @@ -4975,6 +4975,7 @@ SUBDIR += silentbob SUBDIR += simgear SUBDIR += simian + SUBDIR += simple_components SUBDIR += simpletest SUBDIR += skalibs SUBDIR += slf4j Added: head/devel/simple_components/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simple_components/Makefile Sun Aug 9 22:38:23 2015 (r393832) @@ -0,0 +1,54 @@ +# Created by: Rod Kay +# $FreeBSD$ + +PORTNAME= simple_components +PORTVERSION= 4.8 +CATEGORIES= devel +MASTER_SITES= http://www.dmitry-kazakov.de/ada/ +DISTNAME= components_4_8 + +MAINTAINER= rodakay@internode.on.net +COMMENT= Simple Ada Components + +LICENSE= GMGPL + +BUILD_DEPENDS= gprbuild:${PORTSDIR}/devel/gprbuild + +USES= ada tar:tgz +DEST= ${STAGEDIR}${PREFIX} +NO_WRKSUBDIR= yes + +CS= components +SV= ${CS}-connections_server +HS= ${SV}-http_server +PROJECT_LIST= strings_edit tables ${CS} ${CS}-sqlite ${CS}-odbc \ + ${CS}-gnutls ${SV} ${SV}-secure ${SV}-modbus \ + ${HS} ${HS}-sqlite_browser #${CS}-gnade ${CS}-apq +PLIST_SUB= ISC=include/${PORTNAME} LSC=lib/${PORTNAME} \ + SV=${SV} HS=${HS} SSM=gnat-sockets-connection_state_machine \ + SE=strings_edit PR=${CS}/parsers GN=${CS}/generic \ + PT=${CS}/persistent OD=${CS}-odbc OB=${CS}/object + +do-build: +.for PROJECT in ${PROJECT_LIST} + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} gprbuild -P${PROJECT}) +.endfor + +do-install: + # Work around gprbuild's inability to handle separate package bodies + # Create a dummy file, otherwise none of strings_edit gets installed + ${TOUCH} ${WRKSRC}/strings_edit-text_edit.o +.for PROJECT in ${PROJECT_LIST} + (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} gprinstall -p \ + --prefix=${DEST} \ + --project-subdir=${DEST}/lib/gnat \ + --sources-subdir=${DEST}/include/${PORTNAME}/${PROJECT} \ + --lib-subdir=${DEST}/lib/${PORTNAME}/${PROJECT} \ + ${PROJECT}.gpr) +.endfor + # end of workaround: remove dummy object file + ${RM} ${WRKSRC}/strings_edit-text_edit.o + # Eject manifests, we don't use them + ${RM} -r ${DEST}/lib/gnat/manifests + +.include Added: head/devel/simple_components/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simple_components/distinfo Sun Aug 9 22:38:23 2015 (r393832) @@ -0,0 +1,2 @@ +SHA256 (components_4_8.tgz) = a4d019d4740ffbc22684c036281d910d0c0d7b8a097f15c87d69baa391bf607f +SIZE (components_4_8.tgz) = 2961127 Added: head/devel/simple_components/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simple_components/pkg-descr Sun Aug 9 22:38:23 2015 (r393832) @@ -0,0 +1,21 @@ +This is a library created by Dmitry Kazakov out of necessity, which was +released under the GMGPL and provides Ada implementations of: + + - smart pointers - B-trees + - directed graphs - stacks + - sets - tables + - maps - string editing + - unbounded arrays - expression analyzers + - lock-free data structures + - synchronization primitives (events, race condition free pulse events, + arrays of events, reentrant mutexes, deadlock-free arrays of mutexes) + - pseudo-random non-repeating numbers + - symmetric encoding and decoding + - IEEE 754 representations support + - multiple connections server/client designing tools. + +Tables management and strings editing are described in separate documents; +see Tables and Strings edit. The library is kept conform to the Ada 95, +Ada 2005, Ada 2012 language standards. + +WWW: http://www.dmitry-kazakov.de/ada/components.htm Added: head/devel/simple_components/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/simple_components/pkg-plist Sun Aug 9 22:38:23 2015 (r393832) @@ -0,0 +1,782 @@ +%%ISC%%/%%HS%%-sqlite_browser/%%SSM%%-http_server-sqlite_browser.ads +%%ISC%%/%%HS%%/%%SSM%%-http_client-signaled.ads +%%ISC%%/%%HS%%/%%SSM%%-http_client.ads +%%ISC%%/%%HS%%/%%SSM%%-http_server.ads +%%ISC%%/%%SV%%-modbus/%%SSM%%-modbus_client-synchronous.ads +%%ISC%%/%%SV%%-modbus/%%SSM%%-modbus_client.ads +%%ISC%%/%%SV%%-secure/gnat-sockets-server-secure-anonymous.ads +%%ISC%%/%%SV%%-secure/gnat-sockets-server-secure-x509.ads +%%ISC%%/%%SV%%-secure/gnat-sockets-server-secure.ads +%%ISC%%/%%SV%%/%%SSM%%-big_endian-generic_double_precision_ieee_754.adb +%%ISC%%/%%SV%%/%%SSM%%-big_endian-generic_double_precision_ieee_754.ads +%%ISC%%/%%SV%%/%%SSM%%-big_endian-generic_single_precision_ieee_754.adb +%%ISC%%/%%SV%%/%%SSM%%-big_endian-generic_single_precision_ieee_754.ads +%%ISC%%/%%SV%%/%%SSM%%-big_endian-ieee_754_floats.ads +%%ISC%%/%%SV%%/%%SSM%%-big_endian-ieee_754_long_floats.ads +%%ISC%%/%%SV%%/%%SSM%%-big_endian-integers.adb +%%ISC%%/%%SV%%/%%SSM%%-big_endian-integers.ads +%%ISC%%/%%SV%%/%%SSM%%-big_endian-unsigneds.ads +%%ISC%%/%%SV%%/%%SSM%%-big_endian.ads +%%ISC%%/%%SV%%/%%SSM%%-chain_code-generic_integer.adb +%%ISC%%/%%SV%%/%%SSM%%-chain_code-generic_integer.ads +%%ISC%%/%%SV%%/%%SSM%%-chain_code-generic_unsigned.adb +%%ISC%%/%%SV%%/%%SSM%%-chain_code-generic_unsigned.ads +%%ISC%%/%%SV%%/%%SSM%%-chain_code-integers.ads +%%ISC%%/%%SV%%/%%SSM%%-chain_code-naturals.ads +%%ISC%%/%%SV%%/%%SSM%%-chain_code.ads +%%ISC%%/%%SV%%/%%SSM%%-expected_sequence.ads +%%ISC%%/%%SV%%/%%SSM%%-little_endian-generic_double_precision_ieee_754.adb +%%ISC%%/%%SV%%/%%SSM%%-little_endian-generic_double_precision_ieee_754.ads +%%ISC%%/%%SV%%/%%SSM%%-little_endian-generic_single_precision_ieee_754.adb +%%ISC%%/%%SV%%/%%SSM%%-little_endian-generic_single_precision_ieee_754.ads +%%ISC%%/%%SV%%/%%SSM%%-little_endian-ieee_754_floats.ads +%%ISC%%/%%SV%%/%%SSM%%-little_endian-ieee_754_long_floats.ads +%%ISC%%/%%SV%%/%%SSM%%-little_endian-integers.adb +%%ISC%%/%%SV%%/%%SSM%%-little_endian-integers.ads +%%ISC%%/%%SV%%/%%SSM%%-little_endian-unsigneds.ads +%%ISC%%/%%SV%%/%%SSM%%-little_endian.ads +%%ISC%%/%%SV%%/%%SSM%%-terminated_strings.ads +%%ISC%%/%%SV%%/%%SSM%%-variable_length_arrays.ads +%%ISC%%/%%SV%%/%%SSM%%-variable_length_strings.ads +%%ISC%%/%%SV%%/%%SSM%%.adb +%%ISC%%/%%SV%%/%%SSM%%.ads +%%ISC%%/%%SV%%/gnat-sockets-server-handles.ads +%%ISC%%/%%SV%%/gnat-sockets-server-pooled.adb +%%ISC%%/%%SV%%/gnat-sockets-server-pooled.ads +%%ISC%%/%%SV%%/gnat-sockets-server.adb +%%ISC%%/%%SV%%/gnat-sockets-server.ads +%%ISC%%/components-gnutls/gnutls.adb +%%ISC%%/components-gnutls/gnutls.ads +%%ISC%%/%%OD%%/odbc-api-keys-arrays.ads +%%ISC%%/%%OD%%/odbc-api-keys-edit.ads +%%ISC%%/%%OD%%/odbc-api-keys-sets.ads +%%ISC%%/%%OD%%/odbc-api-keys.adb +%%ISC%%/%%OD%%/odbc-api-keys.ads +%%ISC%%/%%OD%%/odbc-api-links.ads +%%ISC%%/%%OD%%/odbc-api.adb +%%ISC%%/%%OD%%/odbc-api.ads +%%ISC%%/%%OD%%/odbc-architecture_dependent.ads +%%ISC%%/%%OD%%/odbc-bound_parameters.ads +%%ISC%%/%%OD%%/odbc-driver_dependent.ads +%%ISC%%/%%OD%%/odbc-sqltypes.adb +%%ISC%%/%%OD%%/odbc-sqltypes.ads +%%ISC%%/%%OD%%/odbc-thin.ads +%%ISC%%/%%OD%%/odbc.ads +%%ISC%%/%%OD%%/persistent-native_odbc-text_io.ads +%%ISC%%/%%OD%%/persistent-native_odbc.adb +%%ISC%%/%%OD%%/persistent-native_odbc.ads +%%ISC%%/components-sqlite/persistent-sqlite-text_io.ads +%%ISC%%/components-sqlite/persistent-sqlite.adb +%%ISC%%/components-sqlite/persistent-sqlite.ads +%%ISC%%/components-sqlite/persistent-sqlite_keys-arrays.ads +%%ISC%%/components-sqlite/persistent-sqlite_keys-sets.ads +%%ISC%%/components-sqlite/persistent-sqlite_keys.adb +%%ISC%%/components-sqlite/persistent-sqlite_keys.ads +%%ISC%%/components-sqlite/persistent-sqlite_links.ads +%%ISC%%/components-sqlite/sqlite.adb +%%ISC%%/components-sqlite/sqlite.ads +%%ISC%%/components-sqlite/sqlite3.h +%%ISC%%/components/backward_link_handles-sets.ads +%%ISC%%/components/backward_link_handles.ads +%%ISC%%/components/block_streams.ads +%%ISC%%/components/deposit_handles.ads +%%ISC%%/%%GN%%_address_order.adb +%%ISC%%/%%GN%%_address_order.ads +%%ISC%%/%%GN%%_b_tree.adb +%%ISC%%/%%GN%%_b_tree.ads +%%ISC%%/%%GN%%_blackboard-generic_task_safe.adb +%%ISC%%/%%GN%%_blackboard-generic_task_safe.ads +%%ISC%%/%%GN%%_blackboard.adb +%%ISC%%/%%GN%%_blackboard.ads +%%ISC%%/%%GN%%_chebyshev_polynomials.adb +%%ISC%%/%%GN%%_chebyshev_polynomials.ads +%%ISC%%/%%GN%%_cubic_spline.adb +%%ISC%%/%%GN%%_cubic_spline.ads +%%ISC%%/%%GN%%_directed_graph.adb +%%ISC%%/%%GN%%_directed_graph.ads +%%ISC%%/%%GN%%_directed_weighted_graph.adb +%%ISC%%/%%GN%%_directed_weighted_graph.ads +%%ISC%%/%%GN%%_discrete_indefinite_map.adb +%%ISC%%/%%GN%%_discrete_indefinite_map.ads +%%ISC%%/%%GN%%_discrete_map.adb +%%ISC%%/%%GN%%_discrete_map.ads +%%ISC%%/%%GN%%_discrete_set.adb +%%ISC%%/%%GN%%_discrete_set.ads +%%ISC%%/%%GN%%_doubly_linked.ads +%%ISC%%/%%GN%%_doubly_linked_web-generic_list.adb +%%ISC%%/%%GN%%_doubly_linked_web-generic_list.ads +%%ISC%%/%%GN%%_doubly_linked_web.adb +%%ISC%%/%%GN%%_doubly_linked_web.ads +%%ISC%%/%%GN%%_fifo-generic_signaled.adb +%%ISC%%/%%GN%%_fifo-generic_signaled.ads +%%ISC%%/%%GN%%_fifo.adb +%%ISC%%/%%GN%%_fifo.ads +%%ISC%%/%%GN%%_indefinite_b_tree.adb +%%ISC%%/%%GN%%_indefinite_b_tree.ads +%%ISC%%/%%GN%%_indefinite_fifo-generic_signaled.adb +%%ISC%%/%%GN%%_indefinite_fifo-generic_signaled.ads +%%ISC%%/%%GN%%_indefinite_fifo.adb +%%ISC%%/%%GN%%_indefinite_fifo.ads +%%ISC%%/%%GN%%_indefinite_map.adb +%%ISC%%/%%GN%%_indefinite_map.ads +%%ISC%%/%%GN%%_indefinite_set.adb +%%ISC%%/%%GN%%_indefinite_set.ads +%%ISC%%/%%GN%%_map.adb +%%ISC%%/%%GN%%_map.ads +%%ISC%%/%%GN%%_random_sequence.adb +%%ISC%%/%%GN%%_random_sequence.ads +%%ISC%%/%%GN%%_segmented_stack.adb +%%ISC%%/%%GN%%_segmented_stack.ads +%%ISC%%/%%GN%%_set.adb +%%ISC%%/%%GN%%_set.ads +%%ISC%%/%%GN%%_stack.adb +%%ISC%%/%%GN%%_stack.ads +%%ISC%%/%%GN%%_unbounded_array.adb +%%ISC%%/%%GN%%_unbounded_array.ads +%%ISC%%/%%GN%%_unbounded_ptr_array.adb +%%ISC%%/%%GN%%_unbounded_ptr_array.ads +%%ISC%%/components/ieee_754-floats.ads +%%ISC%%/components/ieee_754-generic_double_precision.adb +%%ISC%%/components/ieee_754-generic_double_precision.ads +%%ISC%%/components/ieee_754-generic_single_precision.adb +%%ISC%%/components/ieee_754-generic_single_precision.ads +%%ISC%%/components/ieee_754-long_floats.ads +%%ISC%%/components/ieee_754.ads +%%ISC%%/components/long_float_chebyshev_polynomials.ads +%%ISC%%/components/long_float_cubic_spline.ads +%%ISC%%/%%OB%%-archived-handle.adb +%%ISC%%/%%OB%%-archived-handle.ads +%%ISC%%/%%OB%%-archived-iterators.ads +%%ISC%%/%%OB%%-archived-lists.adb +%%ISC%%/%%OB%%-archived-lists.ads +%%ISC%%/%%OB%%-archived-sets.adb +%%ISC%%/%%OB%%-archived-sets.ads +%%ISC%%/%%OB%%-archived.adb +%%ISC%%/%%OB%%-archived.ads +%%ISC%%/%%OB%%-handle-generic_bounded_array.adb +%%ISC%%/%%OB%%-handle-generic_bounded_array.ads +%%ISC%%/%%OB%%-handle-generic_handle_set.adb +%%ISC%%/%%OB%%-handle-generic_handle_set.ads +%%ISC%%/%%OB%%-handle-generic_set.adb +%%ISC%%/%%OB%%-handle-generic_set.ads +%%ISC%%/%%OB%%-handle-generic_unbounded_array.adb +%%ISC%%/%%OB%%-handle-generic_unbounded_array.ads +%%ISC%%/%%OB%%-handle.adb +%%ISC%%/%%OB%%-handle.ads +%%ISC%%/%%OB%%.adb +%%ISC%%/%%OB%%.ads +%%ISC%%/%%PR%%-generic_argument-segmented_stack.adb +%%ISC%%/%%PR%%-generic_argument-segmented_stack.ads +%%ISC%%/%%PR%%-generic_argument.ads +%%ISC%%/%%PR%%-generic_lexer-ada_2005_blanks.adb +%%ISC%%/%%PR%%-generic_lexer-ada_2005_blanks.ads +%%ISC%%/%%PR%%-generic_lexer-ada_blanks.adb +%%ISC%%/%%PR%%-generic_lexer-ada_blanks.ads +%%ISC%%/%%PR%%-generic_lexer-blanks.adb +%%ISC%%/%%PR%%-generic_lexer-blanks.ads +%%ISC%%/%%PR%%-generic_lexer-cpp_blanks.adb +%%ISC%%/%%PR%%-generic_lexer-cpp_blanks.ads +%%ISC%%/%%PR%%-generic_lexer.adb +%%ISC%%/%%PR%%-generic_lexer.ads +%%ISC%%/%%PR%%-generic_operation-generic_stack.adb +%%ISC%%/%%PR%%-generic_operation-generic_stack.ads +%%ISC%%/%%PR%%-generic_operation-segmented_stack.ads +%%ISC%%/%%PR%%-generic_operation.ads +%%ISC%%/%%PR%%-generic_source-get_ada_2005_blank.adb +%%ISC%%/%%PR%%-generic_source-get_ada_2005_blank.ads +%%ISC%%/%%PR%%-generic_source-get_ada_blank.adb +%%ISC%%/%%PR%%-generic_source-get_ada_blank.ads +%%ISC%%/%%PR%%-generic_source-get_blank.adb +%%ISC%%/%%PR%%-generic_source-get_blank.ads +%%ISC%%/%%PR%%-generic_source-get_cpp_blank.adb +%%ISC%%/%%PR%%-generic_source-get_cpp_blank.ads +%%ISC%%/%%PR%%-generic_source-get_text.adb +%%ISC%%/%%PR%%-generic_source-get_text.ads +%%ISC%%/%%PR%%-generic_source-get_token.adb +%%ISC%%/%%PR%%-generic_source-get_token.ads +%%ISC%%/%%PR%%-generic_source-get_utf8_text.adb +%%ISC%%/%%PR%%-generic_source-get_utf8_text.ads +%%ISC%%/%%PR%%-generic_source-keywords.adb +%%ISC%%/%%PR%%-generic_source-keywords.ads +%%ISC%%/%%PR%%-generic_source-text_io.adb +%%ISC%%/%%PR%%-generic_source-text_io.ads +%%ISC%%/%%PR%%-generic_source.ads +%%ISC%%/%%PR%%-generic_token-generic_token_lexer.adb +%%ISC%%/%%PR%%-generic_token-generic_token_lexer.ads +%%ISC%%/%%PR%%-generic_token-segmented_lexer.ads +%%ISC%%/%%PR%%-generic_token.adb +%%ISC%%/%%PR%%-generic_token.ads +%%ISC%%/%%PR%%-multiline_source-latin1_text_io.ads +%%ISC%%/%%PR%%-multiline_source-location_text_io.ads +%%ISC%%/%%PR%%-multiline_source-standard_input.ads +%%ISC%%/%%PR%%-multiline_source-stream_io.ads +%%ISC%%/%%PR%%-multiline_source-text_io.ads +%%ISC%%/%%PR%%-multiline_source-wide_text_io.ads +%%ISC%%/%%PR%%-multiline_source.adb +%%ISC%%/%%PR%%-multiline_source.ads +%%ISC%%/%%PR%%-string_source.adb +%%ISC%%/%%PR%%-string_source.ads +%%ISC%%/%%PR%%.ads +%%ISC%%/%%PT%%-blocking_files-text_io.ads +%%ISC%%/%%PT%%-blocking_files-transactional-dump.ads +%%ISC%%/%%PT%%-blocking_files-transactional.adb +%%ISC%%/%%PT%%-blocking_files-transactional.ads +%%ISC%%/%%PT%%-blocking_files.adb +%%ISC%%/%%PT%%-blocking_files.ads +%%ISC%%/%%PT%%-data_bank-index-text_io.adb +%%ISC%%/%%PT%%-data_bank-index-text_io.ads +%%ISC%%/%%PT%%-data_bank-index.adb +%%ISC%%/%%PT%%-data_bank-index.ads +%%ISC%%/%%PT%%-data_bank-indexed-text_io.adb +%%ISC%%/%%PT%%-data_bank-indexed-text_io.ads +%%ISC%%/%%PT%%-data_bank-indexed.adb +%%ISC%%/%%PT%%-data_bank-indexed.ads +%%ISC%%/%%PT%%-data_bank-mutexes.ads +%%ISC%%/%%PT%%-data_bank-reference.ads +%%ISC%%/%%PT%%-data_bank.ads +%%ISC%%/%%PT%%-directory.adb +%%ISC%%/%%PT%%-directory.ads +%%ISC%%/%%PT%%-handle.adb +%%ISC%%/%%PT%%-handle.ads +%%ISC%%/%%PT%%-memory_pools-dump.ads +%%ISC%%/%%PT%%-memory_pools-streams-external_b_tree-generic_table.adb +%%ISC%%/%%PT%%-memory_pools-streams-external_b_tree-generic_table.ads +%%ISC%%/%%PT%%-memory_pools-streams-external_b_tree.adb +%%ISC%%/%%PT%%-memory_pools-streams-external_b_tree.ads +%%ISC%%/%%PT%%-memory_pools-streams-generic_external_b_tree.adb +%%ISC%%/%%PT%%-memory_pools-streams-generic_external_b_tree.ads +%%ISC%%/%%PT%%-memory_pools-streams-generic_external_ptr_b_tree.adb +%%ISC%%/%%PT%%-memory_pools-streams-generic_external_ptr_b_tree.ads +%%ISC%%/%%PT%%-memory_pools-streams.adb +%%ISC%%/%%PT%%-memory_pools-streams.ads +%%ISC%%/%%PT%%-memory_pools.adb +%%ISC%%/%%PT%%-memory_pools.ads +%%ISC%%/%%PT%%-single_file-text_io.ads +%%ISC%%/%%PT%%-single_file.adb +%%ISC%%/%%PT%%-single_file.ads +%%ISC%%/%%PT%%-single_file_keys-arrays.ads +%%ISC%%/%%PT%%-single_file_keys-sets.ads +%%ISC%%/%%PT%%-single_file_keys.adb +%%ISC%%/%%PT%%-single_file_keys.ads +%%ISC%%/%%PT%%.ads +%%ISC%%/components/stack_storage-mark_and_release.adb +%%ISC%%/components/stack_storage-mark_and_release.ads +%%ISC%%/components/stack_storage.ads +%%ISC%%/components/storage_streams.ads +%%ISC%%/components/%%SE%%-symmetric_serialization.ads +%%ISC%%/components/synchronization-events.ads +%%ISC%%/components/synchronization-generic_events_array.adb +%%ISC%%/components/synchronization-generic_events_array.ads +%%ISC%%/components/synchronization-generic_mutexes_array.adb +%%ISC%%/components/synchronization-generic_mutexes_array.ads +%%ISC%%/components/synchronization-generic_pulse_events.adb +%%ISC%%/components/synchronization-generic_pulse_events.ads +%%ISC%%/components/synchronization-mutexes.ads +%%ISC%%/components/synchronization-pulse_events.ads +%%ISC%%/components/synchronization.ads +%%ISC%%/components/tables-utf8_names.adb +%%ISC%%/components/tables-utf8_names.ads +%%ISC%%/%%SE%%/%%SE%%-base64.ads +%%ISC%%/%%SE%%/%%SE%%-fields.adb +%%ISC%%/%%SE%%/%%SE%%-fields.ads +%%ISC%%/%%SE%%/%%SE%%-float_edit.adb +%%ISC%%/%%SE%%/%%SE%%-float_edit.ads +%%ISC%%/%%SE%%/%%SE%%-floats.ads +%%ISC%%/%%SE%%/%%SE%%-generic_scale.adb +%%ISC%%/%%SE%%/%%SE%%-generic_scale.ads +%%ISC%%/%%SE%%/%%SE%%-integer_edit.adb +%%ISC%%/%%SE%%/%%SE%%-integer_edit.ads +%%ISC%%/%%SE%%/%%SE%%-integers-subscript.ads +%%ISC%%/%%SE%%/%%SE%%-integers-superscript.ads +%%ISC%%/%%SE%%/%%SE%%-integers.ads +%%ISC%%/%%SE%%/%%SE%%-lexicographical_order.adb +%%ISC%%/%%SE%%/%%SE%%-lexicographical_order.ads +%%ISC%%/%%SE%%/%%SE%%-quoted.ads +%%ISC%%/%%SE%%/%%SE%%-roman_edit.ads +%%ISC%%/%%SE%%/%%SE%%-streams-generic_integer.adb +%%ISC%%/%%SE%%/%%SE%%-streams-generic_integer.ads +%%ISC%%/%%SE%%/%%SE%%-streams-generic_modular.adb +%%ISC%%/%%SE%%/%%SE%%-streams-generic_modular.ads +%%ISC%%/%%SE%%/%%SE%%-streams-generic_unsigned.adb +%%ISC%%/%%SE%%/%%SE%%-streams-generic_unsigned.ads +%%ISC%%/%%SE%%/%%SE%%-streams-integers.ads +%%ISC%%/%%SE%%/%%SE%%-streams-integers_32.ads +%%ISC%%/%%SE%%/%%SE%%-streams-integers_64.ads +%%ISC%%/%%SE%%/%%SE%%-streams-naturals.ads +%%ISC%%/%%SE%%/%%SE%%-streams-unsigneds_32.ads +%%ISC%%/%%SE%%/%%SE%%-streams-unsigneds_64.ads +%%ISC%%/%%SE%%/%%SE%%-streams.adb +%%ISC%%/%%SE%%/%%SE%%-streams.ads +%%ISC%%/%%SE%%/%%SE%%-text_edit.adb +%%ISC%%/%%SE%%/%%SE%%-utf8-blocks.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-categorization.adb +%%ISC%%/%%SE%%/%%SE%%-utf8-categorization.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-handling.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-integer_edit.adb +%%ISC%%/%%SE%%/%%SE%%-utf8-integer_edit.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-mapping.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-maps-constants.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-maps.adb +%%ISC%%/%%SE%%/%%SE%%-utf8-maps.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-subscript-integer_edit.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-subscript.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-superscript-integer_edit.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-superscript.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-wildcards-case_insensitive.ads +%%ISC%%/%%SE%%/%%SE%%-utf8-wildcards.ads +%%ISC%%/%%SE%%/%%SE%%-utf8.ads +%%ISC%%/%%SE%%/%%SE%%.adb +%%ISC%%/%%SE%%/%%SE%%.ads +%%ISC%%/tables/tables-names.adb +%%ISC%%/tables/tables-names.ads +%%ISC%%/tables/tables.adb +%%ISC%%/tables/tables.ads +lib/gnat/%%HS%%-sqlite_browser.gpr +lib/gnat/%%HS%%.gpr +lib/gnat/%%SV%%-modbus.gpr +lib/gnat/%%SV%%-secure.gpr +lib/gnat/%%SV%%.gpr +lib/gnat/components-gnutls.gpr +lib/gnat/%%OD%%.gpr +lib/gnat/components-sqlite.gpr +lib/gnat/components.gpr +lib/gnat/%%SE%%.gpr +lib/gnat/tables.gpr +%%LSC%%/%%HS%%-sqlite_browser/%%SSM%%-http_server-sqlite_browser.ali +%%LSC%%/%%HS%%-sqlite_browser/%%SSM%%-http_server-sqlite_browser.o +%%LSC%%/%%HS%%/%%SSM%%-http_client-signaled.ali +%%LSC%%/%%HS%%/%%SSM%%-http_client-signaled.o +%%LSC%%/%%HS%%/%%SSM%%-http_client.ali +%%LSC%%/%%HS%%/%%SSM%%-http_client.o +%%LSC%%/%%HS%%/%%SSM%%-http_server.ali +%%LSC%%/%%HS%%/%%SSM%%-http_server.o +%%LSC%%/%%SV%%-modbus/%%SSM%%-modbus_client-synchronous.ali +%%LSC%%/%%SV%%-modbus/%%SSM%%-modbus_client-synchronous.o +%%LSC%%/%%SV%%-modbus/%%SSM%%-modbus_client.ali +%%LSC%%/%%SV%%-modbus/%%SSM%%-modbus_client.o +%%LSC%%/%%SV%%-secure/gnat-sockets-server-secure-anonymous.ali +%%LSC%%/%%SV%%-secure/gnat-sockets-server-secure-anonymous.o +%%LSC%%/%%SV%%-secure/gnat-sockets-server-secure-x509.ali +%%LSC%%/%%SV%%-secure/gnat-sockets-server-secure-x509.o +%%LSC%%/%%SV%%-secure/gnat-sockets-server-secure.ali +%%LSC%%/%%SV%%-secure/gnat-sockets-server-secure.o +%%LSC%%/%%SV%%/%%SSM%%-big_endian-generic_double_precision_ieee_754.ali +%%LSC%%/%%SV%%/%%SSM%%-big_endian-generic_double_precision_ieee_754.o +%%LSC%%/%%SV%%/%%SSM%%-big_endian-generic_single_precision_ieee_754.ali +%%LSC%%/%%SV%%/%%SSM%%-big_endian-generic_single_precision_ieee_754.o +%%LSC%%/%%SV%%/%%SSM%%-big_endian-ieee_754_floats.ali +%%LSC%%/%%SV%%/%%SSM%%-big_endian-ieee_754_floats.o +%%LSC%%/%%SV%%/%%SSM%%-big_endian-ieee_754_long_floats.ali +%%LSC%%/%%SV%%/%%SSM%%-big_endian-ieee_754_long_floats.o +%%LSC%%/%%SV%%/%%SSM%%-big_endian-integers.ali +%%LSC%%/%%SV%%/%%SSM%%-big_endian-integers.o +%%LSC%%/%%SV%%/%%SSM%%-big_endian-unsigneds.ali +%%LSC%%/%%SV%%/%%SSM%%-big_endian-unsigneds.o +%%LSC%%/%%SV%%/%%SSM%%-big_endian.ali +%%LSC%%/%%SV%%/%%SSM%%-big_endian.o +%%LSC%%/%%SV%%/%%SSM%%-chain_code-generic_integer.ali +%%LSC%%/%%SV%%/%%SSM%%-chain_code-generic_integer.o +%%LSC%%/%%SV%%/%%SSM%%-chain_code-generic_unsigned.ali +%%LSC%%/%%SV%%/%%SSM%%-chain_code-generic_unsigned.o +%%LSC%%/%%SV%%/%%SSM%%-chain_code-integers.ali +%%LSC%%/%%SV%%/%%SSM%%-chain_code-integers.o +%%LSC%%/%%SV%%/%%SSM%%-chain_code-naturals.ali +%%LSC%%/%%SV%%/%%SSM%%-chain_code-naturals.o +%%LSC%%/%%SV%%/%%SSM%%-chain_code.ali +%%LSC%%/%%SV%%/%%SSM%%-chain_code.o +%%LSC%%/%%SV%%/%%SSM%%-expected_sequence.ali +%%LSC%%/%%SV%%/%%SSM%%-expected_sequence.o +%%LSC%%/%%SV%%/%%SSM%%-little_endian-generic_double_precision_ieee_754.ali +%%LSC%%/%%SV%%/%%SSM%%-little_endian-generic_double_precision_ieee_754.o +%%LSC%%/%%SV%%/%%SSM%%-little_endian-generic_single_precision_ieee_754.ali +%%LSC%%/%%SV%%/%%SSM%%-little_endian-generic_single_precision_ieee_754.o +%%LSC%%/%%SV%%/%%SSM%%-little_endian-ieee_754_floats.ali +%%LSC%%/%%SV%%/%%SSM%%-little_endian-ieee_754_floats.o +%%LSC%%/%%SV%%/%%SSM%%-little_endian-ieee_754_long_floats.ali +%%LSC%%/%%SV%%/%%SSM%%-little_endian-ieee_754_long_floats.o +%%LSC%%/%%SV%%/%%SSM%%-little_endian-integers.ali +%%LSC%%/%%SV%%/%%SSM%%-little_endian-integers.o +%%LSC%%/%%SV%%/%%SSM%%-little_endian-unsigneds.ali +%%LSC%%/%%SV%%/%%SSM%%-little_endian-unsigneds.o +%%LSC%%/%%SV%%/%%SSM%%-little_endian.ali +%%LSC%%/%%SV%%/%%SSM%%-little_endian.o +%%LSC%%/%%SV%%/%%SSM%%-terminated_strings.ali +%%LSC%%/%%SV%%/%%SSM%%-terminated_strings.o +%%LSC%%/%%SV%%/%%SSM%%-variable_length_arrays.ali +%%LSC%%/%%SV%%/%%SSM%%-variable_length_arrays.o +%%LSC%%/%%SV%%/%%SSM%%-variable_length_strings.ali +%%LSC%%/%%SV%%/%%SSM%%-variable_length_strings.o +%%LSC%%/%%SV%%/%%SSM%%.ali +%%LSC%%/%%SV%%/%%SSM%%.o +%%LSC%%/%%SV%%/gnat-sockets-server-handles.ali +%%LSC%%/%%SV%%/gnat-sockets-server-handles.o +%%LSC%%/%%SV%%/gnat-sockets-server-pooled.ali +%%LSC%%/%%SV%%/gnat-sockets-server-pooled.o +%%LSC%%/%%SV%%/gnat-sockets-server.ali +%%LSC%%/%%SV%%/gnat-sockets-server.o +%%LSC%%/components-gnutls/gnutls.ali +%%LSC%%/components-gnutls/gnutls.o +%%LSC%%/%%OD%%/odbc-api-keys-arrays.ali +%%LSC%%/%%OD%%/odbc-api-keys-arrays.o +%%LSC%%/%%OD%%/odbc-api-keys-edit.ali +%%LSC%%/%%OD%%/odbc-api-keys-edit.o +%%LSC%%/%%OD%%/odbc-api-keys-sets.ali +%%LSC%%/%%OD%%/odbc-api-keys-sets.o +%%LSC%%/%%OD%%/odbc-api-keys.ali +%%LSC%%/%%OD%%/odbc-api-keys.o +%%LSC%%/%%OD%%/odbc-api-links.ali +%%LSC%%/%%OD%%/odbc-api-links.o +%%LSC%%/%%OD%%/odbc-api.ali +%%LSC%%/%%OD%%/odbc-api.o +%%LSC%%/%%OD%%/odbc-architecture_dependent.ali +%%LSC%%/%%OD%%/odbc-architecture_dependent.o +%%LSC%%/%%OD%%/odbc-bound_parameters.ali +%%LSC%%/%%OD%%/odbc-bound_parameters.o +%%LSC%%/%%OD%%/odbc-driver_dependent.ali +%%LSC%%/%%OD%%/odbc-driver_dependent.o +%%LSC%%/%%OD%%/odbc-sqltypes.ali +%%LSC%%/%%OD%%/odbc-sqltypes.o +%%LSC%%/%%OD%%/odbc-thin.ali +%%LSC%%/%%OD%%/odbc-thin.o +%%LSC%%/%%OD%%/odbc.ali +%%LSC%%/%%OD%%/odbc.o +%%LSC%%/%%OD%%/persistent-native_odbc-text_io.ali +%%LSC%%/%%OD%%/persistent-native_odbc-text_io.o +%%LSC%%/%%OD%%/persistent-native_odbc.ali +%%LSC%%/%%OD%%/persistent-native_odbc.o +%%LSC%%/components-sqlite/persistent-sqlite-text_io.ali +%%LSC%%/components-sqlite/persistent-sqlite-text_io.o +%%LSC%%/components-sqlite/persistent-sqlite.ali +%%LSC%%/components-sqlite/persistent-sqlite.o +%%LSC%%/components-sqlite/persistent-sqlite_keys-arrays.ali +%%LSC%%/components-sqlite/persistent-sqlite_keys-arrays.o +%%LSC%%/components-sqlite/persistent-sqlite_keys-sets.ali +%%LSC%%/components-sqlite/persistent-sqlite_keys-sets.o +%%LSC%%/components-sqlite/persistent-sqlite_keys.ali +%%LSC%%/components-sqlite/persistent-sqlite_keys.o +%%LSC%%/components-sqlite/persistent-sqlite_links.ali +%%LSC%%/components-sqlite/persistent-sqlite_links.o +%%LSC%%/components-sqlite/sqlite.ali +%%LSC%%/components-sqlite/sqlite.o +%%LSC%%/components-sqlite/sqlite3.o +%%LSC%%/components/backward_link_handles-sets.ali +%%LSC%%/components/backward_link_handles-sets.o +%%LSC%%/components/backward_link_handles.ali +%%LSC%%/components/backward_link_handles.o +%%LSC%%/components/block_streams.ali +%%LSC%%/components/block_streams.o +%%LSC%%/components/deposit_handles.ali +%%LSC%%/components/deposit_handles.o +%%LSC%%/components/gamma.ali +%%LSC%%/components/gamma.o +%%LSC%%/%%GN%%_address_order.ali +%%LSC%%/%%GN%%_address_order.o +%%LSC%%/%%GN%%_b_tree.ali +%%LSC%%/%%GN%%_b_tree.o +%%LSC%%/%%GN%%_blackboard-generic_task_safe.ali +%%LSC%%/%%GN%%_blackboard-generic_task_safe.o +%%LSC%%/%%GN%%_blackboard.ali +%%LSC%%/%%GN%%_blackboard.o +%%LSC%%/%%GN%%_chebyshev_polynomials.ali +%%LSC%%/%%GN%%_chebyshev_polynomials.o +%%LSC%%/%%GN%%_cubic_spline.ali +%%LSC%%/%%GN%%_cubic_spline.o +%%LSC%%/%%GN%%_directed_graph.ali +%%LSC%%/%%GN%%_directed_graph.o +%%LSC%%/%%GN%%_directed_weighted_graph.ali +%%LSC%%/%%GN%%_directed_weighted_graph.o +%%LSC%%/%%GN%%_discrete_indefinite_map.ali +%%LSC%%/%%GN%%_discrete_indefinite_map.o +%%LSC%%/%%GN%%_discrete_map.ali +%%LSC%%/%%GN%%_discrete_map.o +%%LSC%%/%%GN%%_discrete_set.ali +%%LSC%%/%%GN%%_discrete_set.o +%%LSC%%/%%GN%%_doubly_linked.ali +%%LSC%%/%%GN%%_doubly_linked.o +%%LSC%%/%%GN%%_doubly_linked_web-generic_list.ali +%%LSC%%/%%GN%%_doubly_linked_web-generic_list.o +%%LSC%%/%%GN%%_doubly_linked_web.ali +%%LSC%%/%%GN%%_doubly_linked_web.o +%%LSC%%/%%GN%%_fifo-generic_signaled.ali +%%LSC%%/%%GN%%_fifo-generic_signaled.o +%%LSC%%/%%GN%%_fifo.ali +%%LSC%%/%%GN%%_fifo.o +%%LSC%%/%%GN%%_indefinite_b_tree.ali +%%LSC%%/%%GN%%_indefinite_b_tree.o +%%LSC%%/%%GN%%_indefinite_fifo-generic_signaled.ali +%%LSC%%/%%GN%%_indefinite_fifo-generic_signaled.o +%%LSC%%/%%GN%%_indefinite_fifo.ali +%%LSC%%/%%GN%%_indefinite_fifo.o +%%LSC%%/%%GN%%_indefinite_map.ali +%%LSC%%/%%GN%%_indefinite_map.o +%%LSC%%/%%GN%%_indefinite_set.ali +%%LSC%%/%%GN%%_indefinite_set.o +%%LSC%%/%%GN%%_map.ali +%%LSC%%/%%GN%%_map.o +%%LSC%%/%%GN%%_random_sequence.ali +%%LSC%%/%%GN%%_random_sequence.o +%%LSC%%/%%GN%%_segmented_stack.ali +%%LSC%%/%%GN%%_segmented_stack.o +%%LSC%%/%%GN%%_set.ali +%%LSC%%/%%GN%%_set.o +%%LSC%%/%%GN%%_stack.ali +%%LSC%%/%%GN%%_stack.o +%%LSC%%/%%GN%%_unbounded_array.ali +%%LSC%%/%%GN%%_unbounded_array.o +%%LSC%%/%%GN%%_unbounded_ptr_array.ali +%%LSC%%/%%GN%%_unbounded_ptr_array.o +%%LSC%%/components/ieee_754-floats.ali +%%LSC%%/components/ieee_754-floats.o +%%LSC%%/components/ieee_754-generic_double_precision.ali +%%LSC%%/components/ieee_754-generic_double_precision.o +%%LSC%%/components/ieee_754-generic_single_precision.ali +%%LSC%%/components/ieee_754-generic_single_precision.o +%%LSC%%/components/ieee_754-long_floats.ali +%%LSC%%/components/ieee_754-long_floats.o +%%LSC%%/components/ieee_754.ali +%%LSC%%/components/ieee_754.o +%%LSC%%/components/long_float_chebyshev_polynomials.ali +%%LSC%%/components/long_float_chebyshev_polynomials.o +%%LSC%%/components/long_float_cubic_spline.ali +%%LSC%%/components/long_float_cubic_spline.o +%%LSC%%/%%OB%%-archived-handle.ali +%%LSC%%/%%OB%%-archived-handle.o +%%LSC%%/%%OB%%-archived-iterators.ali +%%LSC%%/%%OB%%-archived-iterators.o +%%LSC%%/%%OB%%-archived-lists.ali +%%LSC%%/%%OB%%-archived-lists.o +%%LSC%%/%%OB%%-archived-sets.ali +%%LSC%%/%%OB%%-archived-sets.o +%%LSC%%/%%OB%%-archived.ali +%%LSC%%/%%OB%%-archived.o +%%LSC%%/%%OB%%-handle-generic_bounded_array.ali +%%LSC%%/%%OB%%-handle-generic_bounded_array.o +%%LSC%%/%%OB%%-handle-generic_handle_set.ali +%%LSC%%/%%OB%%-handle-generic_handle_set.o +%%LSC%%/%%OB%%-handle-generic_set.ali +%%LSC%%/%%OB%%-handle-generic_set.o +%%LSC%%/%%OB%%-handle-generic_unbounded_array.ali +%%LSC%%/%%OB%%-handle-generic_unbounded_array.o +%%LSC%%/%%OB%%-handle.ali +%%LSC%%/%%OB%%-handle.o +%%LSC%%/%%OB%%.ali +%%LSC%%/%%OB%%.o +%%LSC%%/%%PR%%-generic_argument-segmented_stack.ali +%%LSC%%/%%PR%%-generic_argument-segmented_stack.o +%%LSC%%/%%PR%%-generic_argument.ali +%%LSC%%/%%PR%%-generic_argument.o +%%LSC%%/%%PR%%-generic_lexer-ada_2005_blanks.ali +%%LSC%%/%%PR%%-generic_lexer-ada_2005_blanks.o +%%LSC%%/%%PR%%-generic_lexer-ada_blanks.ali +%%LSC%%/%%PR%%-generic_lexer-ada_blanks.o +%%LSC%%/%%PR%%-generic_lexer-blanks.ali +%%LSC%%/%%PR%%-generic_lexer-blanks.o +%%LSC%%/%%PR%%-generic_lexer-cpp_blanks.ali +%%LSC%%/%%PR%%-generic_lexer-cpp_blanks.o +%%LSC%%/%%PR%%-generic_lexer.ali +%%LSC%%/%%PR%%-generic_lexer.o +%%LSC%%/%%PR%%-generic_operation-generic_stack.ali +%%LSC%%/%%PR%%-generic_operation-generic_stack.o +%%LSC%%/%%PR%%-generic_operation-segmented_stack.ali +%%LSC%%/%%PR%%-generic_operation-segmented_stack.o +%%LSC%%/%%PR%%-generic_operation.ali +%%LSC%%/%%PR%%-generic_operation.o +%%LSC%%/%%PR%%-generic_source-get_ada_2005_blank.ali +%%LSC%%/%%PR%%-generic_source-get_ada_2005_blank.o +%%LSC%%/%%PR%%-generic_source-get_ada_blank.ali +%%LSC%%/%%PR%%-generic_source-get_ada_blank.o +%%LSC%%/%%PR%%-generic_source-get_blank.ali +%%LSC%%/%%PR%%-generic_source-get_blank.o +%%LSC%%/%%PR%%-generic_source-get_cpp_blank.ali +%%LSC%%/%%PR%%-generic_source-get_cpp_blank.o +%%LSC%%/%%PR%%-generic_source-get_text.ali +%%LSC%%/%%PR%%-generic_source-get_text.o +%%LSC%%/%%PR%%-generic_source-get_token.ali +%%LSC%%/%%PR%%-generic_source-get_token.o +%%LSC%%/%%PR%%-generic_source-get_utf8_text.ali +%%LSC%%/%%PR%%-generic_source-get_utf8_text.o +%%LSC%%/%%PR%%-generic_source-keywords.ali +%%LSC%%/%%PR%%-generic_source-keywords.o +%%LSC%%/%%PR%%-generic_source-text_io.ali +%%LSC%%/%%PR%%-generic_source-text_io.o +%%LSC%%/%%PR%%-generic_source.ali +%%LSC%%/%%PR%%-generic_source.o +%%LSC%%/%%PR%%-generic_token-generic_token_lexer.ali +%%LSC%%/%%PR%%-generic_token-generic_token_lexer.o +%%LSC%%/%%PR%%-generic_token-segmented_lexer.ali +%%LSC%%/%%PR%%-generic_token-segmented_lexer.o +%%LSC%%/%%PR%%-generic_token.ali +%%LSC%%/%%PR%%-generic_token.o +%%LSC%%/%%PR%%-multiline_source-latin1_text_io.ali +%%LSC%%/%%PR%%-multiline_source-latin1_text_io.o +%%LSC%%/%%PR%%-multiline_source-location_text_io.ali +%%LSC%%/%%PR%%-multiline_source-location_text_io.o +%%LSC%%/%%PR%%-multiline_source-standard_input.ali +%%LSC%%/%%PR%%-multiline_source-standard_input.o +%%LSC%%/%%PR%%-multiline_source-stream_io.ali +%%LSC%%/%%PR%%-multiline_source-stream_io.o +%%LSC%%/%%PR%%-multiline_source-text_io.ali +%%LSC%%/%%PR%%-multiline_source-text_io.o +%%LSC%%/%%PR%%-multiline_source-wide_text_io.ali +%%LSC%%/%%PR%%-multiline_source-wide_text_io.o +%%LSC%%/%%PR%%-multiline_source.ali +%%LSC%%/%%PR%%-multiline_source.o +%%LSC%%/%%PR%%-string_source.ali +%%LSC%%/%%PR%%-string_source.o +%%LSC%%/%%PR%%.ali +%%LSC%%/%%PR%%.o +%%LSC%%/%%PT%%-blocking_files-text_io.ali +%%LSC%%/%%PT%%-blocking_files-text_io.o +%%LSC%%/%%PT%%-blocking_files-transactional-dump.ali +%%LSC%%/%%PT%%-blocking_files-transactional-dump.o +%%LSC%%/%%PT%%-blocking_files-transactional.ali +%%LSC%%/%%PT%%-blocking_files-transactional.o +%%LSC%%/%%PT%%-blocking_files.ali +%%LSC%%/%%PT%%-blocking_files.o +%%LSC%%/%%PT%%-data_bank-index-text_io.ali +%%LSC%%/%%PT%%-data_bank-index-text_io.o +%%LSC%%/%%PT%%-data_bank-index.ali +%%LSC%%/%%PT%%-data_bank-index.o +%%LSC%%/%%PT%%-data_bank-indexed-text_io.ali +%%LSC%%/%%PT%%-data_bank-indexed-text_io.o +%%LSC%%/%%PT%%-data_bank-indexed.ali +%%LSC%%/%%PT%%-data_bank-indexed.o +%%LSC%%/%%PT%%-data_bank-mutexes.ali +%%LSC%%/%%PT%%-data_bank-mutexes.o +%%LSC%%/%%PT%%-data_bank-reference.ali +%%LSC%%/%%PT%%-data_bank-reference.o +%%LSC%%/%%PT%%-data_bank.ali +%%LSC%%/%%PT%%-data_bank.o +%%LSC%%/%%PT%%-directory.ali +%%LSC%%/%%PT%%-directory.o +%%LSC%%/%%PT%%-handle.ali +%%LSC%%/%%PT%%-handle.o +%%LSC%%/%%PT%%-memory_pools-dump.ali +%%LSC%%/%%PT%%-memory_pools-dump.o +%%LSC%%/%%PT%%-memory_pools-streams-external_b_tree-generic_table.ali +%%LSC%%/%%PT%%-memory_pools-streams-external_b_tree-generic_table.o +%%LSC%%/%%PT%%-memory_pools-streams-external_b_tree.ali +%%LSC%%/%%PT%%-memory_pools-streams-external_b_tree.o +%%LSC%%/%%PT%%-memory_pools-streams-generic_external_b_tree.ali +%%LSC%%/%%PT%%-memory_pools-streams-generic_external_b_tree.o +%%LSC%%/%%PT%%-memory_pools-streams-generic_external_ptr_b_tree.ali +%%LSC%%/%%PT%%-memory_pools-streams-generic_external_ptr_b_tree.o +%%LSC%%/%%PT%%-memory_pools-streams.ali +%%LSC%%/%%PT%%-memory_pools-streams.o +%%LSC%%/%%PT%%-memory_pools.ali +%%LSC%%/%%PT%%-memory_pools.o +%%LSC%%/%%PT%%-single_file-text_io.ali +%%LSC%%/%%PT%%-single_file-text_io.o +%%LSC%%/%%PT%%-single_file.ali +%%LSC%%/%%PT%%-single_file.o +%%LSC%%/%%PT%%-single_file_keys-arrays.ali +%%LSC%%/%%PT%%-single_file_keys-arrays.o +%%LSC%%/%%PT%%-single_file_keys-sets.ali +%%LSC%%/%%PT%%-single_file_keys-sets.o +%%LSC%%/%%PT%%-single_file_keys.ali +%%LSC%%/%%PT%%-single_file_keys.o +%%LSC%%/%%PT%%.ali +%%LSC%%/%%PT%%.o +%%LSC%%/components/stack_storage-mark_and_release.ali +%%LSC%%/components/stack_storage-mark_and_release.o +%%LSC%%/components/stack_storage.ali +%%LSC%%/components/stack_storage.o +%%LSC%%/components/storage_streams.ali +%%LSC%%/components/storage_streams.o +%%LSC%%/components/%%SE%%-symmetric_serialization.ali +%%LSC%%/components/%%SE%%-symmetric_serialization.o +%%LSC%%/components/synchronization-events.ali +%%LSC%%/components/synchronization-events.o +%%LSC%%/components/synchronization-generic_events_array.ali +%%LSC%%/components/synchronization-generic_events_array.o +%%LSC%%/components/synchronization-generic_mutexes_array.ali +%%LSC%%/components/synchronization-generic_mutexes_array.o +%%LSC%%/components/synchronization-generic_pulse_events.ali +%%LSC%%/components/synchronization-generic_pulse_events.o +%%LSC%%/components/synchronization-mutexes.ali +%%LSC%%/components/synchronization-mutexes.o +%%LSC%%/components/synchronization-pulse_events.ali +%%LSC%%/components/synchronization-pulse_events.o +%%LSC%%/components/synchronization.ali +%%LSC%%/components/synchronization.o +%%LSC%%/components/tables-utf8_names.ali +%%LSC%%/components/tables-utf8_names.o +%%LSC%%/%%SE%%/%%SE%%-base64.ali +%%LSC%%/%%SE%%/%%SE%%-base64.o +%%LSC%%/%%SE%%/%%SE%%-fields.ali +%%LSC%%/%%SE%%/%%SE%%-fields.o +%%LSC%%/%%SE%%/%%SE%%-float_edit.ali +%%LSC%%/%%SE%%/%%SE%%-float_edit.o +%%LSC%%/%%SE%%/%%SE%%-floats.ali +%%LSC%%/%%SE%%/%%SE%%-floats.o +%%LSC%%/%%SE%%/%%SE%%-generic_scale.ali +%%LSC%%/%%SE%%/%%SE%%-generic_scale.o +%%LSC%%/%%SE%%/%%SE%%-integer_edit.ali +%%LSC%%/%%SE%%/%%SE%%-integer_edit.o +%%LSC%%/%%SE%%/%%SE%%-integers-subscript.ali +%%LSC%%/%%SE%%/%%SE%%-integers-subscript.o +%%LSC%%/%%SE%%/%%SE%%-integers-superscript.ali +%%LSC%%/%%SE%%/%%SE%%-integers-superscript.o +%%LSC%%/%%SE%%/%%SE%%-integers.ali +%%LSC%%/%%SE%%/%%SE%%-integers.o +%%LSC%%/%%SE%%/%%SE%%-lexicographical_order.ali +%%LSC%%/%%SE%%/%%SE%%-lexicographical_order.o +%%LSC%%/%%SE%%/%%SE%%-quoted.ali +%%LSC%%/%%SE%%/%%SE%%-quoted.o +%%LSC%%/%%SE%%/%%SE%%-roman_edit.ali +%%LSC%%/%%SE%%/%%SE%%-roman_edit.o +%%LSC%%/%%SE%%/%%SE%%-streams-generic_integer.ali +%%LSC%%/%%SE%%/%%SE%%-streams-generic_integer.o +%%LSC%%/%%SE%%/%%SE%%-streams-generic_modular.ali +%%LSC%%/%%SE%%/%%SE%%-streams-generic_modular.o +%%LSC%%/%%SE%%/%%SE%%-streams-generic_unsigned.ali +%%LSC%%/%%SE%%/%%SE%%-streams-generic_unsigned.o +%%LSC%%/%%SE%%/%%SE%%-streams-integers.ali +%%LSC%%/%%SE%%/%%SE%%-streams-integers.o +%%LSC%%/%%SE%%/%%SE%%-streams-integers_32.ali +%%LSC%%/%%SE%%/%%SE%%-streams-integers_32.o +%%LSC%%/%%SE%%/%%SE%%-streams-integers_64.ali +%%LSC%%/%%SE%%/%%SE%%-streams-integers_64.o +%%LSC%%/%%SE%%/%%SE%%-streams-naturals.ali +%%LSC%%/%%SE%%/%%SE%%-streams-naturals.o +%%LSC%%/%%SE%%/%%SE%%-streams-unsigneds_32.ali +%%LSC%%/%%SE%%/%%SE%%-streams-unsigneds_32.o +%%LSC%%/%%SE%%/%%SE%%-streams-unsigneds_64.ali +%%LSC%%/%%SE%%/%%SE%%-streams-unsigneds_64.o +%%LSC%%/%%SE%%/%%SE%%-streams.ali +%%LSC%%/%%SE%%/%%SE%%-streams.o +%%LSC%%/%%SE%%/%%SE%%-text_edit.o +%%LSC%%/%%SE%%/%%SE%%-utf8-blocks.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-blocks.o +%%LSC%%/%%SE%%/%%SE%%-utf8-categorization.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-categorization.o +%%LSC%%/%%SE%%/%%SE%%-utf8-handling.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-handling.o +%%LSC%%/%%SE%%/%%SE%%-utf8-integer_edit.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-integer_edit.o +%%LSC%%/%%SE%%/%%SE%%-utf8-mapping.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-mapping.o +%%LSC%%/%%SE%%/%%SE%%-utf8-maps-constants.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-maps-constants.o +%%LSC%%/%%SE%%/%%SE%%-utf8-maps.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-maps.o +%%LSC%%/%%SE%%/%%SE%%-utf8-subscript-integer_edit.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-subscript-integer_edit.o +%%LSC%%/%%SE%%/%%SE%%-utf8-subscript.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-subscript.o +%%LSC%%/%%SE%%/%%SE%%-utf8-superscript-integer_edit.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-superscript-integer_edit.o +%%LSC%%/%%SE%%/%%SE%%-utf8-superscript.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-superscript.o +%%LSC%%/%%SE%%/%%SE%%-utf8-wildcards-case_insensitive.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-wildcards-case_insensitive.o +%%LSC%%/%%SE%%/%%SE%%-utf8-wildcards.ali +%%LSC%%/%%SE%%/%%SE%%-utf8-wildcards.o +%%LSC%%/%%SE%%/%%SE%%-utf8.ali +%%LSC%%/%%SE%%/%%SE%%-utf8.o +%%LSC%%/%%SE%%/%%SE%%.ali +%%LSC%%/%%SE%%/%%SE%%.o +%%LSC%%/tables/tables-names.ali +%%LSC%%/tables/tables-names.o +%%LSC%%/tables/tables.ali +%%LSC%%/tables/tables.o From owner-svn-ports-all@freebsd.org Sun Aug 9 22:52:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEC8D99D07E; Sun, 9 Aug 2015 22:52:22 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7DEA86E; Sun, 9 Aug 2015 22:52:22 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79MqMHl082801; Sun, 9 Aug 2015 22:52:22 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79MqItR082783; Sun, 9 Aug 2015 22:52:18 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201508092252.t79MqItR082783@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Sun, 9 Aug 2015 22:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393833 - in head: databases/ldb databases/ldb/files databases/ntdb databases/tdb databases/tdb/files devel/talloc devel/talloc/files devel/tevent devel/tevent/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 22:52:23 -0000 Author: timur Date: Sun Aug 9 22:52:17 2015 New Revision: 393833 URL: https://svnweb.freebsd.org/changeset/ports/393833 Log: Upgrade relevant ports to the latest releases. PR: 202041 Modified: head/databases/ldb/Makefile head/databases/ldb/distinfo head/databases/ldb/files/patch-buildtools__wafsamba__samba_install.py head/databases/ntdb/Makefile head/databases/tdb/Makefile head/databases/tdb/distinfo head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py head/devel/talloc/Makefile head/devel/talloc/distinfo head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py head/devel/tevent/Makefile head/devel/tevent/distinfo head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py head/devel/tevent/files/patch-wscript Modified: head/databases/ldb/Makefile ============================================================================== --- head/databases/ldb/Makefile Sun Aug 9 22:38:23 2015 (r393832) +++ head/databases/ldb/Makefile Sun Aug 9 22:52:17 2015 (r393833) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ldb -PORTVERSION= 1.1.20 +PORTVERSION= 1.1.21 PORTREVISION= 0 PORTEPOCH= 0 CATEGORIES= databases @@ -25,7 +25,9 @@ PKGCONFIGDIR?= ${PREFIX}/libdata/pkgcon PLIST_SUB+= PKGCONFIGDIR=${PKGCONFIGDIR:S;${PREFIX}/;;} CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ - --infodir=${PREFIX}/${INFO_PATH}/${INFO_SUBDIR} + --infodir=${PREFIX}/${INFO_PATH}/${INFO_SUBDIR} \ + --disable-rpath \ + --without-gettext OPTIONS_DEFINE= MANPAGES MANPAGES_DESC= Build and install manpages (requires textproc/docbook-xsl) Modified: head/databases/ldb/distinfo ============================================================================== --- head/databases/ldb/distinfo Sun Aug 9 22:38:23 2015 (r393832) +++ head/databases/ldb/distinfo Sun Aug 9 22:52:17 2015 (r393833) @@ -1,2 +1,2 @@ -SHA256 (ldb-1.1.20.tar.gz) = ba493bab271fdaa6ba07960728ffca71c8f9da5240162e86f1e56694b7a377b2 -SIZE (ldb-1.1.20.tar.gz) = 1220484 +SHA256 (ldb-1.1.21.tar.gz) = 267bbb7f278068eaf0de27adffda2e691a070a93c5c15ee27c828e87b4c7dbf1 +SIZE (ldb-1.1.21.tar.gz) = 1244825 Modified: head/databases/ldb/files/patch-buildtools__wafsamba__samba_install.py ============================================================================== --- head/databases/ldb/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:38:23 2015 (r393832) +++ head/databases/ldb/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:52:17 2015 (r393833) @@ -1,11 +1,11 @@ ---- ./buildtools/wafsamba/samba_install.py.orig 2013-01-27 11:51:43.000000000 +0000 -+++ ./buildtools/wafsamba/samba_install.py 2013-01-29 22:49:14.139878631 +0000 -@@ -111,7 +111,7 @@ +--- ./buildtools/wafsamba/samba_install.py.orig 2015-08-09 19:55:47.819170736 +0000 ++++ ./buildtools/wafsamba/samba_install.py 2015-08-09 19:56:18.727356203 +0000 +@@ -116,7 +116,7 @@ + inst_name = bld.make_libname(t.target) + elif self.vnum: + vnum_base = self.vnum.split('.')[0] +- install_name = bld.make_libname(target_name, version=self.vnum) ++ install_name = bld.make_libname(target_name, version=vnum_base) + install_link = bld.make_libname(target_name, version=vnum_base) inst_name = bld.make_libname(t.target) - elif self.vnum: - vnum_base = self.vnum.split('.')[0] -- install_name = bld.make_libname(target_name, version=self.vnum) -+ install_name = bld.make_libname(target_name, version=vnum_base) - install_link = bld.make_libname(target_name, version=vnum_base) - inst_name = bld.make_libname(t.target) - if not self.private_library: + if not self.private_library: Modified: head/databases/ntdb/Makefile ============================================================================== --- head/databases/ntdb/Makefile Sun Aug 9 22:38:23 2015 (r393832) +++ head/databases/ntdb/Makefile Sun Aug 9 22:52:17 2015 (r393833) @@ -24,6 +24,7 @@ PLIST_SUB+= PKGCONFIGDIR=${PKGCONFIGDIR CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ --infodir=${PREFIX}/${INFO_PATH}/${INFO_SUBDIR} \ + --disable-rpath \ --without-gettext OPTIONS_DEFINE= MANPAGES Modified: head/databases/tdb/Makefile ============================================================================== --- head/databases/tdb/Makefile Sun Aug 9 22:38:23 2015 (r393832) +++ head/databases/tdb/Makefile Sun Aug 9 22:52:17 2015 (r393833) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tdb -PORTVERSION= 1.3.4 +PORTVERSION= 1.3.7 PORTREVISION= 0 PORTEPOCH= 1 CATEGORIES= databases @@ -23,7 +23,9 @@ PKGCONFIGDIR?= ${PREFIX}/libdata/pkgcon PLIST_SUB+= PKGCONFIGDIR=${PKGCONFIGDIR:S;${PREFIX}/;;} CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ - --infodir=${PREFIX}/${INFO_PATH}/${INFO_SUBDIR} + --infodir=${PREFIX}/${INFO_PATH}/${INFO_SUBDIR} \ + --disable-rpath \ + --without-gettext OPTIONS_DEFINE= MANPAGES MANPAGES_DESC= Build and install manpages (requires textproc/docbook-xsl) @@ -34,7 +36,8 @@ MANPAGES_DESC= Build and install manpag CONFIGURE_ARGS+= --disable-python .else USES+= python:2 -PLIST_FILES+= %%PYTHON_SITELIBDIR%%/tdb.so +PLIST_FILES+= %%PYTHON_SITELIBDIR%%/tdb.so \ + %%PYTHON_SITELIBDIR%%/_tdb_text.py .endif .include Modified: head/databases/tdb/distinfo ============================================================================== --- head/databases/tdb/distinfo Sun Aug 9 22:38:23 2015 (r393832) +++ head/databases/tdb/distinfo Sun Aug 9 22:52:17 2015 (r393833) @@ -1,2 +1,2 @@ -SHA256 (tdb-1.3.4.tar.gz) = f585cd53b49cb1f11f4c5aec404d0daa0c9bc5568790b09f5eb3b79315511729 -SIZE (tdb-1.3.4.tar.gz) = 483140 +SHA256 (tdb-1.3.7.tar.gz) = a64d95ca0cc06a28fed24c6e952aed7660cae04983108735d6bc30b925136412 +SIZE (tdb-1.3.7.tar.gz) = 493847 Modified: head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py ============================================================================== --- head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:38:23 2015 (r393832) +++ head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:52:17 2015 (r393833) @@ -1,11 +1,11 @@ ---- ./buildtools/wafsamba/samba_install.py.orig 2012-04-11 12:36:11.000000000 +0000 -+++ ./buildtools/wafsamba/samba_install.py 2013-01-29 20:54:59.749863922 +0000 -@@ -109,7 +109,7 @@ +--- ./buildtools/wafsamba/samba_install.py.orig 2015-08-09 19:55:47.819170736 +0000 ++++ ./buildtools/wafsamba/samba_install.py 2015-08-09 19:56:18.727356203 +0000 +@@ -116,7 +116,7 @@ + inst_name = bld.make_libname(t.target) + elif self.vnum: + vnum_base = self.vnum.split('.')[0] +- install_name = bld.make_libname(target_name, version=self.vnum) ++ install_name = bld.make_libname(target_name, version=vnum_base) + install_link = bld.make_libname(target_name, version=vnum_base) inst_name = bld.make_libname(t.target) - elif self.vnum: - vnum_base = self.vnum.split('.')[0] -- install_name = bld.make_libname(target_name, version=self.vnum) -+ install_name = bld.make_libname(target_name, version=vnum_base) - install_link = bld.make_libname(target_name, version=vnum_base) - inst_name = bld.make_libname(t.target) - if not self.private_library: + if not self.private_library: Modified: head/devel/talloc/Makefile ============================================================================== --- head/devel/talloc/Makefile Sun Aug 9 22:38:23 2015 (r393832) +++ head/devel/talloc/Makefile Sun Aug 9 22:52:17 2015 (r393833) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= talloc -PORTVERSION= 2.1.2 +PORTVERSION= 2.1.3 PORTREVISION= 0 PORTEPOCH= 0 CATEGORIES= devel @@ -24,6 +24,7 @@ PLIST_SUB+= PKGCONFIGDIR=${PKGCONFIGDIR CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ --infodir=${PREFIX}/${INFO_PATH}/${INFO_SUBDIR} \ + --disable-rpath \ --without-gettext OPTIONS_DEFINE= MANPAGES Modified: head/devel/talloc/distinfo ============================================================================== --- head/devel/talloc/distinfo Sun Aug 9 22:38:23 2015 (r393832) +++ head/devel/talloc/distinfo Sun Aug 9 22:52:17 2015 (r393833) @@ -1,2 +1,2 @@ -SHA256 (talloc-2.1.2.tar.gz) = 230d78a3fca75a15ab0f5d76d7bbaeadd3c1e695adcbb085932d227f5c31838d -SIZE (talloc-2.1.2.tar.gz) = 423706 +SHA256 (talloc-2.1.3.tar.gz) = 7aa5f75b22d4ef9c737b25515f2a2837ddc13014ff4ac6e58dd9e311f41f2cb0 +SIZE (talloc-2.1.3.tar.gz) = 434093 Modified: head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py ============================================================================== --- head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:38:23 2015 (r393832) +++ head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:52:17 2015 (r393833) @@ -1,11 +1,11 @@ ---- buildtools/wafsamba/samba_install.py.orig 2010-12-21 02:00:02.000000000 +0100 -+++ buildtools/wafsamba/samba_install.py 2011-06-21 11:46:28.000000000 +0200 -@@ -109,7 +109,7 @@ +--- ./buildtools/wafsamba/samba_install.py.orig 2015-08-09 19:55:47.819170736 +0000 ++++ ./buildtools/wafsamba/samba_install.py 2015-08-09 19:56:18.727356203 +0000 +@@ -116,7 +116,7 @@ + inst_name = bld.make_libname(t.target) + elif self.vnum: + vnum_base = self.vnum.split('.')[0] +- install_name = bld.make_libname(target_name, version=self.vnum) ++ install_name = bld.make_libname(target_name, version=vnum_base) + install_link = bld.make_libname(target_name, version=vnum_base) inst_name = bld.make_libname(t.target) - elif self.vnum: - vnum_base = self.vnum.split('.')[0] -- install_name = bld.make_libname(target_name, version=self.vnum) -+ install_name = bld.make_libname(target_name, version=vnum_base) - install_link = bld.make_libname(target_name, version=vnum_base) - inst_name = bld.make_libname(t.target) - if not self.private_library: + if not self.private_library: Modified: head/devel/tevent/Makefile ============================================================================== --- head/devel/tevent/Makefile Sun Aug 9 22:38:23 2015 (r393832) +++ head/devel/tevent/Makefile Sun Aug 9 22:52:17 2015 (r393833) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tevent -PORTVERSION= 0.9.24 +PORTVERSION= 0.9.25 PORTREVISION= 0 PORTEPOCH= 0 CATEGORIES= devel @@ -24,6 +24,7 @@ PLIST_SUB+= PKGCONFIGDIR=${PKGCONFIGDIR CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ --infodir=${PREFIX}/${INFO_PATH}/${INFO_SUBDIR} \ + --disable-rpath \ --without-gettext OPTIONS_DEFINE= MANPAGES Modified: head/devel/tevent/distinfo ============================================================================== --- head/devel/tevent/distinfo Sun Aug 9 22:38:23 2015 (r393832) +++ head/devel/tevent/distinfo Sun Aug 9 22:52:17 2015 (r393833) @@ -1,2 +1,2 @@ -SHA256 (tevent-0.9.24.tar.gz) = 4db94cc092611775340891bb138e1c45310638b27fb3c59fb11b5af345973f50 -SIZE (tevent-0.9.24.tar.gz) = 560585 +SHA256 (tevent-0.9.25.tar.gz) = fedeb0d55a11b3593b562ec09b32e44bd67619ed10e5fa10d1868adb1649c669 +SIZE (tevent-0.9.25.tar.gz) = 573357 Modified: head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py ============================================================================== --- head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:38:23 2015 (r393832) +++ head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py Sun Aug 9 22:52:17 2015 (r393833) @@ -1,11 +1,11 @@ ---- buildtools/wafsamba/samba_install.py.orig 2010-12-21 02:00:02.000000000 +0100 -+++ buildtools/wafsamba/samba_install.py 2011-06-21 11:46:28.000000000 +0200 -@@ -109,7 +109,7 @@ +--- ./buildtools/wafsamba/samba_install.py.orig 2015-08-09 19:55:47.819170736 +0000 ++++ ./buildtools/wafsamba/samba_install.py 2015-08-09 19:56:18.727356203 +0000 +@@ -116,7 +116,7 @@ + inst_name = bld.make_libname(t.target) + elif self.vnum: + vnum_base = self.vnum.split('.')[0] +- install_name = bld.make_libname(target_name, version=self.vnum) ++ install_name = bld.make_libname(target_name, version=vnum_base) + install_link = bld.make_libname(target_name, version=vnum_base) inst_name = bld.make_libname(t.target) - elif self.vnum: - vnum_base = self.vnum.split('.')[0] -- install_name = bld.make_libname(target_name, version=self.vnum) -+ install_name = bld.make_libname(target_name, version=vnum_base) - install_link = bld.make_libname(target_name, version=vnum_base) - inst_name = bld.make_libname(t.target) - if not self.private_library: + if not self.private_library: Modified: head/devel/tevent/files/patch-wscript ============================================================================== --- head/devel/tevent/files/patch-wscript Sun Aug 9 22:38:23 2015 (r393832) +++ head/devel/tevent/files/patch-wscript Sun Aug 9 22:52:17 2015 (r393833) @@ -1,7 +1,7 @@ ---- wscript.orig 2013-03-02 08:57:47.000000000 +0000 -+++ wscript 2013-06-30 06:22:09.109879947 +0000 -@@ -90,7 +90,7 @@ - SRC += ' tevent_epoll.c' +--- ./wscript.orig 2015-06-13 01:00:10.000000000 +0000 ++++ ./wscript 2015-08-09 20:15:06.617305973 +0000 +@@ -93,7 +93,7 @@ + SRC += ' tevent_port.c' if bld.env.standalone_tevent: - bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig' @@ -9,12 +9,12 @@ private_library = False else: private_library = True -@@ -120,7 +120,7 @@ - pattern='tevent.py', - installdir='python') +@@ -121,7 +121,7 @@ + cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION) -- bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py', flat=False) -+ bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py*', flat=False) +- bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py', flat=False) ++ bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py*', flat=False) - def test(ctx): + # install out various python scripts for use by make test + bld.SAMBA_SCRIPT('tevent_python', From owner-svn-ports-all@freebsd.org Sun Aug 9 23:26:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75AB599D9AE; Sun, 9 Aug 2015 23:26:38 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4C6AF813; Sun, 9 Aug 2015 23:26:38 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79NQc2k095401; Sun, 9 Aug 2015 23:26:38 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79NQb9b095399; Sun, 9 Aug 2015 23:26:37 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508092326.t79NQb9b095399@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 9 Aug 2015 23:26:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393834 - in head/editors/lazarus: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 23:26:38 -0000 Author: acm Date: Sun Aug 9 23:26:37 2015 New Revision: 393834 URL: https://svnweb.freebsd.org/changeset/ports/393834 Log: - Fix build of lazarus-qt - Clean up Modified: head/editors/lazarus/Makefile head/editors/lazarus/files/pkg-message.in Modified: head/editors/lazarus/Makefile ============================================================================== --- head/editors/lazarus/Makefile Sun Aug 9 22:52:17 2015 (r393833) +++ head/editors/lazarus/Makefile Sun Aug 9 23:26:37 2015 (r393834) @@ -4,7 +4,7 @@ PORTNAME= lazarus PORTVERSION= 1.4.2 DISTVERSIONSUFFIX= -0 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= editors devel MASTER_SITES= SF/${PORTNAME}/Lazarus%20Zip%20_%20GZip/Lazarus%20${PORTVERSION:S/.0//} \ LOCAL/acm/freepascal @@ -20,8 +20,8 @@ ONLY_FOR_ARCHS= i386 amd64 USES= gmake USE_GNOME= # -USE_FPC?= fcl-base fcl-db fcl-fpcunit fcl-image fcl-process fcl-registry \ - fcl-res fcl-xml iconvenc numlib pasjpeg x11 +USE_FPC?= cairo fcl-base fcl-db fcl-fpcunit fcl-image fcl-process fcl-registry \ + fcl-res fcl-xml gtk2 iconvenc numlib pasjpeg x11 USE_FPC_RUN= yes OPT?= "-Sgic " @@ -72,7 +72,6 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/gdb:${POR .endif .if ${PORT_OPTIONS:MGTK2} -USE_FPC+= gtk2 USE_GNOME= gtk20 gdkpixbuf LCL_PLATFORM= gtk2 BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-gtk2 Modified: head/editors/lazarus/files/pkg-message.in ============================================================================== --- head/editors/lazarus/files/pkg-message.in Sun Aug 9 22:52:17 2015 (r393833) +++ head/editors/lazarus/files/pkg-message.in Sun Aug 9 23:26:37 2015 (r393834) @@ -16,7 +16,7 @@ The Lazarus RAD was installed It could be extracted to your home directory. -4) You can use %%LOCALBASE%%/bin/gdb771 debugger instead of gdb installed deugger +4) You can use %%LOCALBASE%%/bin/gdb debugger instead of gdb installed debugger installed from base system. Lazarus works better with this version. 5) The lazbuild.cfg file has been removed, it is not necessary anymore. Now @@ -25,11 +25,10 @@ The Lazarus RAD was installed by default: editors/lazarus-lcl-nogui - editors/lazarus-lcl-gtk editors/lazarus-lcl-gtk2 editors/lazarus-lcl-qt - You can added those ports if you want support for nogui, gtk, gtk2 or qt + You can added those ports if you want support for nogui, gtk2 or qt interfaces. Please look at net-p2p/transmission-remote-gui like a example of how use it From owner-svn-ports-all@freebsd.org Sun Aug 9 23:42:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A84A99DDDE; Sun, 9 Aug 2015 23:42:37 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E2C7FF55; Sun, 9 Aug 2015 23:42:36 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79Nga2q003540; Sun, 9 Aug 2015 23:42:36 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79NgaYl003537; Sun, 9 Aug 2015 23:42:36 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201508092342.t79NgaYl003537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Sun, 9 Aug 2015 23:42:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393835 - in head/net/samba42: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 23:42:37 -0000 Author: timur Date: Sun Aug 9 23:42:35 2015 New Revision: 393835 URL: https://svnweb.freebsd.org/changeset/ports/393835 Log: Upgrade port to the 4.2.3 revision Modified: head/net/samba42/Makefile head/net/samba42/distinfo head/net/samba42/files/patch-source4__lib__http__http.c Modified: head/net/samba42/Makefile ============================================================================== --- head/net/samba42/Makefile Sun Aug 9 23:26:37 2015 (r393834) +++ head/net/samba42/Makefile Sun Aug 9 23:42:35 2015 (r393835) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}42 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 1 +PORTREVISION?= 0 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -17,7 +17,7 @@ CONFLICTS?= *samba3[2-6]-3.* samba4-4.0 SAMBA4_BASENAME= samba SAMBA4_PORTNAME= ${SAMBA4_BASENAME}4 -SAMBA4_VERSION= 4.2.2 +SAMBA4_VERSION= 4.2.3 SAMBA4_DISTNAME= ${SAMBA4_BASENAME}-${SAMBA4_VERSION:S|.p|pre|:S|.r|rc|:S|.t|tp|:S|.a|alpha|} WRKSRC?= ${WRKDIR}/${DISTNAME} Modified: head/net/samba42/distinfo ============================================================================== --- head/net/samba42/distinfo Sun Aug 9 23:26:37 2015 (r393834) +++ head/net/samba42/distinfo Sun Aug 9 23:42:35 2015 (r393835) @@ -1,2 +1,2 @@ -SHA256 (samba-4.2.2.tar.gz) = 27d6c69dc3afee38fd28051001d2d4bdae38c567612a9ec6477bb5567e2abc1e -SIZE (samba-4.2.2.tar.gz) = 20708020 +SHA256 (samba-4.2.3.tar.gz) = b6dfa5ae4818d891ee2fcff04a5912f4a4fb2394b4f5e66a2a15b428da094c7c +SIZE (samba-4.2.3.tar.gz) = 20721283 Modified: head/net/samba42/files/patch-source4__lib__http__http.c ============================================================================== --- head/net/samba42/files/patch-source4__lib__http__http.c Sun Aug 9 23:26:37 2015 (r393834) +++ head/net/samba42/files/patch-source4__lib__http__http.c Sun Aug 9 23:42:35 2015 (r393835) @@ -1,5 +1,5 @@ ---- source4/lib/http/http.c.orig 2015-05-23 00:27:12.430849126 +0000 -+++ source4/lib/http/http.c 2015-05-28 02:27:41.829717329 +0000 +--- source4/lib/http/http.c.orig 2015-07-14 10:41:44.000000000 +0000 ++++ source4/lib/http/http.c 2015-08-09 23:25:46.480162006 +0000 @@ -112,7 +112,19 @@ return HTTP_ALL_DATA_READ; } @@ -15,7 +15,7 @@ + n = sscanf(line, "%[^:]: %[^\r\n]\r\n", key, value); + } +#else - n = sscanf(line, "%a[^:]: %a[^\r\n]\r\n", &key, &value); + n = sscanf(line, "%m[^:]: %m[^\r\n]\r\n", &key, &value); +#endif if (n != 2) { DEBUG(0, ("%s: Error parsing header '%s'\n", __func__, line)); @@ -29,7 +29,7 @@ char *msg = NULL; char major; char minor; -@@ -158,19 +170,32 @@ +@@ -158,12 +170,22 @@ return false; } @@ -46,17 +46,17 @@ + protocol, &major, &minor, &code, msg); + } +#else - n = sscanf(line, "%a[^/]/%c.%c %d %a[^\r\n]\r\n", + n = sscanf(line, "%m[^/]/%c.%c %d %m[^\r\n]\r\n", &protocol, &major, &minor, &code, &msg); - - DEBUG(11, ("%s: Header parsed(%i): protocol->%s, major->%c, minor->%c, " - "code->%d, message->%s\n", __func__, n, protocol, major, minor, - code, msg)); -- +#endif + if (n != 5) { DEBUG(0, ("%s: Error parsing header\n", __func__)); - status = false; +@@ -171,6 +193,10 @@ goto error; } From owner-svn-ports-all@freebsd.org Mon Aug 10 00:30:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3CE699E916; Mon, 10 Aug 2015 00:30:00 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 940446E7; Mon, 10 Aug 2015 00:30:00 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A0U0Gh020263; Mon, 10 Aug 2015 00:30:00 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A0U0vC020262; Mon, 10 Aug 2015 00:30:00 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201508100030.t7A0U0vC020262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Mon, 10 Aug 2015 00:30:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393836 - head/net/netatalk3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 00:30:00 -0000 Author: marcus Date: Mon Aug 10 00:29:59 2015 New Revision: 393836 URL: https://svnweb.freebsd.org/changeset/ports/393836 Log: Fix the py-dbus dependency. PR: 202003 Modified: head/net/netatalk3/Makefile Modified: head/net/netatalk3/Makefile ============================================================================== --- head/net/netatalk3/Makefile Sun Aug 9 23:42:35 2015 (r393835) +++ head/net/netatalk3/Makefile Mon Aug 10 00:29:59 2015 (r393836) @@ -3,7 +3,7 @@ PORTNAME= netatalk PORTVERSION= 3.1.7 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= SF @@ -112,8 +112,9 @@ CONFIGURE_ARGS+= --disable-sendfile .endif .if ${PORT_OPTIONS:MDBUS} || exists(${LOCALBASE}/libdata/pkgconfig/dbus-glib-1.pc) +USES+= python LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib -RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/dbus-python.pc:${PORTSDIR}/devel/pydbus-common +RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/dbus/_dbus.py:${PORTSDIR}/devel/py-dbus PLIST_SUB+= DBUS="" .else PLIST_SUB+= DBUS="@comment " From owner-svn-ports-all@freebsd.org Mon Aug 10 01:52:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 507BE998A52; Mon, 10 Aug 2015 01:52:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40C8FD38; Mon, 10 Aug 2015 01:52:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A1q0VS058042; Mon, 10 Aug 2015 01:52:00 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A1pxCs058036; Mon, 10 Aug 2015 01:51:59 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508100151.t7A1pxCs058036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 10 Aug 2015 01:51:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393837 - head/net-p2p/dogecoin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 01:52:00 -0000 Author: swills Date: Mon Aug 10 01:51:59 2015 New Revision: 393837 URL: https://svnweb.freebsd.org/changeset/ports/393837 Log: net-p2p/dogecoin: update to 1.8.2 Modified: head/net-p2p/dogecoin/Makefile head/net-p2p/dogecoin/distinfo Modified: head/net-p2p/dogecoin/Makefile ============================================================================== --- head/net-p2p/dogecoin/Makefile Mon Aug 10 00:29:59 2015 (r393836) +++ head/net-p2p/dogecoin/Makefile Mon Aug 10 01:51:59 2015 (r393837) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dogecoin -PORTVERSION= 1.8.0 +PORTVERSION= 1.8.2 DISTVERSIONPREFIX= v CATEGORIES= net-p2p finance Modified: head/net-p2p/dogecoin/distinfo ============================================================================== --- head/net-p2p/dogecoin/distinfo Mon Aug 10 00:29:59 2015 (r393836) +++ head/net-p2p/dogecoin/distinfo Mon Aug 10 01:51:59 2015 (r393837) @@ -1,2 +1,2 @@ -SHA256 (dogecoin-dogecoin-v1.8.0_GH0.tar.gz) = 8a33958c04213cd621aa3c86910477813af22512f03b47c98995d20d31f3f935 -SIZE (dogecoin-dogecoin-v1.8.0_GH0.tar.gz) = 8049653 +SHA256 (dogecoin-dogecoin-v1.8.2_GH0.tar.gz) = 87060dfe6d9770f8af17c447120cb6a059bbd84687dfd6a1f0787c9d75d75d9e +SIZE (dogecoin-dogecoin-v1.8.2_GH0.tar.gz) = 8280103 From owner-svn-ports-all@freebsd.org Mon Aug 10 02:15:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D5234998ED0; Mon, 10 Aug 2015 02:15:53 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B24A55F9; Mon, 10 Aug 2015 02:15:53 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A2FrkJ066404; Mon, 10 Aug 2015 02:15:53 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A2FrMv066401; Mon, 10 Aug 2015 02:15:53 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201508100215.t7A2FrMv066401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Mon, 10 Aug 2015 02:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393838 - in head/net-mgmt/net-snmp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 02:15:53 -0000 Author: zi Date: Mon Aug 10 02:15:52 2015 New Revision: 393838 URL: https://svnweb.freebsd.org/changeset/ports/393838 Log: - Fix CVE-2015-5621 - Bump PORTREVISION PR: 202099 Submitted by: serg@tmn.ru Added: head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c (contents, props changed) Modified: head/net-mgmt/net-snmp/Makefile Modified: head/net-mgmt/net-snmp/Makefile ============================================================================== --- head/net-mgmt/net-snmp/Makefile Mon Aug 10 01:51:59 2015 (r393837) +++ head/net-mgmt/net-snmp/Makefile Mon Aug 10 02:15:52 2015 (r393838) @@ -3,7 +3,7 @@ PORTNAME= snmp PORTVERSION= 5.7.3 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/net-${PORTNAME}/net-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= net- Added: head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c Mon Aug 10 02:15:52 2015 (r393838) @@ -0,0 +1,117 @@ +--- snmplib/snmp_api.c.orig 2014-12-08 20:23:22 UTC ++++ snmplib/snmp_api.c +@@ -4350,10 +4350,9 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + u_char type; + u_char msg_type; + u_char *var_val; +- int badtype = 0; + size_t len; + size_t four; +- netsnmp_variable_list *vp = NULL; ++ netsnmp_variable_list *vp = NULL, *vplast = NULL; + oid objid[MAX_OID_LEN]; + u_char *p; + +@@ -4493,38 +4492,24 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + (ASN_SEQUENCE | ASN_CONSTRUCTOR), + "varbinds"); + if (data == NULL) +- return -1; ++ goto fail; + + /* + * get each varBind sequence + */ + while ((int) *length > 0) { +- netsnmp_variable_list *vptemp; +- vptemp = (netsnmp_variable_list *) malloc(sizeof(*vptemp)); +- if (NULL == vptemp) { +- return -1; +- } +- if (NULL == vp) { +- pdu->variables = vptemp; +- } else { +- vp->next_variable = vptemp; +- } +- vp = vptemp; ++ vp = SNMP_MALLOC_TYPEDEF(netsnmp_variable_list); ++ if (NULL == vp) ++ goto fail; + +- vp->next_variable = NULL; +- vp->val.string = NULL; + vp->name_length = MAX_OID_LEN; +- vp->name = NULL; +- vp->index = 0; +- vp->data = NULL; +- vp->dataFreeHook = NULL; + DEBUGDUMPSECTION("recv", "VarBind"); + data = snmp_parse_var_op(data, objid, &vp->name_length, &vp->type, + &vp->val_len, &var_val, length); + if (data == NULL) +- return -1; ++ goto fail; + if (snmp_set_var_objid(vp, objid, vp->name_length)) +- return -1; ++ goto fail; + + len = MAX_PACKET_LENGTH; + DEBUGDUMPHEADER("recv", "Value"); +@@ -4604,7 +4589,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + vp->val.string = (u_char *) malloc(vp->val_len); + } + if (vp->val.string == NULL) { +- return -1; ++ goto fail; + } + p = asn_parse_string(var_val, &len, &vp->type, vp->val.string, + &vp->val_len); +@@ -4619,7 +4604,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + vp->val_len *= sizeof(oid); + vp->val.objid = (oid *) malloc(vp->val_len); + if (vp->val.objid == NULL) { +- return -1; ++ goto fail; + } + memmove(vp->val.objid, objid, vp->val_len); + break; +@@ -4631,7 +4616,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + case ASN_BIT_STR: + vp->val.bitstring = (u_char *) malloc(vp->val_len); + if (vp->val.bitstring == NULL) { +- return -1; ++ goto fail; + } + p = asn_parse_bitstring(var_val, &len, &vp->type, + vp->val.bitstring, &vp->val_len); +@@ -4640,12 +4625,28 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + break; + default: + snmp_log(LOG_ERR, "bad type returned (%x)\n", vp->type); +- badtype = -1; ++ goto fail; + break; + } + DEBUGINDENTADD(-4); ++ ++ if (NULL == vplast) { ++ pdu->variables = vp; ++ } else { ++ vplast->next_variable = vp; ++ } ++ vplast = vp; ++ vp = NULL; + } +- return badtype; ++ return 0; ++ ++ fail: ++ DEBUGMSGTL(("recv", "error while parsing VarBindList\n")); ++ /** if we were parsing a var, remove it from the pdu and free it */ ++ if (vp) ++ snmp_free_var(vp); ++ ++ return -1; + } + + /* From owner-svn-ports-all@freebsd.org Mon Aug 10 03:11:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8C1099DB85; Mon, 10 Aug 2015 03:11:34 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7AB9F60; Mon, 10 Aug 2015 03:11:34 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A3BYR5089007; Mon, 10 Aug 2015 03:11:34 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A3BYj1089005; Mon, 10 Aug 2015 03:11:34 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201508100311.t7A3BYj1089005@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Mon, 10 Aug 2015 03:11:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393839 - head/math/ised X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 03:11:34 -0000 Author: danilo Date: Mon Aug 10 03:11:33 2015 New Revision: 393839 URL: https://svnweb.freebsd.org/changeset/ports/393839 Log: - Update to 2.7.0 Modified: head/math/ised/Makefile head/math/ised/distinfo Modified: head/math/ised/Makefile ============================================================================== --- head/math/ised/Makefile Mon Aug 10 02:15:52 2015 (r393838) +++ head/math/ised/Makefile Mon Aug 10 03:11:33 2015 (r393839) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ised -PORTVERSION= 2.6.0 -PORTREVISION= 1 +PORTVERSION= 2.7.0 CATEGORIES= math MASTER_SITES= SF/${PORTNAME} Modified: head/math/ised/distinfo ============================================================================== --- head/math/ised/distinfo Mon Aug 10 02:15:52 2015 (r393838) +++ head/math/ised/distinfo Mon Aug 10 03:11:33 2015 (r393839) @@ -1,2 +1,2 @@ -SHA256 (ised-2.6.0.tar.bz2) = 5a4ecc04626300ad7ae3e6881459b7632f9f705f81b9fbd970a8a93c715ec965 -SIZE (ised-2.6.0.tar.bz2) = 139066 +SHA256 (ised-2.7.0.tar.bz2) = 903cc153648fa09f3aa8fdaf7f0f52610e60abe0d72c5181eaca41ba7d7d9f23 +SIZE (ised-2.7.0.tar.bz2) = 140641 From owner-svn-ports-all@freebsd.org Mon Aug 10 03:55:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DADF799862F; Mon, 10 Aug 2015 03:55:09 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B17071388; Mon, 10 Aug 2015 03:55:09 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A3t9YV008010; Mon, 10 Aug 2015 03:55:09 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A3t8tj008007; Mon, 10 Aug 2015 03:55:08 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201508100355.t7A3t8tj008007@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Mon, 10 Aug 2015 03:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393840 - head/net/openmpi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 03:55:10 -0000 Author: danilo Date: Mon Aug 10 03:55:08 2015 New Revision: 393840 URL: https://svnweb.freebsd.org/changeset/ports/393840 Log: - Update to 1.8.8 - Fix SLURM_LIB_DEPENDS, slurm-hpc was moved to slurm-wlm Modified: head/net/openmpi/Makefile head/net/openmpi/distinfo head/net/openmpi/pkg-plist Modified: head/net/openmpi/Makefile ============================================================================== --- head/net/openmpi/Makefile Mon Aug 10 03:11:33 2015 (r393839) +++ head/net/openmpi/Makefile Mon Aug 10 03:55:08 2015 (r393840) @@ -4,7 +4,7 @@ # - etc/*.sample support PORTNAME= openmpi -DISTVERSION= 1.8.7 +DISTVERSION= 1.8.8 CATEGORIES= net parallel MASTER_SITES= http://www.open-mpi.org/software/ompi/v1.8/downloads/ @@ -62,7 +62,7 @@ TORQUE_PLIST_FILES= ${MPIDIR}/lib/openmp ${MPIDIR}/share/openmpi/help-ras-tm.txt SLURM_CONFIGURE_WITH= slurm -SLURM_LIB_DEPENDS= libslurm.so:${PORTSDIR}/sysutils/slurm-hpc +SLURM_LIB_DEPENDS= libslurm.so:${PORTSDIR}/sysutils/slurm-wlm SLURM_PLIST_FILES= ${MPIDIR}/lib/openmpi/mca_ess_slurm.la \ ${MPIDIR}/lib/openmpi/mca_ess_slurm.so \ ${MPIDIR}/lib/openmpi/mca_plm_slurm.la \ Modified: head/net/openmpi/distinfo ============================================================================== --- head/net/openmpi/distinfo Mon Aug 10 03:11:33 2015 (r393839) +++ head/net/openmpi/distinfo Mon Aug 10 03:55:08 2015 (r393840) @@ -1,2 +1,2 @@ -SHA256 (openmpi-1.8.7.tar.bz2) = da629e9bd820a379cfafe15f842ee9b628d7451856085ccc23ee75ab3e1b48c7 -SIZE (openmpi-1.8.7.tar.bz2) = 13228742 +SHA256 (openmpi-1.8.8.tar.bz2) = a28382d1e6a36f4073412dc00836ff2524e42b674da9caf6ca7377baad790b94 +SIZE (openmpi-1.8.8.tar.bz2) = 13231433 Modified: head/net/openmpi/pkg-plist ============================================================================== --- head/net/openmpi/pkg-plist Mon Aug 10 03:11:33 2015 (r393839) +++ head/net/openmpi/pkg-plist Mon Aug 10 03:55:08 2015 (r393840) @@ -228,7 +228,7 @@ %%MPIDIR%%/lib/libmpi.la %%MPIDIR%%/lib/libmpi.so %%MPIDIR%%/lib/libmpi.so.1 -%%MPIDIR%%/lib/libmpi.so.1.6.2 +%%MPIDIR%%/lib/libmpi.so.1.6.3 %%MPIDIR%%/lib/libmpi_cxx.la %%MPIDIR%%/lib/libmpi_cxx.so %%MPIDIR%%/lib/libmpi_cxx.so.1 @@ -236,7 +236,7 @@ %%MPIDIR%%/lib/libmpi_mpifh.la %%MPIDIR%%/lib/libmpi_mpifh.so %%MPIDIR%%/lib/libmpi_mpifh.so.2 -%%MPIDIR%%/lib/libmpi_mpifh.so.2.5.1 +%%MPIDIR%%/lib/libmpi_mpifh.so.2.5.2 %%MPIDIR%%/lib/libmpi_usempi.la %%MPIDIR%%/lib/libmpi_usempi.so %%MPIDIR%%/lib/libmpi_usempi.so.1 From owner-svn-ports-all@freebsd.org Mon Aug 10 04:44:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 252CF99D138; Mon, 10 Aug 2015 04:44:01 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A28B7A9; Mon, 10 Aug 2015 04:44:01 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A4i0Cn028230; Mon, 10 Aug 2015 04:44:00 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A4hxQV028201; Mon, 10 Aug 2015 04:43:59 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508100443.t7A4hxQV028201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 04:43:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393841 - in head/devel: . R-cran-R6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 04:44:01 -0000 Author: tota Date: Mon Aug 10 04:43:59 2015 New Revision: 393841 URL: https://svnweb.freebsd.org/changeset/ports/393841 Log: - Add new port: devel/R-cran-R6 The R6 package allows the creation of classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages. WWW: https://cran.r-project.org/web/packages/R6/ Added: head/devel/R-cran-R6/ head/devel/R-cran-R6/Makefile (contents, props changed) head/devel/R-cran-R6/distinfo (contents, props changed) head/devel/R-cran-R6/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 10 03:55:08 2015 (r393840) +++ head/devel/Makefile Mon Aug 10 04:43:59 2015 (r393841) @@ -10,6 +10,7 @@ SUBDIR += ORBit2-reference SUBDIR += R-cran-Defaults SUBDIR += R-cran-Hmisc + SUBDIR += R-cran-R6 SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-bit Added: head/devel/R-cran-R6/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-R6/Makefile Mon Aug 10 04:43:59 2015 (r393841) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= R6 +PORTVERSION= 2.1.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Classes with reference semantics + +LICENSE= MIT + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-R6/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-R6/distinfo Mon Aug 10 04:43:59 2015 (r393841) @@ -0,0 +1,2 @@ +SHA256 (R6_2.1.0.tar.gz) = cc350ec9c0f6f33aa159c07130244b26328bc6d887e42e4b7b038ac12eaf5f6f +SIZE (R6_2.1.0.tar.gz) = 142766 Added: head/devel/R-cran-R6/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-R6/pkg-descr Mon Aug 10 04:43:59 2015 (r393841) @@ -0,0 +1,9 @@ +The R6 package allows the creation of classes with reference +semantics, similar to R's built-in reference classes. Compared to +reference classes, R6 classes are simpler and lighter-weight, and +they are not built on S4 classes so they do not require the methods +package. These classes allow public and private members, and they +support inheritance, even when the classes are defined in different +packages. + +WWW: https://cran.r-project.org/web/packages/R6/ From owner-svn-ports-all@freebsd.org Mon Aug 10 04:48:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC69A99D249; Mon, 10 Aug 2015 04:48:25 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA808964; Mon, 10 Aug 2015 04:48:25 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A4mPBk028606; Mon, 10 Aug 2015 04:48:25 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A4mOGU028600; Mon, 10 Aug 2015 04:48:24 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201508100448.t7A4mOGU028600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Mon, 10 Aug 2015 04:48:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393842 - in head: deskutils/horde-groupware ftp/horde-gollem mail/horde-webmail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 04:48:25 -0000 Author: mm Date: Mon Aug 10 04:48:23 2015 New Revision: 393842 URL: https://svnweb.freebsd.org/changeset/ports/393842 Log: Horde package update: ftp/horde-gollem 3.0.4 -> 3.0.5 mail/horde-webmail 5.2.9 -> 5.2.10 deskutils/horde-groupware 5.2.9 -> 5.2.10 Modified: head/deskutils/horde-groupware/Makefile head/deskutils/horde-groupware/distinfo head/ftp/horde-gollem/Makefile head/ftp/horde-gollem/distinfo head/mail/horde-webmail/Makefile head/mail/horde-webmail/distinfo Modified: head/deskutils/horde-groupware/Makefile ============================================================================== --- head/deskutils/horde-groupware/Makefile Mon Aug 10 04:43:59 2015 (r393841) +++ head/deskutils/horde-groupware/Makefile Mon Aug 10 04:48:23 2015 (r393842) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= groupware -PORTVERSION= 5.2.9 +PORTVERSION= 5.2.10 CATEGORIES= deskutils www pear PKGNAMEPREFIX= horde- Modified: head/deskutils/horde-groupware/distinfo ============================================================================== --- head/deskutils/horde-groupware/distinfo Mon Aug 10 04:43:59 2015 (r393841) +++ head/deskutils/horde-groupware/distinfo Mon Aug 10 04:48:23 2015 (r393842) @@ -1,2 +1,2 @@ -SHA256 (Horde/groupware-5.2.9.tgz) = 12ad76d92d6563f5e729fe15b9cd86559606239f11999959dd1b9f71075fec47 -SIZE (Horde/groupware-5.2.9.tgz) = 120703 +SHA256 (Horde/groupware-5.2.10.tgz) = 51458f69e8c6db61c670d25cc0610095cc16e9bd79cb2a89a312400c4b6fc88c +SIZE (Horde/groupware-5.2.10.tgz) = 120891 Modified: head/ftp/horde-gollem/Makefile ============================================================================== --- head/ftp/horde-gollem/Makefile Mon Aug 10 04:43:59 2015 (r393841) +++ head/ftp/horde-gollem/Makefile Mon Aug 10 04:48:23 2015 (r393842) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gollem -PORTVERSION= 3.0.4 +PORTVERSION= 3.0.5 CATEGORIES= ftp www pear PKGNAMEPREFIX= horde- Modified: head/ftp/horde-gollem/distinfo ============================================================================== --- head/ftp/horde-gollem/distinfo Mon Aug 10 04:43:59 2015 (r393841) +++ head/ftp/horde-gollem/distinfo Mon Aug 10 04:48:23 2015 (r393842) @@ -1,2 +1,2 @@ -SHA256 (Horde/gollem-3.0.4.tgz) = 435ce6742fb90b50915946763dc447f6a80082ef74c51c4c60413a8a3a1aef1a -SIZE (Horde/gollem-3.0.4.tgz) = 953019 +SHA256 (Horde/gollem-3.0.5.tgz) = e639f06992df7af0f5521bd4e0f5c2a91b11f073ce6790815e7284a81eb42c34 +SIZE (Horde/gollem-3.0.5.tgz) = 953125 Modified: head/mail/horde-webmail/Makefile ============================================================================== --- head/mail/horde-webmail/Makefile Mon Aug 10 04:43:59 2015 (r393841) +++ head/mail/horde-webmail/Makefile Mon Aug 10 04:48:23 2015 (r393842) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= webmail -PORTVERSION= 5.2.9 +PORTVERSION= 5.2.10 CATEGORIES= mail www pear PKGNAMEPREFIX= horde- Modified: head/mail/horde-webmail/distinfo ============================================================================== --- head/mail/horde-webmail/distinfo Mon Aug 10 04:43:59 2015 (r393841) +++ head/mail/horde-webmail/distinfo Mon Aug 10 04:48:23 2015 (r393842) @@ -1,2 +1,2 @@ -SHA256 (Horde/webmail-5.2.9.tgz) = b22069140b78fb74e72cdd93948a3f63e3398bcd9a9135a0503c4eaeafb30c12 -SIZE (Horde/webmail-5.2.9.tgz) = 158206 +SHA256 (Horde/webmail-5.2.10.tgz) = 64462ec4d2e05b01b02159a633b08f0b6f0e4c3049725f0262706c899b22cdc1 +SIZE (Horde/webmail-5.2.10.tgz) = 158351 From owner-svn-ports-all@freebsd.org Mon Aug 10 04:58:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D03D199D4EB; Mon, 10 Aug 2015 04:58:50 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD61BCC0; Mon, 10 Aug 2015 04:58:50 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A4woYo032834; Mon, 10 Aug 2015 04:58:50 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A4wnc4032827; Mon, 10 Aug 2015 04:58:49 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508100458.t7A4wnc4032827@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 04:58:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393843 - in head/www: . R-cran-httr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 04:58:51 -0000 Author: tota Date: Mon Aug 10 04:58:48 2015 New Revision: 393843 URL: https://svnweb.freebsd.org/changeset/ports/393843 Log: - Add new port: www/R-cran-httr Useful tools for working with HTTP organised by HTTP verbs (GET(), POST(), etc). Configuration functions make it easy to control additional request components (authenticate(), add_headers() and so on). WWW: https://cran.r-project.org/web/packages/httr/ Added: head/www/R-cran-httr/ head/www/R-cran-httr/Makefile (contents, props changed) head/www/R-cran-httr/distinfo (contents, props changed) head/www/R-cran-httr/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Aug 10 04:48:23 2015 (r393842) +++ head/www/Makefile Mon Aug 10 04:58:48 2015 (r393843) @@ -7,6 +7,7 @@ SUBDIR += R-cran-RgoogleMaps SUBDIR += R-cran-Rpad SUBDIR += R-cran-httpuv + SUBDIR += R-cran-httr SUBDIR += R-cran-scrapeR SUBDIR += R-cran-shiny SUBDIR += WebMagick Added: head/www/R-cran-httr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-httr/Makefile Mon Aug 10 04:58:48 2015 (r393843) @@ -0,0 +1,23 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= httr +PORTVERSION= 1.0.0 +CATEGORIES= www +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Tools for Working with URLs and HTTP + +LICENSE= MIT + +RUN_DEPENDS= R-cran-digest>0:${PORTSDIR}/security/R-cran-digest \ + R-cran-jsonlite>0:${PORTSDIR}/converters/R-cran-jsonlite \ + R-cran-mime>0:${PORTSDIR}/misc/R-cran-mime \ + R-cran-curl>=0.6:${PORTSDIR}/ftp/R-cran-curl \ + R-cran-R6>0:${PORTSDIR}/devel/R-cran-R6 \ + R-cran-stringr>=0.6.1:${PORTSDIR}/textproc/R-cran-stringr + +USES= cran:auto-plist + +.include Added: head/www/R-cran-httr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-httr/distinfo Mon Aug 10 04:58:48 2015 (r393843) @@ -0,0 +1,2 @@ +SHA256 (httr_1.0.0.tar.gz) = 98a5e34a24954b5454c99ef9d72e0be505c91b0cef6d95a13402a0472ee2f9fa +SIZE (httr_1.0.0.tar.gz) = 245989 Added: head/www/R-cran-httr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-httr/pkg-descr Mon Aug 10 04:58:48 2015 (r393843) @@ -0,0 +1,6 @@ +Useful tools for working with HTTP organised by HTTP verbs (GET(), +POST(), etc). Configuration functions make it easy to control +additional request components (authenticate(), add_headers() and +so on). + +WWW: https://cran.r-project.org/web/packages/httr/ From owner-svn-ports-all@freebsd.org Mon Aug 10 06:04:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C16BA99E46E; Mon, 10 Aug 2015 06:04:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98EECA30; Mon, 10 Aug 2015 06:04:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A64mSb060919; Mon, 10 Aug 2015 06:04:48 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A64lvT060916; Mon, 10 Aug 2015 06:04:47 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508100604.t7A64lvT060916@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 06:04:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393844 - head/net/R-cran-twitteR X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 06:04:48 -0000 Author: tota Date: Mon Aug 10 06:04:47 2015 New Revision: 393844 URL: https://svnweb.freebsd.org/changeset/ports/393844 Log: - Update to 1.1.9 Modified: head/net/R-cran-twitteR/Makefile head/net/R-cran-twitteR/distinfo head/net/R-cran-twitteR/pkg-descr Modified: head/net/R-cran-twitteR/Makefile ============================================================================== --- head/net/R-cran-twitteR/Makefile Mon Aug 10 04:58:48 2015 (r393843) +++ head/net/R-cran-twitteR/Makefile Mon Aug 10 06:04:47 2015 (r393844) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= twitteR -PORTVERSION= 1.1.7 -PORTREVISION= 4 +PORTVERSION= 1.1.9 CATEGORIES= net DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -12,9 +11,10 @@ COMMENT= R based Twitter client LICENSE= ART20 -RUN_DEPENDS= R-cran-RCurl>0:${PORTSDIR}/ftp/R-cran-RCurl \ - R-cran-rjson>=0.2.12:${PORTSDIR}/converters/R-cran-rjson \ - R-cran-ROAuth>=0.9.3:${PORTSDIR}/security/R-cran-ROAuth +RUN_DEPENDS= R-cran-bit64>0:${PORTSDIR}/devel/R-cran-bit64 \ + R-cran-rjson>0:${PORTSDIR}/converters/R-cran-rjson \ + R-cran-DBI>=0.3.1:${PORTSDIR}/databases/R-cran-DBI \ + R-cran-httr>=1.0.0:${PORTSDIR}/www/R-cran-httr USES= cran:auto-plist Modified: head/net/R-cran-twitteR/distinfo ============================================================================== --- head/net/R-cran-twitteR/distinfo Mon Aug 10 04:58:48 2015 (r393843) +++ head/net/R-cran-twitteR/distinfo Mon Aug 10 06:04:47 2015 (r393844) @@ -1,2 +1,2 @@ -SHA256 (twitteR_1.1.7.tar.gz) = e4070d9c28773a0976f7781b70b6dac21069371512a4785eb83acf9d17217f7e -SIZE (twitteR_1.1.7.tar.gz) = 121696 +SHA256 (twitteR_1.1.9.tar.gz) = 79fd493ef279059d41140da8f234963c27d7461688e3b6d26c2da285552900c2 +SIZE (twitteR_1.1.9.tar.gz) = 215838 Modified: head/net/R-cran-twitteR/pkg-descr ============================================================================== --- head/net/R-cran-twitteR/pkg-descr Mon Aug 10 04:58:48 2015 (r393843) +++ head/net/R-cran-twitteR/pkg-descr Mon Aug 10 06:04:47 2015 (r393844) @@ -1,3 +1,3 @@ Provides an interface to the Twitter web API -WWW: http://cran.r-project.org/web/packages/twitteR/ +WWW: https://cran.r-project.org/web/packages/twitteR/ From owner-svn-ports-all@freebsd.org Mon Aug 10 06:07:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31B6999E4B9; Mon, 10 Aug 2015 06:07:38 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22EA8B2F; Mon, 10 Aug 2015 06:07:38 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A67cgA061139; Mon, 10 Aug 2015 06:07:38 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A67bjt061138; Mon, 10 Aug 2015 06:07:38 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508100607.t7A67bjt061138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 10 Aug 2015 06:07:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393845 - head/archivers/fpc-paszlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 06:07:38 -0000 Author: antoine Date: Mon Aug 10 06:07:37 2015 New Revision: 393845 URL: https://svnweb.freebsd.org/changeset/ports/393845 Log: Add missing run dependency Reported via devel/fpc-fpmkunit: Compiling src/fpmkunit.pp Fatal: Can't find unit crc used by gzio Modified: head/archivers/fpc-paszlib/Makefile Modified: head/archivers/fpc-paszlib/Makefile ============================================================================== --- head/archivers/fpc-paszlib/Makefile Mon Aug 10 06:04:47 2015 (r393844) +++ head/archivers/fpc-paszlib/Makefile Mon Aug 10 06:07:37 2015 (r393845) @@ -1,7 +1,7 @@ # Created by: John Merryweather Cooper # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers devel PKGNAMESUFFIX= -paszlib @@ -9,6 +9,7 @@ MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal unit for native compression IO USE_FPC= hash +USE_FPC_RUN= yes MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Mon Aug 10 06:20:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD42D99E768; Mon, 10 Aug 2015 06:20:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE89B816; Mon, 10 Aug 2015 06:20:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A6KmAk066857; Mon, 10 Aug 2015 06:20:48 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A6Km99066854; Mon, 10 Aug 2015 06:20:48 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508100620.t7A6Km99066854@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 06:20:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393846 - head/math/R-cran-RcppArmadillo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 06:20:49 -0000 Author: tota Date: Mon Aug 10 06:20:47 2015 New Revision: 393846 URL: https://svnweb.freebsd.org/changeset/ports/393846 Log: - Update to 0.5.300.4 Modified: head/math/R-cran-RcppArmadillo/Makefile head/math/R-cran-RcppArmadillo/distinfo head/math/R-cran-RcppArmadillo/pkg-descr Modified: head/math/R-cran-RcppArmadillo/Makefile ============================================================================== --- head/math/R-cran-RcppArmadillo/Makefile Mon Aug 10 06:07:37 2015 (r393845) +++ head/math/R-cran-RcppArmadillo/Makefile Mon Aug 10 06:20:47 2015 (r393846) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= RcppArmadillo -PORTVERSION= 0.5.200.1.0 +PORTVERSION= 0.5.300.4 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/math/R-cran-RcppArmadillo/distinfo ============================================================================== --- head/math/R-cran-RcppArmadillo/distinfo Mon Aug 10 06:07:37 2015 (r393845) +++ head/math/R-cran-RcppArmadillo/distinfo Mon Aug 10 06:20:47 2015 (r393846) @@ -1,2 +1,2 @@ -SHA256 (RcppArmadillo_0.5.200.1.0.tar.gz) = fd648dd5b7c6b76eb42baeb359c3d5fec2218dee2bfc2b6deea760300bf5e06f -SIZE (RcppArmadillo_0.5.200.1.0.tar.gz) = 963103 +SHA256 (RcppArmadillo_0.5.300.4.tar.gz) = 8bfb5c71782752fc8deb1f4d2e41ceb3d2893f55472797cf3409412a906ad434 +SIZE (RcppArmadillo_0.5.300.4.tar.gz) = 967193 Modified: head/math/R-cran-RcppArmadillo/pkg-descr ============================================================================== --- head/math/R-cran-RcppArmadillo/pkg-descr Mon Aug 10 06:07:37 2015 (r393845) +++ head/math/R-cran-RcppArmadillo/pkg-descr Mon Aug 10 06:20:47 2015 (r393846) @@ -1,4 +1,4 @@ RcppArmadillo provides an interface from R to and from Armadillo by utilising the Rcpp R/C++ interface library. -WWW: http://cran.r-project.org/web/packages/RcppArmadillo/ +WWW: https://cran.r-project.org/web/packages/RcppArmadillo/ From owner-svn-ports-all@freebsd.org Mon Aug 10 07:01:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65A4E99EFA4; Mon, 10 Aug 2015 07:01:38 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (koala.droso.dk [IPv6:2a01:4f8:a0:7163::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF3408D8; Mon, 10 Aug 2015 07:01:37 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id 620597C51; Mon, 10 Aug 2015 09:01:32 +0200 (CEST) Date: Mon, 10 Aug 2015 09:01:32 +0200 From: Erwin Lansing To: Ryan Steinmetz Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393838 - in head/net-mgmt/net-snmp: . files Message-ID: <20150810070132.GC63119@droso.dk> References: <201508100215.t7A2FrMv066401@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="sxhug0Teuf3tiWmo" Content-Disposition: inline In-Reply-To: <201508100215.t7A2FrMv066401@repo.freebsd.org> X-Operating-System: FreeBSD/amd64 9.3-RELEASE-p5 User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 07:01:38 -0000 --sxhug0Teuf3tiWmo Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 10, 2015 at 02:15:53AM +0000, Ryan Steinmetz wrote: > Author: zi > Date: Mon Aug 10 02:15:52 2015 > New Revision: 393838 > URL: https://svnweb.freebsd.org/changeset/ports/393838 >=20 > Log: > - Fix CVE-2015-5621 > - Bump PORTREVISION > =20 > PR: 202099 > Submitted by: serg@tmn.ru MFH as this is a security update? Hereby approved as well. Erwin >=20 > Added: > head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c (contents, pro= ps changed) > Modified: > head/net-mgmt/net-snmp/Makefile >=20 > Modified: head/net-mgmt/net-snmp/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/net-mgmt/net-snmp/Makefile Mon Aug 10 01:51:59 2015 (r393837) > +++ head/net-mgmt/net-snmp/Makefile Mon Aug 10 02:15:52 2015 (r393838) > @@ -3,7 +3,7 @@ > =20 > PORTNAME=3D snmp > PORTVERSION=3D 5.7.3 > -PORTREVISION=3D 7 > +PORTREVISION=3D 8 > CATEGORIES=3D net-mgmt ipv6 > MASTER_SITES=3D SF/net-${PORTNAME}/net-${PORTNAME}/${PORTVERSION} > PKGNAMEPREFIX=3D net- >=20 > Added: head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c Mon Aug 10 02:= 15:52 2015 (r393838) > @@ -0,0 +1,117 @@ > +--- snmplib/snmp_api.c.orig 2014-12-08 20:23:22 UTC > ++++ snmplib/snmp_api.c > +@@ -4350,10 +4350,9 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char=20 > + u_char type; > + u_char msg_type; > + u_char *var_val; > +- int badtype =3D 0; > + size_t len; > + size_t four; > +- netsnmp_variable_list *vp =3D NULL; > ++ netsnmp_variable_list *vp =3D NULL, *vplast =3D NULL; > + oid objid[MAX_OID_LEN]; > + u_char *p; > +=20 > +@@ -4493,38 +4492,24 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char=20 > + (ASN_SEQUENCE | ASN_CONSTRUCTOR), > + "varbinds"); > + if (data =3D=3D NULL) > +- return -1; > ++ goto fail; > +=20 > + /* > + * get each varBind sequence=20 > + */ > + while ((int) *length > 0) { > +- netsnmp_variable_list *vptemp; > +- vptemp =3D (netsnmp_variable_list *) malloc(sizeof(*vptemp)); > +- if (NULL =3D=3D vptemp) { > +- return -1; > +- } > +- if (NULL =3D=3D vp) { > +- pdu->variables =3D vptemp; > +- } else { > +- vp->next_variable =3D vptemp; > +- } > +- vp =3D vptemp; > ++ vp =3D SNMP_MALLOC_TYPEDEF(netsnmp_variable_list); > ++ if (NULL =3D=3D vp) > ++ goto fail; > +=20 > +- vp->next_variable =3D NULL; > +- vp->val.string =3D NULL; > + vp->name_length =3D MAX_OID_LEN; > +- vp->name =3D NULL; > +- vp->index =3D 0; > +- vp->data =3D NULL; > +- vp->dataFreeHook =3D NULL; > + DEBUGDUMPSECTION("recv", "VarBind"); > + data =3D snmp_parse_var_op(data, objid, &vp->name_length, &vp->= type, > + &vp->val_len, &var_val, length); > + if (data =3D=3D NULL) > +- return -1; > ++ goto fail; > + if (snmp_set_var_objid(vp, objid, vp->name_length)) > +- return -1; > ++ goto fail; > +=20 > + len =3D MAX_PACKET_LENGTH; > + DEBUGDUMPHEADER("recv", "Value"); > +@@ -4604,7 +4589,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char=20 > + vp->val.string =3D (u_char *) malloc(vp->val_len); > + } > + if (vp->val.string =3D=3D NULL) { > +- return -1; > ++ goto fail; > + } > + p =3D asn_parse_string(var_val, &len, &vp->type, vp->val.st= ring, > + &vp->val_len); > +@@ -4619,7 +4604,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char=20 > + vp->val_len *=3D sizeof(oid); > + vp->val.objid =3D (oid *) malloc(vp->val_len); > + if (vp->val.objid =3D=3D NULL) { > +- return -1; > ++ goto fail; > + } > + memmove(vp->val.objid, objid, vp->val_len); > + break; > +@@ -4631,7 +4616,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char=20 > + case ASN_BIT_STR: > + vp->val.bitstring =3D (u_char *) malloc(vp->val_len); > + if (vp->val.bitstring =3D=3D NULL) { > +- return -1; > ++ goto fail; > + } > + p =3D asn_parse_bitstring(var_val, &len, &vp->type, > + vp->val.bitstring, &vp->val_len); > +@@ -4640,12 +4625,28 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char=20 > + break; > + default: > + snmp_log(LOG_ERR, "bad type returned (%x)\n", vp->type); > +- badtype =3D -1; > ++ goto fail; > + break; > + } > + DEBUGINDENTADD(-4); > ++ > ++ if (NULL =3D=3D vplast) { > ++ pdu->variables =3D vp; > ++ } else { > ++ vplast->next_variable =3D vp; > ++ } > ++ vplast =3D vp; > ++ vp =3D NULL; > + } > +- return badtype; > ++ return 0; > ++ > ++ fail: > ++ DEBUGMSGTL(("recv", "error while parsing VarBindList\n")); > ++ /** if we were parsing a var, remove it from the pdu and free it */ > ++ if (vp) > ++ snmp_free_var(vp); > ++ > ++ return -1; > + } > +=20 > + /* >=20 --=20 Erwin Lansing http://droso.dk erwin@FreeBSD.org http:// www.FreeBSD.org --sxhug0Teuf3tiWmo Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEVAwUBVchMS1F75hSlwe7HAQosigf/bsvzIwwyvnEGNDOE16GRswevM5/4N3/n Oh3fT8vM/yc7XY/JG2wCnyMYWfNE4zHLMkOeboDqPBq1QWTWX19xbIONv+/wTqF2 4Y8r4IqncUnpJXXZo/C3zTOKkktBk4gKA89wmhahVHKPZkhWWwiH3xrYf3JAQ+VB 83fPNCQuQNo4PKHzK2MWbZsa+fahPE8Y7moBpPjQnMhCUBiBscsSyS4g7/c28gAG LBFqQXDgtbyaqJp36QdfKE3COhChAuKG7LjUe4GpCfEkTdwPvpR5rGjm3+osQNCR UWVKjd8LbebiziCgRnnYkWGjRrl7d3WCEXAQIY+bAt8+IaqS7pLZkw== =ZAVm -----END PGP SIGNATURE----- --sxhug0Teuf3tiWmo-- From owner-svn-ports-all@freebsd.org Mon Aug 10 07:06:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57A8299E023; Mon, 10 Aug 2015 07:06:03 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48834A49; Mon, 10 Aug 2015 07:06:03 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A763qQ085958; Mon, 10 Aug 2015 07:06:03 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A7622j085953; Mon, 10 Aug 2015 07:06:02 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508100706.t7A7622j085953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 07:06:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393847 - in head/www/R-cran-httpuv: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 07:06:03 -0000 Author: tota Date: Mon Aug 10 07:06:01 2015 New Revision: 393847 URL: https://svnweb.freebsd.org/changeset/ports/393847 Log: - Update to 1.3.3 Deleted: head/www/R-cran-httpuv/files/ Modified: head/www/R-cran-httpuv/Makefile head/www/R-cran-httpuv/distinfo head/www/R-cran-httpuv/pkg-descr Modified: head/www/R-cran-httpuv/Makefile ============================================================================== --- head/www/R-cran-httpuv/Makefile Mon Aug 10 06:20:47 2015 (r393846) +++ head/www/R-cran-httpuv/Makefile Mon Aug 10 07:06:01 2015 (r393847) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= httpuv -PORTVERSION= 1.3.2 +PORTVERSION= 1.3.3 CATEGORIES= www DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/www/R-cran-httpuv/distinfo ============================================================================== --- head/www/R-cran-httpuv/distinfo Mon Aug 10 06:20:47 2015 (r393846) +++ head/www/R-cran-httpuv/distinfo Mon Aug 10 07:06:01 2015 (r393847) @@ -1,2 +1,2 @@ -SHA256 (httpuv_1.3.2.tar.gz) = db40979d422be9717486422dfd401515788048e32687f8685314c46ec35fe36e -SIZE (httpuv_1.3.2.tar.gz) = 426519 +SHA256 (httpuv_1.3.3.tar.gz) = bb37452ddc4d9381bee84cdf524582859af6a988e291debb71c8a2e120d02b2a +SIZE (httpuv_1.3.3.tar.gz) = 426665 Modified: head/www/R-cran-httpuv/pkg-descr ============================================================================== --- head/www/R-cran-httpuv/pkg-descr Mon Aug 10 06:20:47 2015 (r393846) +++ head/www/R-cran-httpuv/pkg-descr Mon Aug 10 07:06:01 2015 (r393847) @@ -5,4 +5,4 @@ it particularly easy to create complete httpuv alone. httpuv is built on top of the libuv and http-parser C libraries, both of which were developed by Joyent, Inc. -WWW: http://cran.r-project.org/web/packages/httpuv/ +WWW: https://cran.r-project.org/web/packages/httpuv/ From owner-svn-ports-all@freebsd.org Mon Aug 10 07:50:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A0EE99EAA5; Mon, 10 Aug 2015 07:50:07 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60B7ADFB; Mon, 10 Aug 2015 07:50:07 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A7o7Pb003659; Mon, 10 Aug 2015 07:50:07 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A7o6VE003655; Mon, 10 Aug 2015 07:50:06 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201508100750.t7A7o6VE003655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 10 Aug 2015 07:50:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393848 - in head/devel: . nuitka X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 07:50:07 -0000 Author: danfe Date: Mon Aug 10 07:50:05 2015 New Revision: 393848 URL: https://svnweb.freebsd.org/changeset/ports/393848 Log: Add a port of Nuitka, compatible and efficient Python compiler. Those of you who were fighting with cx_Freeze, PyInstaller, or py2exe to DTRT would likely find it as better alternative, superior in many ways. WWW: http://nuitka.net/ Added: head/devel/nuitka/ head/devel/nuitka/Makefile (contents, props changed) head/devel/nuitka/distinfo (contents, props changed) head/devel/nuitka/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 10 07:06:01 2015 (r393847) +++ head/devel/Makefile Mon Aug 10 07:50:05 2015 (r393848) @@ -1460,6 +1460,7 @@ SUBDIR += noweb SUBDIR += npth SUBDIR += nspr + SUBDIR += nuitka SUBDIR += nxt-python SUBDIR += obby SUBDIR += obfuscatejs Added: head/devel/nuitka/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nuitka/Makefile Mon Aug 10 07:50:05 2015 (r393848) @@ -0,0 +1,18 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= nuitka +PORTVERSION= 0.5.13.4 +CATEGORIES= devel python +MASTER_SITES= http://nuitka.net/releases/ +DISTNAME= Nuitka-${PORTVERSION} + +MAINTAINER= python@FreeBSD.org +COMMENT= Compatible and efficient Python compiler + +LICENSE= APACHE20 + +USES= python tar:bzip2 +USE_PYTHON= autoplist distutils + +.include Added: head/devel/nuitka/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nuitka/distinfo Mon Aug 10 07:50:05 2015 (r393848) @@ -0,0 +1,2 @@ +SHA256 (Nuitka-0.5.13.4.tar.bz2) = 972078cdc1366d7ce6a6988e8010c3b05d0b997556f9422803d592ffe6bc7d23 +SIZE (Nuitka-0.5.13.4.tar.bz2) = 1092329 Added: head/devel/nuitka/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nuitka/pkg-descr Mon Aug 10 07:50:05 2015 (r393848) @@ -0,0 +1,6 @@ +Nuitka is a Python compiler, a good replacement for the Python interpreter +and compiles every construct that CPython 2.6, 2.7, 3.2, 3.3 and 3.4 offer. +It translates Python code into a C++ program that then uses "libpython" to +execute in the same way as CPython does, in a very compatible way. + +WWW: http://nuitka.net/ From owner-svn-ports-all@freebsd.org Mon Aug 10 08:18:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D7EED9984DE; Mon, 10 Aug 2015 08:18:33 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C07F5E1C; Mon, 10 Aug 2015 08:18:33 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A8IXWL016739; Mon, 10 Aug 2015 08:18:33 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A8IX2R016738; Mon, 10 Aug 2015 08:18:33 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201508100818.t7A8IX2R016738@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Mon, 10 Aug 2015 08:18:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393849 - head/net/samba42 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 08:18:33 -0000 Author: timur Date: Mon Aug 10 08:18:32 2015 New Revision: 393849 URL: https://svnweb.freebsd.org/changeset/ports/393849 Log: Missed updated version requirements for the the supplimentary libs. Modified: head/net/samba42/Makefile Modified: head/net/samba42/Makefile ============================================================================== --- head/net/samba42/Makefile Mon Aug 10 07:50:05 2015 (r393848) +++ head/net/samba42/Makefile Mon Aug 10 08:18:32 2015 (r393849) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}42 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -95,12 +95,12 @@ BUILD_DEPENDS+= talloc>=2.1.2:${PORTSDI RUN_DEPENDS+= talloc>=2.1.2:${PORTSDIR}/devel/talloc SAMBA4_BUNDLED_LIBS+= !talloc # tevent -BUILD_DEPENDS+= tevent>=0.9.24:${PORTSDIR}/devel/tevent -RUN_DEPENDS+= tevent>=0.9.24:${PORTSDIR}/devel/tevent +BUILD_DEPENDS+= tevent>=0.9.25:${PORTSDIR}/devel/tevent +RUN_DEPENDS+= tevent>=0.9.25:${PORTSDIR}/devel/tevent SAMBA4_BUNDLED_LIBS+= !tevent # tdb -BUILD_DEPENDS+= tdb>=1.3.4:${PORTSDIR}/databases/tdb -RUN_DEPENDS+= tdb>=1.3.4:${PORTSDIR}/databases/tdb +BUILD_DEPENDS+= tdb>=1.3.6:${PORTSDIR}/databases/tdb +RUN_DEPENDS+= tdb>=1.3.6:${PORTSDIR}/databases/tdb SAMBA4_BUNDLED_LIBS+= !tdb # ntdb BUILD_DEPENDS+= ntdb>=1.0:${PORTSDIR}/databases/ntdb From owner-svn-ports-all@freebsd.org Mon Aug 10 09:57:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46E5E9983B8; Mon, 10 Aug 2015 09:57:30 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 33EF8E90; Mon, 10 Aug 2015 09:57:30 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7A9vUxg058210; Mon, 10 Aug 2015 09:57:30 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7A9vThg058208; Mon, 10 Aug 2015 09:57:29 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201508100957.t7A9vThg058208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Mon, 10 Aug 2015 09:57:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393850 - head/net/haproxy-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 09:57:30 -0000 Author: demon Date: Mon Aug 10 09:57:29 2015 New Revision: 393850 URL: https://svnweb.freebsd.org/changeset/ports/393850 Log: Update deviceatlas extension to verion 2.1. Submitted by: David Carlier Modified: head/net/haproxy-devel/Makefile head/net/haproxy-devel/distinfo Modified: head/net/haproxy-devel/Makefile ============================================================================== --- head/net/haproxy-devel/Makefile Mon Aug 10 08:18:32 2015 (r393849) +++ head/net/haproxy-devel/Makefile Mon Aug 10 09:57:29 2015 (r393850) @@ -18,8 +18,8 @@ USES= cpe gmake CONFLICTS= haproxy-[1234567890]\* USE_RC_SUBR= haproxy -DEVICEATLAS_VERSION= 0.9 -DEVICEATLAS_DISTFILE= deviceatlas_c_${DEVICEATLAS_VERSION} +DEVICEATLAS_VERSION= 2.1 +DEVICEATLAS_DISTFILE= deviceatlas-enterprise-c-${DEVICEATLAS_VERSION} DEVICEATLAS_REGISTRATION_URL= https://deviceatlas.com/deviceatlas-haproxy-module OPTIONS_DEFINE= DOCS EXAMPLES LUA OPENSSL DEVICEATLAS Modified: head/net/haproxy-devel/distinfo ============================================================================== --- head/net/haproxy-devel/distinfo Mon Aug 10 08:18:32 2015 (r393849) +++ head/net/haproxy-devel/distinfo Mon Aug 10 09:57:29 2015 (r393850) @@ -1,4 +1,4 @@ SHA256 (haproxy-1.6-dev3.tar.gz) = a97639365d8d6b06e343082be4e5c09c5ec38121b828d00c68503bb7b8bc2e15 SIZE (haproxy-1.6-dev3.tar.gz) = 1561554 -SHA256 (deviceatlas_c_0.9.zip) = d9c5b5e3720ec5f2c0766ee7e2df01cd20afa5099999f55c9d9aba9460b39e08 -SIZE (deviceatlas_c_0.9.zip) = 399043 +SHA256 (deviceatlas-enterprise-c-2.1.zip) = a02fc29486d245b1c8d946c663b71ba981e88fee8d037f5bc1bf255deb287974 +SIZE (deviceatlas-enterprise-c-2.1.zip) = 504286 From owner-svn-ports-all@freebsd.org Mon Aug 10 10:10:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F30F49986EB; Mon, 10 Aug 2015 10:10:28 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D71773EE; Mon, 10 Aug 2015 10:10:28 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AAASFY062499; Mon, 10 Aug 2015 10:10:28 GMT (envelope-from bar@FreeBSD.org) Received: (from bar@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AAASMM062496; Mon, 10 Aug 2015 10:10:28 GMT (envelope-from bar@FreeBSD.org) Message-Id: <201508101010.t7AAASMM062496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bar set sender to bar@FreeBSD.org using -f From: Barbara Guida Date: Mon, 10 Aug 2015 10:10:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393851 - head/www/xpi-adblock_plus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 10:10:29 -0000 Author: bar Date: Mon Aug 10 10:10:27 2015 New Revision: 393851 URL: https://svnweb.freebsd.org/changeset/ports/393851 Log: Update Adblock Plus to 2.6.9.10 Modified: head/www/xpi-adblock_plus/Makefile head/www/xpi-adblock_plus/distinfo head/www/xpi-adblock_plus/pkg-plist Modified: head/www/xpi-adblock_plus/Makefile ============================================================================== --- head/www/xpi-adblock_plus/Makefile Mon Aug 10 09:57:29 2015 (r393850) +++ head/www/xpi-adblock_plus/Makefile Mon Aug 10 10:10:27 2015 (r393851) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= adblock_plus -PORTVERSION= 2.6.9 +PORTVERSION= 2.6.10 DISTVERSIONSUFFIX= -an+sm+tb+fx CATEGORIES= www Modified: head/www/xpi-adblock_plus/distinfo ============================================================================== --- head/www/xpi-adblock_plus/distinfo Mon Aug 10 09:57:29 2015 (r393850) +++ head/www/xpi-adblock_plus/distinfo Mon Aug 10 10:10:27 2015 (r393851) @@ -1,2 +1,2 @@ -SHA256 (xpi/adblock_plus-2.6.9-an+sm+tb+fx.xpi) = b30b997decd8d185709be5ab0b7d3378255526e15925f053ace71f013ae0e27a -SIZE (xpi/adblock_plus-2.6.9-an+sm+tb+fx.xpi) = 970672 +SHA256 (xpi/adblock_plus-2.6.10-an+sm+tb+fx.xpi) = 3487c1da08f48f770fa8ce059bdb3f09e938cff5b4829c76c2fe391876d329d9 +SIZE (xpi/adblock_plus-2.6.10-an+sm+tb+fx.xpi) = 963213 Modified: head/www/xpi-adblock_plus/pkg-plist ============================================================================== --- head/www/xpi-adblock_plus/pkg-plist Mon Aug 10 09:57:29 2015 (r393850) +++ head/www/xpi-adblock_plus/pkg-plist Mon Aug 10 10:10:27 2015 (r393851) @@ -1,6 +1,7 @@ %%XPI_XPIDIR%%/bootstrap.js %%XPI_XPIDIR%%/chrome/content/errors.html %%XPI_XPIDIR%%/chrome/content/objtabs.css +%%XPI_XPIDIR%%/chrome/content/subscribeLinkHandler.js %%XPI_XPIDIR%%/chrome/content/ui/composer.js %%XPI_XPIDIR%%/chrome/content/ui/composer.xul %%XPI_XPIDIR%%/chrome/content/ui/ext/common.js @@ -480,6 +481,15 @@ %%XPI_XPIDIR%%/chrome/locale/zh-TW/sendReport.dtd %%XPI_XPIDIR%%/chrome/locale/zh-TW/sidebar.dtd %%XPI_XPIDIR%%/chrome/locale/zh-TW/subscriptionSelection.dtd +%%XPI_XPIDIR%%/chrome/skin/abp-16.png +%%XPI_XPIDIR%%/chrome/skin/abp-24.png +%%XPI_XPIDIR%%/chrome/skin/abp-32.png +%%XPI_XPIDIR%%/chrome/skin/abp-green-16.png +%%XPI_XPIDIR%%/chrome/skin/abp-green-16~.png +%%XPI_XPIDIR%%/chrome/skin/abp-green-24.png +%%XPI_XPIDIR%%/chrome/skin/abp-green-24~.png +%%XPI_XPIDIR%%/chrome/skin/abp-green-32.png +%%XPI_XPIDIR%%/chrome/skin/abp-green-32~.png %%XPI_XPIDIR%%/chrome/skin/abp-status-16.png %%XPI_XPIDIR%%/chrome/skin/abp-status-32.png %%XPI_XPIDIR%%/chrome/skin/abp-status.png @@ -493,8 +503,9 @@ %%XPI_XPIDIR%%/chrome/skin/sidebar.css %%XPI_XPIDIR%%/chrome/skin/slow.png %%XPI_XPIDIR%%/chrome/skin/subscriptionSelection.css +%%XPI_XPIDIR%%/chrome/skin/test.py %%XPI_XPIDIR%%/chrome.manifest -%%XPI_XPIDIR%%/defaults/prefs.js +%%XPI_XPIDIR%%/defaults/prefs.json %%XPI_XPIDIR%%/icon.png %%XPI_XPIDIR%%/icon64.png %%XPI_XPIDIR%%/install.rdf From owner-svn-ports-all@freebsd.org Mon Aug 10 10:29:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77233998BB9; Mon, 10 Aug 2015 10:29:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F2B7DF8; Mon, 10 Aug 2015 10:29:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AATbgl070593; Mon, 10 Aug 2015 10:29:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AATaYo070591; Mon, 10 Aug 2015 10:29:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101029.t7AATaYo070591@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 10:29:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393852 - head/www/vdradmin-am X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 10:29:37 -0000 Author: amdmi3 Date: Mon Aug 10 10:29:36 2015 New Revision: 393852 URL: https://svnweb.freebsd.org/changeset/ports/393852 Log: - Add NO_ARCH - Modernize plist Approved by: portmgr blanket Modified: head/www/vdradmin-am/Makefile head/www/vdradmin-am/pkg-plist Modified: head/www/vdradmin-am/Makefile ============================================================================== --- head/www/vdradmin-am/Makefile Mon Aug 10 10:10:27 2015 (r393851) +++ head/www/vdradmin-am/Makefile Mon Aug 10 10:29:36 2015 (r393852) @@ -32,6 +32,7 @@ USES= shebangfix tar:bzip2 SHEBANG_FILES= vdradmind vdradmind.pl WRKSRC= ${WRKDIR}/${PORTNAME:S/_/-/}-${DISTVERSION} NO_BUILD= yes +NO_ARCH= yes USE_RC_SUBR= vdradmind VIDEODIR= /video Modified: head/www/vdradmin-am/pkg-plist ============================================================================== --- head/www/vdradmin-am/pkg-plist Mon Aug 10 10:10:27 2015 (r393851) +++ head/www/vdradmin-am/pkg-plist Mon Aug 10 10:29:36 2015 (r393852) @@ -159,21 +159,7 @@ share/locale/fr/LC_MESSAGES/vdradmin.mo share/locale/it/LC_MESSAGES/vdradmin.mo share/locale/nl/LC_MESSAGES/vdradmin.mo share/locale/ru/LC_MESSAGES/vdradmin.mo -@dirrmtry(%%VDR_USER%%,%%VDR_GROUP%%,) %%ETCDIR%% -@dirrm share/vdradmin-am/lib/MIME -@dirrm share/vdradmin-am/lib/File -@dirrm share/vdradmin-am/lib/URI -@dirrm share/vdradmin-am/lib/Template/Plugin -@dirrm share/vdradmin-am/lib/Template/Namespace -@dirrm share/vdradmin-am/lib/Template/Stash -@dirrm share/vdradmin-am/lib/Template -@dirrm share/vdradmin-am/lib -@dirrm share/vdradmin-am/template/default/default -@dirrm share/vdradmin-am/template/default -@dirrm share/vdradmin-am/template -@dirrm share/vdradmin-am -%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrmtry(%%VDR_USER%%,%%VDR_GROUP%%,) /var/cache/vdradmin-am -@dirrmtry(%%VDR_USER%%,%%VDR_GROUP%%,) /var/log/vdradmin-am -@dirrmtry(%%VDR_USER%%,%%VDR_GROUP%%,) /var/run/vdradmin-am +@dir(%%VDR_USER%%,%%VDR_GROUP%%,) %%ETCDIR%% +@dir(%%VDR_USER%%,%%VDR_GROUP%%,) /var/cache/vdradmin-am +@dir(%%VDR_USER%%,%%VDR_GROUP%%,) /var/log/vdradmin-am +@dir(%%VDR_USER%%,%%VDR_GROUP%%,) /var/run/vdradmin-am From owner-svn-ports-all@freebsd.org Mon Aug 10 10:29:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D038D998BFE; Mon, 10 Aug 2015 10:29:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0B39FE5; Mon, 10 Aug 2015 10:29:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AAToVo070697; Mon, 10 Aug 2015 10:29:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AAToUX070695; Mon, 10 Aug 2015 10:29:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101029.t7AAToUX070695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 10:29:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393853 - head/mail/roundcube-automatic_addressbook X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 10:29:50 -0000 Author: amdmi3 Date: Mon Aug 10 10:29:49 2015 New Revision: 393853 URL: https://svnweb.freebsd.org/changeset/ports/393853 Log: - Drop @dirrm* from plist - Add NO_ARCH Approved by: portmgr blanket Modified: head/mail/roundcube-automatic_addressbook/Makefile head/mail/roundcube-automatic_addressbook/pkg-plist Modified: head/mail/roundcube-automatic_addressbook/Makefile ============================================================================== --- head/mail/roundcube-automatic_addressbook/Makefile Mon Aug 10 10:29:36 2015 (r393852) +++ head/mail/roundcube-automatic_addressbook/Makefile Mon Aug 10 10:29:49 2015 (r393853) @@ -13,6 +13,7 @@ LICENSE= GPLv3 RUN_DEPENDS= roundcube>=0.8:${PORTSDIR}/mail/roundcube NO_BUILD= yes +NO_ARCH= yes USE_GITHUB= yes GH_ACCOUNT= sblaisot Modified: head/mail/roundcube-automatic_addressbook/pkg-plist ============================================================================== --- head/mail/roundcube-automatic_addressbook/pkg-plist Mon Aug 10 10:29:36 2015 (r393852) +++ head/mail/roundcube-automatic_addressbook/pkg-plist Mon Aug 10 10:29:49 2015 (r393853) @@ -52,6 +52,3 @@ %%WWWDIR%%/localization/zh_CN.inc %%WWWDIR%%/localization/zh_TW.inc %%WWWDIR%%/package.xml -@dir %%WWWDIR%%/localization -@dir %%WWWDIR%%/SQL -@dir %%WWWDIR%%/config From owner-svn-ports-all@freebsd.org Mon Aug 10 10:34:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C40AB998E9F; Mon, 10 Aug 2015 10:34:55 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BE98888; Mon, 10 Aug 2015 10:34:55 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AAYttS074709; Mon, 10 Aug 2015 10:34:55 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AAYttr074708; Mon, 10 Aug 2015 10:34:55 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508101034.t7AAYttr074708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 10 Aug 2015 10:34:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393854 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 10:34:55 -0000 Author: junovitch Date: Mon Aug 10 10:34:54 2015 New Revision: 393854 URL: https://svnweb.freebsd.org/changeset/ports/393854 Log: Document PCRE heap overflow vulnerability in '(?|' situations PR: 202209 Security: ff0acfb4-3efa-11e5-93ad-002590263bf5 Approved by: feld (mentor) Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Aug 10 10:29:49 2015 (r393853) +++ head/security/vuxml/vuln.xml Mon Aug 10 10:34:54 2015 (r393854) @@ -58,6 +58,40 @@ Notes: --> + + pcre -- heap overflow vulnerability in '(?|' situations + + + pcre + 8.37_2 + + + + +

Venustech ADLAB reports:

+
+

PCRE library is prone to a vulnerability which leads to Heap + Overflow. During the compilation of a malformed regular expression, + more data is written on the malloced block than the expected size + output by compile_regex. Exploits with advanced Heap Fengshui + techniques may allow an attacker to execute arbitrary code in the + context of the user running the affected application.

+

Latest version of PCRE is prone to a Heap Overflow vulnerability + which could caused by the following regular expression.

+

/(?J:(?|(:(?|(?'R')(\k'R')|((?'R')))H'Rk'Rf)|s(?'R'))))/

+
+ +
+ + ports/202209 + https://bugs.exim.org/show_bug.cgi?id=1667 + + + 2015-08-05 + 2015-08-10 + +
+ mozilla -- multiple vulnerabilities From owner-svn-ports-all@freebsd.org Mon Aug 10 10:37:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16EDC998F74; Mon, 10 Aug 2015 10:37:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 075AEB9E; Mon, 10 Aug 2015 10:37:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AAbOL5075042; Mon, 10 Aug 2015 10:37:24 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AAbOfd075041; Mon, 10 Aug 2015 10:37:24 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101037.t7AAbOfd075041@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 10:37:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393855 - head/games/gnushogi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 10:37:25 -0000 Author: amdmi3 Date: Mon Aug 10 10:37:24 2015 New Revision: 393855 URL: https://svnweb.freebsd.org/changeset/ports/393855 Log: - Drop @dirrm* from plist Approved by: portmgr blanket Modified: head/games/gnushogi/pkg-plist Modified: head/games/gnushogi/pkg-plist ============================================================================== --- head/games/gnushogi/pkg-plist Mon Aug 10 10:34:54 2015 (r393854) +++ head/games/gnushogi/pkg-plist Mon Aug 10 10:37:24 2015 (r393855) @@ -6,5 +6,3 @@ man/man6/gnushogi.6.gz %%PORTDOCS%%%%DOCSDIR%%/tutorial1.gam %%PORTDOCS%%%%DOCSDIR%%/tutorial2.gam %%DATADIR%%/gnushogi.bbk -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-all@freebsd.org Mon Aug 10 10:51:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7716F99E390; Mon, 10 Aug 2015 10:51:32 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6088716E2; Mon, 10 Aug 2015 10:51:32 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AApW8g083055; Mon, 10 Aug 2015 10:51:32 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AApUIa083048; Mon, 10 Aug 2015 10:51:30 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201508101051.t7AApUIa083048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 10 Aug 2015 10:51:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393856 - in head/net-mgmt: . p5-Net-OpenVPN-Manage p5-Net-OpenVPN-Manage/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 10:51:32 -0000 Author: danfe Date: Mon Aug 10 10:51:30 2015 New Revision: 393856 URL: https://svnweb.freebsd.org/changeset/ports/393856 Log: Add Perl module for managing an OpenVPN process via its management port, with custom patch that introduces new method to return active connection status information as a hash to hashes. Submitted by: Zeus Panchenko Added: head/net-mgmt/p5-Net-OpenVPN-Manage/ head/net-mgmt/p5-Net-OpenVPN-Manage/Makefile (contents, props changed) head/net-mgmt/p5-Net-OpenVPN-Manage/distinfo (contents, props changed) head/net-mgmt/p5-Net-OpenVPN-Manage/files/ head/net-mgmt/p5-Net-OpenVPN-Manage/files/patch-lib_Net_OpenVPN_Manage.pm (contents, props changed) head/net-mgmt/p5-Net-OpenVPN-Manage/pkg-descr (contents, props changed) head/net-mgmt/p5-Net-OpenVPN-Manage/pkg-plist (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Mon Aug 10 10:37:24 2015 (r393855) +++ head/net-mgmt/Makefile Mon Aug 10 10:51:30 2015 (r393856) @@ -217,6 +217,7 @@ SUBDIR += p5-Net-IPv6Addr SUBDIR += p5-Net-NSCA-Client SUBDIR += p5-Net-Netmask + SUBDIR += p5-Net-OpenVPN-Manage SUBDIR += p5-Net-SNMP SUBDIR += p5-Net-SNMP-Util SUBDIR += p5-Net-SNMPTrapd Added: head/net-mgmt/p5-Net-OpenVPN-Manage/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/p5-Net-OpenVPN-Manage/Makefile Mon Aug 10 10:51:30 2015 (r393856) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= Net-OpenVPN-Manage +PORTVERSION= 0.02 +CATEGORIES= net-mgmt perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= Manage an OpenVPN process via its management port + +LICENSE= ART10 GPLv2 +LICENSE_COMB= dual + +RUN_DEPENDS= p5-Net-Telnet>=0:${PORTSDIR}/net/p5-Net-Telnet + +USES= perl5 +USE_PERL5= configure + +.include Added: head/net-mgmt/p5-Net-OpenVPN-Manage/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/p5-Net-OpenVPN-Manage/distinfo Mon Aug 10 10:51:30 2015 (r393856) @@ -0,0 +1,2 @@ +SHA256 (Net-OpenVPN-Manage-0.02.tar.gz) = b7fd691c24e4fbc78c2af992550abc96bf0db48d6f9e1406f0ebcb22ba0eeb57 +SIZE (Net-OpenVPN-Manage-0.02.tar.gz) = 12066 Added: head/net-mgmt/p5-Net-OpenVPN-Manage/files/patch-lib_Net_OpenVPN_Manage.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/p5-Net-OpenVPN-Manage/files/patch-lib_Net_OpenVPN_Manage.pm Mon Aug 10 10:51:30 2015 (r393856) @@ -0,0 +1,104 @@ +--- lib/Net/OpenVPN/Manage.pm.orig 2006-07-10 18:21:19 UTC ++++ lib/Net/OpenVPN/Manage.pm +@@ -1,3 +1,5 @@ ++# -*- mode: cperl; mode: follow; -*- ++ + package Net::OpenVPN::Manage; + + use strict; +@@ -217,6 +219,84 @@ sub status_ref() { + return $ref; + } + ++# $hash_ref = $vpn->status_hash(); ++sub status_hash() { ++ my $ref; ++ my $self = shift; ++ my $arg = 2; ++ my $telnet = $self->{objects}{_telnet_}; ++ my @output = $telnet->cmd(String => 'status '.$arg, Prompt => '/(SUCCESS:.*\n|ERROR:.*\n|END.*\n)/'); ++ unless ($telnet->last_prompt =~ /(SUCCESS:.*|END.*\n)/){ ++ $self->{error_msg} = $telnet->last_prompt(); ++ return 0; ++ } ++ unless ($telnet->last_prompt =~ /END.*\n/){ ++ return $telnet->last_prompt(); ++ } ++ my ( $i, @arr ); ++ foreach my $ln ( @output ){ ++ chomp $ln; ++ if (( $ln eq '' ) || ( $ln =~ /^\s*$/ )){ ++ next; ++ } elsif ( $ln =~ s/^(CLIENT_LIST),// ) { ++ @arr = split ',', $ln; ++ chomp @arr; ++ $ref->{$1}->{$arr[0]} = { ++ ip_real => $arr[1], ++ ip_virt => $arr[2], ++ b_recv => $arr[3], ++ b_sent => $arr[4], ++ ts => $arr[5], ++ ts_s => $arr[6], ++ name => $arr[7], ++ }; ++ undef @arr; ++ } elsif ( $ln =~ s/^(ROUTING_TABLE),// ) { ++ @arr = split ',', $ln; ++ chomp @arr; ++ $ref->{$1}->{$arr[1]} = { ++ ip_virt => $arr[0], ++ ip_real => $arr[2], ++ ts => $arr[3], ++ ts_s => $arr[4], ++ }; ++ undef @arr; ++ } elsif ( $ln =~ /^HEADER,ROUTING_TABLE/ ) { ++ @arr = split ',', $ln; ++ chomp @arr; ++ $ref->{HEADER}->{$arr[1]} = { ++ ip_virt => 'Virtual Address', ++ cn => 'Common Name', ++ ip_real => 'Real Address', ++ ts => 'Last Ref', ++ ts_s => 'Last Ref (time_t)', ++ }; ++ undef @arr; ++ } elsif ( $ln =~ /^HEADER,CLIENT_LIST/ ) { ++ @arr = split ',', $ln; ++ chomp @arr; ++ $ref->{HEADER}->{$arr[1]} = { ++ cn => 'Common Name', ++ ip_real => 'Real Address', ++ ip_virt => 'Virtual Address', ++ b_recv => 'Bytes Received', ++ b_sent => 'Bytes Sent', ++ ts => 'Connected Since', ++ ts_s => 'Connected Since (time_t)', ++ name => 'Username', ++ }; ++ undef @arr; ++ } elsif ( $ln =~ s/^(TITLE),// ){ ++ $ref->{$1}=$ln; ++ } elsif ( $ln =~ s/^(TIME),// ){ ++ $ref->{$1}=$ln; ++ } elsif ( $ln =~ s/^(GLOBAL_STATS),// ){ ++ $ref->{$1}=$ln; ++ } ++ } ++ return $ref; ++} ++ + # Not implemented + sub test { + my $self = shift; +@@ -478,6 +558,10 @@ If called without an argument, it will r + # Print the connection status page using the version 2 format. + print $vpn->status(2); + ++=item $vpn->status_hash( ); ++ ++Returns the active connections status information as a hash to hashes. ++ + =item $vpn->status_ref( ); + + Returns the active connections status information as a reference to a hash of arrays. Added: head/net-mgmt/p5-Net-OpenVPN-Manage/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/p5-Net-OpenVPN-Manage/pkg-descr Mon Aug 10 10:51:30 2015 (r393856) @@ -0,0 +1,4 @@ +This module connects to the OpenVPN management interface, executes commands +on the interface, and returns the results or errors that result. + +WWW: http://search.cpan.org/dist/Net-OpenVPN-Manage/ Added: head/net-mgmt/p5-Net-OpenVPN-Manage/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/p5-Net-OpenVPN-Manage/pkg-plist Mon Aug 10 10:51:30 2015 (r393856) @@ -0,0 +1,3 @@ +%%PERL5_MAN3%%/Net::OpenVPN::Manage.3.gz +%%SITE_PERL%%/Net/OpenVPN/Manage.html +%%SITE_PERL%%/Net/OpenVPN/Manage.pm From owner-svn-ports-all@freebsd.org Mon Aug 10 11:39:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B2A299EE42; Mon, 10 Aug 2015 11:39:28 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B29629A; Mon, 10 Aug 2015 11:39:28 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ABdSeD099678; Mon, 10 Aug 2015 11:39:28 GMT (envelope-from ashish@FreeBSD.org) Received: (from ashish@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ABdRNi099675; Mon, 10 Aug 2015 11:39:27 GMT (envelope-from ashish@FreeBSD.org) Message-Id: <201508101139.t7ABdRNi099675@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ashish set sender to ashish@FreeBSD.org using -f From: Ashish SHUKLA Date: Mon, 10 Aug 2015 11:39:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393857 - head/editors/emacs-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 11:39:28 -0000 Author: ashish Date: Mon Aug 10 11:39:26 2015 New Revision: 393857 URL: https://svnweb.freebsd.org/changeset/ports/393857 Log: - Update to git snapshot a9bb9d8f - Add OPTION for building with Cairo graphics library support Modified: head/editors/emacs-devel/Makefile head/editors/emacs-devel/distinfo head/editors/emacs-devel/pkg-plist Modified: head/editors/emacs-devel/Makefile ============================================================================== --- head/editors/emacs-devel/Makefile Mon Aug 10 10:51:30 2015 (r393856) +++ head/editors/emacs-devel/Makefile Mon Aug 10 11:39:26 2015 (r393857) @@ -24,8 +24,8 @@ CONFLICTS= emacs-19.* emacs21-[0-9]* ema emacs-nox11-[0-9]* EMACS_VER= 25.0.50 -EMACS_REV= 20150427 -GIT_REV= def0df01 +EMACS_REV= 20150810 +GIT_REV= a9bb9d8f GNU_CONFIGURE= yes USES= cpe gmake makeinfo ncurses pkgconfig shebangfix tar:xz CPPFLAGS+= -I${LOCALBASE}/include @@ -57,7 +57,7 @@ INFO= ada-mode auth autotype bovine cal srecode todo-mode tramp url vhdl-mode vip viper widget wisent woman OPTIONS_DEFINE= X11 ACL DBUS GCONF GIF JPEG M17N OTF PNG SOUND SOURCES SVG TIFF SCROLLBARS \ - XFT XIM XML XPM MAGICK GNUTLS GSETTINGS LTO FILENOTIFY LLDB + XFT XIM XML XPM MAGICK GNUTLS GSETTINGS LTO FILENOTIFY LLDB CAIRO OPTIONS_SINGLE= X11 SOUND @@ -170,6 +170,9 @@ FILENOTIFY_CONFIGURE_ON= --with-file-not FILENOTIFY_CONFIGURE_OFF= --without-file-notification FILENOTIFY_USE= GNOME=glib20 +CAIRO_USE= GNOME=cairo +CAIRO_CONFIGURE_ON= --with-cairo + .include # clang is broken on i386 platform in -O2, due to use of alloca, and stack realignment Modified: head/editors/emacs-devel/distinfo ============================================================================== --- head/editors/emacs-devel/distinfo Mon Aug 10 10:51:30 2015 (r393856) +++ head/editors/emacs-devel/distinfo Mon Aug 10 11:39:26 2015 (r393857) @@ -1,2 +1,2 @@ -SHA256 (emacs-25.0.50.20150427.def0df01.tar.xz) = 7722b76e7e456c15e5809ef84bcbfc9a895502615dd23a64e0a25bd036979626 -SIZE (emacs-25.0.50.20150427.def0df01.tar.xz) = 24842424 +SHA256 (emacs-25.0.50.20150810.a9bb9d8f.tar.xz) = 8229a8c0da55855d191997cee9fe64ac983b93a91b05dd5a005563ee865c76e6 +SIZE (emacs-25.0.50.20150810.a9bb9d8f.tar.xz) = 26833624 Modified: head/editors/emacs-devel/pkg-plist ============================================================================== --- head/editors/emacs-devel/pkg-plist Mon Aug 10 10:51:30 2015 (r393856) +++ head/editors/emacs-devel/pkg-plist Mon Aug 10 11:39:26 2015 (r393857) @@ -2140,7 +2140,6 @@ share/appdata/emacs.appdata.xml %%DATADIR%%/%%EMACS_VER%%/lisp/shadowfile.el %%DATADIR%%/%%EMACS_VER%%/lisp/ps-print.el %%DATADIR%%/%%EMACS_VER%%/lisp/play/hanoi.el -%%DATADIR%%/%%EMACS_VER%%/lisp/play/landmark.el %%DATADIR%%/%%EMACS_VER%%/lisp/play/zone.elc %%DATADIR%%/%%EMACS_VER%%/lisp/play/pong.elc %%DATADIR%%/%%EMACS_VER%%/lisp/play/cookie1.elc @@ -2169,7 +2168,6 @@ share/appdata/emacs.appdata.xml %%DATADIR%%/%%EMACS_VER%%/lisp/play/blackbox.el %%DATADIR%%/%%EMACS_VER%%/lisp/play/dunnet.elc %%DATADIR%%/%%EMACS_VER%%/lisp/play/decipher.elc -%%DATADIR%%/%%EMACS_VER%%/lisp/play/landmark.elc %%DATADIR%%/%%EMACS_VER%%/lisp/play/handwrite.elc %%DATADIR%%/%%EMACS_VER%%/lisp/play/zone.el %%DATADIR%%/%%EMACS_VER%%/lisp/play/fortune.elc @@ -2709,6 +2707,8 @@ share/appdata/emacs.appdata.xml %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/cc-defs.el %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/etags.elc %%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/ebnf-bnf.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/project.el +%%DATADIR%%/%%EMACS_VER%%/lisp/progmodes/project.elc %%DATADIR%%/%%EMACS_VER%%/lisp/find-cmd.elc %%DATADIR%%/%%EMACS_VER%%/lisp/dired.elc %%DATADIR%%/%%EMACS_VER%%/lisp/tar-mode.elc @@ -3270,6 +3270,8 @@ share/appdata/emacs.appdata.xml %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/rcompile.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/lmenu.elc %%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/ws-mode.el +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/landmark.el +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/landmark.elc %%DATADIR%%/%%EMACS_VER%%/lisp/isearchb.elc %%DATADIR%%/%%EMACS_VER%%/lisp/edmacro.el %%DATADIR%%/%%EMACS_VER%%/lisp/outline.el @@ -3793,6 +3795,8 @@ share/appdata/emacs.appdata.xml %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/seq.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/generator.el %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/generator.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/map.el +%%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/map.elc %%DATADIR%%/%%EMACS_VER%%/lisp/informat.el %%DATADIR%%/%%EMACS_VER%%/lisp/wdired.elc %%DATADIR%%/%%EMACS_VER%%/lisp/imenu.el @@ -3826,8 +3830,19 @@ share/appdata/emacs.appdata.xml %%DATADIR%%/%%EMACS_VER%%/lisp/epa-dired.elc %%DATADIR%%/%%EMACS_VER%%/lisp/autoinsert.el %%DATADIR%%/%%EMACS_VER%%/lisp/files.el -%%DATADIR%%/%%EMACS_VER%%/lisp/let-alist.el -%%DATADIR%%/%%EMACS_VER%%/lisp/let-alist.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/character-fold.el +%%DATADIR%%/%%EMACS_VER%%/lisp/character-fold.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/let-alist.el +%%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/let-alist.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/international/charscript.el +%%DATADIR%%/%%EMACS_VER%%/lisp/international/charscript.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/international/cp51932.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/international/eucjp-ms.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/net/pinentry.el +%%DATADIR%%/%%EMACS_VER%%/lisp/net/pinentry.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/bruce.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/keyswap.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/obsolete/patcomp.elc %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/site-lisp/site-start.el %%DATADIR%%/%%EMACS_VER%%/site-lisp/subdirs.el %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/macuvs.h @@ -4019,6 +4034,7 @@ share/appdata/emacs.appdata.xml %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/msdos.c %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/keymap.h %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/category.h +%%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/ftcrfont.c %%DATADIR%%/site-lisp/subdirs.el share/icons/hicolor/128x128/apps/emacs.png share/icons/hicolor/16x16/apps/emacs.png From owner-svn-ports-all@freebsd.org Mon Aug 10 12:03:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38ECB99E884; Mon, 10 Aug 2015 12:03:28 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D6E4335; Mon, 10 Aug 2015 12:03:28 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AC3RbL011791; Mon, 10 Aug 2015 12:03:27 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AC3RHL011787; Mon, 10 Aug 2015 12:03:27 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201508101203.t7AC3RHL011787@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Mon, 10 Aug 2015 12:03:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393858 - in head/www: nginx nginx-devel nginx-devel/files nginx/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 12:03:28 -0000 Author: osa Date: Mon Aug 10 12:03:26 2015 New Revision: 393858 URL: https://svnweb.freebsd.org/changeset/ports/393858 Log: Use luajit instead of lua for third-party modsecurity module, sort list of dependences for it. PR: 200263 Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure head/www/nginx/Makefile head/www/nginx/files/extra-patch-nginx-modsecurity-configure Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Mon Aug 10 11:39:26 2015 (r393857) +++ head/www/nginx-devel/Makefile Mon Aug 10 12:03:26 2015 (r393858) @@ -657,9 +657,10 @@ CONFIGURE_ARGS+=--add-module=${WRKSRC_me .if ${PORT_OPTIONS:MMODSECURITY} NGINX_MODSECURITY_VERSION= 2.9.0 -LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre \ - libapr-1.so:${PORTSDIR}/devel/apr1 \ +LIB_DEPENDS+= libapr-1.so:${PORTSDIR}/devel/apr1 \ libcurl.so:${PORTSDIR}/ftp/curl \ + libluajit-5.1.so:${PORTSDIR}/lang/luajit \ + libpcre.so:${PORTSDIR}/devel/pcre \ libyajl.so:${PORTSDIR}/devel/yajl USE_APACHE= 22+ USE_GNOME+= libxml2 Modified: head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure ============================================================================== --- head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure Mon Aug 10 11:39:26 2015 (r393857) +++ head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure Mon Aug 10 12:03:26 2015 (r393858) @@ -1,20 +1,25 @@ ---- ../modsecurity-2.9.0/configure.orig 2014-04-15 16:44:15.000000000 +0400 -+++ ../modsecurity-2.9.0/configure 2014-08-10 21:24:00.000000000 +0400 -@@ -14664,7 +14664,7 @@ +--- ../modsecurity-2.9.0/configure.orig 2015-02-12 22:08:46.000000000 +0300 ++++ ../modsecurity-2.9.0/configure 2015-08-10 02:53:29.046156000 +0300 +@@ -14949,7 +14949,7 @@ + LUA_LDADD="" + LUA_LDFLAGS="" + LUA_CONFIG=${PKG_CONFIG} +-LUA_PKGNAMES="lua5.1 lua-5.1 lua_5.1 lua-51 lua_51 lua51 lua5 lua" ++LUA_PKGNAMES="luajit" + LUA_SONAMES="so la sl dll dylib a" + + +@@ -14965,7 +14965,7 @@ no) : test_paths= ;; #( yes) : - test_paths="/usr/local/liblua /usr/local/lua /usr/local /opt/liblua /opt/lua /opt /usr" ;; #( -+ test_paths="%%PREFIX%%/liblua %%PREFIX%%/lua %%PREFIX%% /opt/liblua /opt/lua /opt /usr" ;; #( ++ test_paths="%%PREFIX%%/include/luajit-2.0" ;; #( *) : test_paths="${with_lua}" ;; esac -@@ -14715,10 +14715,10 @@ - LUA_CFLAGS="`${LUA_CONFIG} ${LUA_PKGNAME} --cflags`" - if test "$verbose_output" -eq 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: lua CFLAGS: $LUA_CFLAGS" >&5 - $as_echo "$as_me: lua CFLAGS: $LUA_CFLAGS" >&6;}; fi -- LUA_LDADD="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-l`" -+ LUA_LDADD="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-l | sed 's/lua/lua-5.1/'`" +@@ -15019,7 +15019,7 @@ + LUA_LDADD="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-l`" if test "$verbose_output" -eq 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: lua LDADD: $LUA_LDADD" >&5 $as_echo "$as_me: lua LDADD: $LUA_LDADD" >&6;}; fi - LUA_LDFLAGS="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-L --libs-only-other`" Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Mon Aug 10 11:39:26 2015 (r393857) +++ head/www/nginx/Makefile Mon Aug 10 12:03:26 2015 (r393858) @@ -643,9 +643,10 @@ CONFIGURE_ARGS+=--add-module=${WRKSRC_me .if ${PORT_OPTIONS:MMODSECURITY} NGINX_MODSECURITY_VERSION= 2.9.0 -LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre \ - libapr-1.so:${PORTSDIR}/devel/apr1 \ +LIB_DEPENDS+= libapr-1.so:${PORTSDIR}/devel/apr1 \ libcurl.so:${PORTSDIR}/ftp/curl \ + libluajit-5.1.so:${PORTSDIR}/lang/luajit \ + libpcre.so:${PORTSDIR}/devel/pcre \ libyajl.so:${PORTSDIR}/devel/yajl USE_APACHE= 22+ USE_GNOME+= libxml2 Modified: head/www/nginx/files/extra-patch-nginx-modsecurity-configure ============================================================================== --- head/www/nginx/files/extra-patch-nginx-modsecurity-configure Mon Aug 10 11:39:26 2015 (r393857) +++ head/www/nginx/files/extra-patch-nginx-modsecurity-configure Mon Aug 10 12:03:26 2015 (r393858) @@ -1,20 +1,25 @@ ---- ../modsecurity-2.9.0/configure.orig 2014-04-15 16:44:15.000000000 +0400 -+++ ../modsecurity-2.9.0/configure 2014-08-10 21:24:00.000000000 +0400 -@@ -14664,7 +14664,7 @@ +--- ../modsecurity-2.9.0/configure.orig 2015-02-12 22:08:46.000000000 +0300 ++++ ../modsecurity-2.9.0/configure 2015-08-10 02:53:29.046156000 +0300 +@@ -14949,7 +14949,7 @@ + LUA_LDADD="" + LUA_LDFLAGS="" + LUA_CONFIG=${PKG_CONFIG} +-LUA_PKGNAMES="lua5.1 lua-5.1 lua_5.1 lua-51 lua_51 lua51 lua5 lua" ++LUA_PKGNAMES="luajit" + LUA_SONAMES="so la sl dll dylib a" + + +@@ -14965,7 +14965,7 @@ no) : test_paths= ;; #( yes) : - test_paths="/usr/local/liblua /usr/local/lua /usr/local /opt/liblua /opt/lua /opt /usr" ;; #( -+ test_paths="%%PREFIX%%/liblua %%PREFIX%%/lua %%PREFIX%% /opt/liblua /opt/lua /opt /usr" ;; #( ++ test_paths="%%PREFIX%%/include/luajit-2.0" ;; #( *) : test_paths="${with_lua}" ;; esac -@@ -14715,10 +14715,10 @@ - LUA_CFLAGS="`${LUA_CONFIG} ${LUA_PKGNAME} --cflags`" - if test "$verbose_output" -eq 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: lua CFLAGS: $LUA_CFLAGS" >&5 - $as_echo "$as_me: lua CFLAGS: $LUA_CFLAGS" >&6;}; fi -- LUA_LDADD="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-l`" -+ LUA_LDADD="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-l | sed 's/lua/lua-5.1/'`" +@@ -15019,7 +15019,7 @@ + LUA_LDADD="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-l`" if test "$verbose_output" -eq 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: lua LDADD: $LUA_LDADD" >&5 $as_echo "$as_me: lua LDADD: $LUA_LDADD" >&6;}; fi - LUA_LDFLAGS="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-L --libs-only-other`" From owner-svn-ports-all@freebsd.org Mon Aug 10 12:23:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8419199ED45; Mon, 10 Aug 2015 12:23:18 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B2FBFB4; Mon, 10 Aug 2015 12:23:18 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ACNImh020170; Mon, 10 Aug 2015 12:23:18 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ACNHCw020166; Mon, 10 Aug 2015 12:23:17 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508101223.t7ACNHCw020166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 12:23:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393859 - in head/devel: . R-cran-registry X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 12:23:18 -0000 Author: tota Date: Mon Aug 10 12:23:16 2015 New Revision: 393859 URL: https://svnweb.freebsd.org/changeset/ports/393859 Log: - Add new port: devel/R-cran-registry Provides a generic infrastructure for creating and using registries. WWW: https://cran.r-project.org/web/packages/registry/ Added: head/devel/R-cran-registry/ head/devel/R-cran-registry/Makefile (contents, props changed) head/devel/R-cran-registry/distinfo (contents, props changed) head/devel/R-cran-registry/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 10 12:03:26 2015 (r393858) +++ head/devel/Makefile Mon Aug 10 12:23:16 2015 (r393859) @@ -34,6 +34,7 @@ SUBDIR += R-cran-plyr SUBDIR += R-cran-proto SUBDIR += R-cran-randomForest + SUBDIR += R-cran-registry SUBDIR += R-cran-reshape SUBDIR += R-cran-reshape2 SUBDIR += SpecTcl Added: head/devel/R-cran-registry/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-registry/Makefile Mon Aug 10 12:23:16 2015 (r393859) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= registry +PORTVERSION= 0.3 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Registry infrastructure + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-registry/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-registry/distinfo Mon Aug 10 12:23:16 2015 (r393859) @@ -0,0 +1,2 @@ +SHA256 (registry_0.3.tar.gz) = 58a5c43b8012ca5e509fa29a8daf6f24f097b8eb021a723f6a9c33db1dd3f430 +SIZE (registry_0.3.tar.gz) = 177554 Added: head/devel/R-cran-registry/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-registry/pkg-descr Mon Aug 10 12:23:16 2015 (r393859) @@ -0,0 +1,3 @@ +Provides a generic infrastructure for creating and using registries. + +WWW: https://cran.r-project.org/web/packages/registry/ From owner-svn-ports-all@freebsd.org Mon Aug 10 12:30:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14ABD99EFD6; Mon, 10 Aug 2015 12:30:58 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02AAF6D8; Mon, 10 Aug 2015 12:30:58 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ACUvjQ021285; Mon, 10 Aug 2015 12:30:57 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ACUvVp021284; Mon, 10 Aug 2015 12:30:57 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201508101230.t7ACUvVp021284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 10 Aug 2015 12:30:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393860 - head/devel/simple_components X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 12:30:58 -0000 Author: marino Date: Mon Aug 10 12:30:57 2015 New Revision: 393860 URL: https://svnweb.freebsd.org/changeset/ports/393860 Log: devel/simple_components: Complement license definition GMGPL is always coupled with GPLv2. Modified: head/devel/simple_components/Makefile Modified: head/devel/simple_components/Makefile ============================================================================== --- head/devel/simple_components/Makefile Mon Aug 10 12:23:16 2015 (r393859) +++ head/devel/simple_components/Makefile Mon Aug 10 12:30:57 2015 (r393860) @@ -10,7 +10,8 @@ DISTNAME= components_4_8 MAINTAINER= rodakay@internode.on.net COMMENT= Simple Ada Components -LICENSE= GMGPL +LICENSE= GPLv2 GMGPL +LICENSE_COMB= multi BUILD_DEPENDS= gprbuild:${PORTSDIR}/devel/gprbuild From owner-svn-ports-all@freebsd.org Mon Aug 10 12:36:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC26A99D0FF; Mon, 10 Aug 2015 12:36:55 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DAB2493A; Mon, 10 Aug 2015 12:36:55 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ACatq4024604; Mon, 10 Aug 2015 12:36:55 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ACasBU024598; Mon, 10 Aug 2015 12:36:54 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508101236.t7ACasBU024598@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 12:36:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393861 - in head/devel: . R-cran-pkgmaker X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 12:36:56 -0000 Author: tota Date: Mon Aug 10 12:36:54 2015 New Revision: 393861 URL: https://svnweb.freebsd.org/changeset/ports/393861 Log: - Add new port: devel/R-cran-pkgmaker This package provides some low-level utilities to use for package development. It currently provides managers for multiple package specific options and registries, vignette, unit test and bibtex related utilities. It serves as a base package for packages like NMF, RcppOctave, doRNG, and as an incubator package for other general purposes utilities, that will eventually be packaged separately. It is still under heavy development and changes in the interface(s) are more than likely to happen. WWW: https://cran.r-project.org/web/packages/pkgmaker/ Added: head/devel/R-cran-pkgmaker/ head/devel/R-cran-pkgmaker/Makefile (contents, props changed) head/devel/R-cran-pkgmaker/distinfo (contents, props changed) head/devel/R-cran-pkgmaker/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 10 12:30:57 2015 (r393860) +++ head/devel/Makefile Mon Aug 10 12:36:54 2015 (r393861) @@ -31,6 +31,7 @@ SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark + SUBDIR += R-cran-pkgmaker SUBDIR += R-cran-plyr SUBDIR += R-cran-proto SUBDIR += R-cran-randomForest Added: head/devel/R-cran-pkgmaker/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-pkgmaker/Makefile Mon Aug 10 12:36:54 2015 (r393861) @@ -0,0 +1,22 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= pkgmaker +PORTVERSION= 0.22 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Package development utilities + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +RUN_DEPENDS= R-cran-registry>0:${PORTSDIR}/devel/R-cran-registry \ + R-cran-digest>0:${PORTSDIR}/security/R-cran-digest \ + R-cran-stringr>0:${PORTSDIR}/textproc/R-cran-stringr \ + R-cran-xtable>0:${PORTSDIR}/textproc/R-cran-xtable + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-pkgmaker/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-pkgmaker/distinfo Mon Aug 10 12:36:54 2015 (r393861) @@ -0,0 +1,2 @@ +SHA256 (pkgmaker_0.22.tar.gz) = 19ad78c16bd5757333e7abbd5eebcec081deb494c9a4b6eec6919a3747b3386f +SIZE (pkgmaker_0.22.tar.gz) = 351479 Added: head/devel/R-cran-pkgmaker/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-pkgmaker/pkg-descr Mon Aug 10 12:36:54 2015 (r393861) @@ -0,0 +1,10 @@ +This package provides some low-level utilities to use for package +development. It currently provides managers for multiple package +specific options and registries, vignette, unit test and bibtex +related utilities. It serves as a base package for packages like +NMF, RcppOctave, doRNG, and as an incubator package for other general +purposes utilities, that will eventually be packaged separately. +It is still under heavy development and changes in the interface(s) +are more than likely to happen. + +WWW: https://cran.r-project.org/web/packages/pkgmaker/ From owner-svn-ports-all@freebsd.org Mon Aug 10 13:08:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AFED999D824; Mon, 10 Aug 2015 13:08:24 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A6959A0; Mon, 10 Aug 2015 13:08:24 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AD8Oux036949; Mon, 10 Aug 2015 13:08:24 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AD8Ool036946; Mon, 10 Aug 2015 13:08:24 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201508101308.t7AD8Ool036946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Mon, 10 Aug 2015 13:08:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393862 - in branches/2015Q3/net-mgmt/net-snmp: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 13:08:24 -0000 Author: zi Date: Mon Aug 10 13:08:23 2015 New Revision: 393862 URL: https://svnweb.freebsd.org/changeset/ports/393862 Log: MFH: r393838 - Fix CVE-2015-5621 - Bump PORTREVISION PR: 202099 Submitted by: serg@tmn.ru Approved by: ports-secteam (zi) Added: branches/2015Q3/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c - copied unchanged from r393838, head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c Modified: branches/2015Q3/net-mgmt/net-snmp/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/net-mgmt/net-snmp/Makefile ============================================================================== --- branches/2015Q3/net-mgmt/net-snmp/Makefile Mon Aug 10 12:36:54 2015 (r393861) +++ branches/2015Q3/net-mgmt/net-snmp/Makefile Mon Aug 10 13:08:23 2015 (r393862) @@ -3,7 +3,7 @@ PORTNAME= snmp PORTVERSION= 5.7.3 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-mgmt ipv6 MASTER_SITES= SF/net-${PORTNAME}/net-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= net- Copied: branches/2015Q3/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c (from r393838, head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c Mon Aug 10 13:08:23 2015 (r393862, copy of r393838, head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c) @@ -0,0 +1,117 @@ +--- snmplib/snmp_api.c.orig 2014-12-08 20:23:22 UTC ++++ snmplib/snmp_api.c +@@ -4350,10 +4350,9 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + u_char type; + u_char msg_type; + u_char *var_val; +- int badtype = 0; + size_t len; + size_t four; +- netsnmp_variable_list *vp = NULL; ++ netsnmp_variable_list *vp = NULL, *vplast = NULL; + oid objid[MAX_OID_LEN]; + u_char *p; + +@@ -4493,38 +4492,24 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + (ASN_SEQUENCE | ASN_CONSTRUCTOR), + "varbinds"); + if (data == NULL) +- return -1; ++ goto fail; + + /* + * get each varBind sequence + */ + while ((int) *length > 0) { +- netsnmp_variable_list *vptemp; +- vptemp = (netsnmp_variable_list *) malloc(sizeof(*vptemp)); +- if (NULL == vptemp) { +- return -1; +- } +- if (NULL == vp) { +- pdu->variables = vptemp; +- } else { +- vp->next_variable = vptemp; +- } +- vp = vptemp; ++ vp = SNMP_MALLOC_TYPEDEF(netsnmp_variable_list); ++ if (NULL == vp) ++ goto fail; + +- vp->next_variable = NULL; +- vp->val.string = NULL; + vp->name_length = MAX_OID_LEN; +- vp->name = NULL; +- vp->index = 0; +- vp->data = NULL; +- vp->dataFreeHook = NULL; + DEBUGDUMPSECTION("recv", "VarBind"); + data = snmp_parse_var_op(data, objid, &vp->name_length, &vp->type, + &vp->val_len, &var_val, length); + if (data == NULL) +- return -1; ++ goto fail; + if (snmp_set_var_objid(vp, objid, vp->name_length)) +- return -1; ++ goto fail; + + len = MAX_PACKET_LENGTH; + DEBUGDUMPHEADER("recv", "Value"); +@@ -4604,7 +4589,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + vp->val.string = (u_char *) malloc(vp->val_len); + } + if (vp->val.string == NULL) { +- return -1; ++ goto fail; + } + p = asn_parse_string(var_val, &len, &vp->type, vp->val.string, + &vp->val_len); +@@ -4619,7 +4604,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + vp->val_len *= sizeof(oid); + vp->val.objid = (oid *) malloc(vp->val_len); + if (vp->val.objid == NULL) { +- return -1; ++ goto fail; + } + memmove(vp->val.objid, objid, vp->val_len); + break; +@@ -4631,7 +4616,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + case ASN_BIT_STR: + vp->val.bitstring = (u_char *) malloc(vp->val_len); + if (vp->val.bitstring == NULL) { +- return -1; ++ goto fail; + } + p = asn_parse_bitstring(var_val, &len, &vp->type, + vp->val.bitstring, &vp->val_len); +@@ -4640,12 +4625,28 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char + break; + default: + snmp_log(LOG_ERR, "bad type returned (%x)\n", vp->type); +- badtype = -1; ++ goto fail; + break; + } + DEBUGINDENTADD(-4); ++ ++ if (NULL == vplast) { ++ pdu->variables = vp; ++ } else { ++ vplast->next_variable = vp; ++ } ++ vplast = vp; ++ vp = NULL; + } +- return badtype; ++ return 0; ++ ++ fail: ++ DEBUGMSGTL(("recv", "error while parsing VarBindList\n")); ++ /** if we were parsing a var, remove it from the pdu and free it */ ++ if (vp) ++ snmp_free_var(vp); ++ ++ return -1; + } + + /* From owner-svn-ports-all@freebsd.org Mon Aug 10 13:12:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFB1899D98E; Mon, 10 Aug 2015 13:12:01 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from exodus.zi0r.com (exodus.zi0r.com [71.179.14.195]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "exodus.zi0r.com", Issuer "Gandi Standard SSL CA 2" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C804FCCE; Mon, 10 Aug 2015 13:12:01 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from exodus.zi0r.com (localhost [127.0.0.1]) by exodus.zi0r.com (Postfix) with ESMTP id 0A6DDB90DD; Mon, 10 Aug 2015 09:11:54 -0400 (EDT) X-Virus-Scanned: amavisd-new at zi0r.com Received: from exodus.zi0r.com ([127.0.0.1]) by exodus.zi0r.com (exodus.zi0r.com [127.0.0.1]) (amavisd-new, port 10026) with LMTP id F7XGituFJSTd; Mon, 10 Aug 2015 09:11:52 -0400 (EDT) Received: from exodus.zi0r.com (syn.zi0r.com [71.179.14.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by exodus.zi0r.com (Postfix) with ESMTPSA id A82B9B90D8; Mon, 10 Aug 2015 09:11:52 -0400 (EDT) Date: Mon, 10 Aug 2015 09:11:51 -0400 From: Ryan Steinmetz To: Erwin Lansing Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393838 - in head/net-mgmt/net-snmp: . files Message-ID: <20150810131151.GA65148@exodus.zi0r.com> References: <201508100215.t7A2FrMv066401@repo.freebsd.org> <20150810070132.GC63119@droso.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20150810070132.GC63119@droso.dk> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 13:12:02 -0000 On (08/10/15 09:01), Erwin Lansing wrote: > > >MFH as this is a security update? > Complete. >Hereby approved as well. > >Erwin > >> >> Added: >> head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c (contents, props changed) >> Modified: >> head/net-mgmt/net-snmp/Makefile >> >> Modified: head/net-mgmt/net-snmp/Makefile >> ============================================================================== >> --- head/net-mgmt/net-snmp/Makefile Mon Aug 10 01:51:59 2015 (r393837) >> +++ head/net-mgmt/net-snmp/Makefile Mon Aug 10 02:15:52 2015 (r393838) >> @@ -3,7 +3,7 @@ >> >> PORTNAME= snmp >> PORTVERSION= 5.7.3 >> -PORTREVISION= 7 >> +PORTREVISION= 8 >> CATEGORIES= net-mgmt ipv6 >> MASTER_SITES= SF/net-${PORTNAME}/net-${PORTNAME}/${PORTVERSION} >> PKGNAMEPREFIX= net- >> >> Added: head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c >> ============================================================================== >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/net-mgmt/net-snmp/files/patch-snmplib_snmp__api.c Mon Aug 10 02:15:52 2015 (r393838) >> @@ -0,0 +1,117 @@ >> +--- snmplib/snmp_api.c.orig 2014-12-08 20:23:22 UTC >> ++++ snmplib/snmp_api.c >> +@@ -4350,10 +4350,9 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char >> + u_char type; >> + u_char msg_type; >> + u_char *var_val; >> +- int badtype = 0; >> + size_t len; >> + size_t four; >> +- netsnmp_variable_list *vp = NULL; >> ++ netsnmp_variable_list *vp = NULL, *vplast = NULL; >> + oid objid[MAX_OID_LEN]; >> + u_char *p; >> + >> +@@ -4493,38 +4492,24 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char >> + (ASN_SEQUENCE | ASN_CONSTRUCTOR), >> + "varbinds"); >> + if (data == NULL) >> +- return -1; >> ++ goto fail; >> + >> + /* >> + * get each varBind sequence >> + */ >> + while ((int) *length > 0) { >> +- netsnmp_variable_list *vptemp; >> +- vptemp = (netsnmp_variable_list *) malloc(sizeof(*vptemp)); >> +- if (NULL == vptemp) { >> +- return -1; >> +- } >> +- if (NULL == vp) { >> +- pdu->variables = vptemp; >> +- } else { >> +- vp->next_variable = vptemp; >> +- } >> +- vp = vptemp; >> ++ vp = SNMP_MALLOC_TYPEDEF(netsnmp_variable_list); >> ++ if (NULL == vp) >> ++ goto fail; >> + >> +- vp->next_variable = NULL; >> +- vp->val.string = NULL; >> + vp->name_length = MAX_OID_LEN; >> +- vp->name = NULL; >> +- vp->index = 0; >> +- vp->data = NULL; >> +- vp->dataFreeHook = NULL; >> + DEBUGDUMPSECTION("recv", "VarBind"); >> + data = snmp_parse_var_op(data, objid, &vp->name_length, &vp->type, >> + &vp->val_len, &var_val, length); >> + if (data == NULL) >> +- return -1; >> ++ goto fail; >> + if (snmp_set_var_objid(vp, objid, vp->name_length)) >> +- return -1; >> ++ goto fail; >> + >> + len = MAX_PACKET_LENGTH; >> + DEBUGDUMPHEADER("recv", "Value"); >> +@@ -4604,7 +4589,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char >> + vp->val.string = (u_char *) malloc(vp->val_len); >> + } >> + if (vp->val.string == NULL) { >> +- return -1; >> ++ goto fail; >> + } >> + p = asn_parse_string(var_val, &len, &vp->type, vp->val.string, >> + &vp->val_len); >> +@@ -4619,7 +4604,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char >> + vp->val_len *= sizeof(oid); >> + vp->val.objid = (oid *) malloc(vp->val_len); >> + if (vp->val.objid == NULL) { >> +- return -1; >> ++ goto fail; >> + } >> + memmove(vp->val.objid, objid, vp->val_len); >> + break; >> +@@ -4631,7 +4616,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char >> + case ASN_BIT_STR: >> + vp->val.bitstring = (u_char *) malloc(vp->val_len); >> + if (vp->val.bitstring == NULL) { >> +- return -1; >> ++ goto fail; >> + } >> + p = asn_parse_bitstring(var_val, &len, &vp->type, >> + vp->val.bitstring, &vp->val_len); >> +@@ -4640,12 +4625,28 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char >> + break; >> + default: >> + snmp_log(LOG_ERR, "bad type returned (%x)\n", vp->type); >> +- badtype = -1; >> ++ goto fail; >> + break; >> + } >> + DEBUGINDENTADD(-4); >> ++ >> ++ if (NULL == vplast) { >> ++ pdu->variables = vp; >> ++ } else { >> ++ vplast->next_variable = vp; >> ++ } >> ++ vplast = vp; >> ++ vp = NULL; >> + } >> +- return badtype; >> ++ return 0; >> ++ >> ++ fail: >> ++ DEBUGMSGTL(("recv", "error while parsing VarBindList\n")); >> ++ /** if we were parsing a var, remove it from the pdu and free it */ >> ++ if (vp) >> ++ snmp_free_var(vp); >> ++ >> ++ return -1; >> + } >> + >> + /* >> >-- >Erwin Lansing http://droso.dk >erwin@FreeBSD.org http:// www.FreeBSD.org -- Ryan Steinmetz PGP: 9079 51A3 34EF 0CD4 F228 EDC6 1EF8 BA6B D028 46D7 From owner-svn-ports-all@freebsd.org Mon Aug 10 13:18:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B37499DAFB; Mon, 10 Aug 2015 13:18:20 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A36BF3A; Mon, 10 Aug 2015 13:18:20 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ADIKfK041087; Mon, 10 Aug 2015 13:18:20 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ADIKZ9041085; Mon, 10 Aug 2015 13:18:20 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201508101318.t7ADIKZ9041085@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Mon, 10 Aug 2015 13:18:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393863 - head/net/daq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 13:18:20 -0000 Author: zi Date: Mon Aug 10 13:18:19 2015 New Revision: 393863 URL: https://svnweb.freebsd.org/changeset/ports/393863 Log: - Update to 2.0.6 Modified: head/net/daq/Makefile head/net/daq/distinfo Modified: head/net/daq/Makefile ============================================================================== --- head/net/daq/Makefile Mon Aug 10 13:08:23 2015 (r393862) +++ head/net/daq/Makefile Mon Aug 10 13:18:19 2015 (r393863) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= daq -PORTVERSION= 2.0.5 +PORTVERSION= 2.0.6 CATEGORIES= net -MASTER_SITES= SF/snort/snort \ - https://snort.org/downloads/snort/ \ +MASTER_SITES= https://snort.org/downloads/snort/ \ http://mirrors.rit.edu/zi/ MAINTAINER= zi@FreeBSD.org Modified: head/net/daq/distinfo ============================================================================== --- head/net/daq/distinfo Mon Aug 10 13:08:23 2015 (r393862) +++ head/net/daq/distinfo Mon Aug 10 13:18:19 2015 (r393863) @@ -1,2 +1,2 @@ -SHA256 (daq-2.0.5.tar.gz) = 7704b5db858732142586f5043deb0733e2c396535c83081e918fb6993258bc6d -SIZE (daq-2.0.5.tar.gz) = 517801 +SHA256 (daq-2.0.6.tar.gz) = b40e1d1273e08aaeaa86e69d4f28d535b7e53bdb3898adf539266b63137be7cb +SIZE (daq-2.0.6.tar.gz) = 514687 From owner-svn-ports-all@freebsd.org Mon Aug 10 13:25:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15A9E99DCC1; Mon, 10 Aug 2015 13:25:33 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 061DF386; Mon, 10 Aug 2015 13:25:33 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ADPWRA045078; Mon, 10 Aug 2015 13:25:32 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ADPWtr045076; Mon, 10 Aug 2015 13:25:32 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201508101325.t7ADPWtr045076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 10 Aug 2015 13:25:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393864 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 13:25:33 -0000 Author: madpilot Date: Mon Aug 10 13:25:32 2015 New Revision: 393864 URL: https://svnweb.freebsd.org/changeset/ports/393864 Log: Document an already fixxed vulnerability in lighttpd 1.4.35 or older. PR: 202134 Submitted by: pkubaj at riseup.net vuxml entry submitted by: Jason Unovitch Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Aug 10 13:18:19 2015 (r393863) +++ head/security/vuxml/vuln.xml Mon Aug 10 13:25:32 2015 (r393864) @@ -58,6 +58,35 @@ Notes: --> + + lighttpd -- Log injection vulnerability in mod_auth + + + lighttpd + 1.4.36 + + + + +

MITRE reports:

+
+

mod_auth in lighttpd before 1.4.36 allows remote attackers to + inject arbitrary log entries via a basic HTTP authentication string + without a colon character, as demonstrated by a string containing a + NULL and new line character.

+
+ +
+ + CVE-2015-3200 + http://redmine.lighttpd.net/issues/2646 + + + 2015-05-25 + 2015-08-10 + +
+ pcre -- heap overflow vulnerability in '(?|' situations From owner-svn-ports-all@freebsd.org Mon Aug 10 13:57:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2B0999E38D; Mon, 10 Aug 2015 13:57:21 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BEEB0370; Mon, 10 Aug 2015 13:57:21 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ADvL3a057393; Mon, 10 Aug 2015 13:57:21 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ADvLIB057392; Mon, 10 Aug 2015 13:57:21 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201508101357.t7ADvLIB057392@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 10 Aug 2015 13:57:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393865 - head/www/lighttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 13:57:21 -0000 Author: madpilot Date: Mon Aug 10 13:57:20 2015 New Revision: 393865 URL: https://svnweb.freebsd.org/changeset/ports/393865 Log: Assign maintainership to volunteer who filed a PR(which I did not notice) to update the port. PR: 202134 Submitted by: pkubaj at riseup.net Modified: head/www/lighttpd/Makefile Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Mon Aug 10 13:25:32 2015 (r393864) +++ head/www/lighttpd/Makefile Mon Aug 10 13:57:20 2015 (r393865) @@ -6,7 +6,7 @@ PORTVERSION= 1.4.36 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= pkubaj@riseup.net COMMENT?= Secure, fast, compliant, and flexible Web Server .if !defined(_BUILDING_LIGHTTPD_MODULE) From owner-svn-ports-all@freebsd.org Mon Aug 10 14:08:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35D8D99E672; Mon, 10 Aug 2015 14:08:31 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26986C1A; Mon, 10 Aug 2015 14:08:31 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AE8VQF061643; Mon, 10 Aug 2015 14:08:31 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AE8UVG061641; Mon, 10 Aug 2015 14:08:30 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508101408.t7AE8UVG061641@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 10 Aug 2015 14:08:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393866 - in head/x11-toolkits: gdl libunique3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 14:08:31 -0000 Author: kwm Date: Mon Aug 10 14:08:29 2015 New Revision: 393866 URL: https://svnweb.freebsd.org/changeset/ports/393866 Log: These ports need introspection at build time. Submitted by: antoine@ Modified: head/x11-toolkits/gdl/Makefile head/x11-toolkits/libunique3/Makefile Modified: head/x11-toolkits/gdl/Makefile ============================================================================== --- head/x11-toolkits/gdl/Makefile Mon Aug 10 13:57:20 2015 (r393865) +++ head/x11-toolkits/gdl/Makefile Mon Aug 10 14:08:29 2015 (r393866) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING PORTSCOUT= limitw:1,even -USE_GNOME= gtk30 intlhack +USE_GNOME= gtk30 intlhack introspection:build USES= gettext gmake libtool pathfix pkgconfig tar:xz GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/x11-toolkits/libunique3/Makefile ============================================================================== --- head/x11-toolkits/libunique3/Makefile Mon Aug 10 13:57:20 2015 (r393865) +++ head/x11-toolkits/libunique3/Makefile Mon Aug 10 14:08:29 2015 (r393866) @@ -15,7 +15,7 @@ LIB_DEPENDS= libdbus-glib-1.so:${PORTSDI USE_XORG= ice x11 USES= gettext gmake libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes -USE_GNOME= gtk30 gnomeprefix +USE_GNOME= gtk30 gnomeprefix introspection:build GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-maintainer-flags --enable-gtk-doc-html=no CPPFLAGS+= -I${LOCALBASE}/include From owner-svn-ports-all@freebsd.org Mon Aug 10 14:44:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06F5199EE65; Mon, 10 Aug 2015 14:44:01 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBAAFF49; Mon, 10 Aug 2015 14:44:00 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AEi0V9077748; Mon, 10 Aug 2015 14:44:00 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AEi0MR077745; Mon, 10 Aug 2015 14:44:00 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201508101444.t7AEi0MR077745@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 10 Aug 2015 14:44:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393867 - head/net-mgmt/cnagios X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 14:44:01 -0000 Author: madpilot Date: Mon Aug 10 14:43:59 2015 New Revision: 393867 URL: https://svnweb.freebsd.org/changeset/ports/393867 Log: Update to 0.32 PR: 202195 Submitted by: danny at dannywarren.com Approved by: alexander.4mail at gmail.com (maintainer) Modified: head/net-mgmt/cnagios/Makefile head/net-mgmt/cnagios/distinfo Modified: head/net-mgmt/cnagios/Makefile ============================================================================== --- head/net-mgmt/cnagios/Makefile Mon Aug 10 14:08:29 2015 (r393866) +++ head/net-mgmt/cnagios/Makefile Mon Aug 10 14:43:59 2015 (r393867) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= cnagios -PORTVERSION= 0.31 -PORTREVISION= 1 +PORTVERSION= 0.32 CATEGORIES= net-mgmt MAINTAINER= alexander.4mail@gmail.com @@ -26,10 +25,6 @@ CONFIGURE_ARGS= --with-etc-dir="${ETCDIR USES= perl5 ALL_TARGET= cnagios -post-patch: -# check in next relase if version match, and adjust/remove the next line - ${REINPLACE_CMD} -e 's/0.30/${PORTVERSION}/' ${WRKSRC}/version.h - post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cnagios Modified: head/net-mgmt/cnagios/distinfo ============================================================================== --- head/net-mgmt/cnagios/distinfo Mon Aug 10 14:08:29 2015 (r393866) +++ head/net-mgmt/cnagios/distinfo Mon Aug 10 14:43:59 2015 (r393867) @@ -1,2 +1,2 @@ -SHA256 (dannywarren-cnagios-0.31_GH0.tar.gz) = c1f41fa9d51dc0bbc1b90bc70d9e383ecb8fde7340558055cb60f171f74a08f9 -SIZE (dannywarren-cnagios-0.31_GH0.tar.gz) = 81546 +SHA256 (dannywarren-cnagios-0.32_GH0.tar.gz) = cda69a094d8972364a0d9c25c9e6dd96f4c523adeeb4175806e864e1277f6a39 +SIZE (dannywarren-cnagios-0.32_GH0.tar.gz) = 81775 From owner-svn-ports-all@freebsd.org Mon Aug 10 15:02:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9827199D3E4; Mon, 10 Aug 2015 15:02:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88EA21A67; Mon, 10 Aug 2015 15:02:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AF2B8q085832; Mon, 10 Aug 2015 15:02:11 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AF2BTi085831; Mon, 10 Aug 2015 15:02:11 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101502.t7AF2BTi085831@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 15:02:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393868 - head/games/ufoai-data X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:02:11 -0000 Author: amdmi3 Date: Mon Aug 10 15:02:10 2015 New Revision: 393868 URL: https://svnweb.freebsd.org/changeset/ports/393868 Log: - Add NO_ARCH - Add MANUAL_PACKAGE_BUILD as we do with other huge packages Submitted by: portmgr blanket Modified: head/games/ufoai-data/Makefile Modified: head/games/ufoai-data/Makefile ============================================================================== --- head/games/ufoai-data/Makefile Mon Aug 10 14:43:59 2015 (r393867) +++ head/games/ufoai-data/Makefile Mon Aug 10 15:02:10 2015 (r393868) @@ -22,8 +22,11 @@ LICENSE_PERMS_CCbySA3= dist-mirror dist- EXTRACT_DEPENDS= ${UNZIP_CMD}:${PORTSDIR}/archivers/unzip +MANUAL_PACKAGE_BUILD= huge (1GiB) + NO_BUILD= yes NO_WRKSUBDIR= yes +NO_ARCH= yes DATADIR= share/${PKGNAMEPREFIX:S/-//} PLIST= ${WRKDIR}/pkg-plist From owner-svn-ports-all@freebsd.org Mon Aug 10 15:03:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C25C299D425; Mon, 10 Aug 2015 15:03:40 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B28881B7E; Mon, 10 Aug 2015 15:03:40 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AF3eOp085991; Mon, 10 Aug 2015 15:03:40 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AF3eBl085990; Mon, 10 Aug 2015 15:03:40 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201508101503.t7AF3eBl085990@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Mon, 10 Aug 2015 15:03:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393869 - head/games/flightgear X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:03:40 -0000 Author: martymac Date: Mon Aug 10 15:03:39 2015 New Revision: 393869 URL: https://svnweb.freebsd.org/changeset/ports/393869 Log: Add LOCALBASE to LDFLAGS to fix build on DragonFly PR: 202115 Submitted by: marino Modified: head/games/flightgear/Makefile Modified: head/games/flightgear/Makefile ============================================================================== --- head/games/flightgear/Makefile Mon Aug 10 15:02:10 2015 (r393868) +++ head/games/flightgear/Makefile Mon Aug 10 15:03:39 2015 (r393869) @@ -40,6 +40,7 @@ CMAKE_ARGS+= -DENABLE_JS_SERVER:BOOL=ON -DFG_DATA_DIR:PATH=${LOCALBASE}/share/${PORTNAME} \ -DCMAKE_INSTALL_MANDIR:PATH=${MANPREFIX}/man \ -DFGCOM_DATA_PATH:PATH=${DATADIR} +LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= DBUS OPTIONS_DEFAULT= DBUS From owner-svn-ports-all@freebsd.org Mon Aug 10 15:07:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1FA199D50A; Mon, 10 Aug 2015 15:07:07 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A172A1CCB; Mon, 10 Aug 2015 15:07:07 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AF77km086315; Mon, 10 Aug 2015 15:07:07 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AF76eR086311; Mon, 10 Aug 2015 15:07:06 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201508101507.t7AF76eR086311@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 10 Aug 2015 15:07:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393870 - in branches/2015Q3/www/lighttpd: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:07:07 -0000 Author: madpilot Date: Mon Aug 10 15:07:05 2015 New Revision: 393870 URL: https://svnweb.freebsd.org/changeset/ports/393870 Log: MFH: r393787 - Update to 1.4.36 - Regenerate patches to silence portlint warnings PR: 202134 Submitted by: pkubaj at riseup.net Approved by: ports-secteam (feld) Modified: branches/2015Q3/www/lighttpd/Makefile branches/2015Q3/www/lighttpd/distinfo branches/2015Q3/www/lighttpd/files/patch-configure.ac branches/2015Q3/www/lighttpd/files/patch-src-fdevent.h Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/lighttpd/Makefile ============================================================================== --- branches/2015Q3/www/lighttpd/Makefile Mon Aug 10 15:03:39 2015 (r393869) +++ branches/2015Q3/www/lighttpd/Makefile Mon Aug 10 15:07:05 2015 (r393870) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= lighttpd -PORTVERSION= 1.4.35 -PORTREVISION= 5 +PORTVERSION= 1.4.36 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ Modified: branches/2015Q3/www/lighttpd/distinfo ============================================================================== --- branches/2015Q3/www/lighttpd/distinfo Mon Aug 10 15:03:39 2015 (r393869) +++ branches/2015Q3/www/lighttpd/distinfo Mon Aug 10 15:07:05 2015 (r393870) @@ -1,5 +1,5 @@ -SHA256 (lighttpd-1.4.35.tar.xz) = 113e9b72ccbd1da5deb0774bf93cf0ca15dc82aad2da0f04e5ab27d37d3f30a3 -SIZE (lighttpd-1.4.35.tar.xz) = 556896 +SHA256 (lighttpd-1.4.36.tar.xz) = 897ab6b1cc7bd51671f8af759e7846245fbbca0685c30017e93a5882a9ac1a53 +SIZE (lighttpd-1.4.36.tar.xz) = 570756 SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = d7c3704d5253c4f3c18459f89059063b311e50096cd2c38fc982cec683c32e61 SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = 44695 SHA256 (lighttpd-1.4.26_mod_geoip.patch.gz) = db43cc0ed7c808b5eed3185d97346e70dea0f1ef4fa9ed436d08e4faff7f97e7 Modified: branches/2015Q3/www/lighttpd/files/patch-configure.ac ============================================================================== --- branches/2015Q3/www/lighttpd/files/patch-configure.ac Mon Aug 10 15:03:39 2015 (r393869) +++ branches/2015Q3/www/lighttpd/files/patch-configure.ac Mon Aug 10 15:07:05 2015 (r393870) @@ -1,6 +1,6 @@ ---- configure.ac.orig 2012-11-19 11:05:29.000000000 +0100 -+++ configure.ac 2012-11-21 14:22:53.723233779 +0100 -@@ -16,6 +16,7 @@ +--- configure.ac.orig 2015-07-26 10:36:36 UTC ++++ configure.ac +@@ -46,6 +46,7 @@ AC_DEFUN([TRY_CFLAGS], dnl Checks for programs. AC_PROG_CC AM_PROG_CC_C_O @@ -8,7 +8,7 @@ AC_PROG_LD AC_PROG_INSTALL AC_PROG_AWK -@@ -30,11 +31,6 @@ +@@ -60,11 +61,6 @@ m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], [AC dnl AM_PROG_AR requires automake 1.11 (and uses AC_COMPILE_IFELSE which wants AC_USE_SYSTEM_EXTENSIONS) m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) Modified: branches/2015Q3/www/lighttpd/files/patch-src-fdevent.h ============================================================================== --- branches/2015Q3/www/lighttpd/files/patch-src-fdevent.h Mon Aug 10 15:03:39 2015 (r393869) +++ branches/2015Q3/www/lighttpd/files/patch-src-fdevent.h Mon Aug 10 15:07:05 2015 (r393870) @@ -1,11 +1,11 @@ ---- src/fdevent.h.orig 2011-12-19 07:41:33.183877666 +0100 -+++ src/fdevent.h 2011-12-19 07:42:01.457863868 +0100 -@@ -54,7 +54,7 @@ +--- src/fdevent.h.orig 2015-07-26 10:36:36 UTC ++++ src/fdevent.h +@@ -46,7 +46,7 @@ # include #endif -#if defined HAVE_SYS_EVENT_H && defined HAVE_KQUEUE +#if defined HAVE_SYS_EVENT_H && defined HAVE_KQUEUE && !defined HAVE_LIBEV # define USE_FREEBSD_KQUEUE - # include #endif + From owner-svn-ports-all@freebsd.org Mon Aug 10 15:08:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56C9099D549; Mon, 10 Aug 2015 15:08:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 478471DF1; Mon, 10 Aug 2015 15:08:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AF8MM4086455; Mon, 10 Aug 2015 15:08:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AF8MMt086454; Mon, 10 Aug 2015 15:08:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101508.t7AF8MMt086454@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 15:08:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393871 - head/databases/spatialite_gui X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:08:22 -0000 Author: amdmi3 Date: Mon Aug 10 15:08:21 2015 New Revision: 393871 URL: https://svnweb.freebsd.org/changeset/ports/393871 Log: - Fix build by adding missing library - Add LICENSE_FILE Approved by: portmgr blanket Modified: head/databases/spatialite_gui/Makefile Modified: head/databases/spatialite_gui/Makefile ============================================================================== --- head/databases/spatialite_gui/Makefile Mon Aug 10 15:07:05 2015 (r393870) +++ head/databases/spatialite_gui/Makefile Mon Aug 10 15:08:21 2015 (r393871) @@ -11,6 +11,7 @@ MAINTAINER= coder@tuxfamily.org COMMENT= Graphical User Interface (GUI) tool supporting SpatiaLite LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgaiagraphics.so:${PORTSDIR}/graphics/libgaiagraphics \ libfreexl.so:${PORTSDIR}/textproc/freexl \ @@ -24,7 +25,7 @@ USES= gmake pkgconfig iconv CFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include `${WX_CONFIG} --cppflags` -LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} `${WX_CONFIG} --libs` +LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} `${WX_CONFIG} --libs` -lsqlite3 CONFIGURE_ARGS= CFLAGS="${CFLAGS} ${CPPFLAGS}" LDFLAGS="${LDFLAGS}" USE_LDCONFIG= yes From owner-svn-ports-all@freebsd.org Mon Aug 10 15:25:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A6E399D960; Mon, 10 Aug 2015 15:25:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4779C8BA; Mon, 10 Aug 2015 15:25:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AFPnJ3094501; Mon, 10 Aug 2015 15:25:49 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AFPmb0094499; Mon, 10 Aug 2015 15:25:48 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201508101525.t7AFPmb0094499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 10 Aug 2015 15:25:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393872 - head/lang/perl5-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:25:49 -0000 Author: mat Date: Mon Aug 10 15:25:48 2015 New Revision: 393872 URL: https://svnweb.freebsd.org/changeset/ports/393872 Log: Update to v5.23.1-188-gd29663d. Changes: https://github.com/Perl/perl5/compare/v5.23.1-168-gd570e6e...v5.23.1-188-gd29663d Sponsored by: Absolight Modified: head/lang/perl5-devel/Makefile head/lang/perl5-devel/distinfo Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Mon Aug 10 15:08:21 2015 (r393871) +++ head/lang/perl5-devel/Makefile Mon Aug 10 15:25:48 2015 (r393872) @@ -27,7 +27,7 @@ CONFLICTS_INSTALL= perl5.*-* USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.23.1-168-gd570e6e +GH_TAGNAME= v5.23.1-188-gd29663d OPTIONS_DEFINE= DEBUG GDBM PERL_64BITINT PTHREAD \ MULTIPLICITY SITECUSTOMIZE Modified: head/lang/perl5-devel/distinfo ============================================================================== --- head/lang/perl5-devel/distinfo Mon Aug 10 15:08:21 2015 (r393871) +++ head/lang/perl5-devel/distinfo Mon Aug 10 15:25:48 2015 (r393872) @@ -1,2 +1,2 @@ -SHA256 (perl/perl-5.23.1-168_GH0.tar.gz) = eec3ee3e529bac579fe0258e571d623f59f2ef9f1819a1f7921060da61771a36 -SIZE (perl/perl-5.23.1-168_GH0.tar.gz) = 17507663 +SHA256 (perl/perl-5.23.1-188_GH0.tar.gz) = a849cdba435526e8dd50ddfa0f10da08f78ae3f58501f49e9855cb52b23bd4ab +SIZE (perl/perl-5.23.1-188_GH0.tar.gz) = 17510264 From owner-svn-ports-all@freebsd.org Mon Aug 10 15:32:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD5CB99DB40; Mon, 10 Aug 2015 15:32:20 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80856C41; Mon, 10 Aug 2015 15:32:20 +0000 (UTC) (envelope-from pgj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AFWKiT098476; Mon, 10 Aug 2015 15:32:20 GMT (envelope-from pgj@FreeBSD.org) Received: (from pgj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AFWKYL098474; Mon, 10 Aug 2015 15:32:20 GMT (envelope-from pgj@FreeBSD.org) Message-Id: <201508101532.t7AFWKYL098474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgj set sender to pgj@FreeBSD.org using -f From: Gabor Pali Date: Mon, 10 Aug 2015 15:32:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393873 - head/lang/ghc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:32:20 -0000 Author: pgj Date: Mon Aug 10 15:32:19 2015 New Revision: 393873 URL: https://svnweb.freebsd.org/changeset/ports/393873 Log: - Implement a couple of portlint(1) warnings, such as moving the LICENSE block earlier, sort USES. This change also switches to USES=metaport for metaports, like haskell-platform or gtk2hs PR: 201886 Submitted by: Andriy Voskoboinyk Obtained from: FreeBSD Haskell Modified: head/lang/ghc/Makefile head/lang/ghc/bsd.cabal.mk Modified: head/lang/ghc/Makefile ============================================================================== --- head/lang/ghc/Makefile Mon Aug 10 15:25:48 2015 (r393872) +++ head/lang/ghc/Makefile Mon Aug 10 15:32:19 2015 (r393873) @@ -12,6 +12,9 @@ DISTFILES= ghc-${PORTVERSION}-src${EXTRA MAINTAINER= haskell@FreeBSD.org COMMENT= Compiler for the functional language Haskell +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + ONLY_FOR_ARCHS= i386 amd64 MAKE_JOBS_NUMBER_LIMIT= 4 @@ -28,13 +31,10 @@ LIB_DEPENDS+= libgmp.so:${PORTSDIR}/math USE_AUTOTOOLS= autoconf autoheader USE_PERL5= build -USES= gmake iconv:translit perl5 ncurses tar:bzip2 +USES= gmake iconv:translit ncurses perl5 tar:bzip2 USE_BINUTILS= yes USE_GCC= yes -LICENSE= BSD3CLAUSE -LICENSE_FILE= ${WRKSRC}/LICENSE - MAKE_ENV= LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 # The configure process accepts,filters and canonicalises Modified: head/lang/ghc/bsd.cabal.mk ============================================================================== --- head/lang/ghc/bsd.cabal.mk Mon Aug 10 15:25:48 2015 (r393872) +++ head/lang/ghc/bsd.cabal.mk Mon Aug 10 15:32:19 2015 (r393873) @@ -13,13 +13,7 @@ MASTER_SITES?= http://hackage.haskell.org/package/${PORTNAME}-${PORTVERSION}/ DIST_SUBDIR?= cabal .else -MASTER_SITES= # empty -DISTFILES= # empty -EXTRACT_ONLY= # empty -NO_FETCH= yes -NO_BUILD= yes -NO_INSTALL= yes -NO_MTREE= yes +USES+= metaport .endif # !METAPORT MAKE_ENV+= LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 DESTDIR=${STAGEDIR} \ From owner-svn-ports-all@freebsd.org Mon Aug 10 15:47:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5407B99DDAE; Mon, 10 Aug 2015 15:47:19 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 407AC29C; Mon, 10 Aug 2015 15:47:19 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AFlJBe002988; Mon, 10 Aug 2015 15:47:19 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AFlJoI002987; Mon, 10 Aug 2015 15:47:19 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508101547.t7AFlJoI002987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 10 Aug 2015 15:47:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393874 - head/ports-mgmt/packagekit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:47:19 -0000 Author: kwm Date: Mon Aug 10 15:47:18 2015 New Revision: 393874 URL: https://svnweb.freebsd.org/changeset/ports/393874 Log: Mark ignore, does not build with updated polkit. Submitted by: antoine@ Modified: head/ports-mgmt/packagekit/Makefile Modified: head/ports-mgmt/packagekit/Makefile ============================================================================== --- head/ports-mgmt/packagekit/Makefile Mon Aug 10 15:32:19 2015 (r393873) +++ head/ports-mgmt/packagekit/Makefile Mon Aug 10 15:47:18 2015 (r393874) @@ -18,6 +18,8 @@ LIB_DEPENDS= libdbus-glib-1.so:${PORTSDI RUN_DEPENDS= lsof:${PORTSDIR}/sysutils/lsof \ bash:${PORTSDIR}/shells/bash +IGNORE= does not build with new polkit + USES= cpe execinfo gettext gmake iconv libtool pathfix pkgconfig \ python:build shared-mime-info shebangfix CPE_VENDOR= packagekit_project From owner-svn-ports-all@freebsd.org Mon Aug 10 15:57:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8095F99E082; Mon, 10 Aug 2015 15:57:31 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70DA4A2B; Mon, 10 Aug 2015 15:57:31 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AFvV8V007143; Mon, 10 Aug 2015 15:57:31 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AFvUGP007139; Mon, 10 Aug 2015 15:57:30 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508101557.t7AFvUGP007139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 10 Aug 2015 15:57:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393875 - in head/x11-toolkits/gtk30: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 15:57:31 -0000 Author: kwm Date: Mon Aug 10 15:57:30 2015 New Revision: 393875 URL: https://svnweb.freebsd.org/changeset/ports/393875 Log: Gtk+ 3.16 removed Type a head support in the filechooser. While Gtk+ 3.17 has another way of archiving this, add type a head back as a optional (default off) option. Requested by: novel@ Tested by: novel@ Added: head/x11-toolkits/gtk30/files/extra-gtk_gtkfilechooserwidget.c (contents, props changed) head/x11-toolkits/gtk30/files/extra-gtk_ui_gtkfilechooserwidget.ui (contents, props changed) Modified: head/x11-toolkits/gtk30/Makefile Modified: head/x11-toolkits/gtk30/Makefile ============================================================================== --- head/x11-toolkits/gtk30/Makefile Mon Aug 10 15:47:18 2015 (r393874) +++ head/x11-toolkits/gtk30/Makefile Mon Aug 10 15:57:30 2015 (r393875) @@ -55,7 +55,7 @@ GLIB_SCHEMAS= org.gtk.Demo.gschema.xml \ org.gtk.Settings.Debug.gschema.xml \ org.gtk.Settings.FileChooser.gschema.xml -OPTIONS_DEFINE= CUPS CLOUDPRINT COLORD DEBUG BROADWAY +OPTIONS_DEFINE= CUPS CLOUDPRINT COLORD DEBUG BROADWAY TYPEAHEAD OPTIONS_DEFAULT=CUPS COLORD BROADWAY OPTIONS_SUB= yes @@ -76,9 +76,17 @@ CLOUDPRINT_LIB_DEPENDS= librest-0.7.so:$ DEBUG_CONFIGURE_ENABLE=debug +# GTK+ 3.17 has a beter way +TYPEAHEAD_DESC= Re-enable type-a-head functionality in file chooser + # needed for the exists() check, booo .include +.if ${PORT_OPTIONS:MTYPEAHEAD} +EXTRA_PATCHES+= ${FILESDIR}/extra-gtk_gtkfilechooserwidget.c \ + ${FILESDIR}/extra-gtk_ui_gtkfilechooserwidget.ui +.endif + post-patch: @${REINPLACE_CMD} -e 's|[{]libdir[}]/locale|{datadir}/locale|g' \ ${WRKSRC}/configure Added: head/x11-toolkits/gtk30/files/extra-gtk_gtkfilechooserwidget.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/gtk30/files/extra-gtk_gtkfilechooserwidget.c Mon Aug 10 15:57:30 2015 (r393875) @@ -0,0 +1,18 @@ +--- gtk/gtkfilechooserwidget.c.orig 2015-08-10 13:02:47.225114000 +0200 ++++ gtk/gtkfilechooserwidget.c 2015-08-10 13:03:58.007015000 +0200 +@@ -1895,7 +1895,6 @@ file_list_set_sort_column_ids (GtkFileCh + { + GtkFileChooserWidgetPrivate *priv = impl->priv; + +- gtk_tree_view_set_search_column (GTK_TREE_VIEW (priv->browse_files_tree_view), -1); + + gtk_tree_view_column_set_sort_column_id (priv->list_name_column, MODEL_COL_NAME); + gtk_tree_view_column_set_sort_column_id (priv->list_mtime_column, MODEL_COL_MTIME); +@@ -3468,6 +3467,7 @@ load_set_model (GtkFileChooserWidget *im + gtk_tree_view_set_model (GTK_TREE_VIEW (priv->browse_files_tree_view), + GTK_TREE_MODEL (priv->browse_files_model)); + gtk_tree_view_columns_autosize (GTK_TREE_VIEW (priv->browse_files_tree_view)); ++ gtk_tree_view_set_search_column (GTK_TREE_VIEW (priv->browse_files_tree_view), MODEL_COL_NAME); + file_list_set_sort_column_ids (impl); + set_sort_column (impl); + profile_msg (" gtk_tree_view_set_model end", NULL); Added: head/x11-toolkits/gtk30/files/extra-gtk_ui_gtkfilechooserwidget.ui ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/gtk30/files/extra-gtk_ui_gtkfilechooserwidget.ui Mon Aug 10 15:57:30 2015 (r393875) @@ -0,0 +1,11 @@ +--- gtk/ui/gtkfilechooserwidget.ui.orig 2015-07-21 14:07:11.000000000 +0200 ++++ gtk/ui/gtkfilechooserwidget.ui 2015-08-10 13:01:52.186654000 +0200 +@@ -193,7 +193,7 @@ + True + True + True +- False ++ True + + + Files From owner-svn-ports-all@freebsd.org Mon Aug 10 16:46:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3AB699ECAF; Mon, 10 Aug 2015 16:46:24 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E2D2F8E0; Mon, 10 Aug 2015 16:46:24 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AGkOBl027418; Mon, 10 Aug 2015 16:46:24 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AGkOVs027415; Mon, 10 Aug 2015 16:46:24 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201508101646.t7AGkOVs027415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Mon, 10 Aug 2015 16:46:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393876 - in head/www/py-gandi.cli: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 16:46:25 -0000 Author: koobs Date: Mon Aug 10 16:46:23 2015 New Revision: 393876 URL: https://svnweb.freebsd.org/changeset/ports/393876 Log: www/py-gandi.cli: Update to 0.15 & Unbreak - Update to 0.15 - Update RUN_DEPENDS version for click, (and patch setup.py accordingly) until upstream fixes it. [1]. - Make TEST_DEPENDS *only* include, test dependencies, adding RUN_DEPENDS instead to the TESTS option conditional. - Remove non-compulsory & forced tests_requires. Tests work perfectly fine out of the box with setup:py: test_suite='gandi.cli.tests', Changes: https://github.com/Gandi/gandi.cli/blob/0.15/CHANGES.rst [1] https://github.com/Gandi/gandi.cli/issues/147 Reported by: antoine, pkg-fallout (in that order) Modified: head/www/py-gandi.cli/Makefile head/www/py-gandi.cli/distinfo head/www/py-gandi.cli/files/patch-setup.py Modified: head/www/py-gandi.cli/Makefile ============================================================================== --- head/www/py-gandi.cli/Makefile Mon Aug 10 15:57:30 2015 (r393875) +++ head/www/py-gandi.cli/Makefile Mon Aug 10 16:46:23 2015 (r393876) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gandi.cli -PORTVERSION= 0.14 +PORTVERSION= 0.15 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,18 +14,17 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \ - ${PYTHON_PKGNAMEPREFIX}click<=4.0:${PORTSDIR}/devel/py-click \ + ${PYTHON_PKGNAMEPREFIX}click>=3.0:${PORTSDIR}/devel/py-click \ ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \ ${PYTHON_PKGNAMEPREFIX}ipy>0:${PORTSDIR}/net-mgmt/py-ipy - -TEST_DEPENDS:= ${RUN_DEPENDS} \ - ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \ ${PYTHON_PKGNAMEPREFIX}coverage>0:${PORTSDIR}/devel/py-coverage OPTIONS_DEFINE= TESTS TESTS_DESC= Install test suite requirements -TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} +TESTS_BUILD_DEPENDS= ${RUN_DEPENDS} \ + ${TEST_DEPENDS} USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/www/py-gandi.cli/distinfo ============================================================================== --- head/www/py-gandi.cli/distinfo Mon Aug 10 15:57:30 2015 (r393875) +++ head/www/py-gandi.cli/distinfo Mon Aug 10 16:46:23 2015 (r393876) @@ -1,2 +1,2 @@ -SHA256 (gandi.cli-0.14.tar.gz) = 80f0a499d871b363ad0e0687d06da5e6935b586b7fe7bc0b92ef4cc43c08bb05 -SIZE (gandi.cli-0.14.tar.gz) = 342573 +SHA256 (gandi.cli-0.15.tar.gz) = 84c6e0aaa5fd509ab6b2e912a683f9090dc68ef122ae1a9df32ed0393df1ab7b +SIZE (gandi.cli-0.15.tar.gz) = 359801 Modified: head/www/py-gandi.cli/files/patch-setup.py ============================================================================== --- head/www/py-gandi.cli/files/patch-setup.py Mon Aug 10 15:57:30 2015 (r393875) +++ head/www/py-gandi.cli/files/patch-setup.py Mon Aug 10 16:46:23 2015 (r393876) @@ -1,6 +1,6 @@ --- setup.py.orig 2015-04-01 08:43:36 UTC +++ setup.py -@@ -6,10 +6,11 @@ import os +@@ -6,19 +6,20 @@ import os import sys from setuptools import setup, find_packages @@ -14,9 +14,11 @@ with open(os.path.join(here, 'gandi', 'cli', '__init__.py')) as v_file: -@@ -18,7 +19,7 @@ with open(os.path.join(here, 'gandi', 'c + version = re.compile(r".*__version__ = '(.*?)'", + re.S).match(v_file.read()).group(1) - requires = ['setuptools', 'pyyaml', 'click<=4.0', 'requests', 'IPy'] +-requires = ['setuptools', 'pyyaml', 'click<=4.0', 'requests', 'IPy'] ++requires = ['setuptools', 'pyyaml', 'click>=3.0', 'requests', 'IPy'] -tests_require = ['nose', 'coverage', 'tox', 'httpretty==0.8.6'] +tests_require = ['nose', 'httpretty==0.8.6' ] From owner-svn-ports-all@freebsd.org Mon Aug 10 16:47:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD7E099ECE0; Mon, 10 Aug 2015 16:47:03 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE1869BC; Mon, 10 Aug 2015 16:47:03 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AGl3kF027554; Mon, 10 Aug 2015 16:47:03 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AGl3d2027552; Mon, 10 Aug 2015 16:47:03 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508101647.t7AGl3d2027552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 10 Aug 2015 16:47:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393877 - head/net/yaz X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 16:47:03 -0000 Author: pawel Date: Mon Aug 10 16:47:02 2015 New Revision: 393877 URL: https://svnweb.freebsd.org/changeset/ports/393877 Log: Update to version 5.14.5 --- 5.14.5 2015/08/06 Stop building packages for obsolete Debian squeeze and use DH version 9. YAZ-854 rpn2cql diagnostics: provide use attribute addinfo YAZ-853 deb: deprecated substitution ${Source-Version} YAZ-852 Fix yaz-client: semicolon terminates arguments YAZ-851 --- 5.14.4 2015/07/29 Windows: Bundle VC runtime exe YAZ-848 Omit Content-Type for HTTP requests to Solr YAZ-850 Modified: head/net/yaz/Makefile head/net/yaz/distinfo Modified: head/net/yaz/Makefile ============================================================================== --- head/net/yaz/Makefile Mon Aug 10 16:46:23 2015 (r393876) +++ head/net/yaz/Makefile Mon Aug 10 16:47:02 2015 (r393877) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= yaz -PORTVERSION= 5.14.3 +PORTVERSION= 5.14.5 CATEGORIES= net MASTER_SITES= http://ftp.indexdata.dk/pub/yaz/ Modified: head/net/yaz/distinfo ============================================================================== --- head/net/yaz/distinfo Mon Aug 10 16:46:23 2015 (r393876) +++ head/net/yaz/distinfo Mon Aug 10 16:47:02 2015 (r393877) @@ -1,2 +1,2 @@ -SHA256 (yaz-5.14.3.tar.gz) = b7a444deb013ab01d051c3e42c07b083a046d0882286a2162dc83b9519b56a49 -SIZE (yaz-5.14.3.tar.gz) = 2493661 +SHA256 (yaz-5.14.5.tar.gz) = be6ef82a1f3f4f325d19d9b3b7a16e7d9d0d58eb31436f8953f2d8ab07b539ac +SIZE (yaz-5.14.5.tar.gz) = 2550714 From owner-svn-ports-all@freebsd.org Mon Aug 10 17:06:51 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19C0299E18E; Mon, 10 Aug 2015 17:06:51 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A1967BD; Mon, 10 Aug 2015 17:06:51 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AH6o17035793; Mon, 10 Aug 2015 17:06:50 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AH6ovw035792; Mon, 10 Aug 2015 17:06:50 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508101706.t7AH6ovw035792@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 10 Aug 2015 17:06:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393878 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 17:06:51 -0000 Author: antoine Date: Mon Aug 10 17:06:50 2015 New Revision: 393878 URL: https://svnweb.freebsd.org/changeset/ports/393878 Log: Make baselibs QA check non recursive and activate it again Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D3352 Modified: head/Mk/Scripts/qa.sh Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Mon Aug 10 16:47:02 2015 (r393877) +++ head/Mk/Scripts/qa.sh Mon Aug 10 17:06:50 2015 (r393878) @@ -99,19 +99,19 @@ baselibs() { [ "${PKGBASE}" = "pkg" -o "${PKGBASE}" = "pkg-devel" ] && return while read f; do case ${f} in - /usr/lib/libarchive*) - err "Bad linking on ${f} please add USES=libarchive" + *NEEDED*\[libarchive.so.[56]]) + err "Bad linking on ${f##* } please add USES=libarchive" rc=1 ;; - /lib/libedit*) - err "Bad linking on ${f} please add USES=libedit" + *NEEDED*\[libedit.so.7]) + err "Bad linking on ${f##* } please add USES=libedit" rc=1 ;; esac done <<-EOF $(find ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/sbin \ ${STAGEDIR}${PREFIX}/lib ${STAGEDIR}${PREFIX}/libexec \ - -type f -exec ldd -a {} + 2>/dev/null) + -type f -exec readelf -d {} + 2>/dev/null) EOF return ${rc} } @@ -293,7 +293,7 @@ prefixvar() { fi } -checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles libtool libperl prefixvar" # baselibs" +checks="shebang symlinks paths stripped desktopfileutils sharedmimeinfo suidfiles libtool libperl prefixvar baselibs" ret=0 cd ${STAGEDIR} From owner-svn-ports-all@freebsd.org Mon Aug 10 17:12:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D0DF99E302; Mon, 10 Aug 2015 17:12:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73AB0B3B; Mon, 10 Aug 2015 17:12:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AHCkbL039885; Mon, 10 Aug 2015 17:12:46 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AHCix7039879; Mon, 10 Aug 2015 17:12:44 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508101712.t7AHCix7039879@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 10 Aug 2015 17:12:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393879 - in head/www: firefox firefox-i18n linux-firefox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 17:12:46 -0000 Author: jbeich Date: Mon Aug 10 17:12:44 2015 New Revision: 393879 URL: https://svnweb.freebsd.org/changeset/ports/393879 Log: Switch Firefox to the latest release candidate build5 contains a mozjemalloc fix but we're using bundled jemalloc 3.6.0-204-gb4acf73. So, no PORTREVISION bump for native version. Language packs only contain changes for timestamps or slave hostnames aka build noise. Changes: https://hg.mozilla.org/releases/mozilla-release/rev/9879336c72be MFH: 2015Q3 X-MFH-With: r393690 Modified: head/www/firefox-i18n/Makefile head/www/firefox-i18n/distinfo head/www/firefox/Makefile head/www/firefox/distinfo head/www/linux-firefox/Makefile head/www/linux-firefox/distinfo Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Mon Aug 10 17:06:50 2015 (r393878) +++ head/www/firefox-i18n/Makefile Mon Aug 10 17:12:44 2015 (r393879) @@ -5,7 +5,7 @@ PORTNAME= firefox-i18n PORTVERSION= 40.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build4/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build5/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} Modified: head/www/firefox-i18n/distinfo ============================================================================== --- head/www/firefox-i18n/distinfo Mon Aug 10 17:06:50 2015 (r393878) +++ head/www/firefox-i18n/distinfo Mon Aug 10 17:12:44 2015 (r393879) @@ -1,176 +1,176 @@ -SHA256 (xpi/firefox-i18n-40.0/ach.xpi) = e554083f001e907eec4a88bc81bef28393277c09b9c7ce1abe398210862b07a3 +SHA256 (xpi/firefox-i18n-40.0/ach.xpi) = ca02f5f99d39d1e8a0e213d38306ac51ec289fcb0487d057f54d09d1923cd0d1 SIZE (xpi/firefox-i18n-40.0/ach.xpi) = 494118 -SHA256 (xpi/firefox-i18n-40.0/af.xpi) = b61d8416df3becbc35f688ae7c96571cda02385061df4b00d984986407d56cea +SHA256 (xpi/firefox-i18n-40.0/af.xpi) = f45aa959ace5e985d629558ae108349032dad513b6a2b5883e9e4a5a35053b60 SIZE (xpi/firefox-i18n-40.0/af.xpi) = 498499 -SHA256 (xpi/firefox-i18n-40.0/an.xpi) = e1e0711f6a8d443f9f3593551226dbc76b6fc28aaea401bc6add52ca2e275bf1 +SHA256 (xpi/firefox-i18n-40.0/an.xpi) = 091b85264dfe2331e62de8c5ea051bbc018e00ada06be4a15d6809573858504d SIZE (xpi/firefox-i18n-40.0/an.xpi) = 476724 -SHA256 (xpi/firefox-i18n-40.0/ar.xpi) = 79bd4729256e570e4f20c3c221a3fa2a4741c148cd5849dfc20c5e35c7ca5faf +SHA256 (xpi/firefox-i18n-40.0/ar.xpi) = 2a3e4125730d215d7090b8a6b7bf0b3e06d991d8f2c26132f2c777a90633e021 SIZE (xpi/firefox-i18n-40.0/ar.xpi) = 532105 -SHA256 (xpi/firefox-i18n-40.0/as.xpi) = 6e39750f4837dc4c10bb62e3debb4a19303262292a24cddc02bb7a481c5d60aa +SHA256 (xpi/firefox-i18n-40.0/as.xpi) = 07f9a6864edfd55807f961639862ff7a46d4b550a976fa3f978a1dcfee8b195c SIZE (xpi/firefox-i18n-40.0/as.xpi) = 522245 -SHA256 (xpi/firefox-i18n-40.0/ast.xpi) = 3e62ed6c6ce14e3628d9458fc726ff2491f48c6d99fed78247081ff82357c4fc +SHA256 (xpi/firefox-i18n-40.0/ast.xpi) = e53e3481dfda6235b8af3cba577b73a9ebab85a6a13e4cfc7a9630d39c14948e SIZE (xpi/firefox-i18n-40.0/ast.xpi) = 408919 -SHA256 (xpi/firefox-i18n-40.0/az.xpi) = 1826c1051cab9cbe50efa046a8b44c72c26b75916e5820de93e33a7e4b407d5c +SHA256 (xpi/firefox-i18n-40.0/az.xpi) = bdb6b617e20f02166e19f36eba02e18d5de2276bff3f0d45c12ebb9eb0df1845 SIZE (xpi/firefox-i18n-40.0/az.xpi) = 505059 -SHA256 (xpi/firefox-i18n-40.0/be.xpi) = 9d89aa879892a8b95f4f79a5048614136e1e9a439f648c047ea15b0edc56f9e7 +SHA256 (xpi/firefox-i18n-40.0/be.xpi) = 65067347acf063f110ad8ade3254a7701db9fd5d73aea1d68497455f4fa43cf2 SIZE (xpi/firefox-i18n-40.0/be.xpi) = 464200 -SHA256 (xpi/firefox-i18n-40.0/bg.xpi) = 2013de458f1c0e2ba48c45dfa3ad8dc6ed50c78f73b912a3b395bcea089c17b2 +SHA256 (xpi/firefox-i18n-40.0/bg.xpi) = f51d9dc47627b2c9683220909174e31d293b4aa9088bcf753fbd895b84e92923 SIZE (xpi/firefox-i18n-40.0/bg.xpi) = 503493 -SHA256 (xpi/firefox-i18n-40.0/bn-BD.xpi) = 44a1cfd3a7709676132dba3f75d8984302dd6205c7cb541fbe68fb0d106548b7 +SHA256 (xpi/firefox-i18n-40.0/bn-BD.xpi) = 4da27685170fedcc6d35e10bd214032956c098abea3fe9e78fc8c67c021b6403 SIZE (xpi/firefox-i18n-40.0/bn-BD.xpi) = 538759 -SHA256 (xpi/firefox-i18n-40.0/bn-IN.xpi) = e840826d1f4f9389f9655fb3806c044d067459ff59f42db5e9ff2de037af9381 +SHA256 (xpi/firefox-i18n-40.0/bn-IN.xpi) = 0560547c67d500b634ce635d51a153ebbf3b9129e8ac450af2806e99cccf0ba5 SIZE (xpi/firefox-i18n-40.0/bn-IN.xpi) = 541269 -SHA256 (xpi/firefox-i18n-40.0/br.xpi) = f0b4ff7d974ce7becfff7769fb25e032f34b0dead44a99af46a8a1e1fcb693ac +SHA256 (xpi/firefox-i18n-40.0/br.xpi) = fbde4d5e57f4a750e313efe2d9cf72ec0a2ab3beb31816af76f30578a921ed9a SIZE (xpi/firefox-i18n-40.0/br.xpi) = 456848 -SHA256 (xpi/firefox-i18n-40.0/bs.xpi) = 73f5011523066ff6905d309ec35d4cef0a2ddf8615fd407d3facc39de2ba11aa +SHA256 (xpi/firefox-i18n-40.0/bs.xpi) = df3e7c6d6598e8aed886769ddf93321d102e05a2c05610e95fa8d8bcc6a80835 SIZE (xpi/firefox-i18n-40.0/bs.xpi) = 497331 -SHA256 (xpi/firefox-i18n-40.0/ca.xpi) = 665b3ddebe9469d4d83b3a5f6a3ade94c3a6f84bc74c6a70ae47660907f81e6c +SHA256 (xpi/firefox-i18n-40.0/ca.xpi) = 9873d8a1ad290d5b5e53811498bb8e8cfc6133efffa34756195fd8c0b3e2d255 SIZE (xpi/firefox-i18n-40.0/ca.xpi) = 474109 -SHA256 (xpi/firefox-i18n-40.0/cs.xpi) = f4dfa8d86217a603a1505147c6b552a99a270f1e0e555cf0ca6b59a584a45d0d +SHA256 (xpi/firefox-i18n-40.0/cs.xpi) = eec694b24562c1157007b117e4fd9156145d72f1f9eccb09781facaa8a4d3533 SIZE (xpi/firefox-i18n-40.0/cs.xpi) = 462357 -SHA256 (xpi/firefox-i18n-40.0/cy.xpi) = 274cee2b5d37a864209f7ef77005029341c194c76b2a734a6a3a7eff3a394b09 +SHA256 (xpi/firefox-i18n-40.0/cy.xpi) = a523735be0880b194449884deb3c7fee16df67831668d0138daac651255e94a8 SIZE (xpi/firefox-i18n-40.0/cy.xpi) = 459245 -SHA256 (xpi/firefox-i18n-40.0/da.xpi) = 010045369f3589ee09e6e3ffe9e56c65536d0be4cf9f84ace56607ba6d0f52a5 +SHA256 (xpi/firefox-i18n-40.0/da.xpi) = 7fffd2ac1cb1784268912d66cd4fd020c11a57ab2320c2e33cd2194e209cba40 SIZE (xpi/firefox-i18n-40.0/da.xpi) = 465571 -SHA256 (xpi/firefox-i18n-40.0/de.xpi) = 942a21e3741c265de969858c25d2c042d5d69a278a677f279b080fdfe2a7ebb4 +SHA256 (xpi/firefox-i18n-40.0/de.xpi) = 473bfcd2abefb2bf4d016b9b7fa84affc1d1f337fc7e2f35e7a6e737e766037c SIZE (xpi/firefox-i18n-40.0/de.xpi) = 467231 -SHA256 (xpi/firefox-i18n-40.0/dsb.xpi) = edfbdc66772da2528e3a67211325a9f085c4951ae69d7d6b27f344ce7dd97de9 +SHA256 (xpi/firefox-i18n-40.0/dsb.xpi) = 2b929dac317a6eae1c11e56dc81359b7dfcee6904997af2ce2109348e0cd199c SIZE (xpi/firefox-i18n-40.0/dsb.xpi) = 486586 -SHA256 (xpi/firefox-i18n-40.0/el.xpi) = 9b82a5e6c520c7b98d8d5cfdbf23e6893b39aeec40b93817b6f49738b848b11a +SHA256 (xpi/firefox-i18n-40.0/el.xpi) = 68eacf8bf2dfcc4ba1ba6b8c19300354a245d3d55ceb34c17a6694fe46762154 SIZE (xpi/firefox-i18n-40.0/el.xpi) = 513115 -SHA256 (xpi/firefox-i18n-40.0/en-GB.xpi) = 534bcde43d5441cba6f101eb175f26d161104617c8ae8e046c7865cd4bf8e595 +SHA256 (xpi/firefox-i18n-40.0/en-GB.xpi) = f7cee042d9c58291855ee601f6ccb441e31f06f6daa553867a83d1baba35ce82 SIZE (xpi/firefox-i18n-40.0/en-GB.xpi) = 451899 -SHA256 (xpi/firefox-i18n-40.0/en-US.xpi) = de23d7b289aae64d4aeb8d1bd00c7ea303acb477e28c5c36e4e55333e60f5993 +SHA256 (xpi/firefox-i18n-40.0/en-US.xpi) = efd835b830e5e42f900cb802a1f9affe9d3548db409271442b24dffb38da1ca0 SIZE (xpi/firefox-i18n-40.0/en-US.xpi) = 483748 -SHA256 (xpi/firefox-i18n-40.0/en-ZA.xpi) = 5df44c1ec6cf02a95dc54ff9039b7ceaae1ac2a8cdbaa74950d42e2dddccf921 +SHA256 (xpi/firefox-i18n-40.0/en-ZA.xpi) = 4e9b6fb1470f999e454c0dbd1b3373c7f5851499f199ec6c3080ffcc18018ab5 SIZE (xpi/firefox-i18n-40.0/en-ZA.xpi) = 455369 -SHA256 (xpi/firefox-i18n-40.0/eo.xpi) = c8404c5a03994073a599c60ca2b5b5fe8e122450d6a309711fb40b1dc7db5f8b +SHA256 (xpi/firefox-i18n-40.0/eo.xpi) = 93b95ec661112188316f418a87c2a7866fa5d41fe2181fc77a011091dd099641 SIZE (xpi/firefox-i18n-40.0/eo.xpi) = 500201 -SHA256 (xpi/firefox-i18n-40.0/es-AR.xpi) = b23c4d61e7ee35a0b4af14e8a0b04a8b6d90e92e09655953c34bda1d7a2936d5 +SHA256 (xpi/firefox-i18n-40.0/es-AR.xpi) = e83df51c03b27623ee95451ce534fec89581b71ab2beeb9455226d46e2ddda33 SIZE (xpi/firefox-i18n-40.0/es-AR.xpi) = 468597 -SHA256 (xpi/firefox-i18n-40.0/es-CL.xpi) = 1980bb1bb66d34cce9f986284718c18c8712092cafecb1329d0d1f8bdfaa63fa +SHA256 (xpi/firefox-i18n-40.0/es-CL.xpi) = 58fd971bbc3eecc374905009eac0b057732a31960dc25559be2ae3931b4d5bc3 SIZE (xpi/firefox-i18n-40.0/es-CL.xpi) = 394971 -SHA256 (xpi/firefox-i18n-40.0/es-ES.xpi) = 4514f639405508564f397b6f01668569737f175fbe7d8acc943336b2269b4eed +SHA256 (xpi/firefox-i18n-40.0/es-ES.xpi) = a54c2857874d920be18341dede5edfe58b504ea58df608a6942892f27f038de7 SIZE (xpi/firefox-i18n-40.0/es-ES.xpi) = 383893 -SHA256 (xpi/firefox-i18n-40.0/es-MX.xpi) = 6298279edc297d8253ee6b32536beb9ef0e7f7ca429b45bc4c5d65d9ed05dfad +SHA256 (xpi/firefox-i18n-40.0/es-MX.xpi) = d2095ad86bfe5c75f4ece9f13f2bed9fc7c96552abb491268052091a5389162e SIZE (xpi/firefox-i18n-40.0/es-MX.xpi) = 472916 -SHA256 (xpi/firefox-i18n-40.0/et.xpi) = b7cd97496d8cd4afc1a85b4bd17fb26fe3ee85c468a7d6b4fcb40b0b5c994ad9 +SHA256 (xpi/firefox-i18n-40.0/et.xpi) = 999d7f07b8883aa80b086a1c1e143c619898e9aa7bda4c633de99c028355d9b9 SIZE (xpi/firefox-i18n-40.0/et.xpi) = 457407 -SHA256 (xpi/firefox-i18n-40.0/eu.xpi) = 9156b7fb83fd9127c38ee5fe0284feff1e849a73210ae4a2f2f66fb1fc46382c +SHA256 (xpi/firefox-i18n-40.0/eu.xpi) = 63a5014e8fed8f45cfbad4f665fc476b8cca3110a096be990bef44e4d5c8ea49 SIZE (xpi/firefox-i18n-40.0/eu.xpi) = 481823 -SHA256 (xpi/firefox-i18n-40.0/fa.xpi) = 53095ebcbf9858886800385305496765e9c2837f4bba64c7e287893c819283e6 +SHA256 (xpi/firefox-i18n-40.0/fa.xpi) = dff526ad97b4f49503d483782e052c8c8bc9dd76efbce9da1e56a179ac64da6d SIZE (xpi/firefox-i18n-40.0/fa.xpi) = 526970 -SHA256 (xpi/firefox-i18n-40.0/ff.xpi) = 495081e6d635f4bddd335dd790b00b7c96d0eddad5ffca91c2ad4590808574a7 +SHA256 (xpi/firefox-i18n-40.0/ff.xpi) = 046651c1b1c7260d6f03795cc91d980904e3e0bce3c300010c32530e4088c5f4 SIZE (xpi/firefox-i18n-40.0/ff.xpi) = 465792 -SHA256 (xpi/firefox-i18n-40.0/fi.xpi) = d33c683435229aeb35742233a6462c52b60ccf6ea35a71750fe8b42781058bc4 +SHA256 (xpi/firefox-i18n-40.0/fi.xpi) = 1582bfdd5a88f8eba421c998ef91fada9ab9f7f4dea24dd557fd533404b3928a SIZE (xpi/firefox-i18n-40.0/fi.xpi) = 459381 -SHA256 (xpi/firefox-i18n-40.0/fr.xpi) = ef7824db8f82f5999261177722b28a80cf6f8c1ae0d6db348806e1ca1a1e1641 +SHA256 (xpi/firefox-i18n-40.0/fr.xpi) = ced2befd0e942378086fc42384eae7ba414e71d26d0b1ed18bc6b76737817006 SIZE (xpi/firefox-i18n-40.0/fr.xpi) = 477147 -SHA256 (xpi/firefox-i18n-40.0/fy-NL.xpi) = ff52c34f9552b5fa98edec028cf52306dd9759cd3f18efeb03559dd8499cb151 +SHA256 (xpi/firefox-i18n-40.0/fy-NL.xpi) = 5614cb671ddf8bf4693dc0b56ce5ec66db097b2e0939731fead2c9834773806d SIZE (xpi/firefox-i18n-40.0/fy-NL.xpi) = 471144 -SHA256 (xpi/firefox-i18n-40.0/ga-IE.xpi) = 71cfb7ea4fbd63e0b06eafe61a22a9c8d787fe5668ff2247ccd8141f41c1b4ea +SHA256 (xpi/firefox-i18n-40.0/ga-IE.xpi) = 2ecaa8311ab75575e7e5c3c2862f4fd92b463ba500b5cf04aa8c194967fe9e2f SIZE (xpi/firefox-i18n-40.0/ga-IE.xpi) = 485534 -SHA256 (xpi/firefox-i18n-40.0/gd.xpi) = 1e47002a4428fcccff851a50753c376b2970de7f857e30f7ede8273087e9cdda +SHA256 (xpi/firefox-i18n-40.0/gd.xpi) = e0197a0970e00bc7c4743ba6c3cb1e51fea7c3bbc748ab0fae69a98024b3f0c1 SIZE (xpi/firefox-i18n-40.0/gd.xpi) = 469749 -SHA256 (xpi/firefox-i18n-40.0/gl.xpi) = 8e00af1201cc5c7a22377cbdec0d6c5bceeb0c3ee4bbae078c1e2471c9e26a5a +SHA256 (xpi/firefox-i18n-40.0/gl.xpi) = 982b7920f2a4fe99a675c85a53c19641bc87d3e604857c0c3b0627f2a6047b81 SIZE (xpi/firefox-i18n-40.0/gl.xpi) = 463633 -SHA256 (xpi/firefox-i18n-40.0/gu-IN.xpi) = 2db4e55437ffe7b3782d39e443b4026406ebcbb944eaa2379ba043b5f7c3fc3a +SHA256 (xpi/firefox-i18n-40.0/gu-IN.xpi) = ee29696c663fdb9c7ee1840af3936e1c066b6bd6d0cb0c75c971313f2ae6ce41 SIZE (xpi/firefox-i18n-40.0/gu-IN.xpi) = 498590 -SHA256 (xpi/firefox-i18n-40.0/he.xpi) = 878788f3071655ac4d41e3fd366273f2146c74109badc025476a89159c9a348a +SHA256 (xpi/firefox-i18n-40.0/he.xpi) = c0ac7563f99548086e167e17555929dc82e00962aae8b3693d2b38b5c5a9c780 SIZE (xpi/firefox-i18n-40.0/he.xpi) = 497109 -SHA256 (xpi/firefox-i18n-40.0/hi-IN.xpi) = 6c55c894e0167c755703fb4a1255a98d7adf5a6c4bde3d19df632ef39f3ccd43 +SHA256 (xpi/firefox-i18n-40.0/hi-IN.xpi) = 7d80c3d7ca89e046649e99d7fe61f6d2d9d7e72980224132312220e62c42d8aa SIZE (xpi/firefox-i18n-40.0/hi-IN.xpi) = 519928 -SHA256 (xpi/firefox-i18n-40.0/hr.xpi) = 44c2593a6e19cbf14800fac98950cbe68a5852b61bd3af054dacba3def384464 +SHA256 (xpi/firefox-i18n-40.0/hr.xpi) = a687e6d6d960311ed82e37d030a6d91148b40adde2ca905ee4204702e23b9c49 SIZE (xpi/firefox-i18n-40.0/hr.xpi) = 494491 -SHA256 (xpi/firefox-i18n-40.0/hsb.xpi) = f3223386cfc2fdc9b6db091c34b5a2502fe58efc52566d5a89f438591b0b2b20 +SHA256 (xpi/firefox-i18n-40.0/hsb.xpi) = 903b39eb11f9332df348026e3f58d4290ff1678b44d5f11a1df85c7377619d25 SIZE (xpi/firefox-i18n-40.0/hsb.xpi) = 484248 -SHA256 (xpi/firefox-i18n-40.0/hu.xpi) = db41373d2ecc78d4e54c3cc9c0be9763b4cbb69d575c0c047667449a701e69e4 +SHA256 (xpi/firefox-i18n-40.0/hu.xpi) = 7c927e48952f2611cba8b96effdb82e78c5e8ed60c812f952a3a974f01c2fbe7 SIZE (xpi/firefox-i18n-40.0/hu.xpi) = 469053 -SHA256 (xpi/firefox-i18n-40.0/hy-AM.xpi) = 560d7ad91c649135c496dbe68b1afdd9ff75b0dbe5a45e60d082f30149308972 -SIZE (xpi/firefox-i18n-40.0/hy-AM.xpi) = 550064 -SHA256 (xpi/firefox-i18n-40.0/id.xpi) = 7ed0e561eb2c186af2e478dc8f8b1fa93811ff2ab91fefcd808e2fb8b3ed4e23 +SHA256 (xpi/firefox-i18n-40.0/hy-AM.xpi) = 54f6aa6be8b097babce7a1bbce2755ff6ebc6cbfdfb1d2ec43b511dcca38a1bf +SIZE (xpi/firefox-i18n-40.0/hy-AM.xpi) = 550065 +SHA256 (xpi/firefox-i18n-40.0/id.xpi) = cbcf54dfbe363063324665ff95aad2999aefccc6bce46fce8d1c25d069eddabc SIZE (xpi/firefox-i18n-40.0/id.xpi) = 446091 -SHA256 (xpi/firefox-i18n-40.0/is.xpi) = cb0a953953eda60c0dae5e94cb7cc169c85a516ed5d92bb92de1078c4a6756d1 +SHA256 (xpi/firefox-i18n-40.0/is.xpi) = 8c43f3bdf8c19d08dd86b4e8ac6b7bd9372016eff975b0f5ff08c8afaaebf12a SIZE (xpi/firefox-i18n-40.0/is.xpi) = 499892 -SHA256 (xpi/firefox-i18n-40.0/it.xpi) = 42ef3776f64d19a121767dcab78e378a248a953e66388a0312ab313b23d62eda +SHA256 (xpi/firefox-i18n-40.0/it.xpi) = 871a41fcc795d10190d20569679dc3de83017575e2154a52c42cdaca14b2a482 SIZE (xpi/firefox-i18n-40.0/it.xpi) = 377832 -SHA256 (xpi/firefox-i18n-40.0/ja.xpi) = 8cd5f175b821c3a6ecf92d33a440c90852e6c35655c45cc9f4057cc962b59f2f +SHA256 (xpi/firefox-i18n-40.0/ja.xpi) = fc99e2a54727214f93dd0d76bfb86d5513ea05f6de99938a465c9d0c69a783ce SIZE (xpi/firefox-i18n-40.0/ja.xpi) = 495438 -SHA256 (xpi/firefox-i18n-40.0/kk.xpi) = f025a610be25f5c968888fa5a72de98f4f8a57c20873ff55ab7997b01b31a42a +SHA256 (xpi/firefox-i18n-40.0/kk.xpi) = 0c5bcd8def91e4786c5a92e3b48426bcc5abb3c33531a82f2e1fa6333ac00d72 SIZE (xpi/firefox-i18n-40.0/kk.xpi) = 520130 -SHA256 (xpi/firefox-i18n-40.0/km.xpi) = 8865824596d407f85d2c230529974e12404a209541d00dee03750bf3553b1084 +SHA256 (xpi/firefox-i18n-40.0/km.xpi) = 114fd9a9dfd62b24ba8757ce6a5961902e9303052a7416310959c0b4bb3b2abb SIZE (xpi/firefox-i18n-40.0/km.xpi) = 578732 -SHA256 (xpi/firefox-i18n-40.0/kn.xpi) = f38ad6fab46fc33df076f9ad0bebf880c469519a2725b64ae4a053e1567ca202 +SHA256 (xpi/firefox-i18n-40.0/kn.xpi) = e781b59532705bbfc56bb3ffdd5af7cebaea04f29ab2debf12eae81d618c5ea1 SIZE (xpi/firefox-i18n-40.0/kn.xpi) = 550863 -SHA256 (xpi/firefox-i18n-40.0/ko.xpi) = dcb3903a9364c6377cac36fc955d33a2715dac93d5279ecef2bd93e52d18055c +SHA256 (xpi/firefox-i18n-40.0/ko.xpi) = 876efa04637fb512567aa26a3fe29a49595381a54014dc96ba5da08b9f18c766 SIZE (xpi/firefox-i18n-40.0/ko.xpi) = 476891 -SHA256 (xpi/firefox-i18n-40.0/lij.xpi) = 1a1ff8c9b44e1ae04a0d51a5583383580999b2396319fd3c3f2288a12db6fce2 +SHA256 (xpi/firefox-i18n-40.0/lij.xpi) = 86d35b1e7c9e786c96e80848702271dbaf686c5096208e922bf62cc92a75211f SIZE (xpi/firefox-i18n-40.0/lij.xpi) = 462237 -SHA256 (xpi/firefox-i18n-40.0/lt.xpi) = 543abc37f38598d2eb39958c734300ce1148fb8b9682bf5aa8d6bb5916f7e379 +SHA256 (xpi/firefox-i18n-40.0/lt.xpi) = 90fc8ae12a9e138c362ce2f24c4ec4f92cd74531fcb1608c314b681a158858bd SIZE (xpi/firefox-i18n-40.0/lt.xpi) = 502209 -SHA256 (xpi/firefox-i18n-40.0/lv.xpi) = 45151a53dd326c6b33f54c238c18291002460ccb93978dffd69b793efa2cbc85 +SHA256 (xpi/firefox-i18n-40.0/lv.xpi) = c94d29e49ff3db5cc0d135947188209f8177a5191e387fb98011241416d4ab2f SIZE (xpi/firefox-i18n-40.0/lv.xpi) = 482485 -SHA256 (xpi/firefox-i18n-40.0/mai.xpi) = fb5fb7035dcca358d01977daf06a0b216e99ddd127ad606713cd31ad6b3a96dc +SHA256 (xpi/firefox-i18n-40.0/mai.xpi) = 3ecfc494299261ff0794282741a56ba78ae3a5b2c35eb42bcccd1780852e9574 SIZE (xpi/firefox-i18n-40.0/mai.xpi) = 527989 -SHA256 (xpi/firefox-i18n-40.0/mk.xpi) = 571cac4d6787bb9e1caeedf82fcb736f8dd884f04ae8ba5ad771ec2f84aef7c0 +SHA256 (xpi/firefox-i18n-40.0/mk.xpi) = a6c5228127d89c1bc17ef440a094177a8d7ba58950681edf46dfda5017b6e697 SIZE (xpi/firefox-i18n-40.0/mk.xpi) = 542561 -SHA256 (xpi/firefox-i18n-40.0/ml.xpi) = a621fb5bfdd873609a05e8c9c41f3e4b8587294b44ce3dae4737cfcd1dd69789 +SHA256 (xpi/firefox-i18n-40.0/ml.xpi) = 3766a54605edaf8eaa00fa21a5119d703edd2d5f9cc415a17684590c0ba9c210 SIZE (xpi/firefox-i18n-40.0/ml.xpi) = 540382 -SHA256 (xpi/firefox-i18n-40.0/mr.xpi) = 01ddeebf2c72cd23bacc4fd47138ef1e0032d67696da7fe15e3fb356c84d40d5 +SHA256 (xpi/firefox-i18n-40.0/mr.xpi) = 1cfc49d575c6219b85ee6a1dc6745bd82941d7465c8c9e7c03d0f403427d0c29 SIZE (xpi/firefox-i18n-40.0/mr.xpi) = 522284 -SHA256 (xpi/firefox-i18n-40.0/ms.xpi) = 92b03a2ca0d763c96ff7b7f0dfe1f28d882343a238d2b4538db03a657293b692 +SHA256 (xpi/firefox-i18n-40.0/ms.xpi) = 4a670b3001e0d4027668b682d61db471f1674c5b73948f3b3e629f48b557f011 SIZE (xpi/firefox-i18n-40.0/ms.xpi) = 504518 -SHA256 (xpi/firefox-i18n-40.0/nb-NO.xpi) = 576c14b1001a03f3ab7d58a39b896268be81edd83abffbe393d9ce3ef225181e +SHA256 (xpi/firefox-i18n-40.0/nb-NO.xpi) = 2d5c92898d146f21557f8e7795a440ad62ebfc23c76318636fb7ff9daac955a8 SIZE (xpi/firefox-i18n-40.0/nb-NO.xpi) = 458940 -SHA256 (xpi/firefox-i18n-40.0/nl.xpi) = c036ec11b744f07c118709c53988d96bb2ef8129b8d9c1737a9882d789e9c8c9 +SHA256 (xpi/firefox-i18n-40.0/nl.xpi) = 3d3d38700686e0827e68dccb2356156e2bac994b65c5535532a7737db197b467 SIZE (xpi/firefox-i18n-40.0/nl.xpi) = 458630 -SHA256 (xpi/firefox-i18n-40.0/nn-NO.xpi) = 62b82af6bf1e9af4b13ec6b04e3f508f120c60caa662fc0668b5f0177a0c3684 +SHA256 (xpi/firefox-i18n-40.0/nn-NO.xpi) = 2b465866f5ed4b75c74916bfdb941625bfc87f3de91a456b93822c6c51eba76c SIZE (xpi/firefox-i18n-40.0/nn-NO.xpi) = 453067 -SHA256 (xpi/firefox-i18n-40.0/or.xpi) = 5f3b0626feccf7fb7452a205293c21a104a94384ab735a084eb0dc6d3a861db7 +SHA256 (xpi/firefox-i18n-40.0/or.xpi) = e35a70b4ae54805897ba1d9610ddfde53a32bf7d8d5e1d594f96e149088460c9 SIZE (xpi/firefox-i18n-40.0/or.xpi) = 539206 -SHA256 (xpi/firefox-i18n-40.0/pa-IN.xpi) = a2cec7e89cc7c4a4008aa4a546166dd3c7e09de104d31e71d85c112d5f7ca650 +SHA256 (xpi/firefox-i18n-40.0/pa-IN.xpi) = 95946af6a91299e16db59860a27e2e0268ed3d275eea891e2c1765564938eb7d SIZE (xpi/firefox-i18n-40.0/pa-IN.xpi) = 509121 -SHA256 (xpi/firefox-i18n-40.0/pl.xpi) = b25358252256a6a91f32b8b6e255e59d3012793549e3ba4bda7a8896c3c35376 +SHA256 (xpi/firefox-i18n-40.0/pl.xpi) = 282e248cdbcba9e0084bbda672ec05f719cd8dd268c556afe7dd2fb595ad5237 SIZE (xpi/firefox-i18n-40.0/pl.xpi) = 415190 -SHA256 (xpi/firefox-i18n-40.0/pt-BR.xpi) = b556a5dca70d9f8b368ab63b0a8d416a88b5a453bdafc309522e2c5d5e4c3156 +SHA256 (xpi/firefox-i18n-40.0/pt-BR.xpi) = 03ea49f1805f8e92e9e412a4985b42cc2a6e7fffc8c49b9d5bac6e7a00e08530 SIZE (xpi/firefox-i18n-40.0/pt-BR.xpi) = 475444 -SHA256 (xpi/firefox-i18n-40.0/pt-PT.xpi) = 9936c7c749f36252179435c8555b8c4249b8f694539f773e4fbd0e920ec55b7b +SHA256 (xpi/firefox-i18n-40.0/pt-PT.xpi) = c3baa331322028ce9a4fe05ba9650b671e0499db407361c6e01c6b724e5a55ba SIZE (xpi/firefox-i18n-40.0/pt-PT.xpi) = 456034 -SHA256 (xpi/firefox-i18n-40.0/rm.xpi) = cd7f900284b029ecb39d4405bec94652130d1a3b368530375e93d59fafcad18a +SHA256 (xpi/firefox-i18n-40.0/rm.xpi) = f6c2a17f69d620d8fd1372a535ee13b233a6fdce599937e05b973c8bddb82fd0 SIZE (xpi/firefox-i18n-40.0/rm.xpi) = 461465 -SHA256 (xpi/firefox-i18n-40.0/ro.xpi) = fb32a84eae34c040d295b0bc935f8804e03bff7c74a9b5619fb19f72230f49a7 +SHA256 (xpi/firefox-i18n-40.0/ro.xpi) = 44cda9cf2069951525d2dbe31246f89988e24edc7dcc348722e451c50afd0df3 SIZE (xpi/firefox-i18n-40.0/ro.xpi) = 509715 -SHA256 (xpi/firefox-i18n-40.0/ru.xpi) = bde2daf623054fb3d780fcf702754aaa5a93ecb73e8ea11bca1dbdd6e3cf5ff1 +SHA256 (xpi/firefox-i18n-40.0/ru.xpi) = f18934cd55f93e507785c9e4aa80595030155367d69f1cf8d4a1b01ab88083ba SIZE (xpi/firefox-i18n-40.0/ru.xpi) = 425656 -SHA256 (xpi/firefox-i18n-40.0/si.xpi) = 03d266f9758b421d85b12ea37fa7c256b6c16b86d7867ea04093f42ac3bcc68f +SHA256 (xpi/firefox-i18n-40.0/si.xpi) = a21bfb4257bfbaf9a1980469841db7512209528e1ae6316ad7d668e3f53d2ec3 SIZE (xpi/firefox-i18n-40.0/si.xpi) = 548767 -SHA256 (xpi/firefox-i18n-40.0/sk.xpi) = 4005c70a7fa251b35068fc489676eaa72daef195ec37690bb0ae3f862e70719a +SHA256 (xpi/firefox-i18n-40.0/sk.xpi) = 6fe43380ee3bce96815afa1ebd624ed5c69b8faa5857624805f48427ef16e2c7 SIZE (xpi/firefox-i18n-40.0/sk.xpi) = 485119 -SHA256 (xpi/firefox-i18n-40.0/sl.xpi) = f82b26ef4f77c6b7ac2fb6f540eac48282c591908b174d5efefd1926df37ebff +SHA256 (xpi/firefox-i18n-40.0/sl.xpi) = 894af87db630be047f0810dde97e335f4c232eeb5fc13be25e670dc381caa38e SIZE (xpi/firefox-i18n-40.0/sl.xpi) = 457939 -SHA256 (xpi/firefox-i18n-40.0/son.xpi) = e6c1c250b4e28c9d6cfeff9289f3a54cf4b7948dc109f70566478bb8912b3733 +SHA256 (xpi/firefox-i18n-40.0/son.xpi) = f27b321a469ae9f759306592c15b75110917bd3acaceafeb9551584e52fc1a57 SIZE (xpi/firefox-i18n-40.0/son.xpi) = 465947 -SHA256 (xpi/firefox-i18n-40.0/sq.xpi) = 173a8bebd0ee5171eb78499db0d3c16b71670eb71121070186baa7e39c266c12 +SHA256 (xpi/firefox-i18n-40.0/sq.xpi) = 8dbc7015dd6a4cdfb8b8451bc6c911cb51a6c08f25669e20d3bb2163667da24d SIZE (xpi/firefox-i18n-40.0/sq.xpi) = 501444 -SHA256 (xpi/firefox-i18n-40.0/sr.xpi) = e4d37920e3533eae7ada50c3ec61751c5f5c66502a2cfece58e8e8d13bdca6f0 +SHA256 (xpi/firefox-i18n-40.0/sr.xpi) = fb94b577f6321ab0283e8edef75c46afa5ebbfad906bfa79d7fc03bd5eee3a50 SIZE (xpi/firefox-i18n-40.0/sr.xpi) = 494735 -SHA256 (xpi/firefox-i18n-40.0/sv-SE.xpi) = e29c4b7e2eb91ffdd5ccc45b12262ea3c3f3d1d37029db07591e6f05207c60c0 +SHA256 (xpi/firefox-i18n-40.0/sv-SE.xpi) = e42282ec857ac1109b4ea67eca75c3b1aa93e706784e28931938169c1e6b702f SIZE (xpi/firefox-i18n-40.0/sv-SE.xpi) = 467790 -SHA256 (xpi/firefox-i18n-40.0/ta.xpi) = 95288f552337949c2f1c77bb0a85c251e3f79acd46ce0b9c24f7b34200cccda5 +SHA256 (xpi/firefox-i18n-40.0/ta.xpi) = d7835a10acd1466f5989b3a84d46642f2e648442492de8a3e8963037543056c1 SIZE (xpi/firefox-i18n-40.0/ta.xpi) = 521799 -SHA256 (xpi/firefox-i18n-40.0/te.xpi) = 2c4b6a1bceef86db1648c41542f6c889f7a71c8590ab72019aaab5f45f3ef5a6 +SHA256 (xpi/firefox-i18n-40.0/te.xpi) = d6138ba9a174fed4f5d9a47b24f88a6994da55bff36c5c0f98eabe735f482670 SIZE (xpi/firefox-i18n-40.0/te.xpi) = 540973 -SHA256 (xpi/firefox-i18n-40.0/th.xpi) = 7a557c263fe642d0a4587b4ecd4bb0f03fa44ed3b3710d1d0a60551138c61764 +SHA256 (xpi/firefox-i18n-40.0/th.xpi) = a40620a3f192f16f7fc4718a19fb22793697dfb69b0386160ecff818ea749dc4 SIZE (xpi/firefox-i18n-40.0/th.xpi) = 550262 -SHA256 (xpi/firefox-i18n-40.0/tr.xpi) = 86775c5eaaabdf8a5cbe05ad7da205eabc84f5f12ad462c824bf68fa172bacb6 +SHA256 (xpi/firefox-i18n-40.0/tr.xpi) = db14675bacb15818a308834d4df3cb33a63c80d232f285e0ba42c7deb159c89b SIZE (xpi/firefox-i18n-40.0/tr.xpi) = 496252 -SHA256 (xpi/firefox-i18n-40.0/uk.xpi) = 630737a2587417d71cf131dfc4545859e51e99573c99aebf9af39385240c5185 +SHA256 (xpi/firefox-i18n-40.0/uk.xpi) = b31fbb07e96ed324ff4a6a5866c277a41bcd1cf5364f451872f92455b24ee229 SIZE (xpi/firefox-i18n-40.0/uk.xpi) = 511143 -SHA256 (xpi/firefox-i18n-40.0/vi.xpi) = b49d38eba8b33d393c1ddc55789ce5f519214003f82bd42b3e0de736d28411bb +SHA256 (xpi/firefox-i18n-40.0/vi.xpi) = b808813cbc18c8499c6f7f4375615be4da26139e35de5fda9793ba343fa44d80 SIZE (xpi/firefox-i18n-40.0/vi.xpi) = 481058 -SHA256 (xpi/firefox-i18n-40.0/xh.xpi) = 79ea2a29f890d7b702b21618e7fad17163e887c6fdb449d38a6926218b2993fa +SHA256 (xpi/firefox-i18n-40.0/xh.xpi) = 28bca0c51a4df03a9eff05b97448aa5c5ffa4e5063a4bd0f18eb1964ab5f2712 SIZE (xpi/firefox-i18n-40.0/xh.xpi) = 461037 -SHA256 (xpi/firefox-i18n-40.0/zh-CN.xpi) = 95906a6de0651b8c09b000df1a643ea0cd056bf69599ff6a022603ea5fb61d4d +SHA256 (xpi/firefox-i18n-40.0/zh-CN.xpi) = 8b11a715c1b61b6b06e444b64c9c04e6208351fd0ad70dcbf41252bbe64b5307 SIZE (xpi/firefox-i18n-40.0/zh-CN.xpi) = 504407 -SHA256 (xpi/firefox-i18n-40.0/zh-TW.xpi) = c8a93b71e583a6736d7a7e57d0f468c805b8852b6a12253b951c21336bfceb1b +SHA256 (xpi/firefox-i18n-40.0/zh-TW.xpi) = 6e97bbc8e1e3868c741a79cb1a878e2b8f1d7a5175c62341dcc8e256698d9139 SIZE (xpi/firefox-i18n-40.0/zh-TW.xpi) = 491274 Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Mon Aug 10 17:06:50 2015 (r393878) +++ head/www/firefox/Makefile Mon Aug 10 17:12:44 2015 (r393879) @@ -8,7 +8,7 @@ PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build4/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build5/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Mon Aug 10 17:06:50 2015 (r393878) +++ head/www/firefox/distinfo Mon Aug 10 17:12:44 2015 (r393879) @@ -1,2 +1,2 @@ -SHA256 (firefox-40.0.source.tar.bz2) = 85890be28de9e4af047fd79ce2c4616488a2a1f5c9845a03f861b24cbeb169d1 -SIZE (firefox-40.0.source.tar.bz2) = 178284401 +SHA256 (firefox-40.0.source.tar.bz2) = e3a26164b3a7f1aefbe13a07f0fdcd322726e4bb8c7e9432d1671c8c9e37145a +SIZE (firefox-40.0.source.tar.bz2) = 178288925 Modified: head/www/linux-firefox/Makefile ============================================================================== --- head/www/linux-firefox/Makefile Mon Aug 10 17:06:50 2015 (r393878) +++ head/www/linux-firefox/Makefile Mon Aug 10 17:12:44 2015 (r393879) @@ -3,10 +3,11 @@ PORTNAME= firefox DISTVERSION= 40.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/linux-i686/en-US \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build4/linux-i686/en-US + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build5/linux-i686/en-US MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla Modified: head/www/linux-firefox/distinfo ============================================================================== --- head/www/linux-firefox/distinfo Mon Aug 10 17:06:50 2015 (r393878) +++ head/www/linux-firefox/distinfo Mon Aug 10 17:12:44 2015 (r393879) @@ -1,5 +1,5 @@ -SHA256 (firefox-40.0.tar.bz2) = ee2c2bb0bf690807644095f7b220506aa2895ec00a7a9133c3da7cf4a8c63b55 -SIZE (firefox-40.0.tar.bz2) = 49228898 +SHA256 (firefox-40.0.tar.bz2) = 56a15bfc31445defde693843d88faa249419d4ba97e2addfa8fb311e4b8b4b65 +SIZE (firefox-40.0.tar.bz2) = 49230121 SHA256 (glib2-2.22.2-2.fc12.i686.rpm) = e3b459c245ec14e7248e9de4b506963a4773407f3e58835db5070d0ed02ecc99 SIZE (glib2-2.22.2-2.fc12.i686.rpm) = 1162908 SHA256 (gtk2-2.18.3-19.fc12.i686.rpm) = aea9cf7ffe9c8dae0faa2bf3d2aa1b2117c55dce03da72dcce8c268279ec0a4b From owner-svn-ports-all@freebsd.org Mon Aug 10 17:31:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15CB399E872; Mon, 10 Aug 2015 17:31:29 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04A7D858; Mon, 10 Aug 2015 17:31:29 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AHVSYQ048218; Mon, 10 Aug 2015 17:31:28 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AHVSEX048215; Mon, 10 Aug 2015 17:31:28 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201508101731.t7AHVSEX048215@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Mon, 10 Aug 2015 17:31:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393880 - head/lang/swi-pl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 17:31:29 -0000 Author: johans Date: Mon Aug 10 17:31:27 2015 New Revision: 393880 URL: https://svnweb.freebsd.org/changeset/ports/393880 Log: Update to SWI Prolog 7.2.2 "7.2.x is a major release, providing native key-value support by means of dicts, native strings using "hello world" syntax, web-accessible Prolog engines (Pengines) and a high level SQL library called CQL." Modified: head/lang/swi-pl/Makefile head/lang/swi-pl/distinfo head/lang/swi-pl/pkg-plist Modified: head/lang/swi-pl/Makefile ============================================================================== --- head/lang/swi-pl/Makefile Mon Aug 10 17:12:44 2015 (r393879) +++ head/lang/swi-pl/Makefile Mon Aug 10 17:31:27 2015 (r393880) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= swi-pl -PORTVERSION= 6.6.6 +PORTVERSION= 7.2.2 CATEGORIES= lang MASTER_SITES= http://www.swi-prolog.org/download/stable/src/ -DISTNAME= pl-${PORTVERSION} +DISTNAME= swipl-${PORTVERSION} MAINTAINER= johans@FreeBSD.org COMMENT= Edinburgh-style Prolog compiler Modified: head/lang/swi-pl/distinfo ============================================================================== --- head/lang/swi-pl/distinfo Mon Aug 10 17:12:44 2015 (r393879) +++ head/lang/swi-pl/distinfo Mon Aug 10 17:31:27 2015 (r393880) @@ -1,2 +1,2 @@ -SHA256 (pl-6.6.6.tar.gz) = 9f80bb274e2f31fd68b0acbe35982c012d5f8311dbe44ec1d8d04351a776996d -SIZE (pl-6.6.6.tar.gz) = 14838653 +SHA256 (swipl-7.2.2.tar.gz) = c137bbe1d652a6aaa003278045e592637cd9fd5f1d52b05f9f0751bfd9449c8d +SIZE (swipl-7.2.2.tar.gz) = 16179490 Modified: head/lang/swi-pl/pkg-plist ============================================================================== --- head/lang/swi-pl/pkg-plist Mon Aug 10 17:12:44 2015 (r393879) +++ head/lang/swi-pl/pkg-plist Mon Aug 10 17:31:27 2015 (r393880) @@ -2,10 +2,6 @@ bin/swipl bin/swipl-ld bin/swipl-rc bin/xpce-client -man/man1/swipl-ld.1.gz -man/man1/swipl-rc.1.gz -man/man1/swipl.1.gz -man/man1/xpce-client.1.gz lib/%%DISTNAME%%/Makefile lib/%%DISTNAME%%/bin/swipl.home lib/%%DISTNAME%%/bin/%%ARCH%%-%%OS%%/swipl @@ -16,6 +12,7 @@ lib/%%DISTNAME%%/boot/attvar.pl lib/%%DISTNAME%%/boot/autoload.pl lib/%%DISTNAME%%/boot/bags.pl lib/%%DISTNAME%%/boot/dcg.pl +lib/%%DISTNAME%%/boot/dicts.pl lib/%%DISTNAME%%/boot/dwim.pl lib/%%DISTNAME%%/boot/expand.pl lib/%%DISTNAME%%/boot/history.pl @@ -33,7 +30,7 @@ lib/%%DISTNAME%%/boot/toplevel.pl lib/%%DISTNAME%%/boot/topvars.pl lib/%%DISTNAME%%/boot%%BITS%%.prc lib/%%DISTNAME%%/customize/README -lib/%%DISTNAME%%/customize/dotplrc +lib/%%DISTNAME%%/customize/dotswiplrc lib/%%DISTNAME%%/customize/dotxpcerc lib/%%DISTNAME%%/customize/edit lib/%%DISTNAME%%/demo/README @@ -71,6 +68,7 @@ lib/%%DISTNAME%%/doc/Manual/check.html lib/%%DISTNAME%%/doc/Manual/chr.html lib/%%DISTNAME%%/doc/Manual/chrintro.html lib/%%DISTNAME%%/doc/Manual/clicense.html +lib/%%DISTNAME%%/doc/Manual/clpb.html lib/%%DISTNAME%%/doc/Manual/clpfd.html lib/%%DISTNAME%%/doc/Manual/clpqr.html lib/%%DISTNAME%%/doc/Manual/cmdline.html @@ -90,6 +88,7 @@ lib/%%DISTNAME%%/doc/Manual/debugging.ht lib/%%DISTNAME%%/doc/Manual/debugoverview.html lib/%%DISTNAME%%/doc/Manual/defmodule.html lib/%%DISTNAME%%/doc/Manual/dialect.html +lib/%%DISTNAME%%/doc/Manual/dicts.html lib/%%DISTNAME%%/doc/Manual/dynamic-modules.html lib/%%DISTNAME%%/doc/Manual/dynamic.html lib/%%DISTNAME%%/doc/Manual/edit.html @@ -100,6 +99,11 @@ lib/%%DISTNAME%%/doc/Manual/examples.htm lib/%%DISTNAME%%/doc/Manual/excepthook.html lib/%%DISTNAME%%/doc/Manual/exception.html lib/%%DISTNAME%%/doc/Manual/exception3.html +lib/%%DISTNAME%%/doc/Manual/ext-integration.html +lib/%%DISTNAME%%/doc/Manual/ext-issues.html +lib/%%DISTNAME%%/doc/Manual/ext-lists.html +lib/%%DISTNAME%%/doc/Manual/ext-syntax.html +lib/%%DISTNAME%%/doc/Manual/extensions.html lib/%%DISTNAME%%/doc/Manual/extvar.html lib/%%DISTNAME%%/doc/Manual/files.html lib/%%DISTNAME%%/doc/Manual/findappfile.html @@ -140,6 +144,7 @@ lib/%%DISTNAME%%/doc/Manual/initfile.htm lib/%%DISTNAME%%/doc/Manual/initgoal.html lib/%%DISTNAME%%/doc/Manual/intlibs.html lib/%%DISTNAME%%/doc/Manual/intro.html +lib/%%DISTNAME%%/doc/Manual/iostream.html lib/%%DISTNAME%%/doc/Manual/jitindex.html lib/%%DISTNAME%%/doc/Manual/libpl.html lib/%%DISTNAME%%/doc/Manual/library.html @@ -176,6 +181,7 @@ lib/%%DISTNAME%%/doc/Manual/overrule.htm lib/%%DISTNAME%%/doc/Manual/overview.html lib/%%DISTNAME%%/doc/Manual/pairs.html lib/%%DISTNAME%%/doc/Manual/pceemacs.html +lib/%%DISTNAME%%/doc/Manual/persistency.html lib/%%DISTNAME%%/doc/Manual/pio.html lib/%%DISTNAME%%/doc/Manual/plld.html lib/%%DISTNAME%%/doc/Manual/portabilitystrategies.html @@ -206,6 +212,7 @@ lib/%%DISTNAME%%/doc/Manual/sicstus-chr. lib/%%DISTNAME%%/doc/Manual/signal.html lib/%%DISTNAME%%/doc/Manual/simplex.html lib/%%DISTNAME%%/doc/Manual/softlicense.html +lib/%%DISTNAME%%/doc/Manual/solutionsequences.html lib/%%DISTNAME%%/doc/Manual/sponsor.html lib/%%DISTNAME%%/doc/Manual/statistics.html lib/%%DISTNAME%%/doc/Manual/status.html @@ -215,7 +222,6 @@ lib/%%DISTNAME%%/doc/Manual/summary.html lib/%%DISTNAME%%/doc/Manual/swiorother.html lib/%%DISTNAME%%/doc/Manual/swiprolog.html lib/%%DISTNAME%%/doc/Manual/syntax.html -lib/%%DISTNAME%%/doc/Manual/syntaxext.html lib/%%DISTNAME%%/doc/Manual/system.html lib/%%DISTNAME%%/doc/Manual/termrw.html lib/%%DISTNAME%%/doc/Manual/thmonitor.html @@ -243,10 +249,9 @@ lib/%%DISTNAME%%/doc/Manual/xref.html lib/%%DISTNAME%%/doc/Manual/xrefchatdep.gif lib/%%DISTNAME%%/doc/Manual/xrefchatfile.gif lib/%%DISTNAME%%/doc/Manual/yellow_pages.gif -lib/%%DISTNAME%%/doc/packages/R.html lib/%%DISTNAME%%/doc/packages/archive.html lib/%%DISTNAME%%/doc/packages/clib.html -lib/%%DISTNAME%%/doc/packages/examples/R/r_demo.pl +lib/%%DISTNAME%%/doc/packages/cql.html lib/%%DISTNAME%%/doc/packages/examples/chr/bool.chr lib/%%DISTNAME%%/doc/packages/examples/chr/chrdif.chr lib/%%DISTNAME%%/doc/packages/examples/chr/chrfreeze.chr @@ -257,8 +262,8 @@ lib/%%DISTNAME%%/doc/packages/examples/c lib/%%DISTNAME%%/doc/packages/examples/chr/leq.chr lib/%%DISTNAME%%/doc/packages/examples/chr/listdom.chr lib/%%DISTNAME%%/doc/packages/examples/chr/primes.chr +lib/%%DISTNAME%%/doc/packages/examples/cql/cql_demo.pl lib/%%DISTNAME%%/doc/packages/examples/http/calc.pl -lib/%%DISTNAME%%/doc/packages/examples/http/linux-init-script lib/%%DISTNAME%%/doc/packages/examples/http/demo_body.pl lib/%%DISTNAME%%/doc/packages/examples/http/demo_client.pl lib/%%DISTNAME%%/doc/packages/examples/http/demo_daemon.pl @@ -268,6 +273,7 @@ lib/%%DISTNAME%%/doc/packages/examples/h lib/%%DISTNAME%%/doc/packages/examples/http/demo_pwp.pl lib/%%DISTNAME%%/doc/packages/examples/http/demo_threads.pl lib/%%DISTNAME%%/doc/packages/examples/http/demo_xpce.pl +lib/%%DISTNAME%%/doc/packages/examples/http/linux-init-script lib/%%DISTNAME%%/doc/packages/examples/http/pwp/context.pwp lib/%%DISTNAME%%/doc/packages/examples/http/pwp/index.pwp lib/%%DISTNAME%%/doc/packages/examples/http/pwp/pwp1.pwp @@ -279,6 +285,17 @@ lib/%%DISTNAME%%/doc/packages/examples/h lib/%%DISTNAME%%/doc/packages/examples/http/pwp/pwp7.pwp lib/%%DISTNAME%%/doc/packages/examples/http/pwp/pwp8.pwp lib/%%DISTNAME%%/doc/packages/examples/http/pwp/pwpdb.pl +lib/%%DISTNAME%%/doc/packages/examples/pengines/client.pl +lib/%%DISTNAME%%/doc/packages/examples/pengines/server.pl +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/chunking.html +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/debugging.html +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/hack.html +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/index.html +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/input_output.html +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/pengine.html +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/queen.png +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/queens.html +lib/%%DISTNAME%%/doc/packages/examples/pengines/web/simple.html lib/%%DISTNAME%%/doc/packages/examples/pldoc/README lib/%%DISTNAME%%/doc/packages/examples/pldoc/man_server.pl lib/%%DISTNAME%%/doc/packages/examples/plunit/read.pl @@ -290,6 +307,7 @@ lib/%%DISTNAME%%/doc/packages/examples/p lib/%%DISTNAME%%/doc/packages/examples/ssl/client.pl lib/%%DISTNAME%%/doc/packages/examples/ssl/etc/Makefile lib/%%DISTNAME%%/doc/packages/examples/ssl/etc/README +lib/%%DISTNAME%%/doc/packages/examples/ssl/etc/client/client-cert.p12 lib/%%DISTNAME%%/doc/packages/examples/ssl/etc/client/client-cert.pem lib/%%DISTNAME%%/doc/packages/examples/ssl/etc/client/client-key.pem lib/%%DISTNAME%%/doc/packages/examples/ssl/etc/demoCA/cacert.pem @@ -311,8 +329,12 @@ lib/%%DISTNAME%%/doc/packages/modules.gi lib/%%DISTNAME%%/doc/packages/nlp.html lib/%%DISTNAME%%/doc/packages/odbc.html lib/%%DISTNAME%%/doc/packages/pdt.html +lib/%%DISTNAME%%/doc/packages/penarch.png +lib/%%DISTNAME%%/doc/packages/pengines.html lib/%%DISTNAME%%/doc/packages/pl2cpp.html lib/%%DISTNAME%%/doc/packages/pldoc.html +lib/%%DISTNAME%%/doc/packages/pltpruncolour.png +lib/%%DISTNAME%%/doc/packages/pltpsynch.png lib/%%DISTNAME%%/doc/packages/plunit.html lib/%%DISTNAME%%/doc/packages/protobufs.html lib/%%DISTNAME%%/doc/packages/rdf2pl.html @@ -364,6 +386,7 @@ lib/%%DISTNAME%%/lib/%%ARCH%%-%%OS%%/uid lib/%%DISTNAME%%/lib/%%ARCH%%-%%OS%%/unicode4pl.so lib/%%DISTNAME%%/lib/%%ARCH%%-%%OS%%/unix.so lib/%%DISTNAME%%/lib/%%ARCH%%-%%OS%%/uri.so +lib/%%DISTNAME%%/lib/%%ARCH%%-%%OS%%/websocket.so lib/%%DISTNAME%%/lib/%%ARCH%%-%%OS%%/zlib4pl.so lib/%%DISTNAME%%/library/DTD/HTML4.dcl lib/%%DISTNAME%%/library/DTD/HTML4.dtd @@ -374,9 +397,7 @@ lib/%%DISTNAME%%/library/DTD/HTMLspec.en lib/%%DISTNAME%%/library/DTD/HTMLsym.ent lib/%%DISTNAME%%/library/INDEX.pl lib/%%DISTNAME%%/library/MANUAL -lib/%%DISTNAME%%/library/R.pl lib/%%DISTNAME%%/library/aggregate.pl -lib/%%DISTNAME%%/library/am_match.pl lib/%%DISTNAME%%/library/ansi_term.pl lib/%%DISTNAME%%/library/apply.pl lib/%%DISTNAME%%/library/apply_macros.pl @@ -390,6 +411,7 @@ lib/%%DISTNAME%%/library/broadcast.pl lib/%%DISTNAME%%/library/cgi.pl lib/%%DISTNAME%%/library/charsio.pl lib/%%DISTNAME%%/library/check.pl +lib/%%DISTNAME%%/library/check_installation.pl lib/%%DISTNAME%%/library/checklast.pl lib/%%DISTNAME%%/library/checkselect.pl lib/%%DISTNAME%%/library/chr.pl @@ -415,6 +437,7 @@ lib/%%DISTNAME%%/library/chr/pairlist.pl lib/%%DISTNAME%%/library/clp/bounds.pl lib/%%DISTNAME%%/library/clp/clp_distinct.pl lib/%%DISTNAME%%/library/clp/clp_events.pl +lib/%%DISTNAME%%/library/clp/clpb.pl lib/%%DISTNAME%%/library/clp/clpfd.pl lib/%%DISTNAME%%/library/clp/clpq.pl lib/%%DISTNAME%%/library/clp/clpq/bb_q.pl @@ -444,6 +467,14 @@ lib/%%DISTNAME%%/library/clp/simplex.pl lib/%%DISTNAME%%/library/codesio.pl lib/%%DISTNAME%%/library/coinduction.pl lib/%%DISTNAME%%/library/console_input.pl +lib/%%DISTNAME%%/library/cql/cql.pl +lib/%%DISTNAME%%/library/cql/cql_autoschema.pl +lib/%%DISTNAME%%/library/cql/cql_database.pl +lib/%%DISTNAME%%/library/cql/cql_hooks.pl +lib/%%DISTNAME%%/library/cql/sql_keywords.pl +lib/%%DISTNAME%%/library/cql/sql_parser.pl +lib/%%DISTNAME%%/library/cql/sql_tokenizer.pl +lib/%%DISTNAME%%/library/cql/sql_write.pl lib/%%DISTNAME%%/library/crypt.pl lib/%%DISTNAME%%/library/csv.pl lib/%%DISTNAME%%/library/ctypes.pl @@ -494,6 +525,7 @@ lib/%%DISTNAME%%/library/dialect/ciao/un lib/%%DISTNAME%%/library/dialect/ciao/unittestprops.pl lib/%%DISTNAME%%/library/dialect/ciao/write.pl lib/%%DISTNAME%%/library/dialect/commons.pl +lib/%%DISTNAME%%/library/dialect/eclipse/test_util_iso.pl lib/%%DISTNAME%%/library/dialect/hprolog.pl lib/%%DISTNAME%%/library/dialect/hprolog/format.pl lib/%%DISTNAME%%/library/dialect/ifprolog.pl @@ -551,10 +583,12 @@ lib/%%DISTNAME%%/library/http/http_json. lib/%%DISTNAME%%/library/http/http_load.pl lib/%%DISTNAME%%/library/http/http_log.pl lib/%%DISTNAME%%/library/http/http_mime_plugin.pl +lib/%%DISTNAME%%/library/http/http_multipart_plugin.pl lib/%%DISTNAME%%/library/http/http_open.pl lib/%%DISTNAME%%/library/http/http_openid.pl lib/%%DISTNAME%%/library/http/http_parameters.pl lib/%%DISTNAME%%/library/http/http_path.pl +lib/%%DISTNAME%%/library/http/http_proxy.pl lib/%%DISTNAME%%/library/http/http_pwp.pl lib/%%DISTNAME%%/library/http/http_server_files.pl lib/%%DISTNAME%%/library/http/http_session.pl @@ -563,16 +597,20 @@ lib/%%DISTNAME%%/library/http/http_ssl_p lib/%%DISTNAME%%/library/http/http_stream.pl lib/%%DISTNAME%%/library/http/http_unix_daemon.pl lib/%%DISTNAME%%/library/http/http_wrapper.pl +lib/%%DISTNAME%%/library/http/hub.pl lib/%%DISTNAME%%/library/http/inetd_httpd.pl +lib/%%DISTNAME%%/library/http/jquery.pl lib/%%DISTNAME%%/library/http/js_grammar.pl lib/%%DISTNAME%%/library/http/js_write.pl lib/%%DISTNAME%%/library/http/json.pl lib/%%DISTNAME%%/library/http/json_convert.pl lib/%%DISTNAME%%/library/http/mimepack.pl lib/%%DISTNAME%%/library/http/mimetype.pl +lib/%%DISTNAME%%/library/http/term_html.pl lib/%%DISTNAME%%/library/http/thread_httpd.pl lib/%%DISTNAME%%/library/http/web/css/dirindex.css lib/%%DISTNAME%%/library/http/web/css/openid.css +lib/%%DISTNAME%%/library/http/web/css/plterm.css lib/%%DISTNAME%%/library/http/web/icons/back.png lib/%%DISTNAME%%/library/http/web/icons/c.png lib/%%DISTNAME%%/library/http/web/icons/compressed.png @@ -581,8 +619,12 @@ lib/%%DISTNAME%%/library/http/web/icons/ lib/%%DISTNAME%%/library/http/web/icons/layout.png lib/%%DISTNAME%%/library/http/web/icons/openid-logo-square.png lib/%%DISTNAME%%/library/http/web/icons/openid-logo-tiny.png +lib/%%DISTNAME%%/library/http/web/js/jquery-1.11.3.min.js +lib/%%DISTNAME%%/library/http/web/js/pengines.js +lib/%%DISTNAME%%/library/http/websocket.pl lib/%%DISTNAME%%/library/http/xpce_httpd.pl lib/%%DISTNAME%%/library/http/yadis.pl +lib/%%DISTNAME%%/library/iostream.pl lib/%%DISTNAME%%/library/iso_639.pl lib/%%DISTNAME%%/library/isub.pl lib/%%DISTNAME%%/library/listing.pl @@ -591,6 +633,7 @@ lib/%%DISTNAME%%/library/main.pl lib/%%DISTNAME%%/library/make.pl lib/%%DISTNAME%%/library/memfile.pl lib/%%DISTNAME%%/library/mime.pl +lib/%%DISTNAME%%/library/modules.pl lib/%%DISTNAME%%/library/nb_rbtrees.pl lib/%%DISTNAME%%/library/nb_set.pl lib/%%DISTNAME%%/library/occurs.pl @@ -602,6 +645,8 @@ lib/%%DISTNAME%%/library/ordsets.pl lib/%%DISTNAME%%/library/oset.pl lib/%%DISTNAME%%/library/pairs.pl lib/%%DISTNAME%%/library/pdt_console.pl +lib/%%DISTNAME%%/library/pengines.pl +lib/%%DISTNAME%%/library/pengines_io.pl lib/%%DISTNAME%%/library/persistency.pl lib/%%DISTNAME%%/library/pio.pl lib/%%DISTNAME%%/library/pldoc.pl @@ -620,7 +665,8 @@ lib/%%DISTNAME%%/library/pldoc/doc_regis lib/%%DISTNAME%%/library/pldoc/doc_search.pl lib/%%DISTNAME%%/library/pldoc/doc_util.pl lib/%%DISTNAME%%/library/pldoc/doc_wiki.pl -lib/%%DISTNAME%%/library/pldoc/edit.gif +lib/%%DISTNAME%%/library/pldoc/edit.png +lib/%%DISTNAME%%/library/pldoc/editpred.png lib/%%DISTNAME%%/library/pldoc/favicon.ico lib/%%DISTNAME%%/library/pldoc/h1-bg.png lib/%%DISTNAME%%/library/pldoc/h2-bg.png @@ -634,12 +680,13 @@ lib/%%DISTNAME%%/library/pldoc/priv-bg.p lib/%%DISTNAME%%/library/pldoc/private.png lib/%%DISTNAME%%/library/pldoc/pub-bg.png lib/%%DISTNAME%%/library/pldoc/public.png -lib/%%DISTNAME%%/library/pldoc/reload.gif +lib/%%DISTNAME%%/library/pldoc/reload.png lib/%%DISTNAME%%/library/pldoc/source.png lib/%%DISTNAME%%/library/pldoc/up.gif lib/%%DISTNAME%%/library/plunit.pl lib/%%DISTNAME%%/library/porter_stem.pl lib/%%DISTNAME%%/library/portray_text.pl +lib/%%DISTNAME%%/library/pprint.pl lib/%%DISTNAME%%/library/predicate_options.pl lib/%%DISTNAME%%/library/process.pl lib/%%DISTNAME%%/library/prolog_autoload.pl @@ -647,7 +694,9 @@ lib/%%DISTNAME%%/library/prolog_breakpoi lib/%%DISTNAME%%/library/prolog_clause.pl lib/%%DISTNAME%%/library/prolog_codewalk.pl lib/%%DISTNAME%%/library/prolog_colour.pl +lib/%%DISTNAME%%/library/prolog_format.pl lib/%%DISTNAME%%/library/prolog_history.pl +lib/%%DISTNAME%%/library/prolog_install.pl lib/%%DISTNAME%%/library/prolog_metainference.pl lib/%%DISTNAME%%/library/prolog_pack.pl lib/%%DISTNAME%%/library/prolog_server.pl @@ -693,6 +742,7 @@ lib/%%DISTNAME%%/library/semweb/rdf_port lib/%%DISTNAME%%/library/semweb/rdf_turtle.pl lib/%%DISTNAME%%/library/semweb/rdf_turtle_write.pl lib/%%DISTNAME%%/library/semweb/rdf_zlib_plugin.pl +lib/%%DISTNAME%%/library/semweb/rdfa.pl lib/%%DISTNAME%%/library/semweb/rdfs.pl lib/%%DISTNAME%%/library/semweb/rdfs.rdfs lib/%%DISTNAME%%/library/semweb/sparql_client.pl @@ -705,6 +755,7 @@ lib/%%DISTNAME%%/library/shell.pl lib/%%DISTNAME%%/library/shlib.pl lib/%%DISTNAME%%/library/snowball.pl lib/%%DISTNAME%%/library/socket.pl +lib/%%DISTNAME%%/library/solution_sequences.pl lib/%%DISTNAME%%/library/sort.pl lib/%%DISTNAME%%/library/ssl.pl lib/%%DISTNAME%%/library/statistics.pl @@ -714,6 +765,7 @@ lib/%%DISTNAME%%/library/syslog.pl lib/%%DISTNAME%%/library/system.pl lib/%%DISTNAME%%/library/table.pl lib/%%DISTNAME%%/library/table_util.pl +lib/%%DISTNAME%%/library/term_to_json.pl lib/%%DISTNAME%%/library/terms.pl lib/%%DISTNAME%%/library/test_cover.pl lib/%%DISTNAME%%/library/test_wizard.pl @@ -1725,3 +1777,7 @@ lib/%%DISTNAME%%/xpce/prolog/lib/xref/mk lib/%%DISTNAME%%/xpce/prolog/lib/xref/quintus.pl lib/%%DISTNAME%%/xpce/prolog/lib/xref/sicstus.pl libdata/pkgconfig/swipl.pc +man/man1/swipl-ld.1.gz +man/man1/swipl-rc.1.gz +man/man1/swipl.1.gz +man/man1/xpce-client.1.gz From owner-svn-ports-all@freebsd.org Mon Aug 10 17:39:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5723399E99F; Mon, 10 Aug 2015 17:39:40 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 478E4CF5; Mon, 10 Aug 2015 17:39:40 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AHdeGE048667; Mon, 10 Aug 2015 17:39:40 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AHddoK048665; Mon, 10 Aug 2015 17:39:39 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201508101739.t7AHddoK048665@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Mon, 10 Aug 2015 17:39:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393881 - head/ports-mgmt/octopkg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 17:39:40 -0000 Author: kmoore Date: Mon Aug 10 17:39:39 2015 New Revision: 393881 URL: https://svnweb.freebsd.org/changeset/ports/393881 Log: - Update to 0.2.0 Modified: head/ports-mgmt/octopkg/Makefile head/ports-mgmt/octopkg/distinfo Modified: head/ports-mgmt/octopkg/Makefile ============================================================================== --- head/ports-mgmt/octopkg/Makefile Mon Aug 10 17:31:27 2015 (r393880) +++ head/ports-mgmt/octopkg/Makefile Mon Aug 10 17:39:39 2015 (r393881) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octopkg -PORTVERSION= 0.1.0 +PORTVERSION= 0.2.0 DISTVERSIONPREFIX= v CATEGORIES= ports-mgmt Modified: head/ports-mgmt/octopkg/distinfo ============================================================================== --- head/ports-mgmt/octopkg/distinfo Mon Aug 10 17:31:27 2015 (r393880) +++ head/ports-mgmt/octopkg/distinfo Mon Aug 10 17:39:39 2015 (r393881) @@ -1,2 +1,2 @@ -SHA256 (aarnt-octopkg-v0.1.0_GH0.tar.gz) = e374150b309ec737ad5c9b8f4a9ffd818bd142c717599efc7fe22043f3eed770 -SIZE (aarnt-octopkg-v0.1.0_GH0.tar.gz) = 158474 +SHA256 (aarnt-octopkg-v0.2.0_GH0.tar.gz) = 91da866a033ce767562b271dade024e607e5561e27475c2a6d23f9792e7d3511 +SIZE (aarnt-octopkg-v0.2.0_GH0.tar.gz) = 157609 From owner-svn-ports-all@freebsd.org Mon Aug 10 18:16:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5123B99E0AA; Mon, 10 Aug 2015 18:16:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41A82364; Mon, 10 Aug 2015 18:16:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AIGqi8064930; Mon, 10 Aug 2015 18:16:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AIGqp2064929; Mon, 10 Aug 2015 18:16:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101816.t7AIGqp2064929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 18:16:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393882 - head/security/razorback-fsWalk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 18:16:52 -0000 Author: amdmi3 Date: Mon Aug 10 18:16:51 2015 New Revision: 393882 URL: https://svnweb.freebsd.org/changeset/ports/393882 Log: - Switch to USES=autoreconf Modified: head/security/razorback-fsWalk/Makefile Modified: head/security/razorback-fsWalk/Makefile ============================================================================== --- head/security/razorback-fsWalk/Makefile Mon Aug 10 17:39:39 2015 (r393881) +++ head/security/razorback-fsWalk/Makefile Mon Aug 10 18:16:51 2015 (r393882) @@ -19,8 +19,7 @@ LIB_DEPENDS= librazorback_api.so:${PORTS libjson-c.so:${PORTSDIR}/devel/json-c GNU_CONFIGURE= yes -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Mon Aug 10 18:32:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE4C799E489; Mon, 10 Aug 2015 18:32:39 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDBAFE53; Mon, 10 Aug 2015 18:32:39 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AIWd2f073057; Mon, 10 Aug 2015 18:32:39 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AIWbmU073047; Mon, 10 Aug 2015 18:32:37 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201508101832.t7AIWbmU073047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Mon, 10 Aug 2015 18:32:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393883 - in head/devel: libvirt libvirt-glib py-libvirt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 18:32:40 -0000 Author: jgh Date: Mon Aug 10 18:32:36 2015 New Revision: 393883 URL: https://svnweb.freebsd.org/changeset/ports/393883 Log: - update devel/libvirt and devel/py-libvirt to 1.2.17 - update devel/libvirt-glib to 0.2.2 http://libvirt.org/git/?p=libvirt.git;a=shortlog;h=refs/tags/v1.2.17 Modified: head/devel/libvirt-glib/Makefile head/devel/libvirt-glib/distinfo head/devel/libvirt-glib/pkg-plist head/devel/libvirt/Makefile head/devel/libvirt/distinfo head/devel/libvirt/pkg-plist head/devel/py-libvirt/Makefile head/devel/py-libvirt/distinfo Modified: head/devel/libvirt-glib/Makefile ============================================================================== --- head/devel/libvirt-glib/Makefile Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/libvirt-glib/Makefile Mon Aug 10 18:32:36 2015 (r393883) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt-glib -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= devel MASTER_SITES= ftp://libvirt.org/libvirt/glib/ Modified: head/devel/libvirt-glib/distinfo ============================================================================== --- head/devel/libvirt-glib/distinfo Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/libvirt-glib/distinfo Mon Aug 10 18:32:36 2015 (r393883) @@ -1,2 +1,2 @@ -SHA256 (libvirt-glib-0.2.1.tar.gz) = d856d37b708bc8bf9e6ac294edca7a53f2baa6d857c6f5859be58517a714a2fb -SIZE (libvirt-glib-0.2.1.tar.gz) = 844657 +SHA256 (libvirt-glib-0.2.2.tar.gz) = d7be16025231c91ccae43838b7cdb1d55d181856a2a50b0f7b1c5078ad202d9d +SIZE (libvirt-glib-0.2.2.tar.gz) = 853052 Modified: head/devel/libvirt-glib/pkg-plist ============================================================================== --- head/devel/libvirt-glib/pkg-plist Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/libvirt-glib/pkg-plist Mon Aug 10 18:32:36 2015 (r393883) @@ -16,6 +16,7 @@ include/libvirt-gconfig-%%VERSION%%/libv include/libvirt-gconfig-%%VERSION%%/libvirt-gconfig/libvirt-gconfig-domain-chardev-source-pty.h include/libvirt-gconfig-%%VERSION%%/libvirt-gconfig/libvirt-gconfig-domain-chardev-source-spiceport.h include/libvirt-gconfig-%%VERSION%%/libvirt-gconfig/libvirt-gconfig-domain-chardev-source-spicevmc.h +include/libvirt-gconfig-%%VERSION%%/libvirt-gconfig/libvirt-gconfig-domain-chardev-source-unix.h include/libvirt-gconfig-%%VERSION%%/libvirt-gconfig/libvirt-gconfig-domain-chardev-source.h include/libvirt-gconfig-%%VERSION%%/libvirt-gconfig/libvirt-gconfig-domain-chardev.h include/libvirt-gconfig-%%VERSION%%/libvirt-gconfig/libvirt-gconfig-domain-clock.h @@ -93,6 +94,7 @@ include/libvirt-gobject-%%VERSION%%/libv include/libvirt-gobject-%%VERSION%%/libvirt-gobject/libvirt-gobject-interface.h include/libvirt-gobject-%%VERSION%%/libvirt-gobject/libvirt-gobject-main.h include/libvirt-gobject-%%VERSION%%/libvirt-gobject/libvirt-gobject-manager.h +include/libvirt-gobject-%%VERSION%%/libvirt-gobject/libvirt-gobject-network-dhcp-lease.h include/libvirt-gobject-%%VERSION%%/libvirt-gobject/libvirt-gobject-network-filter.h include/libvirt-gobject-%%VERSION%%/libvirt-gobject/libvirt-gobject-network.h include/libvirt-gobject-%%VERSION%%/libvirt-gobject/libvirt-gobject-node-device.h Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/libvirt/Makefile Mon Aug 10 18:32:36 2015 (r393883) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 1.2.16 +PORTVERSION= 1.2.17 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ @@ -17,7 +17,8 @@ LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/ libxml2.so:${PORTSDIR}/textproc/libxml2 \ libgnutls.so:${PORTSDIR}/security/gnutls \ libssh2.so:${PORTSDIR}/security/libssh2 -BUILD_DEPENDS= dnsmasq:${PORTSDIR}/dns/dnsmasq +BUILD_DEPENDS= dnsmasq:${PORTSDIR}/dns/dnsmasq \ + xsltproc:${PORTSDIR}/textproc/libxslt RUN_DEPENDS= dnsmasq:${PORTSDIR}/dns/dnsmasq \ dmidecode:${PORTSDIR}/sysutils/dmidecode @@ -68,7 +69,7 @@ PORTSCOUT= limit:\d+\.\d+\.\d+$$ LDFLAGS+= -L${LOCALBASE}/lib -fstack-protector -USES= charsetfix gmake libtool pathfix pkgconfig perl5 cpe +USES= charsetfix cpe gmake libtool pathfix perl5 pkgconfig CPE_VENDOR= redhat USE_PERL5= build USE_LDCONFIG= yes Modified: head/devel/libvirt/distinfo ============================================================================== --- head/devel/libvirt/distinfo Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/libvirt/distinfo Mon Aug 10 18:32:36 2015 (r393883) @@ -1,2 +1,2 @@ -SHA256 (libvirt-1.2.16.tar.gz) = 419bee553442024b9ee8a1fa94023b1189bb52b7c3021fa37d8e4c108490060d -SIZE (libvirt-1.2.16.tar.gz) = 29157627 +SHA256 (libvirt-1.2.17.tar.gz) = e07eaf20b0590fae05ba3b53ad4dac3e5fbd771437563cc78b692f23ddd02fad +SIZE (libvirt-1.2.17.tar.gz) = 29320317 Modified: head/devel/libvirt/pkg-plist ============================================================================== --- head/devel/libvirt/pkg-plist Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/libvirt/pkg-plist Mon Aug 10 18:32:36 2015 (r393883) @@ -36,6 +36,9 @@ include/libvirt/libvirt-storage.h include/libvirt/libvirt-stream.h include/libvirt/virterror.h lib/libvirt/lock-driver/lockd.so +lib/libvirt-admin.so +lib/libvirt-admin.so.0 +lib/libvirt-admin.so.%%SHLIB_VER%% lib/libvirt-lxc.so lib/libvirt-lxc.so.0 lib/libvirt-lxc.so.%%SHLIB_VER%% Modified: head/devel/py-libvirt/Makefile ============================================================================== --- head/devel/py-libvirt/Makefile Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/py-libvirt/Makefile Mon Aug 10 18:32:36 2015 (r393883) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 1.2.16 +PORTVERSION= 1.2.17 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/python/ \ ftp://libvirt.org/libvirt/python/ Modified: head/devel/py-libvirt/distinfo ============================================================================== --- head/devel/py-libvirt/distinfo Mon Aug 10 18:16:51 2015 (r393882) +++ head/devel/py-libvirt/distinfo Mon Aug 10 18:32:36 2015 (r393883) @@ -1,2 +1,2 @@ -SHA256 (libvirt-python-1.2.16.tar.gz) = 44eddd353d66f24380d90503bf16f3155c08f3d84d9cc4375d3529f312a7d8fe -SIZE (libvirt-python-1.2.16.tar.gz) = 167711 +SHA256 (libvirt-python-1.2.17.tar.gz) = f4d3db4012a800a2519e62bbef4ce14a37e030a20ab18f5b66759533a39b36ed +SIZE (libvirt-python-1.2.17.tar.gz) = 170511 From owner-svn-ports-all@freebsd.org Mon Aug 10 18:39:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E56499E616; Mon, 10 Aug 2015 18:39:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F05910A; Mon, 10 Aug 2015 18:39:07 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AId7Nt073445; Mon, 10 Aug 2015 18:39:07 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AId7ei073444; Mon, 10 Aug 2015 18:39:07 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508101839.t7AId7ei073444@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 10 Aug 2015 18:39:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393884 - head/devel/fpc-fcl-image X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 18:39:07 -0000 Author: antoine Date: Mon Aug 10 18:39:06 2015 New Revision: 393884 URL: https://svnweb.freebsd.org/changeset/ports/393884 Log: Add missing run dependencies Reported via lang/nbc: Compiling uRIC.pas Fatal: Can't find unit JPEGLib used by FPReadJPEG Modified: head/devel/fpc-fcl-image/Makefile Modified: head/devel/fpc-fcl-image/Makefile ============================================================================== --- head/devel/fpc-fcl-image/Makefile Mon Aug 10 18:32:36 2015 (r393883) +++ head/devel/fpc-fcl-image/Makefile Mon Aug 10 18:39:06 2015 (r393884) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-image @@ -9,6 +9,7 @@ MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal Component Library USE_FPC= fcl-async fcl-base hash pasjpeg paszlib pthreads libpng +USE_FPC_RUN= yes MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Mon Aug 10 19:04:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6980199EB90; Mon, 10 Aug 2015 19:04:07 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4E22DDC9; Mon, 10 Aug 2015 19:04:07 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJ47uG085766; Mon, 10 Aug 2015 19:04:07 GMT (envelope-from rpaulo@FreeBSD.org) Received: (from rpaulo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJ46bj085736; Mon, 10 Aug 2015 19:04:06 GMT (envelope-from rpaulo@FreeBSD.org) Message-Id: <201508101904.t7AJ46bj085736@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rpaulo set sender to rpaulo@FreeBSD.org using -f From: Rui Paulo Date: Mon, 10 Aug 2015 19:04:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393886 - in head/devel: llvm-devel llvm37 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:04:07 -0000 Author: rpaulo Date: Mon Aug 10 19:04:05 2015 New Revision: 393886 URL: https://svnweb.freebsd.org/changeset/ports/393886 Log: llvm{37,devel}: build and enable LLVM's gold plugin. This makes it possible to use Link Time Optimisations in with -fuse-ld=gold. Reviewed by: brooks Approved by: brooks Differential Revision: https://reviews.freebsd.org/D3335 Modified: head/devel/llvm-devel/Makefile head/devel/llvm-devel/pkg-plist head/devel/llvm37/Makefile head/devel/llvm37/pkg-plist Modified: head/devel/llvm-devel/Makefile ============================================================================== --- head/devel/llvm-devel/Makefile Mon Aug 10 19:04:04 2015 (r393885) +++ head/devel/llvm-devel/Makefile Mon Aug 10 19:04:05 2015 (r393886) @@ -34,9 +34,9 @@ LLD_COMMIT= 754e78c2a7593764867b8671fcd1 LLDB_COMMIT= f89c12e54d5d81c18f4d3f63826d568f6257cabc OPENMP_COMMIT= d90b41fbdaa1036f7a36651449bdcb32813f8423 -OPTIONS_DEFINE= CLANG DOCS LIT LLD LLDB +OPTIONS_DEFINE= CLANG DOCS GOLD LIT LLD LLDB OPTIONS_DEFINE_amd64= OPENMP -OPTIONS_DEFAULT= CLANG LIT LLD LLDB +OPTIONS_DEFAULT= CLANG GOLD LIT LLD LLDB OPTIONS_DEFAULT_amd64= OPENMP OPTIONS_SUB= yes @@ -64,6 +64,9 @@ OPENMP_DESC= Install libomp, the LLVM O OPENMP_CONFLICTS_INSTALL= libiomp5-devel-* OPENMP_GH_PROJECT= openmp:openmp OPENMP_GH_TAGNAME= ${OPENMP_COMMIT}:openmp +GOLD_DESC= Build the LLVM Gold plugin for LTO +GOLD_CMAKE_ON= -DLLVM_BINUTILS_INCDIR=${LOCALBASE}/include +GOLD_BUILD_DEPENDS= ld.gold:${PORTSDIR}/devel/binutils OPTIONS_SUB= yes @@ -258,7 +261,7 @@ build-plist: ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX} -type f | \ ${SED} -e 's|${STAGEDIR}${PYTHON_SITELIBDIR}|%%LIT%%%%PYTHON_SITELIBDIR%%|' | \ ${SORT} >> ${PLIST}.tmp - awk '{if ($$0 ~ /clang/ && $$0 !~ /omp.h/) {printf "%%%%CLANG%%%%"} if ($$0 ~ /lld/ && $$0 !~ /lldb/) {printf "%%%%LLD%%%%"} if ($$0 ~ /(argdumper|lldb)/) {printf "%%%%LLDB%%%%"} if ($$0 ~ /lib.*omp/) {printf "%%%%OPENMP%%%%"} print}' ${PLIST}.tmp >> ${PLIST} + awk '{if ($$0 ~ /clang/ && $$0 !~ /omp.h/) {printf "%%%%CLANG%%%%"} if ($$0 ~ /lld/ && $$0 !~ /lldb/) {printf "%%%%LLD%%%%"} if ($$0 ~ /(argdumper|lldb)/) {printf "%%%%LLDB%%%%"} if ($$0 ~ /lib.*omp/) {printf "%%%%OPENMP%%%%"} if ($$0 ~ /LLVMgold/) {printf "%%%%GOLD%%%%"} print}' ${PLIST}.tmp >> ${PLIST} ${RM} -f ${PLIST}.tmp check-commands: Modified: head/devel/llvm-devel/pkg-plist ============================================================================== --- head/devel/llvm-devel/pkg-plist Mon Aug 10 19:04:04 2015 (r393885) +++ head/devel/llvm-devel/pkg-plist Mon Aug 10 19:04:05 2015 (r393886) @@ -1773,6 +1773,7 @@ llvm-devel/include/llvm/Transforms/Utils llvm-devel/include/llvm/Transforms/Vectorize.h llvm-devel/lib/BugpointPasses.so llvm-devel/lib/LLVMHello.so +%%GOLD%%llvm-devel/lib/LLVMgold.so %%CLANG%%llvm-devel/lib/clang/3.8.0/include/Intrin.h %%CLANG%%llvm-devel/lib/clang/3.8.0/include/__stddef_max_align_t.h %%CLANG%%llvm-devel/lib/clang/3.8.0/include/__wmmintrin_aes.h Modified: head/devel/llvm37/Makefile ============================================================================== --- head/devel/llvm37/Makefile Mon Aug 10 19:04:04 2015 (r393885) +++ head/devel/llvm37/Makefile Mon Aug 10 19:04:05 2015 (r393886) @@ -30,9 +30,9 @@ SUB_LIST= LLVM_PREFIX="${LLVM_PREFIX}" L CMAKE_INSTALL_PREFIX= ${LLVM_PREFIX} CMAKE_ARGS= -DBUILD_SHARED_LIBS=ON -OPTIONS_DEFINE= CLANG DOCS LIT LLD LLDB +OPTIONS_DEFINE= CLANG DOCS GOLD LIT LLD LLDB OPTIONS_DEFINE_amd64= OPENMP -OPTIONS_DEFAULT= CLANG LIT LLD LLDB +OPTIONS_DEFAULT= CLANG GOLD LIT LLD LLDB OPTIONS_DEFAULT_amd64= OPENMP OPTIONS_SUB= yes @@ -55,6 +55,9 @@ LLDB_BUILD_DEPENDS= swig:${PORTSDIR}/dev LLDB_DISTFILES= lldb-${DISTVERSION}.src${EXTRACT_SUFX} OPENMP_DESC= Install libomp, the LLVM OpenMP runtime library OPENMP_DISTFILES= openmp-${DISTVERSION}.src${EXTRACT_SUFX} +GOLD_DESC= Build the LLVM Gold plugin for LTO +GOLD_CMAKE_ON= -DLLVM_BINUTILS_INCDIR=${LOCALBASE}/include +GOLD_BUILD_DEPENDS= ld.gold:${PORTSDIR}/devel/binutils # Emulate USE_GITHUB's ${WRKSRC_tag} to reduce diffs to ../llvm-devel .for option in CLANG LLD LLDB OPENMP @@ -255,7 +258,7 @@ build-plist: ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX} -type f | \ ${SED} -e 's|${STAGEDIR}${PYTHON_SITELIBDIR}|%%LIT%%%%PYTHON_SITELIBDIR%%|' | \ ${SORT} >> ${PLIST}.tmp - awk '{if ($$0 ~ /clang/ && $$0 !~ /omp.h/) {printf "%%%%CLANG%%%%"} if ($$0 ~ /lld/ && $$0 !~ /lldb/) {printf "%%%%LLD%%%%"} if ($$0 ~ /(argdumper|lldb)/) {printf "%%%%LLDB%%%%"} if ($$0 ~ /lib.*omp/) {printf "%%%%OPENMP%%%%"} print}' ${PLIST}.tmp >> ${PLIST} + awk '{if ($$0 ~ /clang/ && $$0 !~ /omp.h/) {printf "%%%%CLANG%%%%"} if ($$0 ~ /lld/ && $$0 !~ /lldb/) {printf "%%%%LLD%%%%"} if ($$0 ~ /(argdumper|lldb)/) {printf "%%%%LLDB%%%%"} if ($$0 ~ /lib.*omp/) {printf "%%%%OPENMP%%%%"} if ($$0 ~ /LLVMgold/) {printf "%%%%GOLD%%%%"} print}' ${PLIST}.tmp >> ${PLIST} ${RM} -f ${PLIST}.tmp check-commands: Modified: head/devel/llvm37/pkg-plist ============================================================================== --- head/devel/llvm37/pkg-plist Mon Aug 10 19:04:04 2015 (r393885) +++ head/devel/llvm37/pkg-plist Mon Aug 10 19:04:05 2015 (r393886) @@ -1774,6 +1774,7 @@ llvm37/include/llvm/Transforms/Utils/Val llvm37/include/llvm/Transforms/Vectorize.h llvm37/lib/BugpointPasses.so llvm37/lib/LLVMHello.so +%%GOLD%%llvm37/lib/LLVMgold.so %%CLANG%%llvm37/lib/clang/3.7.0/include/Intrin.h %%CLANG%%llvm37/lib/clang/3.7.0/include/__stddef_max_align_t.h %%CLANG%%llvm37/lib/clang/3.7.0/include/__wmmintrin_aes.h From owner-svn-ports-all@freebsd.org Mon Aug 10 19:04:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E91B99EB82; Mon, 10 Aug 2015 19:04:06 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F6E3DC4; Mon, 10 Aug 2015 19:04:06 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJ46qW085730; Mon, 10 Aug 2015 19:04:06 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJ45fD085726; Mon, 10 Aug 2015 19:04:05 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508101904.t7AJ45fD085726@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 10 Aug 2015 19:04:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393885 - in head/games/openclonk: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:04:06 -0000 Author: pawel Date: Mon Aug 10 19:04:04 2015 New Revision: 393885 URL: https://svnweb.freebsd.org/changeset/ports/393885 Log: Upgrade to version 6.1 PR: 201956 Submitted by: maintainer Deleted: head/games/openclonk/files/ Modified: head/games/openclonk/Makefile head/games/openclonk/distinfo Modified: head/games/openclonk/Makefile ============================================================================== --- head/games/openclonk/Makefile Mon Aug 10 18:39:06 2015 (r393884) +++ head/games/openclonk/Makefile Mon Aug 10 19:04:04 2015 (r393885) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openclonk -PORTVERSION= 6.0 +PORTVERSION= 6.1 DISTVERSIONSUFFIX= -src CATEGORIES= games MASTER_SITES= http://www.openclonk.org/builds/release/${DISTVERSION}/ @@ -27,8 +27,6 @@ USE_SDL= sdl mixer USE_XORG= x11 xpm INSTALLS_ICONS= yes -WRKSRC= ${WRKDIR}/openclonk-release-${DISTVERSION}-src - .include .if ${OSVERSION} < 1000024 Modified: head/games/openclonk/distinfo ============================================================================== --- head/games/openclonk/distinfo Mon Aug 10 18:39:06 2015 (r393884) +++ head/games/openclonk/distinfo Mon Aug 10 19:04:04 2015 (r393885) @@ -1,2 +1,2 @@ -SHA256 (openclonk-6.0-src.tar.bz2) = 89271011c14a239c3000f057c12699c2ce1242187d41c4d2f6fd11b1d46a0248 -SIZE (openclonk-6.0-src.tar.bz2) = 68762594 +SHA256 (openclonk-6.1-src.tar.bz2) = 5c3903f82c9d7e8c466ab1ff594d553911a6e5fa0be2a326684d823ef1c24905 +SIZE (openclonk-6.1-src.tar.bz2) = 68861317 From owner-svn-ports-all@freebsd.org Mon Aug 10 19:07:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 986F999EC2E; Mon, 10 Aug 2015 19:07:36 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88D48FDE; Mon, 10 Aug 2015 19:07:36 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJ7arm086023; Mon, 10 Aug 2015 19:07:36 GMT (envelope-from rpaulo@FreeBSD.org) Received: (from rpaulo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJ7aAl086021; Mon, 10 Aug 2015 19:07:36 GMT (envelope-from rpaulo@FreeBSD.org) Message-Id: <201508101907.t7AJ7aAl086021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rpaulo set sender to rpaulo@FreeBSD.org using -f From: Rui Paulo Date: Mon, 10 Aug 2015 19:07:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393887 - in head/devel: llvm-devel llvm37 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:07:36 -0000 Author: rpaulo Date: Mon Aug 10 19:07:35 2015 New Revision: 393887 URL: https://svnweb.freebsd.org/changeset/ports/393887 Log: Bump PORTREVISION for llvm{37,devel}. Modified: head/devel/llvm-devel/Makefile head/devel/llvm37/Makefile Modified: head/devel/llvm-devel/Makefile ============================================================================== --- head/devel/llvm-devel/Makefile Mon Aug 10 19:04:05 2015 (r393886) +++ head/devel/llvm-devel/Makefile Mon Aug 10 19:07:35 2015 (r393887) @@ -3,6 +3,7 @@ PORTNAME= llvm PORTVERSION= 3.8.d20150806 +PORTREVISION= 1 CATEGORIES= devel lang PKGNAMESUFFIX= -devel Modified: head/devel/llvm37/Makefile ============================================================================== --- head/devel/llvm37/Makefile Mon Aug 10 19:04:05 2015 (r393886) +++ head/devel/llvm37/Makefile Mon Aug 10 19:07:35 2015 (r393887) @@ -2,6 +2,7 @@ PORTNAME= llvm DISTVERSION= 3.7.0rc1 +PORTREVISION= 1 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} DISTNAME= ${PORTNAME}-${DISTVERSION}.src From owner-svn-ports-all@freebsd.org Mon Aug 10 19:17:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E70399EE46; Mon, 10 Aug 2015 19:17:26 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42CA6755; Mon, 10 Aug 2015 19:17:26 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJHQvN090194; Mon, 10 Aug 2015 19:17:26 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJHPa7090190; Mon, 10 Aug 2015 19:17:25 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508101917.t7AJHPa7090190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 19:17:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393888 - in head/devel: . R-cran-rngtools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:17:26 -0000 Author: tota Date: Mon Aug 10 19:17:24 2015 New Revision: 393888 URL: https://svnweb.freebsd.org/changeset/ports/393888 Log: - Add new port: devel/R-cran-rngtools This package contains a set of functions for working with Random Number Generators (RNGs). In particular, it defines a generic S4 framework for getting/setting the current RNG, or RNG data that are embedded into objects for reproducibility. Notably, convenient default methods greatly facilitate the way current RNG settings can be changed. WWW: https://cran.r-project.org/web/packages/rngtools/ Added: head/devel/R-cran-rngtools/ head/devel/R-cran-rngtools/Makefile (contents, props changed) head/devel/R-cran-rngtools/distinfo (contents, props changed) head/devel/R-cran-rngtools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 10 19:07:35 2015 (r393887) +++ head/devel/Makefile Mon Aug 10 19:17:24 2015 (r393888) @@ -38,6 +38,7 @@ SUBDIR += R-cran-registry SUBDIR += R-cran-reshape SUBDIR += R-cran-reshape2 + SUBDIR += R-cran-rngtools SUBDIR += SpecTcl SUBDIR += aap SUBDIR += aarch64-binutils Added: head/devel/R-cran-rngtools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-rngtools/Makefile Mon Aug 10 19:17:24 2015 (r393888) @@ -0,0 +1,18 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= rngtools +PORTVERSION= 1.2.4 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Utility functions for working with Random Number Generators + +LICENSE= GPLv3 + +RUN_DEPENDS= R-cran-pkgmaker>=0.20:${PORTSDIR}/devel/R-cran-pkgmaker + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-rngtools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-rngtools/distinfo Mon Aug 10 19:17:24 2015 (r393888) @@ -0,0 +1,2 @@ +SHA256 (rngtools_1.2.4.tar.gz) = 27019835b750f470b13dbb7fecd3b839a61b52774e23fffa191f919533768fb9 +SIZE (rngtools_1.2.4.tar.gz) = 120986 Added: head/devel/R-cran-rngtools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-rngtools/pkg-descr Mon Aug 10 19:17:24 2015 (r393888) @@ -0,0 +1,8 @@ +This package contains a set of functions for working with Random +Number Generators (RNGs). In particular, it defines a generic S4 +framework for getting/setting the current RNG, or RNG data that are +embedded into objects for reproducibility. Notably, convenient +default methods greatly facilitate the way current RNG settings can +be changed. + +WWW: https://cran.r-project.org/web/packages/rngtools/ From owner-svn-ports-all@freebsd.org Mon Aug 10 19:20:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8191E99EF0E; Mon, 10 Aug 2015 19:20:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 728498DB; Mon, 10 Aug 2015 19:20:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJKSBd092096; Mon, 10 Aug 2015 19:20:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJKS8l092095; Mon, 10 Aug 2015 19:20:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101920.t7AJKS8l092095@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 19:20:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393889 - head/security/razorback-dispatcher X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:20:28 -0000 Author: amdmi3 Date: Mon Aug 10 19:20:27 2015 New Revision: 393889 URL: https://svnweb.freebsd.org/changeset/ports/393889 Log: - Switch to USES=autoreconf Modified: head/security/razorback-dispatcher/Makefile Modified: head/security/razorback-dispatcher/Makefile ============================================================================== --- head/security/razorback-dispatcher/Makefile Mon Aug 10 19:17:24 2015 (r393888) +++ head/security/razorback-dispatcher/Makefile Mon Aug 10 19:20:27 2015 (r393889) @@ -20,9 +20,8 @@ LIB_DEPENDS= librazorback_api.so:${PORTS libmemcached.so:${PORTSDIR}/databases/libmemcached \ libcli.so:${PORTSDIR}/devel/libcli -USES= libtool pathfix pkgconfig +USES= autoreconf libtool pathfix pkgconfig GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf USE_MYSQL= yes USE_RC_SUBR= dispatcher dispatcher_safed SUB_FILES= pkg-message From owner-svn-ports-all@freebsd.org Mon Aug 10 19:20:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEAC499EF2F; Mon, 10 Aug 2015 19:20:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F9F19BD; Mon, 10 Aug 2015 19:20:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJKY4q092199; Mon, 10 Aug 2015 19:20:34 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJKY67092198; Mon, 10 Aug 2015 19:20:34 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101920.t7AJKY67092198@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 19:20:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393890 - head/security/razorback-fileInject X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:20:34 -0000 Author: amdmi3 Date: Mon Aug 10 19:20:33 2015 New Revision: 393890 URL: https://svnweb.freebsd.org/changeset/ports/393890 Log: - Switch to USES=autoreconf Modified: head/security/razorback-fileInject/Makefile Modified: head/security/razorback-fileInject/Makefile ============================================================================== --- head/security/razorback-fileInject/Makefile Mon Aug 10 19:20:27 2015 (r393889) +++ head/security/razorback-fileInject/Makefile Mon Aug 10 19:20:33 2015 (r393890) @@ -21,8 +21,7 @@ LIB_DEPENDS= librazorback_api.so:${PORTS OPTIONS_DEFINE= DEBUG ASSERT GNU_CONFIGURE= yes -USES= pkgconfig libtool -USE_AUTOTOOLS= autoconf +USES= autoreconf pkgconfig libtool CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Mon Aug 10 19:20:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7EEA99EF5B; Mon, 10 Aug 2015 19:20:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6382AD8; Mon, 10 Aug 2015 19:20:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJKvcN094224; Mon, 10 Aug 2015 19:20:57 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJKvmK094223; Mon, 10 Aug 2015 19:20:57 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101920.t7AJKvmK094223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 19:20:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393891 - head/sysutils/cpuid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:20:57 -0000 Author: amdmi3 Date: Mon Aug 10 19:20:56 2015 New Revision: 393891 URL: https://svnweb.freebsd.org/changeset/ports/393891 Log: - Mark ONLY_FOR_ARCHS: this port is useless and in fact does not build on non-x86 archs Modified: head/sysutils/cpuid/Makefile Modified: head/sysutils/cpuid/Makefile ============================================================================== --- head/sysutils/cpuid/Makefile Mon Aug 10 19:20:33 2015 (r393890) +++ head/sysutils/cpuid/Makefile Mon Aug 10 19:20:56 2015 (r393891) @@ -14,6 +14,9 @@ COMMENT= Tool to dump x86 CPUID informat LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= only works with x86 CPUs + USES= gmake ALL_TARGET= default WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} From owner-svn-ports-all@freebsd.org Mon Aug 10 19:28:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B5A599E120; Mon, 10 Aug 2015 19:28:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C44EDFB; Mon, 10 Aug 2015 19:28:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJSvqv094718; Mon, 10 Aug 2015 19:28:57 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJSvPA094717; Mon, 10 Aug 2015 19:28:57 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101928.t7AJSvPA094717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 19:28:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393892 - head/sysutils/consolehm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:28:58 -0000 Author: amdmi3 Date: Mon Aug 10 19:28:57 2015 New Revision: 393892 URL: https://svnweb.freebsd.org/changeset/ports/393892 Log: - Mark ONLY_FOR_ARCHS: uses x86-only assembly from machine/cpufunc.h Modified: head/sysutils/consolehm/Makefile Modified: head/sysutils/consolehm/Makefile ============================================================================== --- head/sysutils/consolehm/Makefile Mon Aug 10 19:20:56 2015 (r393891) +++ head/sysutils/consolehm/Makefile Mon Aug 10 19:28:57 2015 (r393892) @@ -10,16 +10,13 @@ MASTER_SITES= LOCAL/fenner MAINTAINER= ports@FreeBSD.org COMMENT= Console based hardware monitor for FreeBSD -WRKSRC= ${WRKDIR}/consolehm/consolehm +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= uses x86-only assembly from machine/cpufunc.h USES= uidfix GNU_CONFIGURE= yes -PLIST_FILES= bin/chm man/man8/chm.8.gz - -.include +WRKSRC= ${WRKDIR}/consolehm/consolehm -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -BROKEN= Does not compile on ia64, powerpc, or sparc64 -.endif +PLIST_FILES= bin/chm man/man8/chm.8.gz -.include +.include From owner-svn-ports-all@freebsd.org Mon Aug 10 19:37:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD9B199E3E1; Mon, 10 Aug 2015 19:37:33 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BEAB8893; Mon, 10 Aug 2015 19:37:33 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJbXCD098922; Mon, 10 Aug 2015 19:37:33 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJbXJY098921; Mon, 10 Aug 2015 19:37:33 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508101937.t7AJbXJY098921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 10 Aug 2015 19:37:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393893 - head/devel/fpc-fcl-xml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:37:33 -0000 Author: antoine Date: Mon Aug 10 19:37:32 2015 New Revision: 393893 URL: https://svnweb.freebsd.org/changeset/ports/393893 Log: Add missing run dependencies Reported via misc/fpc-chm: Compiling src/chmtypes.pas Fatal: Can't find unit URIParser used by XMLRead Modified: head/devel/fpc-fcl-xml/Makefile Modified: head/devel/fpc-fcl-xml/Makefile ============================================================================== --- head/devel/fpc-fcl-xml/Makefile Mon Aug 10 19:28:57 2015 (r393892) +++ head/devel/fpc-fcl-xml/Makefile Mon Aug 10 19:37:32 2015 (r393893) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-xml @@ -9,6 +9,7 @@ MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal Component Library USE_FPC= fcl-async fcl-base hash iconvenc paszlib pthreads +USE_FPC_RUN= yes MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Mon Aug 10 19:41:10 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0F3C99E50F; Mon, 10 Aug 2015 19:41:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D2017D28; Mon, 10 Aug 2015 19:41:10 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJfAuV002532; Mon, 10 Aug 2015 19:41:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJfAKX002531; Mon, 10 Aug 2015 19:41:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508101941.t7AJfAKX002531@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 10 Aug 2015 19:41:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393894 - head/devel/fpc-fpmkunit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:41:11 -0000 Author: antoine Date: Mon Aug 10 19:41:09 2015 New Revision: 393894 URL: https://svnweb.freebsd.org/changeset/ports/393894 Log: Add missing run-dependencies Reported via www/fpc-fastcgi: Fatal: Can't find unit process used by fpmkunit Modified: head/devel/fpc-fpmkunit/Makefile Modified: head/devel/fpc-fpmkunit/Makefile ============================================================================== --- head/devel/fpc-fpmkunit/Makefile Mon Aug 10 19:37:32 2015 (r393893) +++ head/devel/fpc-fpmkunit/Makefile Mon Aug 10 19:41:09 2015 (r393894) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel lang PKGNAMESUFFIX= -fpmkunit @@ -9,6 +9,7 @@ MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal build system unit USE_FPC= fcl-process paszlib +USE_FPC_RUN= yes MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Mon Aug 10 19:49:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8D3E99E828; Mon, 10 Aug 2015 19:49:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8FA732E7; Mon, 10 Aug 2015 19:49:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJns7A003546; Mon, 10 Aug 2015 19:49:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJnsSs003544; Mon, 10 Aug 2015 19:49:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508101949.t7AJnsSs003544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 10 Aug 2015 19:49:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393895 - in head/devel/rubygem-blobstore_client: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:49:54 -0000 Author: swills Date: Mon Aug 10 19:49:53 2015 New Revision: 393895 URL: https://svnweb.freebsd.org/changeset/ports/393895 Log: devel/rubygem-blobstore_client: update for depdency updates Modified: head/devel/rubygem-blobstore_client/Makefile head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec Modified: head/devel/rubygem-blobstore_client/Makefile ============================================================================== --- head/devel/rubygem-blobstore_client/Makefile Mon Aug 10 19:41:09 2015 (r393894) +++ head/devel/rubygem-blobstore_client/Makefile Mon Aug 10 19:49:53 2015 (r393895) @@ -2,6 +2,7 @@ PORTNAME= blobstore_client PORTVERSION= 1.2941.0 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec ============================================================================== --- head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec Mon Aug 10 19:41:09 2015 (r393894) +++ head/devel/rubygem-blobstore_client/files/patch-blobstore__client.gemspec Mon Aug 10 19:49:53 2015 (r393895) @@ -1,11 +1,13 @@ ---- blobstore_client.gemspec.orig 2015-04-28 00:51:10 UTC +--- blobstore_client.gemspec.orig 2015-08-10 18:41:21 UTC +++ blobstore_client.gemspec -@@ -24,7 +24,7 @@ Gem::Specification.new do |s| +@@ -24,8 +24,8 @@ Gem::Specification.new do |s| if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, ["= 1.60.2"]) - s.add_runtime_dependency(%q, ["~> 1.27.0"]) +- s.add_runtime_dependency(%q, ["= 2.4.0"]) + s.add_runtime_dependency(%q, ["~> 1.27"]) - s.add_runtime_dependency(%q, ["= 2.4.0"]) ++ s.add_runtime_dependency(%q, [">= 2.4.0"]) s.add_runtime_dependency(%q, ["~> 1.1"]) s.add_runtime_dependency(%q, ["~> 1.0.5"]) + s.add_runtime_dependency(%q, ["~> 1.2941.0"]) From owner-svn-ports-all@freebsd.org Mon Aug 10 19:50:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2665A99E889; Mon, 10 Aug 2015 19:50:29 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F217963B; Mon, 10 Aug 2015 19:50:28 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJoSed004221; Mon, 10 Aug 2015 19:50:28 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJoSwc004218; Mon, 10 Aug 2015 19:50:28 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508101950.t7AJoSwc004218@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 10 Aug 2015 19:50:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393896 - in head/sysutils/rubygem-bosh_cli: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:50:29 -0000 Author: swills Date: Mon Aug 10 19:50:27 2015 New Revision: 393896 URL: https://svnweb.freebsd.org/changeset/ports/393896 Log: sysutils/rubygem-bosh_cli: update for depdendency updates Modified: head/sysutils/rubygem-bosh_cli/Makefile head/sysutils/rubygem-bosh_cli/files/patch-gemspec Modified: head/sysutils/rubygem-bosh_cli/Makefile ============================================================================== --- head/sysutils/rubygem-bosh_cli/Makefile Mon Aug 10 19:49:53 2015 (r393895) +++ head/sysutils/rubygem-bosh_cli/Makefile Mon Aug 10 19:50:27 2015 (r393896) @@ -2,7 +2,7 @@ PORTNAME= bosh_cli PORTVERSION= 1.2941.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-bosh_cli/files/patch-gemspec ============================================================================== --- head/sysutils/rubygem-bosh_cli/files/patch-gemspec Mon Aug 10 19:49:53 2015 (r393895) +++ head/sysutils/rubygem-bosh_cli/files/patch-gemspec Mon Aug 10 19:50:27 2015 (r393896) @@ -1,11 +1,21 @@ ---- bosh_cli.gemspec.orig 2015-06-28 14:31:44 UTC +--- bosh_cli.gemspec.orig 2015-08-10 18:37:20 UTC +++ bosh_cli.gemspec -@@ -30,7 +30,7 @@ Gem::Specification.new do |s| - s.add_runtime_dependency(%q, ["~> 1.6.2"]) +@@ -27,14 +27,14 @@ Gem::Specification.new do |s| + s.add_runtime_dependency(%q, ["~> 1.2941.0"]) + s.add_runtime_dependency(%q, ["~> 3.2.1"]) + s.add_runtime_dependency(%q, ["~> 1.7"]) +- s.add_runtime_dependency(%q, ["~> 1.6.2"]) ++ s.add_runtime_dependency(%q, [">= 1.6.2"]) s.add_runtime_dependency(%q, ["~> 0.9.0"]) - s.add_runtime_dependency(%q, ["= 2.4.0"]) +- s.add_runtime_dependency(%q, ["= 2.4.0"]) - s.add_runtime_dependency(%q, ["~> 1.4.3"]) ++ s.add_runtime_dependency(%q, [">= 2.4.0"]) + s.add_runtime_dependency(%q, [">= 1.4.3"]) s.add_runtime_dependency(%q, ["~> 1.2941.0"]) s.add_runtime_dependency(%q, [">= 2.2.1"]) s.add_runtime_dependency(%q, ["~> 1.2.0"]) +- s.add_runtime_dependency(%q, ["~> 1.1.0"]) ++ s.add_runtime_dependency(%q, [">= 1.1.0"]) + s.add_runtime_dependency(%q, ["~> 1.5.0"]) + s.add_runtime_dependency(%q, ["~> 0.5.4"]) + s.add_development_dependency(%q, ["~> 3.0"]) From owner-svn-ports-all@freebsd.org Mon Aug 10 19:53:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01B8499E9B0; Mon, 10 Aug 2015 19:53:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E286895E; Mon, 10 Aug 2015 19:53:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJrjX6007520; Mon, 10 Aug 2015 19:53:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJrj73007519; Mon, 10 Aug 2015 19:53:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101953.t7AJrj73007519@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 19:53:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393897 - head/security/razorback-archiveInflate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:53:46 -0000 Author: amdmi3 Date: Mon Aug 10 19:53:45 2015 New Revision: 393897 URL: https://svnweb.freebsd.org/changeset/ports/393897 Log: - Switch to USES=autoreconf Modified: head/security/razorback-archiveInflate/Makefile Modified: head/security/razorback-archiveInflate/Makefile ============================================================================== --- head/security/razorback-archiveInflate/Makefile Mon Aug 10 19:50:27 2015 (r393896) +++ head/security/razorback-archiveInflate/Makefile Mon Aug 10 19:53:45 2015 (r393897) @@ -22,8 +22,7 @@ RUN_DEPENDS= razorback-masterNugget>=0.5 RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig USE_LDCONFIG= ${RB_LIBDIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Mon Aug 10 19:53:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13FE399E9D5; Mon, 10 Aug 2015 19:53:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E2C859F8; Mon, 10 Aug 2015 19:53:51 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJrpZq007623; Mon, 10 Aug 2015 19:53:51 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJrpYg007622; Mon, 10 Aug 2015 19:53:51 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101953.t7AJrpYg007622@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 19:53:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393898 - head/security/razorback-clamavNugget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:53:52 -0000 Author: amdmi3 Date: Mon Aug 10 19:53:50 2015 New Revision: 393898 URL: https://svnweb.freebsd.org/changeset/ports/393898 Log: - Switch to USES=autoreconf Modified: head/security/razorback-clamavNugget/Makefile Modified: head/security/razorback-clamavNugget/Makefile ============================================================================== --- head/security/razorback-clamavNugget/Makefile Mon Aug 10 19:53:45 2015 (r393897) +++ head/security/razorback-clamavNugget/Makefile Mon Aug 10 19:53:50 2015 (r393898) @@ -21,10 +21,9 @@ LIB_DEPENDS= librazorback_api.so:${PORTS BUILD_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget RUN_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget -USES= libtool pkgconfig +USES= autoreconf libtool pkgconfig RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf USE_LDCONFIG= ${RB_LIBDIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Mon Aug 10 19:55:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0174E99EA45; Mon, 10 Aug 2015 19:55:03 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6DD9B3B; Mon, 10 Aug 2015 19:55:02 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJt2eF007793; Mon, 10 Aug 2015 19:55:02 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJt2tN007792; Mon, 10 Aug 2015 19:55:02 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201508101955.t7AJt2tN007792@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Mon, 10 Aug 2015 19:55:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393899 - head/graphics/qgis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:55:03 -0000 Author: riggs Date: Mon Aug 10 19:55:02 2015 New Revision: 393899 URL: https://svnweb.freebsd.org/changeset/ports/393899 Log: - Update dependency to databases/grass - Bump PORTREVISION PR: 201983 Submitted by: rhurlin@gwdg.de (maintainer) Modified: head/graphics/qgis/Makefile Modified: head/graphics/qgis/Makefile ============================================================================== --- head/graphics/qgis/Makefile Mon Aug 10 19:53:50 2015 (r393898) +++ head/graphics/qgis/Makefile Mon Aug 10 19:55:02 2015 (r393899) @@ -3,6 +3,7 @@ PORTNAME= qgis PORTVERSION= 2.10.1 +PORTREVISION= 1 CATEGORIES= graphics geography MAINTAINER= rhurlin@gwdg.de @@ -58,7 +59,7 @@ BROKEN= GRASS plugin not supported on F .endif BUILD_DEPENDS+= grass64:${PORTSDIR}/databases/grass RUN_DEPENDS+= grass64:${PORTSDIR}/databases/grass -CMAKE_ARGS+= -DWITH_GRASS:BOOL=TRUE -DGRASS_PREFIX=${LOCALBASE}/grass-6.4.4 +CMAKE_ARGS+= -DWITH_GRASS:BOOL=TRUE -DGRASS_PREFIX=${LOCALBASE}/grass-6.4.5 FORCE_MAKE_JOBS= NO PLIST_SUB+= GRASS="" .else From owner-svn-ports-all@freebsd.org Mon Aug 10 19:56:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9196199EA6C; Mon, 10 Aug 2015 19:56:13 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82C03C5A; Mon, 10 Aug 2015 19:56:13 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJuDUj007946; Mon, 10 Aug 2015 19:56:13 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJuDWf007945; Mon, 10 Aug 2015 19:56:13 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508101956.t7AJuDWf007945@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 10 Aug 2015 19:56:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393900 - head/devel/fpc-fcl-db X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:56:13 -0000 Author: antoine Date: Mon Aug 10 19:56:12 2015 New Revision: 393900 URL: https://svnweb.freebsd.org/changeset/ports/393900 Log: Add missing run dependencies Reported via databases/fpc-fpindexer: Fatal: Can't find unit ibase60dyn used by IBConnection Modified: head/devel/fpc-fcl-db/Makefile Modified: head/devel/fpc-fcl-db/Makefile ============================================================================== --- head/devel/fpc-fcl-db/Makefile Mon Aug 10 19:55:02 2015 (r393899) +++ head/devel/fpc-fcl-db/Makefile Mon Aug 10 19:56:12 2015 (r393900) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel lang PKGNAMESUFFIX= -fcl-db @@ -10,6 +10,7 @@ COMMENT= Free Pascal Component Library USE_FPC= dblib fcl-async fcl-base fcl-json fcl-xml hash ibase mysql odbc oracle paszlib postgres \ pthreads pxlib sqlite +USE_FPC_RUN= yes MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Mon Aug 10 19:59:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAED099EAED; Mon, 10 Aug 2015 19:59:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABE88DAB; Mon, 10 Aug 2015 19:59:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AJxGtI008153; Mon, 10 Aug 2015 19:59:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AJxGxd008152; Mon, 10 Aug 2015 19:59:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508101959.t7AJxGxd008152@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 19:59:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393901 - head/devel/py-virtualenvwrapper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 19:59:16 -0000 Author: amdmi3 Date: Mon Aug 10 19:59:15 2015 New Revision: 393901 URL: https://svnweb.freebsd.org/changeset/ports/393901 Log: - Mark BROKEN: does not build: ... File "/usr/local/lib/python2.7/site-packages/pbr/builddoc.py", line 133, in _sphinx_run sphinx_config.init_values() TypeError: init_values() takes exactly 2 arguments (1 given) Reported by: pkg-fallout Approved by: portmgr blanket Modified: head/devel/py-virtualenvwrapper/Makefile Modified: head/devel/py-virtualenvwrapper/Makefile ============================================================================== --- head/devel/py-virtualenvwrapper/Makefile Mon Aug 10 19:56:12 2015 (r393900) +++ head/devel/py-virtualenvwrapper/Makefile Mon Aug 10 19:59:15 2015 (r393901) @@ -12,6 +12,8 @@ COMMENT= Set of extensions to virtualenv LICENSE= MIT +BROKEN= does not build + BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=0.5.19:${PORTSDIR}/devel/py-pbr RUN_DEPENDS= ${PKGNAMEPREFIX}stevedore>=0.3:${PORTSDIR}/devel/py-stevedore \ ${PKGNAMEPREFIX}virtualenv>=1.4.8:${PORTSDIR}/devel/py-virtualenv \ From owner-svn-ports-all@freebsd.org Mon Aug 10 20:00:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D752899EB25; Mon, 10 Aug 2015 20:00:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8778EE3; Mon, 10 Aug 2015 20:00:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AK0Vt3008342; Mon, 10 Aug 2015 20:00:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AK0VSd008341; Mon, 10 Aug 2015 20:00:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508102000.t7AK0VSd008341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 20:00:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393902 - head/science/py-pydap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 20:00:31 -0000 Author: amdmi3 Date: Mon Aug 10 20:00:30 2015 New Revision: 393902 URL: https://svnweb.freebsd.org/changeset/ports/393902 Log: - Mark BROKEN: does not build: ... File "/usr/local/lib/python2.7/site-packages/sphinx/locale/__init__.py", line 15, in from six.moves import UserString ImportError: cannot import name UserString Reported by: pkg-fallout Approved by: portmgr blanket Modified: head/science/py-pydap/Makefile Modified: head/science/py-pydap/Makefile ============================================================================== --- head/science/py-pydap/Makefile Mon Aug 10 19:59:15 2015 (r393901) +++ head/science/py-pydap/Makefile Mon Aug 10 20:00:30 2015 (r393902) @@ -14,6 +14,8 @@ COMMENT= Implementation of the Opendap/D LICENSE= MIT +BROKEN= does not build + BUILD_DEPENDS= paver:${PORTSDIR}/devel/py-paver \ ${PYNUMPY} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>0:${PORTSDIR}/www/py-httplib2 \ From owner-svn-ports-all@freebsd.org Mon Aug 10 20:14:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AABB99EEEA; Mon, 10 Aug 2015 20:14:17 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F02EFA1C; Mon, 10 Aug 2015 20:14:16 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AKEG2w016271; Mon, 10 Aug 2015 20:14:16 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AKEG5q016270; Mon, 10 Aug 2015 20:14:16 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508102014.t7AKEG5q016270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 10 Aug 2015 20:14:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393903 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 20:14:17 -0000 Author: jbeich Date: Mon Aug 10 20:14:16 2015 New Revision: 393903 URL: https://svnweb.freebsd.org/changeset/ports/393903 Log: bsd.gecko.mk: update DTRACE requirements - Builds fine in 9.3R amd64 jail on 11.0C amd64 host - libelf is no longer needed since base r278934 Modified: head/Mk/bsd.gecko.mk Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Mon Aug 10 20:00:30 2015 (r393902) +++ head/Mk/bsd.gecko.mk Mon Aug 10 20:14:16 2015 (r393903) @@ -370,11 +370,10 @@ MOZ_OPTIONS+= --disable-debug --enable-r .endif .if ${PORT_OPTIONS:MDTRACE} -. if ${OSVERSION} < 1000510 -BROKEN= dtrace -G crashes with C++ object files -. endif MOZ_OPTIONS+= --enable-dtrace +. if ${OSVERSION} < 1100061 LIBS+= -lelf +. endif STRIP= .else MOZ_OPTIONS+= --disable-dtrace From owner-svn-ports-all@freebsd.org Mon Aug 10 20:23:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 256C399D137; Mon, 10 Aug 2015 20:23:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14B42F4A; Mon, 10 Aug 2015 20:23:56 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AKNtEb020718; Mon, 10 Aug 2015 20:23:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AKNqhc020700; Mon, 10 Aug 2015 20:23:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508102023.t7AKNqhc020700@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 20:23:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393904 - in head/archivers: atool makeself p5-Archive-Any p5-Archive-Any-Plugin-Rar p5-Archive-Peek p5-Archive-Rar p5-Archive-Tar p5-Compress-LZW p5-POE-Filter-Bzip2 pear-File_Archive ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 20:23:56 -0000 Author: amdmi3 Date: Mon Aug 10 20:23:51 2015 New Revision: 393904 URL: https://svnweb.freebsd.org/changeset/ports/393904 Log: - Add some NO_ARCH'es Approved by: portmgr blanket Modified: head/archivers/atool/Makefile head/archivers/makeself/Makefile head/archivers/p5-Archive-Any-Plugin-Rar/Makefile head/archivers/p5-Archive-Any/Makefile head/archivers/p5-Archive-Peek/Makefile head/archivers/p5-Archive-Rar/Makefile head/archivers/p5-Archive-Tar/Makefile head/archivers/p5-Compress-LZW/Makefile head/archivers/p5-POE-Filter-Bzip2/Makefile head/archivers/pear-File_Archive/Makefile head/archivers/rox-archive/Makefile head/archivers/rpm2cpio/Makefile head/archivers/unfoo/Makefile Modified: head/archivers/atool/Makefile ============================================================================== --- head/archivers/atool/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/atool/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -14,5 +14,6 @@ LICENSE= GPLv2 GNU_CONFIGURE= yes USES= gmake perl5 USE_PERL5= build run +NO_ARCH= yes .include Modified: head/archivers/makeself/Makefile ============================================================================== --- head/archivers/makeself/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/makeself/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -17,6 +17,7 @@ EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= --nox11 --target ${WRKSRC} NO_BUILD= yes +NO_ARCH= yes PLIST_FILES= bin/makeself bin/makeself-header \ bin/makeself-header.sh bin/makeself.sh Modified: head/archivers/p5-Archive-Any-Plugin-Rar/Makefile ============================================================================== --- head/archivers/p5-Archive-Any-Plugin-Rar/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/p5-Archive-Any-Plugin-Rar/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -18,5 +18,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure +NO_ARCH= yes .include Modified: head/archivers/p5-Archive-Any/Makefile ============================================================================== --- head/archivers/p5-Archive-Any/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/p5-Archive-Any/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -22,6 +22,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Perl-Critic>=0:${PORTSDIR}/textproc/p5-Test-Perl-Critic \ p5-Test-Warn>=0:${PORTSDIR}/devel/p5-Test-Warn +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/archivers/p5-Archive-Peek/Makefile ============================================================================== --- head/archivers/p5-Archive-Peek/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/p5-Archive-Peek/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -21,6 +21,7 @@ TEST_DEPENDS= p5-Test-Pod>=1.14:${PORTSD USES= perl5 USE_PERL5= configure +NO_ARCH= yes regression-test: build cd ${WRKSRC}/ && ${MAKE} test Modified: head/archivers/p5-Archive-Rar/Makefile ============================================================================== --- head/archivers/p5-Archive-Rar/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/p5-Archive-Rar/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -14,6 +14,7 @@ COMMENT= Interface with the 'rar' comman BUILD_DEPENDS= rar:${PORTSDIR}/archivers/rar \ p5-IPC-Run>=0:${PORTSDIR}/devel/p5-IPC-Run +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/archivers/p5-Archive-Tar/Makefile ============================================================================== --- head/archivers/p5-Archive-Tar/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/p5-Archive-Tar/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -18,6 +18,7 @@ RUN_DEPENDS= p5-IO-String>=0:${PORTSDIR} USES= perl5 USE_PERL5= configure +NO_ARCH= yes OPTIONS_DEFINE= TEXTDIFF TEXTDIFF_DESC= Text::Diff support for ptardiff Modified: head/archivers/p5-Compress-LZW/Makefile ============================================================================== --- head/archivers/p5-Compress-LZW/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/p5-Compress-LZW/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -19,6 +19,7 @@ BUILD_DEPENDS= p5-Moo>=1.001000:${PORTSD p5-strictures>0:${PORTSDIR}/devel/p5-strictures RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/archivers/p5-POE-Filter-Bzip2/Makefile ============================================================================== --- head/archivers/p5-POE-Filter-Bzip2/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/p5-POE-Filter-Bzip2/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -16,6 +16,7 @@ BUILD_DEPENDS= p5-Compress-Bzip2>=2.08:$ p5-POE>=0.38:${PORTSDIR}/devel/p5-POE RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/archivers/pear-File_Archive/Makefile ============================================================================== --- head/archivers/pear-File_Archive/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/pear-File_Archive/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -11,7 +11,8 @@ COMMENT= PEAR class to manipulate tar, g BUILD_DEPENDS= ${PEARDIR}/MIME/Type.php:${PORTSDIR}/mail/pear-MIME_Type RUN_DEPENDS= ${PEARDIR}/MIME/Type.php:${PORTSDIR}/mail/pear-MIME_Type -USES= pear +USES= pear +NO_ARCH= yes USE_PHP= bz2 pcre zlib Modified: head/archivers/rox-archive/Makefile ============================================================================== --- head/archivers/rox-archive/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/rox-archive/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -13,6 +13,7 @@ RUN_DEPENDS= ${LOCALBASE}/bin/rox:${PORT ${LOCALBASE}/lib/ROX-Lib2/python/rox/__init__.py:${PORTSDIR}/devel/py-roxlib USES= python tar:bzip2 +NO_ARCH= yes do-build: @${PYTHON_CMD} -m compileall ${WRKSRC} Modified: head/archivers/rpm2cpio/Makefile ============================================================================== --- head/archivers/rpm2cpio/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/rpm2cpio/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -15,6 +15,7 @@ NO_WRKSUBDIR= yes USES= perl5 NO_BUILD= yes +NO_ARCH= yes REINPLACE_ARGS= PLIST_FILES= bin/rpm2cpio.pl Modified: head/archivers/unfoo/Makefile ============================================================================== --- head/archivers/unfoo/Makefile Mon Aug 10 20:14:16 2015 (r393903) +++ head/archivers/unfoo/Makefile Mon Aug 10 20:23:51 2015 (r393904) @@ -18,6 +18,7 @@ USE_GITHUB= yes GH_ACCOUNT= vitaminmoo NO_BUILD= yes +NO_ARCH= yes PLIST_FILES= bin/${PORTNAME} post-patch: From owner-svn-ports-all@freebsd.org Mon Aug 10 20:45:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B258999D781; Mon, 10 Aug 2015 20:45:57 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A318DC95; Mon, 10 Aug 2015 20:45:57 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AKjv7n029709; Mon, 10 Aug 2015 20:45:57 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AKjujp029704; Mon, 10 Aug 2015 20:45:56 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508102045.t7AKjujp029704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 10 Aug 2015 20:45:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393905 - in head/graphics/leptonica: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 20:45:57 -0000 Author: pawel Date: Mon Aug 10 20:45:55 2015 New Revision: 393905 URL: https://svnweb.freebsd.org/changeset/ports/393905 Log: Update to version 1.72 PR: 201917 Submitted by: yuri@rawbw.com Approved by: maintainer Modified: head/graphics/leptonica/Makefile head/graphics/leptonica/distinfo head/graphics/leptonica/files/patch-Makefile.in head/graphics/leptonica/pkg-plist Modified: head/graphics/leptonica/Makefile ============================================================================== --- head/graphics/leptonica/Makefile Mon Aug 10 20:23:51 2015 (r393904) +++ head/graphics/leptonica/Makefile Mon Aug 10 20:45:55 2015 (r393905) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= leptonica -PORTVERSION= 1.70 -PORTREVISION= 3 +PORTVERSION= 1.72 CATEGORIES= graphics MASTER_SITES= http://www.leptonica.com/source/ @@ -11,6 +10,7 @@ MAINTAINER= hiroto.kagotani@gmail.com COMMENT= C library for efficient image processing and image analysis operations LIB_DEPENDS= libgif.so:${PORTSDIR}/graphics/giflib \ + libopenjp2.so:${PORTSDIR}/graphics/openjpeg \ libpng.so:${PORTSDIR}/graphics/png \ libtiff.so:${PORTSDIR}/graphics/tiff \ libwebp.so:${PORTSDIR}/graphics/webp Modified: head/graphics/leptonica/distinfo ============================================================================== --- head/graphics/leptonica/distinfo Mon Aug 10 20:23:51 2015 (r393904) +++ head/graphics/leptonica/distinfo Mon Aug 10 20:45:55 2015 (r393905) @@ -1,2 +1,2 @@ -SHA256 (leptonica-1.70.tar.gz) = d3d209a1f6d1f7a80119486b5011bc8c6627e582c927ab44ba33c37edb2cfba2 -SIZE (leptonica-1.70.tar.gz) = 9890585 +SHA256 (leptonica-1.72.tar.gz) = 79d5eadd32658c9fea38700c975d60aa3d088eaa3e307659f004d40834de1f56 +SIZE (leptonica-1.72.tar.gz) = 10580170 Modified: head/graphics/leptonica/files/patch-Makefile.in ============================================================================== --- head/graphics/leptonica/files/patch-Makefile.in Mon Aug 10 20:23:51 2015 (r393904) +++ head/graphics/leptonica/files/patch-Makefile.in Mon Aug 10 20:45:55 2015 (r393905) @@ -1,6 +1,6 @@ ---- ./Makefile.in.orig 2014-02-06 00:12:32.000000000 +0900 -+++ ./Makefile.in 2014-05-07 20:05:51.000000000 +0900 -@@ -269,7 +269,7 @@ +--- Makefile.in.orig 2015-04-26 20:30:38 UTC ++++ Makefile.in +@@ -270,7 +270,7 @@ top_srcdir = @top_srcdir@ ACLOCAL_AMFLAGS = -I m4 AUTOMAKE_OPTIONS = foreign EXTRA_DIST = config README.html leptonica-license.txt moller52.jpg version-notes.html make-for-auto make-for-local autobuild Modified: head/graphics/leptonica/pkg-plist ============================================================================== --- head/graphics/leptonica/pkg-plist Mon Aug 10 20:23:51 2015 (r393904) +++ head/graphics/leptonica/pkg-plist Mon Aug 10 20:45:55 2015 (r393905) @@ -18,6 +18,7 @@ include/leptonica/arrayaccess.h include/leptonica/bbuffer.h include/leptonica/bilateral.h include/leptonica/bmf.h +include/leptonica/bmfdata.h include/leptonica/bmp.h include/leptonica/ccbord.h include/leptonica/dewarp.h @@ -37,10 +38,11 @@ include/leptonica/readbarcode.h include/leptonica/recog.h include/leptonica/regutils.h include/leptonica/stack.h +include/leptonica/stringcode.h include/leptonica/sudoku.h include/leptonica/watershed.h lib/liblept.a lib/liblept.so lib/liblept.so.4 -lib/liblept.so.4.0.1 +lib/liblept.so.4.0.3 libdata/pkgconfig/lept.pc From owner-svn-ports-all@freebsd.org Mon Aug 10 20:57:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D136199DA48; Mon, 10 Aug 2015 20:57:20 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8501643; Mon, 10 Aug 2015 20:57:20 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AKvKh1034204; Mon, 10 Aug 2015 20:57:20 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AKvJPK034200; Mon, 10 Aug 2015 20:57:19 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508102057.t7AKvJPK034200@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 10 Aug 2015 20:57:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393906 - in head/sysutils/debootstrap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 20:57:20 -0000 Author: pawel Date: Mon Aug 10 20:57:18 2015 New Revision: 393906 URL: https://svnweb.freebsd.org/changeset/ports/393906 Log: Update to version 1.0.72 PR: 201950 Submitted by: Nikolai Lifanov (maintainer) Modified: head/sysutils/debootstrap/Makefile head/sysutils/debootstrap/distinfo head/sysutils/debootstrap/files/patch-Makefile head/sysutils/debootstrap/pkg-plist Modified: head/sysutils/debootstrap/Makefile ============================================================================== --- head/sysutils/debootstrap/Makefile Mon Aug 10 20:45:55 2015 (r393905) +++ head/sysutils/debootstrap/Makefile Mon Aug 10 20:57:18 2015 (r393906) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= debootstrap -PORTVERSION= 1.0.70 +PORTVERSION= 1.0.72 CATEGORIES= sysutils MASTER_SITES= DEBIAN/pool/main/d/${PORTNAME} DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/sysutils/debootstrap/distinfo ============================================================================== --- head/sysutils/debootstrap/distinfo Mon Aug 10 20:45:55 2015 (r393905) +++ head/sysutils/debootstrap/distinfo Mon Aug 10 20:57:18 2015 (r393906) @@ -1,2 +1,2 @@ -SHA256 (debootstrap_1.0.70.tar.gz) = b23e6d5fc6cab7f3f381e064efd2a8178ac210d4b4335b29104e09048d7e200e -SIZE (debootstrap_1.0.70.tar.gz) = 61438 +SHA256 (debootstrap_1.0.72.tar.gz) = 90f4cf1390326f020b9192b6a45ba1d323fffab9c22c6f62451780e6f5482f8d +SIZE (debootstrap_1.0.72.tar.gz) = 62089 Modified: head/sysutils/debootstrap/files/patch-Makefile ============================================================================== --- head/sysutils/debootstrap/files/patch-Makefile Mon Aug 10 20:45:55 2015 (r393905) +++ head/sysutils/debootstrap/files/patch-Makefile Mon Aug 10 20:57:18 2015 (r393906) @@ -1,13 +1,5 @@ --- Makefile.orig 2015-05-19 09:35:39 UTC +++ Makefile -@@ -1,6 +1,6 @@ - # avoid dpkg-dev dependency; fish out the version with sed - VERSION := $(shell sed 's/.*(\(.*\)).*/\1/; q' debian/changelog) --DATE := $(shell sed -n '/^ -- /{s/.*> \(.*\)/\1/p;q}' debian/changelog) -+DATE := $(shell sed -n '/^ -- /{s/.*> \(.*\)/\1/p;q;}' debian/changelog) - - MAKEDEV ?= /sbin/MAKEDEV - @@ -14,17 +14,15 @@ clean: rm -f devices.tar.gz rm -rf dev Modified: head/sysutils/debootstrap/pkg-plist ============================================================================== --- head/sysutils/debootstrap/pkg-plist Mon Aug 10 20:45:55 2015 (r393905) +++ head/sysutils/debootstrap/pkg-plist Mon Aug 10 20:57:18 2015 (r393906) @@ -42,5 +42,6 @@ man/man8/debootstrap.8.gz %%DATADIR%%/scripts/warty %%DATADIR%%/scripts/warty.buildd %%DATADIR%%/scripts/wheezy +%%DATADIR%%/scripts/wily %%DATADIR%%/scripts/woody %%DATADIR%%/scripts/woody.buildd From owner-svn-ports-all@freebsd.org Mon Aug 10 21:10:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BD0F99DD28; Mon, 10 Aug 2015 21:10:19 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1122FE8; Mon, 10 Aug 2015 21:10:18 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ALAIBf038663; Mon, 10 Aug 2015 21:10:18 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ALAICr038660; Mon, 10 Aug 2015 21:10:18 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201508102110.t7ALAICr038660@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Mon, 10 Aug 2015 21:10:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393907 - in head/deskutils/virt-manager: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 21:10:19 -0000 Author: jgh Date: Mon Aug 10 21:10:17 2015 New Revision: 393907 URL: https://svnweb.freebsd.org/changeset/ports/393907 Log: - update to 1.2.1 From Changelog: Release 1.2.1 (June 06, 2015) ----------------------------- - Bugfix release - Fix connecting to older libvirt versions (Michal Kepie'n) - Fix connecting to VM console with non-IP hostname (Giuseppe Scrivano) - Fix addhardware/create wizard errors when a nodedev disappears - Fix adding a second cdrom via customize dialog Release 1.2.0 (May 04, 2015) ---------------------------- - OVMF/AAVMF Support (Laszlo Ersek, Giuseppe Scrivano, Cole Robinson) - Improved support for AArch64 qemu/kvm - virt-install: Support --disk type=network parameters - virt-install: Make --disk just work - virt-install: Add --disk sgio= option (Giuseppe Scrivano) - addhardware: default to an existing bus when adding a new disk (Giuseppe Scrivano) - virt-install: Add --input device option - virt-manager: Unify storagebrowser and storage details functionality - virt-manager: allow setting a custom connection row name - virt-install: Support --hostdev scsi passthrough - virt-install: Fill in a bunch of --graphics spice options - Disable spice image compression for new local VMs - virt-manager: big reworking of the migration dialog Deleted: head/deskutils/virt-manager/files/patch-virtManager_serialcon-bug1215357.py head/deskutils/virt-manager/files/patch-virtManager_serialcon.py Modified: head/deskutils/virt-manager/Makefile head/deskutils/virt-manager/distinfo head/deskutils/virt-manager/files/patch-setup.py Modified: head/deskutils/virt-manager/Makefile ============================================================================== --- head/deskutils/virt-manager/Makefile Mon Aug 10 20:57:18 2015 (r393906) +++ head/deskutils/virt-manager/Makefile Mon Aug 10 21:10:17 2015 (r393907) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= virt-manager -PORTVERSION= 1.1.0 -PORTREVISION= 6 +PORTVERSION= 1.2.1 CATEGORIES= deskutils net-mgmt MASTER_SITES= http://virt-manager.org/download/sources/${PORTNAME}/ \ LOCAL/jgh/deskutils/${PORTNAME}/ Modified: head/deskutils/virt-manager/distinfo ============================================================================== --- head/deskutils/virt-manager/distinfo Mon Aug 10 20:57:18 2015 (r393906) +++ head/deskutils/virt-manager/distinfo Mon Aug 10 21:10:17 2015 (r393907) @@ -1,2 +1,2 @@ -SHA256 (virt-manager-1.1.0.tar.gz) = ab0906cb15a132f1893f89ac4ca211c6c2c9c2d1860fbc285edbf9451c0f7941 -SIZE (virt-manager-1.1.0.tar.gz) = 2509440 +SHA256 (virt-manager-1.2.1.tar.gz) = 74bba80e72e5e1b4d84f1d5b7211b874e9c4ae00a0a44149d1721acab38ce6be +SIZE (virt-manager-1.2.1.tar.gz) = 2524812 Modified: head/deskutils/virt-manager/files/patch-setup.py ============================================================================== --- head/deskutils/virt-manager/files/patch-setup.py Mon Aug 10 20:57:18 2015 (r393906) +++ head/deskutils/virt-manager/files/patch-setup.py Mon Aug 10 21:10:17 2015 (r393907) @@ -1,6 +1,6 @@ ---- setup.py.orig 2014-09-06 22:26:12 UTC +--- setup.py.orig 2015-08-10 18:15:04 UTC +++ setup.py -@@ -209,14 +209,6 @@ class my_build(build): +@@ -208,12 +208,6 @@ class my_build(build): build.run(self) @@ -10,17 +10,17 @@ - """ - def run(self): - pass -- -- + + class my_install(install): - """ - Error if we weren't 'configure'd with the correct install prefix -@@ -601,11 +593,9 @@ setup( +@@ -589,13 +583,11 @@ setup( "virt-convert", "virt-xml", ]), - ("share/glib-2.0/schemas", - ["data/org.virt-manager.virt-manager.gschema.xml"]), + ("share/GConf/gsettings", + ["data/org.virt-manager.virt-manager.convert"]), ("share/virt-manager/ui", glob.glob("ui/*.ui")), - ("share/man/man1", [ @@ -28,7 +28,7 @@ "man/virt-manager.1", "man/virt-install.1", "man/virt-clone.1", -@@ -627,7 +617,6 @@ setup( +@@ -617,7 +609,6 @@ setup( 'sdist': my_sdist, 'install': my_install, From owner-svn-ports-all@freebsd.org Mon Aug 10 21:11:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBFB499DD5C; Mon, 10 Aug 2015 21:11:01 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD84E289; Mon, 10 Aug 2015 21:11:01 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ALB12j039500; Mon, 10 Aug 2015 21:11:01 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ALB1AT039498; Mon, 10 Aug 2015 21:11:01 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508102111.t7ALB1AT039498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 10 Aug 2015 21:11:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393908 - head/graphics/libsixel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 21:11:02 -0000 Author: pawel Date: Mon Aug 10 21:11:00 2015 New Revision: 393908 URL: https://svnweb.freebsd.org/changeset/ports/393908 Log: Update to version 1.4.13 PR: 201936 Submitted by: IWAMOTO Kouichi (maintainer) Modified: head/graphics/libsixel/Makefile head/graphics/libsixel/distinfo Modified: head/graphics/libsixel/Makefile ============================================================================== --- head/graphics/libsixel/Makefile Mon Aug 10 21:10:17 2015 (r393907) +++ head/graphics/libsixel/Makefile Mon Aug 10 21:11:00 2015 (r393908) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libsixel -PORTVERSION= 1.4.12 +PORTVERSION= 1.4.13 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= graphics Modified: head/graphics/libsixel/distinfo ============================================================================== --- head/graphics/libsixel/distinfo Mon Aug 10 21:10:17 2015 (r393907) +++ head/graphics/libsixel/distinfo Mon Aug 10 21:11:00 2015 (r393908) @@ -1,2 +1,2 @@ -SHA256 (saitoha-libsixel-v1.4.12_GH0.tar.gz) = 79ba3ed747aa5c02b28d16540bd399e9dfa897b824731584b664c6f9f3ef7148 -SIZE (saitoha-libsixel-v1.4.12_GH0.tar.gz) = 4060158 +SHA256 (saitoha-libsixel-v1.4.13_GH0.tar.gz) = 9f69097ee798807038c39345c5f596b2d12a22cef16690e701a0fab77cab7b63 +SIZE (saitoha-libsixel-v1.4.13_GH0.tar.gz) = 4061302 From owner-svn-ports-all@freebsd.org Mon Aug 10 21:36:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 230A599E501; Mon, 10 Aug 2015 21:36:25 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14065DAC; Mon, 10 Aug 2015 21:36:25 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ALaO6C051204; Mon, 10 Aug 2015 21:36:24 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ALaOWr051202; Mon, 10 Aug 2015 21:36:24 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508102136.t7ALaOWr051202@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 10 Aug 2015 21:36:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393909 - head/lang/groovy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 21:36:25 -0000 Author: junovitch Date: Mon Aug 10 21:36:23 2015 New Revision: 393909 URL: https://svnweb.freebsd.org/changeset/ports/393909 Log: lang/groovy: security update 2.3.9 -> 2.4.4 - Add NO_ARCH - Remove various LICENSE files that were removed upstream - Remove PDF documentation that was removed upstream - Switch @dirrm to @dir - Reset maintainer to ports@FreeBSD.org by private request [1] PR: 201704 Security: CVE-2015-3253 Security: 67b3fef2-2bea-11e5-86ff-14dae9d210b8 Approved by: mjs@Bur.st (outgoing maintainer) [1], feld (mentor) MFH: 2015Q3 Modified: head/lang/groovy/Makefile head/lang/groovy/distinfo Modified: head/lang/groovy/Makefile ============================================================================== --- head/lang/groovy/Makefile Mon Aug 10 21:11:00 2015 (r393908) +++ head/lang/groovy/Makefile Mon Aug 10 21:36:23 2015 (r393909) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= groovy -DISTVERSION= 2.3.9 +DISTVERSION= 2.4.4 CATEGORIES= lang java MASTER_SITES= http://dl.bintray.com/groovy/maven/ -DISTFILES= groovy-binary-${PORTVERSION}${EXTRACT_SUFX} +DISTFILES= apache-groovy-binary-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= mjs@Bur.st +MAINTAINER= ports@FreeBSD.org COMMENT= Agile dynamic language for the JVM LICENSE= APACHE20 @@ -17,15 +17,16 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVER USES= zip USE_JAVA= yes JAVA_VERSION= 1.7+ +NO_ARCH= yes NO_BUILD= yes DATADIR= ${JAVASHAREDIR}/${PORTNAME} -DATAFILES= ANTLR-LICENSE.txt ASM-LICENSE.txt CLI-LICENSE.txt JSR223-LICENSE.txt LICENSE.txt conf lib +DATAFILES= CLI-LICENSE.txt conf lib SCRIPTFILES= groovy groovyConsole groovyc groovysh java2groovy startGroovy -PORTDOCS= html pdf +PORTDOCS= html OPTIONS_DEFINE= DOCS -DOCS_DISTFILES= groovy-docs-${PORTVERSION}${EXTRACT_SUFX} +DOCS_DISTFILES= apache-groovy-docs-${PORTVERSION}${EXTRACT_SUFX} .include @@ -60,7 +61,7 @@ post-install: @${FIND} -s ${DATAFILES:S,^,${WRKSRC}/,} -not -type d 2>/dev/null | \ ${SED} -ne 's,^${WRKSRC},${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} @${FIND} -s -d ${DATAFILES:S,^,${WRKSRC}/,} -type d 2>/dev/null | \ - ${SED} -ne 's,^${WRKSRC},@dirrm ${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} - @${ECHO_CMD} '@dirrm ${DATADIR:S,^${PREFIX}/,,}' >> ${TMPPLIST} + ${SED} -ne 's,^${WRKSRC},@dir ${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} + @${ECHO_CMD} '@dir ${DATADIR:S,^${PREFIX}/,,}' >> ${TMPPLIST} .include Modified: head/lang/groovy/distinfo ============================================================================== --- head/lang/groovy/distinfo Mon Aug 10 21:11:00 2015 (r393908) +++ head/lang/groovy/distinfo Mon Aug 10 21:36:23 2015 (r393909) @@ -1,4 +1,4 @@ -SHA256 (groovy-binary-2.3.9.zip) = 8840d120bb84d39836f08492ac2f6caefefc03ffe957031a6bbfada055d53619 -SIZE (groovy-binary-2.3.9.zip) = 32977396 -SHA256 (groovy-docs-2.3.9.zip) = 04392aa00e5041697d40f3d45424981d46057036778b568ada6a4bfe42a3f920 -SIZE (groovy-docs-2.3.9.zip) = 29317505 +SHA256 (apache-groovy-binary-2.4.4.zip) = a7cc1e5315a14ea38db1b2b9ce0792e35174161141a6a3e2ef49b7b2788c258c +SIZE (apache-groovy-binary-2.4.4.zip) = 32472463 +SHA256 (apache-groovy-docs-2.4.4.zip) = ba9d9ab07b0039472a9e5c6dbfe8472c57249952ff8953cb692bb5e2c629a8e4 +SIZE (apache-groovy-docs-2.4.4.zip) = 17443243 From owner-svn-ports-all@freebsd.org Mon Aug 10 21:40:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36FFF99E73C; Mon, 10 Aug 2015 21:40:44 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2806A20D; Mon, 10 Aug 2015 21:40:44 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ALeikh051624; Mon, 10 Aug 2015 21:40:44 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ALehSw051622; Mon, 10 Aug 2015 21:40:43 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508102140.t7ALehSw051622@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 10 Aug 2015 21:40:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393910 - branches/2015Q3/lang/groovy X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 21:40:44 -0000 Author: junovitch Date: Mon Aug 10 21:40:42 2015 New Revision: 393910 URL: https://svnweb.freebsd.org/changeset/ports/393910 Log: MFH: r393909 lang/groovy: security update 2.3.9 -> 2.4.4 - Add NO_ARCH - Remove various LICENSE files that were removed upstream - Remove PDF documentation that was removed upstream - Switch @dirrm to @dir - Reset maintainer to ports@FreeBSD.org by private request [1] PR: 201704 Security: CVE-2015-3253 Security: 67b3fef2-2bea-11e5-86ff-14dae9d210b8 Approved by: mjs@Bur.st (outgoing maintainer) [1], feld (mentor) Approved by: ports-secteam (feld) Modified: branches/2015Q3/lang/groovy/Makefile branches/2015Q3/lang/groovy/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/lang/groovy/Makefile ============================================================================== --- branches/2015Q3/lang/groovy/Makefile Mon Aug 10 21:36:23 2015 (r393909) +++ branches/2015Q3/lang/groovy/Makefile Mon Aug 10 21:40:42 2015 (r393910) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= groovy -DISTVERSION= 2.3.9 +DISTVERSION= 2.4.4 CATEGORIES= lang java MASTER_SITES= http://dl.bintray.com/groovy/maven/ -DISTFILES= groovy-binary-${PORTVERSION}${EXTRACT_SUFX} +DISTFILES= apache-groovy-binary-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER= mjs@Bur.st +MAINTAINER= ports@FreeBSD.org COMMENT= Agile dynamic language for the JVM LICENSE= APACHE20 @@ -17,15 +17,16 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVER USES= zip USE_JAVA= yes JAVA_VERSION= 1.7+ +NO_ARCH= yes NO_BUILD= yes DATADIR= ${JAVASHAREDIR}/${PORTNAME} -DATAFILES= ANTLR-LICENSE.txt ASM-LICENSE.txt CLI-LICENSE.txt JSR223-LICENSE.txt LICENSE.txt conf lib +DATAFILES= CLI-LICENSE.txt conf lib SCRIPTFILES= groovy groovyConsole groovyc groovysh java2groovy startGroovy -PORTDOCS= html pdf +PORTDOCS= html OPTIONS_DEFINE= DOCS -DOCS_DISTFILES= groovy-docs-${PORTVERSION}${EXTRACT_SUFX} +DOCS_DISTFILES= apache-groovy-docs-${PORTVERSION}${EXTRACT_SUFX} .include @@ -60,7 +61,7 @@ post-install: @${FIND} -s ${DATAFILES:S,^,${WRKSRC}/,} -not -type d 2>/dev/null | \ ${SED} -ne 's,^${WRKSRC},${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} @${FIND} -s -d ${DATAFILES:S,^,${WRKSRC}/,} -type d 2>/dev/null | \ - ${SED} -ne 's,^${WRKSRC},@dirrm ${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} - @${ECHO_CMD} '@dirrm ${DATADIR:S,^${PREFIX}/,,}' >> ${TMPPLIST} + ${SED} -ne 's,^${WRKSRC},@dir ${DATADIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST} + @${ECHO_CMD} '@dir ${DATADIR:S,^${PREFIX}/,,}' >> ${TMPPLIST} .include Modified: branches/2015Q3/lang/groovy/distinfo ============================================================================== --- branches/2015Q3/lang/groovy/distinfo Mon Aug 10 21:36:23 2015 (r393909) +++ branches/2015Q3/lang/groovy/distinfo Mon Aug 10 21:40:42 2015 (r393910) @@ -1,4 +1,4 @@ -SHA256 (groovy-binary-2.3.9.zip) = 8840d120bb84d39836f08492ac2f6caefefc03ffe957031a6bbfada055d53619 -SIZE (groovy-binary-2.3.9.zip) = 32977396 -SHA256 (groovy-docs-2.3.9.zip) = 04392aa00e5041697d40f3d45424981d46057036778b568ada6a4bfe42a3f920 -SIZE (groovy-docs-2.3.9.zip) = 29317505 +SHA256 (apache-groovy-binary-2.4.4.zip) = a7cc1e5315a14ea38db1b2b9ce0792e35174161141a6a3e2ef49b7b2788c258c +SIZE (apache-groovy-binary-2.4.4.zip) = 32472463 +SHA256 (apache-groovy-docs-2.4.4.zip) = ba9d9ab07b0039472a9e5c6dbfe8472c57249952ff8953cb692bb5e2c629a8e4 +SIZE (apache-groovy-docs-2.4.4.zip) = 17443243 From owner-svn-ports-all@freebsd.org Mon Aug 10 21:44:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C60899E885; Mon, 10 Aug 2015 21:44:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CD6794D; Mon, 10 Aug 2015 21:44:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ALieHV055523; Mon, 10 Aug 2015 21:44:40 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ALieBA055520; Mon, 10 Aug 2015 21:44:40 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508102144.t7ALieBA055520@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 10 Aug 2015 21:44:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393911 - in head/net-im/sayaka: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 21:44:41 -0000 Author: pawel Date: Mon Aug 10 21:44:39 2015 New Revision: 393911 URL: https://svnweb.freebsd.org/changeset/ports/393911 Log: - Update to version 3.1.0 [1] - Respect CFLAGS during build PR: 201939 [1] Submitted by: IWAMOTO Kouichi (maintainer) [1] Modified: head/net-im/sayaka/Makefile head/net-im/sayaka/distinfo head/net-im/sayaka/files/patch-sayaka.sh Modified: head/net-im/sayaka/Makefile ============================================================================== --- head/net-im/sayaka/Makefile Mon Aug 10 21:40:42 2015 (r393910) +++ head/net-im/sayaka/Makefile Mon Aug 10 21:44:39 2015 (r393911) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sayaka -PORTVERSION= 3.0.9 +PORTVERSION= 3.1.0 CATEGORIES= net-im MAINTAINER= sue@iwmt.org @@ -15,7 +15,7 @@ RUN_DEPENDS= curl:${PORTSDIR}/ftp/curl \ USE_GITHUB= yes GH_ACCOUNT= isaki68k -PLIST_FILES= bin/sayaka +PLIST_FILES= bin/sayaka bin/cellsize USE_PHP= curl filter hash json mbstring pcntl pdo pdo_sqlite sqlite3 WANT_PHP_CLI= yes @@ -30,13 +30,18 @@ PORTDATA= OAuth.php \ subr.php \ twitteroauth.php -NO_BUILD= yes +ALL_TARGET= cellsize post-patch: - @${REINPLACE_CMD} -e 's|@@DATADIR@@|${DATADIR}|g' ${WRKSRC}/sayaka.sh + @${REINPLACE_CMD} -e \ + 's|@@DATADIR@@|${DATADIR}|g ; \ + s|@@BINDIR@@|${PREFIX}/bin|g' \ + ${WRKSRC}/sayaka.sh + @${REINPLACE_CMD} 's|-O2|${CFLAGS}|' ${WRKSRC}/Makefile do-install: ${INSTALL_SCRIPT} ${WRKSRC}/sayaka.sh ${STAGEDIR}${PREFIX}/bin/sayaka + ${INSTALL_PROGRAM} ${WRKSRC}/cellsize ${STAGEDIR}${PREFIX}/bin/cellsize ${MKDIR} ${STAGEDIR}${DATADIR} .for f in ${PORTDATA} ${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DATADIR} Modified: head/net-im/sayaka/distinfo ============================================================================== --- head/net-im/sayaka/distinfo Mon Aug 10 21:40:42 2015 (r393910) +++ head/net-im/sayaka/distinfo Mon Aug 10 21:44:39 2015 (r393911) @@ -1,2 +1,2 @@ -SHA256 (isaki68k-sayaka-3.0.9_GH0.tar.gz) = 0b5673b1e8e28a884c0efe1f6e09bfc2a715f20cba592dad93b5f4bae8ca9865 -SIZE (isaki68k-sayaka-3.0.9_GH0.tar.gz) = 40350 +SHA256 (isaki68k-sayaka-3.1.0_GH0.tar.gz) = 662237cc2d06ba46f4c1e80488274cd80b26f44a6582e2773f83d3ac55674401 +SIZE (isaki68k-sayaka-3.1.0_GH0.tar.gz) = 42303 Modified: head/net-im/sayaka/files/patch-sayaka.sh ============================================================================== --- head/net-im/sayaka/files/patch-sayaka.sh Mon Aug 10 21:40:42 2015 (r393910) +++ head/net-im/sayaka/files/patch-sayaka.sh Mon Aug 10 21:44:39 2015 (r393911) @@ -1,6 +1,6 @@ ---- sayaka.sh.orig 2015-06-14 09:43:42 UTC -+++ sayaka.sh -@@ -27,9 +27,26 @@ +--- sayaka.sh.orig 2015-07-26 15:58:13.000000000 +0900 ++++ sayaka.sh 2015-07-28 14:15:42.646976000 +0900 +@@ -27,11 +27,29 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. @@ -8,6 +8,7 @@ +: ${SAYAKA_HOME:=${HOME}/.sayaka} #SAYAKA_HOME=. ++BINDIR=@@BINDIR@@ +DATADIR=@@DATADIR@@ + +die() { @@ -15,16 +16,18 @@ + exit 1 +} + -+mklinks() { -+ mkdir $SAYAKA_HOME || die "Can't create ${SAYAKA_HOME}." -+ cd $SAYAKA_HOME -+ for f in ${DATADIR}/*.php ${DATADIR}/*.png; do -+ ln -s $f . ++checklinks() { ++ for f in ${BINDIR}/cellsize ${DATADIR}/*.php ${DATADIR}/*.png; do ++ [ -L ${f##*/} ] || ln -s $f . + done +} + -+[ -d $SAYAKA_HOME ] || mklinks ++[ -d $SAYAKA_HOME ] || mkdir $SAYAKA_HOME || die "Can't create ${SAYAKA_HOME}." + cd $SAYAKA_HOME ++checklinks ++ cmd=$1 + [ $# -ne 0 ] && shift + case $cmd in From owner-svn-ports-all@freebsd.org Mon Aug 10 21:46:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC85799E8B5; Mon, 10 Aug 2015 21:46:52 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC2C2A4D; Mon, 10 Aug 2015 21:46:52 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ALkqpY055807; Mon, 10 Aug 2015 21:46:52 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ALkpig055803; Mon, 10 Aug 2015 21:46:51 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508102146.t7ALkpig055803@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 10 Aug 2015 21:46:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393912 - in head/graphics: . R-cran-gridBase X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 21:46:53 -0000 Author: tota Date: Mon Aug 10 21:46:50 2015 New Revision: 393912 URL: https://svnweb.freebsd.org/changeset/ports/393912 Log: - Add new port: graphics/R-cran-gridBase Integration of base and grid graphics WWW: https://cran.r-project.org/web/packages/gridBase/ Added: head/graphics/R-cran-gridBase/ head/graphics/R-cran-gridBase/Makefile (contents, props changed) head/graphics/R-cran-gridBase/distinfo (contents, props changed) head/graphics/R-cran-gridBase/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Aug 10 21:44:39 2015 (r393911) +++ head/graphics/Makefile Mon Aug 10 21:46:50 2015 (r393912) @@ -21,6 +21,7 @@ SUBDIR += R-cran-diagram SUBDIR += R-cran-dichromat SUBDIR += R-cran-ggplot2 + SUBDIR += R-cran-gridBase SUBDIR += R-cran-munsell SUBDIR += R-cran-pixmap SUBDIR += R-cran-png Added: head/graphics/R-cran-gridBase/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-gridBase/Makefile Mon Aug 10 21:46:50 2015 (r393912) @@ -0,0 +1,17 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= gridBase +DISTVERSION= 0.4-7 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Integration of base and grid graphics + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +USES= cran:auto-plist + +.include Added: head/graphics/R-cran-gridBase/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-gridBase/distinfo Mon Aug 10 21:46:50 2015 (r393912) @@ -0,0 +1,2 @@ +SHA256 (gridBase_0.4-7.tar.gz) = be8718d24cd10f6e323dce91b15fc40ed88bccaa26acf3192d5e38fe33e15f26 +SIZE (gridBase_0.4-7.tar.gz) = 153373 Added: head/graphics/R-cran-gridBase/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-gridBase/pkg-descr Mon Aug 10 21:46:50 2015 (r393912) @@ -0,0 +1,3 @@ +Integration of base and grid graphics + +WWW: https://cran.r-project.org/web/packages/gridBase/ From owner-svn-ports-all@freebsd.org Mon Aug 10 21:52:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F8EE99EA30; Mon, 10 Aug 2015 21:52:15 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90DC2E76; Mon, 10 Aug 2015 21:52:15 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ALqFaq059737; Mon, 10 Aug 2015 21:52:15 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ALqFMO059735; Mon, 10 Aug 2015 21:52:15 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201508102152.t7ALqFMO059735@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Mon, 10 Aug 2015 21:52:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393913 - head/devel/spice-protocol X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 21:52:15 -0000 Author: jgh Date: Mon Aug 10 21:52:14 2015 New Revision: 393913 URL: https://svnweb.freebsd.org/changeset/ports/393913 Log: - update to 0.12.9 * rename newly introduced SpiceImageCompress enum to SpiceImageCompression as otherwise it was clashing with the definition used by older spice-server releases, breaking QEMU build Modified: head/devel/spice-protocol/Makefile head/devel/spice-protocol/distinfo Modified: head/devel/spice-protocol/Makefile ============================================================================== --- head/devel/spice-protocol/Makefile Mon Aug 10 21:46:50 2015 (r393912) +++ head/devel/spice-protocol/Makefile Mon Aug 10 21:52:14 2015 (r393913) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= spice-protocol -PORTVERSION= 0.12.8 +PORTVERSION= 0.12.9 CATEGORIES= devel MASTER_SITES= http://www.spice-space.org/download/releases/ Modified: head/devel/spice-protocol/distinfo ============================================================================== --- head/devel/spice-protocol/distinfo Mon Aug 10 21:46:50 2015 (r393912) +++ head/devel/spice-protocol/distinfo Mon Aug 10 21:52:14 2015 (r393913) @@ -1,2 +1,2 @@ -SHA256 (spice-protocol-0.12.8.tar.bz2) = 116d57a1893c08f8f7801579dffb4c1568a4fb4566aa75c84a2685f150aae67c -SIZE (spice-protocol-0.12.8.tar.bz2) = 71681 +SHA256 (spice-protocol-0.12.9.tar.bz2) = 290cf834dd156014d229b474e98006265ab9c5f63b4c471ea3b2cf8b2ff37876 +SIZE (spice-protocol-0.12.9.tar.bz2) = 71766 From owner-svn-ports-all@freebsd.org Mon Aug 10 22:12:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2226399EFCB; Mon, 10 Aug 2015 22:12:42 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07CE8F3C; Mon, 10 Aug 2015 22:12:42 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMCfLk068033; Mon, 10 Aug 2015 22:12:41 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMCfTF068030; Mon, 10 Aug 2015 22:12:41 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508102212.t7AMCfTF068030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Mon, 10 Aug 2015 22:12:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393914 - head/mail/phplist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:12:42 -0000 Author: pawel Date: Mon Aug 10 22:12:40 2015 New Revision: 393914 URL: https://svnweb.freebsd.org/changeset/ports/393914 Log: - Update to version 3.0.12 [1] - Remove conditional installation of DOCS files, with staging this is not needed anymore - Unmute install commands PR: 201398 [1] Submitted by: maintainer [1] Modified: head/mail/phplist/Makefile head/mail/phplist/distinfo head/mail/phplist/pkg-plist Modified: head/mail/phplist/Makefile ============================================================================== --- head/mail/phplist/Makefile Mon Aug 10 21:52:14 2015 (r393913) +++ head/mail/phplist/Makefile Mon Aug 10 22:12:40 2015 (r393914) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phplist -PORTVERSION= 3.0.10 +PORTVERSION= 3.0.12 CATEGORIES= mail www MASTER_SITES= SF @@ -30,8 +30,6 @@ SUB_FILES= phplist OPTIONS_DEFINE= DOCS -.include - post-extract: @${MV} ${WRKSRC}/public_html/lists/config/config.php ${WRKSRC}/public_html/lists/config/config.php.sample @@ -41,11 +39,9 @@ post-extract: do-install: @${FIND} ${WRKSRC}/public_html/ -type f -regex '.*[^!-~].*' -delete ${MKDIR} ${STAGEDIR}${WWWDIR}/ - @cd ${WRKSRC}/public_html/ && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/ + (cd ${WRKSRC}/public_html/ && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) ${INSTALL_SCRIPT} ${WRKDIR}/phplist ${STAGEDIR}${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} -.endif + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include Modified: head/mail/phplist/distinfo ============================================================================== --- head/mail/phplist/distinfo Mon Aug 10 21:52:14 2015 (r393913) +++ head/mail/phplist/distinfo Mon Aug 10 22:12:40 2015 (r393914) @@ -1,2 +1,2 @@ -SHA256 (phplist-3.0.10.tgz) = 8dbb2ebb71b8a26733bd7f5a51b1e90d719a3a905fa5cd49e5f4faf0e53d46db -SIZE (phplist-3.0.10.tgz) = 4984049 +SHA256 (phplist-3.0.12.tgz) = e5977351a80c54d11b95dc869042da11f24b1e0b7c6bbfea7c91b488e377d390 +SIZE (phplist-3.0.12.tgz) = 5103756 Modified: head/mail/phplist/pkg-plist ============================================================================== --- head/mail/phplist/pkg-plist Mon Aug 10 21:52:14 2015 (r393913) +++ head/mail/phplist/pkg-plist Mon Aug 10 22:12:40 2015 (r393914) @@ -361,6 +361,7 @@ bin/phplist %%WWWDIR%%/lists/admin/help/vi/subject.php %%WWWDIR%%/lists/admin/help/vi/usetemplate.php %%WWWDIR%%/lists/admin/home.php +%%WWWDIR%%/lists/admin/hostedprocessqueuesetup.php %%WWWDIR%%/lists/admin/htaccess %%WWWDIR%%/lists/admin/image.php %%WWWDIR%%/lists/admin/images/LogoCertifiedHTTPCS.png @@ -914,6 +915,7 @@ bin/phplist %%WWWDIR%%/lists/admin/locale/gl/phplist.po %%WWWDIR%%/lists/admin/locale/he/language_info %%WWWDIR%%/lists/admin/locale/he/phplist.po +%%WWWDIR%%/lists/admin/locale/hr/phplist.po %%WWWDIR%%/lists/admin/locale/hu/language_info %%WWWDIR%%/lists/admin/locale/hu/pagetitles.php %%WWWDIR%%/lists/admin/locale/hu/phplist.po From owner-svn-ports-all@freebsd.org Mon Aug 10 22:13:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2107199EFFC; Mon, 10 Aug 2015 22:13:20 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 117CBAA; Mon, 10 Aug 2015 22:13:20 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMDJ1g068190; Mon, 10 Aug 2015 22:13:19 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMDJP6068186; Mon, 10 Aug 2015 22:13:19 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508102213.t7AMDJP6068186@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 10 Aug 2015 22:13:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393915 - in head/devel/pcre: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:13:20 -0000 Author: junovitch Date: Mon Aug 10 22:13:18 2015 New Revision: 393915 URL: https://svnweb.freebsd.org/changeset/ports/393915 Log: Apply upstream fixes for a buffer overflow issue 1585 Fix buffer overflow for named references in (?| situations. PR: 202209 Obtained from: PCRE svn (r1585) Approved by: ports-secteam (feld), feld (mentor) Security: ff0acfb4-3efa-11e5-93ad-002590263bf5 MFH: 2015Q3 Added: head/devel/pcre/files/patch-r1585-buffer-overflow (contents, props changed) Modified: head/devel/pcre/Makefile Modified: head/devel/pcre/Makefile ============================================================================== --- head/devel/pcre/Makefile Mon Aug 10 22:12:40 2015 (r393914) +++ head/devel/pcre/Makefile Mon Aug 10 22:13:18 2015 (r393915) @@ -3,7 +3,7 @@ PORTNAME= pcre PORTVERSION= 8.37 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ ftp://ftp.csx.cam.ac.uk/pub/software/programming/${PORTNAME}/ \ Added: head/devel/pcre/files/patch-r1585-buffer-overflow ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pcre/files/patch-r1585-buffer-overflow Mon Aug 10 22:13:18 2015 (r393915) @@ -0,0 +1,139 @@ +Index: pcre_internal.h +=================================================================== +--- pcre_internal.h (revision 1584) ++++ pcre_internal.h (revision 1585) +@@ -2454,6 +2454,7 @@ + BOOL had_pruneorskip; /* (*PRUNE) or (*SKIP) encountered */ + BOOL check_lookbehind; /* Lookbehinds need later checking */ + BOOL dupnames; /* Duplicate names exist */ ++ BOOL dupgroups; /* Duplicate groups exist: (?| found */ + BOOL iscondassert; /* Next assert is a condition */ + int nltype; /* Newline type */ + int nllen; /* Newline string length */ +Index: pcre_compile.c +=================================================================== +--- pcre_compile.c (revision 1584) ++++ pcre_compile.c (revision 1585) +@@ -6668,6 +6668,7 @@ + /* ------------------------------------------------------------ */ + case CHAR_VERTICAL_LINE: /* Reset capture count for each branch */ + reset_bracount = TRUE; ++ cd->dupgroups = TRUE; /* Record (?| encountered */ + /* Fall through */ + + /* ------------------------------------------------------------ */ +@@ -7178,7 +7179,8 @@ + if (lengthptr != NULL) + { + named_group *ng; +- ++ recno = 0; ++ + if (namelen == 0) + { + *errorcodeptr = ERR62; +@@ -7195,32 +7197,6 @@ + goto FAILED; + } + +- /* The name table does not exist in the first pass; instead we must +- scan the list of names encountered so far in order to get the +- number. If the name is not found, set the value to 0 for a forward +- reference. */ +- +- recno = 0; +- ng = cd->named_groups; +- for (i = 0; i < cd->names_found; i++, ng++) +- { +- if (namelen == ng->length && +- STRNCMP_UC_UC(name, ng->name, namelen) == 0) +- { +- open_capitem *oc; +- recno = ng->number; +- if (is_recurse) break; +- for (oc = cd->open_caps; oc != NULL; oc = oc->next) +- { +- if (oc->number == recno) +- { +- oc->flag = TRUE; +- break; +- } +- } +- } +- } +- + /* Count named back references. */ + + if (!is_recurse) cd->namedrefcount++; +@@ -7242,7 +7218,44 @@ + issue is fixed "properly" in PCRE2. As PCRE1 is now in maintenance + only mode, we finesse the bug by allowing more memory always. */ + +- /* if (recno == 0) */ *lengthptr += 2 + 2*LINK_SIZE; ++ *lengthptr += 2 + 2*LINK_SIZE; ++ ++ /* It is even worse than that. The current reference may be to an ++ existing named group with a different number (so apparently not ++ recursive) but which later on is also attached to a group with the ++ current number. This can only happen if $(| has been previous ++ encountered. In that case, we allow yet more memory, just in case. ++ (Again, this is fixed "properly" in PCRE2. */ ++ ++ if (cd->dupgroups) *lengthptr += 2 + 2*LINK_SIZE; ++ ++ /* Otherwise, check for recursion here. The name table does not exist ++ in the first pass; instead we must scan the list of names encountered ++ so far in order to get the number. If the name is not found, leave ++ the value of recno as 0 for a forward reference. */ ++ ++ else ++ { ++ ng = cd->named_groups; ++ for (i = 0; i < cd->names_found; i++, ng++) ++ { ++ if (namelen == ng->length && ++ STRNCMP_UC_UC(name, ng->name, namelen) == 0) ++ { ++ open_capitem *oc; ++ recno = ng->number; ++ if (is_recurse) break; ++ for (oc = cd->open_caps; oc != NULL; oc = oc->next) ++ { ++ if (oc->number == recno) ++ { ++ oc->flag = TRUE; ++ break; ++ } ++ } ++ } ++ } ++ } + } + + /* In the real compile, search the name table. We check the name +@@ -7289,8 +7302,6 @@ + for (i++; i < cd->names_found; i++) + { + if (STRCMP_UC_UC(slot + IMM2_SIZE, cslot + IMM2_SIZE) != 0) break; +- +- + count++; + cslot += cd->name_entry_size; + } +@@ -9239,6 +9250,7 @@ + cd->name_entry_size = 0; + cd->name_table = NULL; + cd->dupnames = FALSE; ++cd->dupgroups = FALSE; + cd->namedrefcount = 0; + cd->start_code = cworkspace; + cd->hwm = cworkspace; +@@ -9273,7 +9285,7 @@ + + DPRINTF(("end pre-compile: length=%d workspace=%d\n", length, + (int)(cd->hwm - cworkspace))); +- ++ + if (length > MAX_PATTERN_SIZE) + { + errorcode = ERR20; From owner-svn-ports-all@freebsd.org Mon Aug 10 22:19:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BBC899E0D5; Mon, 10 Aug 2015 22:19:53 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22D9C23C; Mon, 10 Aug 2015 22:19:53 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMJreJ068592; Mon, 10 Aug 2015 22:19:53 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMJqa9068590; Mon, 10 Aug 2015 22:19:52 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201508102219.t7AMJqa9068590@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Mon, 10 Aug 2015 22:19:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393916 - head/www/nginx-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:19:53 -0000 Author: osa Date: Mon Aug 10 22:19:51 2015 New Revision: 393916 URL: https://svnweb.freebsd.org/changeset/ports/393916 Log: Add HTTP/2 protocol support. Please read http://nginx.org/patches/http2/README.txt for details. Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/distinfo Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Mon Aug 10 22:13:18 2015 (r393915) +++ head/www/nginx-devel/Makefile Mon Aug 10 22:19:51 2015 (r393916) @@ -52,6 +52,7 @@ OPTIONS_DEFINE= \ MAIL_SMTP \ MAIL_SSL \ SPDY \ + HTTPV2 \ STREAM \ STREAM_SSL \ THREADS \ @@ -145,6 +146,7 @@ MAIL_POP3_DESC= Enable POP3 proxy modu MAIL_SMTP_DESC= Enable SMTP proxy module MAIL_SSL_DESC= Enable mail_ssl module SPDY_DESC= Enable SPDY protocol support (SSL req.) +HTTPV2_DESC= Enable HTTP/2 protocol support (SSL req.) STREAM_DESC= Enable stream module STREAM_SSL_DESC= Enable stream_ssl module (SSL req.) THREADS_DESC= Enable threads support @@ -818,12 +820,27 @@ GH_TAGNAME+= v${NGINX_XSS_VERSION}:xss CONFIGURE_ARGS+=--add-module=${WRKSRC_xss} .endif +.if ${PORT_OPTIONS:MSPDY} && ${PORT_OPTIONS:MHTTPV2} +IGNORE= current HTTP/2 implementation replaces SPDY module support, please disable SPDY +.endif + .if ${PORT_OPTIONS:MSPDY} NGINX_OPENSSL= yes USE_HTTP_SSL= yes CONFIGURE_ARGS+=--with-http_spdy_module .endif +.if ${PORT_OPTIONS:MHTTPV2} +NGINX_OPENSSL= yes +USE_HTTP_SSL= yes +CONFIGURE_ARGS+=--with-http_v2_module +USE_OPENSSL_PORT= yes +NGINX_HTTPV2_VERSION= 1 +PATCH_SITES+= http://nginx.org/patches/http2/:httpv2 +PATCHFILES+= patch.http2-v${NGINX_HTTPV2_VERSION}_${PORTVERSION}.txt:httpv2 +PATCH_DIST_STRIP= -p1 +.endif + .if ${PORT_OPTIONS:MSTREAM} CONFIGURE_ARGS+=--with-stream .if ${PORT_OPTIONS:MSTREAM_SSL} Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Mon Aug 10 22:13:18 2015 (r393915) +++ head/www/nginx-devel/distinfo Mon Aug 10 22:19:51 2015 (r393916) @@ -114,3 +114,5 @@ SHA256 (calio-form-input-nginx-module-v0 SIZE (calio-form-input-nginx-module-v0.07_GH0.tar.gz) = 10563 SHA256 (calio-iconv-nginx-module-v0.10_GH0.tar.gz) = 88e326eba7fdf9fd2376b1ba033b48cb0eee45136528cf5430ac9340088ce324 SIZE (calio-iconv-nginx-module-v0.10_GH0.tar.gz) = 12513 +SHA256 (patch.http2-v1_1.9.3.txt) = 14e37643c43e24ed7de9cc57bd4a082ff3b5d85423a998dc1a3226c9d00b1d6e +SIZE (patch.http2-v1_1.9.3.txt) = 308749 From owner-svn-ports-all@freebsd.org Mon Aug 10 22:23:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F397E99E1E2; Mon, 10 Aug 2015 22:23:03 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E3E0B809; Mon, 10 Aug 2015 22:23:03 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMN30u072612; Mon, 10 Aug 2015 22:23:03 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMN3n4072610; Mon, 10 Aug 2015 22:23:03 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508102223.t7AMN3n4072610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Mon, 10 Aug 2015 22:23:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393917 - in branches/2015Q3/devel/pcre: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:23:04 -0000 Author: junovitch Date: Mon Aug 10 22:23:02 2015 New Revision: 393917 URL: https://svnweb.freebsd.org/changeset/ports/393917 Log: MFH: r393915 Apply upstream fixes for a buffer overflow issue 1585 Fix buffer overflow for named references in (?| situations. PR: 202209 Obtained from: PCRE svn (r1585) Approved by: ports-secteam (feld), feld (mentor) Security: ff0acfb4-3efa-11e5-93ad-002590263bf5 Added: branches/2015Q3/devel/pcre/files/patch-r1585-buffer-overflow - copied unchanged from r393915, head/devel/pcre/files/patch-r1585-buffer-overflow Modified: branches/2015Q3/devel/pcre/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/pcre/Makefile ============================================================================== --- branches/2015Q3/devel/pcre/Makefile Mon Aug 10 22:19:51 2015 (r393916) +++ branches/2015Q3/devel/pcre/Makefile Mon Aug 10 22:23:02 2015 (r393917) @@ -3,7 +3,7 @@ PORTNAME= pcre PORTVERSION= 8.37 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ ftp://ftp.csx.cam.ac.uk/pub/software/programming/${PORTNAME}/ \ Copied: branches/2015Q3/devel/pcre/files/patch-r1585-buffer-overflow (from r393915, head/devel/pcre/files/patch-r1585-buffer-overflow) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/devel/pcre/files/patch-r1585-buffer-overflow Mon Aug 10 22:23:02 2015 (r393917, copy of r393915, head/devel/pcre/files/patch-r1585-buffer-overflow) @@ -0,0 +1,139 @@ +Index: pcre_internal.h +=================================================================== +--- pcre_internal.h (revision 1584) ++++ pcre_internal.h (revision 1585) +@@ -2454,6 +2454,7 @@ + BOOL had_pruneorskip; /* (*PRUNE) or (*SKIP) encountered */ + BOOL check_lookbehind; /* Lookbehinds need later checking */ + BOOL dupnames; /* Duplicate names exist */ ++ BOOL dupgroups; /* Duplicate groups exist: (?| found */ + BOOL iscondassert; /* Next assert is a condition */ + int nltype; /* Newline type */ + int nllen; /* Newline string length */ +Index: pcre_compile.c +=================================================================== +--- pcre_compile.c (revision 1584) ++++ pcre_compile.c (revision 1585) +@@ -6668,6 +6668,7 @@ + /* ------------------------------------------------------------ */ + case CHAR_VERTICAL_LINE: /* Reset capture count for each branch */ + reset_bracount = TRUE; ++ cd->dupgroups = TRUE; /* Record (?| encountered */ + /* Fall through */ + + /* ------------------------------------------------------------ */ +@@ -7178,7 +7179,8 @@ + if (lengthptr != NULL) + { + named_group *ng; +- ++ recno = 0; ++ + if (namelen == 0) + { + *errorcodeptr = ERR62; +@@ -7195,32 +7197,6 @@ + goto FAILED; + } + +- /* The name table does not exist in the first pass; instead we must +- scan the list of names encountered so far in order to get the +- number. If the name is not found, set the value to 0 for a forward +- reference. */ +- +- recno = 0; +- ng = cd->named_groups; +- for (i = 0; i < cd->names_found; i++, ng++) +- { +- if (namelen == ng->length && +- STRNCMP_UC_UC(name, ng->name, namelen) == 0) +- { +- open_capitem *oc; +- recno = ng->number; +- if (is_recurse) break; +- for (oc = cd->open_caps; oc != NULL; oc = oc->next) +- { +- if (oc->number == recno) +- { +- oc->flag = TRUE; +- break; +- } +- } +- } +- } +- + /* Count named back references. */ + + if (!is_recurse) cd->namedrefcount++; +@@ -7242,7 +7218,44 @@ + issue is fixed "properly" in PCRE2. As PCRE1 is now in maintenance + only mode, we finesse the bug by allowing more memory always. */ + +- /* if (recno == 0) */ *lengthptr += 2 + 2*LINK_SIZE; ++ *lengthptr += 2 + 2*LINK_SIZE; ++ ++ /* It is even worse than that. The current reference may be to an ++ existing named group with a different number (so apparently not ++ recursive) but which later on is also attached to a group with the ++ current number. This can only happen if $(| has been previous ++ encountered. In that case, we allow yet more memory, just in case. ++ (Again, this is fixed "properly" in PCRE2. */ ++ ++ if (cd->dupgroups) *lengthptr += 2 + 2*LINK_SIZE; ++ ++ /* Otherwise, check for recursion here. The name table does not exist ++ in the first pass; instead we must scan the list of names encountered ++ so far in order to get the number. If the name is not found, leave ++ the value of recno as 0 for a forward reference. */ ++ ++ else ++ { ++ ng = cd->named_groups; ++ for (i = 0; i < cd->names_found; i++, ng++) ++ { ++ if (namelen == ng->length && ++ STRNCMP_UC_UC(name, ng->name, namelen) == 0) ++ { ++ open_capitem *oc; ++ recno = ng->number; ++ if (is_recurse) break; ++ for (oc = cd->open_caps; oc != NULL; oc = oc->next) ++ { ++ if (oc->number == recno) ++ { ++ oc->flag = TRUE; ++ break; ++ } ++ } ++ } ++ } ++ } + } + + /* In the real compile, search the name table. We check the name +@@ -7289,8 +7302,6 @@ + for (i++; i < cd->names_found; i++) + { + if (STRCMP_UC_UC(slot + IMM2_SIZE, cslot + IMM2_SIZE) != 0) break; +- +- + count++; + cslot += cd->name_entry_size; + } +@@ -9239,6 +9250,7 @@ + cd->name_entry_size = 0; + cd->name_table = NULL; + cd->dupnames = FALSE; ++cd->dupgroups = FALSE; + cd->namedrefcount = 0; + cd->start_code = cworkspace; + cd->hwm = cworkspace; +@@ -9273,7 +9285,7 @@ + + DPRINTF(("end pre-compile: length=%d workspace=%d\n", length, + (int)(cd->hwm - cworkspace))); +- ++ + if (length > MAX_PATTERN_SIZE) + { + errorcode = ERR20; From owner-svn-ports-all@freebsd.org Mon Aug 10 22:30:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFE9999E48F; Mon, 10 Aug 2015 22:30:23 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BFCDDC27; Mon, 10 Aug 2015 22:30:23 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMUNdv073926; Mon, 10 Aug 2015 22:30:23 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMULrA073918; Mon, 10 Aug 2015 22:30:21 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201508102230.t7AMULrA073918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Mon, 10 Aug 2015 22:30:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393918 - in head/www: nginx nginx-devel nginx-devel/files nginx/files rubygem-passenger X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:30:24 -0000 Author: osa Date: Mon Aug 10 22:30:20 2015 New Revision: 393918 URL: https://svnweb.freebsd.org/changeset/ports/393918 Log: Upgrade from 5.0.14 to 5.0.15: o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/distinfo head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb head/www/nginx/Makefile head/www/nginx/distinfo head/www/nginx/files/extra-patch-passenger-build-nginx.rb head/www/rubygem-passenger/Makefile head/www/rubygem-passenger/distinfo Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/nginx-devel/Makefile Mon Aug 10 22:30:20 2015 (r393918) @@ -689,7 +689,7 @@ CONFIGURE_ARGS+=--without-http_rewrite_m .endif .if ${PORT_OPTIONS:MPASSENGER} -PASSENGER_VERSION= 5.0.14 +PASSENGER_VERSION= 5.0.15 MASTER_SITES+= http://s3.amazonaws.com/phusion-passenger/releases/:passenger DISTFILES+= passenger-${PASSENGER_VERSION}.tar.gz:passenger CONFIGURE_ARGS+=--add-module=${WRKDIR}/passenger-${PASSENGER_VERSION}/ext/nginx Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/nginx-devel/distinfo Mon Aug 10 22:30:20 2015 (r393918) @@ -28,8 +28,8 @@ SHA256 (modsecurity-2.9.0.tar.gz) = e2bb SIZE (modsecurity-2.9.0.tar.gz) = 4246467 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef SIZE (naxsi-core-0.50.tgz) = 49809 -SHA256 (passenger-5.0.14.tar.gz) = dbc994a9d8a0f28f2abeec25191471bbfec6e51d3e0748d7e16947bc8713f6d5 -SIZE (passenger-5.0.14.tar.gz) = 5557110 +SHA256 (passenger-5.0.15.tar.gz) = 5ecc4c903eb351e3a29bd01f34ae08aa5d31879af74302fefd9834fcb3670df1 +SIZE (passenger-5.0.15.tar.gz) = 5297918 SHA256 (nginx-sflow-module-0.9.7.tar.gz) = 508d15a43059abab08281bfa66d2dd520e2e7635d0b17043549bb331c8755b76 SIZE (nginx-sflow-module-0.9.7.tar.gz) = 27614 SHA256 (ngx_slowfs_cache-1.10.tar.gz) = 1e81453942e5b0877de1f1f06c56ae82918ea9818255cb935bcb673c95a758a1 Modified: head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb ============================================================================== --- head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb Mon Aug 10 22:30:20 2015 (r393918) @@ -1,5 +1,5 @@ ---- ../passenger-5.0.14/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 -+++ ../passenger-5.0.14/build/nginx.rb 2015-03-07 06:07:38.000000000 +0300 +--- ../passenger-5.0.15/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 ++++ ../passenger-5.0.15/build/nginx.rb 2015-03-07 06:07:38.000000000 +0300 @@ -32,6 +32,7 @@ desc "Build Nginx support files" task :nginx => [ Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/nginx/Makefile Mon Aug 10 22:30:20 2015 (r393918) @@ -673,7 +673,7 @@ CONFIGURE_ARGS+=--without-http_rewrite_m .endif .if ${PORT_OPTIONS:MPASSENGER} -PASSENGER_VERSION= 5.0.14 +PASSENGER_VERSION= 5.0.15 MASTER_SITES+= http://s3.amazonaws.com/phusion-passenger/releases/:passenger DISTFILES+= passenger-${PASSENGER_VERSION}.tar.gz:passenger CONFIGURE_ARGS+=--add-module=${WRKDIR}/passenger-${PASSENGER_VERSION}/ext/nginx Modified: head/www/nginx/distinfo ============================================================================== --- head/www/nginx/distinfo Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/nginx/distinfo Mon Aug 10 22:30:20 2015 (r393918) @@ -28,8 +28,8 @@ SHA256 (modsecurity-2.9.0.tar.gz) = e2bb SIZE (modsecurity-2.9.0.tar.gz) = 4246467 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef SIZE (naxsi-core-0.50.tgz) = 49809 -SHA256 (passenger-5.0.14.tar.gz) = dbc994a9d8a0f28f2abeec25191471bbfec6e51d3e0748d7e16947bc8713f6d5 -SIZE (passenger-5.0.14.tar.gz) = 5557110 +SHA256 (passenger-5.0.15.tar.gz) = 5ecc4c903eb351e3a29bd01f34ae08aa5d31879af74302fefd9834fcb3670df1 +SIZE (passenger-5.0.15.tar.gz) = 5297918 SHA256 (nginx-sflow-module-0.9.7.tar.gz) = 508d15a43059abab08281bfa66d2dd520e2e7635d0b17043549bb331c8755b76 SIZE (nginx-sflow-module-0.9.7.tar.gz) = 27614 SHA256 (ngx_slowfs_cache-1.10.tar.gz) = 1e81453942e5b0877de1f1f06c56ae82918ea9818255cb935bcb673c95a758a1 Modified: head/www/nginx/files/extra-patch-passenger-build-nginx.rb ============================================================================== --- head/www/nginx/files/extra-patch-passenger-build-nginx.rb Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/nginx/files/extra-patch-passenger-build-nginx.rb Mon Aug 10 22:30:20 2015 (r393918) @@ -1,5 +1,5 @@ ---- ../passenger-5.0.14/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 -+++ ../passenger-5.0.14/build/nginx.rb 2015-03-07 06:07:38.000000000 +0300 +--- ../passenger-5.0.15/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 ++++ ../passenger-5.0.15/build/nginx.rb 2015-03-07 06:07:38.000000000 +0300 @@ -32,6 +32,7 @@ desc "Build Nginx support files" task :nginx => [ Modified: head/www/rubygem-passenger/Makefile ============================================================================== --- head/www/rubygem-passenger/Makefile Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/rubygem-passenger/Makefile Mon Aug 10 22:30:20 2015 (r393918) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= passenger -PORTVERSION= 5.0.14 +PORTVERSION= 5.0.15 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- Modified: head/www/rubygem-passenger/distinfo ============================================================================== --- head/www/rubygem-passenger/distinfo Mon Aug 10 22:23:02 2015 (r393917) +++ head/www/rubygem-passenger/distinfo Mon Aug 10 22:30:20 2015 (r393918) @@ -1,2 +1,2 @@ -SHA256 (rubygem/passenger-5.0.14.gem) = 0575abb979efc65e0ca1d9c6e03b86aad1102ced6b35104b0b85afbe52fa4315 -SIZE (rubygem/passenger-5.0.14.gem) = 5567488 +SHA256 (rubygem/passenger-5.0.15.gem) = 00a4e5cfe0e352b96807bd85f170ba8312c719dc37f98264fb28919feb181dae +SIZE (rubygem/passenger-5.0.15.gem) = 5308416 From owner-svn-ports-all@freebsd.org Mon Aug 10 22:44:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C24C399E80E; Mon, 10 Aug 2015 22:44:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B3458638; Mon, 10 Aug 2015 22:44:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMiwf2081180; Mon, 10 Aug 2015 22:44:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMiwkU081179; Mon, 10 Aug 2015 22:44:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508102244.t7AMiwkU081179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 22:44:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393919 - head/security/pam-pgsql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:44:58 -0000 Author: amdmi3 Date: Mon Aug 10 22:44:57 2015 New Revision: 393919 URL: https://svnweb.freebsd.org/changeset/ports/393919 Log: - Drop @dirrm* from plist Approved by: portmgr blanket Modified: head/security/pam-pgsql/pkg-plist Modified: head/security/pam-pgsql/pkg-plist ============================================================================== --- head/security/pam-pgsql/pkg-plist Mon Aug 10 22:30:20 2015 (r393918) +++ head/security/pam-pgsql/pkg-plist Mon Aug 10 22:44:57 2015 (r393919) @@ -4,4 +4,3 @@ lib/pam_pgsql.so %%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/sample.sql -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-all@freebsd.org Mon Aug 10 22:45:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2B2D99E833; Mon, 10 Aug 2015 22:45:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C3993770; Mon, 10 Aug 2015 22:45:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMjFXF081288; Mon, 10 Aug 2015 22:45:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMjFxC081287; Mon, 10 Aug 2015 22:45:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508102245.t7AMjFxC081287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 22:45:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393920 - head/www/linux-c6-qt47-webkit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:45:15 -0000 Author: amdmi3 Date: Mon Aug 10 22:45:14 2015 New Revision: 393920 URL: https://svnweb.freebsd.org/changeset/ports/393920 Log: - Drop @dirrm* from plist Approved by: portmgr blanket Added: head/www/linux-c6-qt47-webkit/pkg-plist - copied, changed from r390640, head/www/linux-c6-qt47-webkit/pkg-plist Copied and modified: head/www/linux-c6-qt47-webkit/pkg-plist (from r390640, head/www/linux-c6-qt47-webkit/pkg-plist) ============================================================================== --- head/www/linux-c6-qt47-webkit/pkg-plist Fri Jun 26 14:09:58 2015 (r390640, copy source) +++ head/www/linux-c6-qt47-webkit/pkg-plist Mon Aug 10 22:45:14 2015 (r393920) @@ -4,6 +4,3 @@ usr/lib/qt47/libQtWebKit.so.4.7 usr/lib/qt47/libQtWebKit.so.4.7.2 usr/lib/qt47/plugins/designer/libqwebview.so usr/lib/qt47/imports/QtWebKit/qmldir -@dirrm usr/lib/qt47/imports/QtWebKit -@dirrmtry usr/lib/qt47/plugins/designer -@dirrmtry usr/lib/qt47/plugins From owner-svn-ports-all@freebsd.org Mon Aug 10 22:45:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5621999E862; Mon, 10 Aug 2015 22:45:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4710684D; Mon, 10 Aug 2015 22:45:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMjOQr081378; Mon, 10 Aug 2015 22:45:24 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMjOjY081377; Mon, 10 Aug 2015 22:45:24 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508102245.t7AMjOjY081377@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 22:45:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393921 - head/security/linux-c6-libgpg-error X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:45:24 -0000 Author: amdmi3 Date: Mon Aug 10 22:45:23 2015 New Revision: 393921 URL: https://svnweb.freebsd.org/changeset/ports/393921 Log: - Drop @dirrm* from plist Approved by: portmgr blanket Added: head/security/linux-c6-libgpg-error/pkg-plist - copied, changed from r392922, head/security/linux-c6-libgpg-error/pkg-plist Copied and modified: head/security/linux-c6-libgpg-error/pkg-plist (from r392922, head/security/linux-c6-libgpg-error/pkg-plist) ============================================================================== --- head/security/linux-c6-libgpg-error/pkg-plist Sun Jul 26 13:35:29 2015 (r392922, copy source) +++ head/security/linux-c6-libgpg-error/pkg-plist Mon Aug 10 22:45:23 2015 (r393921) @@ -13,22 +13,3 @@ usr/share/locale/pl/LC_MESSAGES/libgpg-e usr/share/locale/ro/LC_MESSAGES/libgpg-error.mo usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo -@dirrmtry usr/share/locale/vi/LC_MESSAGES -@dirrmtry usr/share/locale/vi -@dirrmtry usr/share/locale/sv/LC_MESSAGES -@dirrmtry usr/share/locale/sv -@dirrmtry usr/share/locale/ro/LC_MESSAGES -@dirrmtry usr/share/locale/ro -@dirrmtry usr/share/locale/pl/LC_MESSAGES -@dirrmtry usr/share/locale/pl -@dirrmtry usr/share/locale/fr/LC_MESSAGES -@dirrmtry usr/share/locale/fr -@dirrmtry usr/share/locale/de/LC_MESSAGES -@dirrmtry usr/share/locale/de -@dirrmtry usr/share/locale -@dirrmtry usr/share/doc/libgpg-error-1.7 -@dirrmtry usr/share/doc -@dirrmtry usr/share -@dirrmtry usr/bin -@dirrmtry usr -@dirrmtry lib From owner-svn-ports-all@freebsd.org Mon Aug 10 22:56:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71D2099ED01; Mon, 10 Aug 2015 22:56:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62B31D03; Mon, 10 Aug 2015 22:56:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AMuVZp085524; Mon, 10 Aug 2015 22:56:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AMuV80085523; Mon, 10 Aug 2015 22:56:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508102256.t7AMuV80085523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 10 Aug 2015 22:56:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393922 - head/devel/libzookeeper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 22:56:31 -0000 Author: amdmi3 Date: Mon Aug 10 22:56:30 2015 New Revision: 393922 URL: https://svnweb.freebsd.org/changeset/ports/393922 Log: - Add LICENSE_FILE - Mark ONLY_FOR_ARCHS: uses x86 assembly Approved by: portmgr blanket Modified: head/devel/libzookeeper/Makefile Modified: head/devel/libzookeeper/Makefile ============================================================================== --- head/devel/libzookeeper/Makefile Mon Aug 10 22:45:23 2015 (r393921) +++ head/devel/libzookeeper/Makefile Mon Aug 10 22:56:30 2015 (r393922) @@ -12,14 +12,18 @@ MAINTAINER= skreuzer@FreeBSD.org COMMENT= C client interface to Zookeeper server LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcppunit.so:${PORTSDIR}/devel/cppunit +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= uses x86 assembly + USES= gmake libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/${DISTNAME}/src/c +WRKSRC= ${WRKDIR}/${DISTNAME}/src/c post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* From owner-svn-ports-all@freebsd.org Mon Aug 10 23:18:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB89A99E0F8; Mon, 10 Aug 2015 23:18:19 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B246C77D; Mon, 10 Aug 2015 23:18:19 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ANIJHx093706; Mon, 10 Aug 2015 23:18:19 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ANIJHX093705; Mon, 10 Aug 2015 23:18:19 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508102318.t7ANIJHX093705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Mon, 10 Aug 2015 23:18:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393923 - head/textproc/libodfgen01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 23:18:19 -0000 Author: jkim Date: Mon Aug 10 23:18:18 2015 New Revision: 393923 URL: https://svnweb.freebsd.org/changeset/ports/393923 Log: Remove graphics/libetonyek01 from LIB_DEPENDS. It was never required. MFH: 2015Q3 Modified: head/textproc/libodfgen01/Makefile Modified: head/textproc/libodfgen01/Makefile ============================================================================== --- head/textproc/libodfgen01/Makefile Mon Aug 10 22:56:30 2015 (r393922) +++ head/textproc/libodfgen01/Makefile Mon Aug 10 23:18:18 2015 (r393923) @@ -12,8 +12,7 @@ COMMENT= Library for generating document LICENSE= LGPL21 MPL LICENSE_COMB= dual -LIB_DEPENDS= libetonyek-0.1.so:${PORTSDIR}/graphics/libetonyek01 \ - librevenge-0.0.so:${PORTSDIR}/textproc/librevenge +LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include From owner-svn-ports-all@freebsd.org Mon Aug 10 23:19:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2D6999E173; Mon, 10 Aug 2015 23:19:34 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B39598BF; Mon, 10 Aug 2015 23:19:34 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ANJYZo093858; Mon, 10 Aug 2015 23:19:34 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ANJYxn093857; Mon, 10 Aug 2015 23:19:34 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508102319.t7ANJYxn093857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 10 Aug 2015 23:19:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393924 - head/graphics/fpc-libpng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 23:19:34 -0000 Author: antoine Date: Mon Aug 10 23:19:33 2015 New Revision: 393924 URL: https://svnweb.freebsd.org/changeset/ports/393924 Log: Add missing run dependency Reported via games/hedgewars: Fatal: Can't find unit zlib used by png Modified: head/graphics/fpc-libpng/Makefile Modified: head/graphics/fpc-libpng/Makefile ============================================================================== --- head/graphics/fpc-libpng/Makefile Mon Aug 10 23:18:18 2015 (r393923) +++ head/graphics/fpc-libpng/Makefile Mon Aug 10 23:19:33 2015 (r393924) @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics lang PKGNAMESUFFIX= -libpng @@ -9,6 +9,7 @@ MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal interface to libpng, for reading PNG image files USE_FPC= zlib +USE_FPC_RUN= yes MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Mon Aug 10 23:39:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C4BB99E72F; Mon, 10 Aug 2015 23:39:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BC435FA; Mon, 10 Aug 2015 23:39:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ANdRwY002275; Mon, 10 Aug 2015 23:39:27 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ANdPgp002265; Mon, 10 Aug 2015 23:39:25 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508102339.t7ANdPgp002265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Mon, 10 Aug 2015 23:39:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393925 - in head/devel/mdds: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 23:39:27 -0000 Author: jkim Date: Mon Aug 10 23:39:24 2015 New Revision: 393925 URL: https://svnweb.freebsd.org/changeset/ports/393925 Log: - Add several patches obtained from LibreOffice to make it more robust. Now it works with old C++ headers on 9.x. - Update project URL in pkg-descr. MFH: 2015Q3 Added: head/devel/mdds/files/ head/devel/mdds/files/patch-include_mdds_flat__segment__tree.hpp (contents, props changed) head/devel/mdds/files/patch-include_mdds_flat__segment__tree__def.inl (contents, props changed) head/devel/mdds/files/patch-include_mdds_mixed__type__matrix__def.inl (contents, props changed) head/devel/mdds/files/patch-include_mdds_mixed__type__matrix__storage__filled__linear.inl (contents, props changed) head/devel/mdds/files/patch-include_mdds_multi__type__vector__itr.hpp (contents, props changed) head/devel/mdds/files/patch-include_mdds_point__quad__tree.hpp (contents, props changed) Modified: head/devel/mdds/Makefile head/devel/mdds/pkg-descr Modified: head/devel/mdds/Makefile ============================================================================== --- head/devel/mdds/Makefile Mon Aug 10 23:19:33 2015 (r393924) +++ head/devel/mdds/Makefile Mon Aug 10 23:39:24 2015 (r393925) @@ -2,6 +2,7 @@ PORTNAME= mdds PORTVERSION= 0.12.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://kohei.us/files/mdds/src/ DISTNAME= ${PORTNAME}_${PORTVERSION} Added: head/devel/mdds/files/patch-include_mdds_flat__segment__tree.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mdds/files/patch-include_mdds_flat__segment__tree.hpp Mon Aug 10 23:39:24 2015 (r393925) @@ -0,0 +1,10 @@ +--- include/mdds/flat_segment_tree.hpp.orig 2015-06-11 23:53:55 UTC ++++ include/mdds/flat_segment_tree.hpp +@@ -32,7 +32,6 @@ + #include + #include + #include +-#include + + #include "mdds/node.hpp" + #include "mdds/flat_segment_tree_itr.hpp" Added: head/devel/mdds/files/patch-include_mdds_flat__segment__tree__def.inl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mdds/files/patch-include_mdds_flat__segment__tree__def.inl Mon Aug 10 23:39:24 2015 (r393925) @@ -0,0 +1,11 @@ +--- include/mdds/flat_segment_tree_def.inl.orig 2015-06-11 23:53:55 UTC ++++ include/mdds/flat_segment_tree_def.inl +@@ -46,7 +46,7 @@ flat_segment_tree<_Key, _Value>::flat_se + // We don't ever use the value of the right leaf node, but we need the + // value to be always the same, to make it easier to check for + // equality. +- m_right_leaf->value_leaf.value = ::std::numeric_limits::max(); ++ m_right_leaf->value_leaf.value = init_val; + } + + template Added: head/devel/mdds/files/patch-include_mdds_mixed__type__matrix__def.inl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mdds/files/patch-include_mdds_mixed__type__matrix__def.inl Mon Aug 10 23:39:24 2015 (r393925) @@ -0,0 +1,13 @@ +--- include/mdds/mixed_type_matrix_def.inl.orig 2015-06-11 23:53:55 UTC ++++ include/mdds/mixed_type_matrix_def.inl +@@ -220,8 +220,8 @@ void mixed_type_matrix<_String,_Flag>::a + // assignment to self. + return; + +- size_t row_count = ::std::min(mp_storage->rows(), r.mp_storage->rows()); +- size_t col_count = ::std::min(mp_storage->cols(), r.mp_storage->cols()); ++ size_t row_count = (::std::min)(mp_storage->rows(), r.mp_storage->rows()); ++ size_t col_count = (::std::min)(mp_storage->cols(), r.mp_storage->cols()); + for (size_t i = 0; i < row_count; ++i) + for (size_t j = 0; j < col_count; ++j) + mp_storage->get_element(i, j) = r.mp_storage->get_element(i, j); Added: head/devel/mdds/files/patch-include_mdds_mixed__type__matrix__storage__filled__linear.inl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mdds/files/patch-include_mdds_mixed__type__matrix__storage__filled__linear.inl Mon Aug 10 23:39:24 2015 (r393925) @@ -0,0 +1,24 @@ +--- include/mdds/mixed_type_matrix_storage_filled_linear.inl.orig 2015-06-11 23:53:55 UTC ++++ include/mdds/mixed_type_matrix_storage_filled_linear.inl +@@ -354,8 +354,8 @@ public: + } + + array_type new_array(new_size, &m_init_elem); +- size_t min_rows = ::std::min(row, m_rows); +- size_t min_cols = ::std::min(col, m_cols); ++ size_t min_rows = (::std::min)(row, m_rows); ++ size_t min_cols = (::std::min)(col, m_cols); + for (size_t i = 0; i < min_rows; ++i) + { + for (size_t j = 0; j < min_cols; ++j) +@@ -614,8 +614,8 @@ public: + } + + array_type new_array(new_size, element(0.0)); +- size_t min_rows = ::std::min(row, m_rows); +- size_t min_cols = ::std::min(col, m_cols); ++ size_t min_rows = (::std::min)(row, m_rows); ++ size_t min_cols = (::std::min)(col, m_cols); + for (size_t i = 0; i < min_rows; ++i) + { + for (size_t j = 0; j < min_cols; ++j) Added: head/devel/mdds/files/patch-include_mdds_multi__type__vector__itr.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mdds/files/patch-include_mdds_multi__type__vector__itr.hpp Mon Aug 10 23:39:24 2015 (r393925) @@ -0,0 +1,83 @@ +--- include/mdds/multi_type_vector_itr.hpp.orig 2015-06-11 23:53:55 UTC ++++ include/mdds/multi_type_vector_itr.hpp +@@ -139,14 +139,15 @@ protected: + typedef typename parent_type::size_type size_type; + typedef iterator_value_node node; + +- iterator_common_base() : m_cur_node(0, 0) {} ++ iterator_common_base() : m_cur_node(0, 0), m_singular(true) {} + + iterator_common_base( + const base_iterator_type& pos, const base_iterator_type& end, + size_type start_pos, size_type block_index) : + m_cur_node(start_pos, block_index), + m_pos(pos), +- m_end(end) ++ m_end(end), ++ m_singular(false) + { + if (m_pos != m_end) + update_node(); +@@ -154,9 +155,13 @@ protected: + + iterator_common_base(const iterator_common_base& other) : + m_cur_node(other.m_cur_node), +- m_pos(other.m_pos), +- m_end(other.m_end) ++ m_singular(other.m_singular) + { ++ if (!m_singular) ++ { ++ m_pos = other.m_pos; ++ m_end = other.m_end; ++ } + } + + void update_node() +@@ -196,6 +201,7 @@ protected: + node m_cur_node; + base_iterator_type m_pos; + base_iterator_type m_end; ++ bool m_singular; + + public: + bool operator== (const iterator_common_base& other) const +@@ -218,16 +224,34 @@ public: + iterator_common_base& operator= (const iterator_common_base& other) + { + m_cur_node = other.m_cur_node; +- m_pos = other.m_pos; +- m_end = other.m_end; ++ m_singular = other.m_singular; ++ if (!m_singular) ++ { ++ m_pos = other.m_pos; ++ m_end = other.m_end; ++ } + return *this; + } + + void swap(iterator_common_base& other) + { + m_cur_node.swap(other.m_cur_node); +- std::swap(m_pos, other.m_pos); +- std::swap(m_end, other.m_end); ++ std::swap(m_singular, other.m_singular); ++ if (!(m_singular || other.m_singular)) ++ { ++ std::swap(m_pos, other.m_pos); ++ std::swap(m_end, other.m_end); ++ } ++ else if (!m_singular) ++ { ++ m_pos = other.m_pos; ++ m_end = other.m_end; ++ } ++ else if (!other.m_singular) ++ { ++ other.m_pos = m_pos; ++ other.m_end = m_end; ++ } + } + + const node& get_node() const { return m_cur_node; } Added: head/devel/mdds/files/patch-include_mdds_point__quad__tree.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mdds/files/patch-include_mdds_point__quad__tree.hpp Mon Aug 10 23:39:24 2015 (r393925) @@ -0,0 +1,17 @@ +--- include/mdds/point_quad_tree.hpp.orig 2015-06-11 23:53:55 UTC ++++ include/mdds/point_quad_tree.hpp +@@ -635,10 +635,10 @@ point_quad_tree<_Key,_Data>::~point_quad + template + void point_quad_tree<_Key,_Data>::insert(key_type x, key_type y, data_type data) + { +- m_xrange.first = ::std::min(m_xrange.first, x); +- m_xrange.second = ::std::max(m_xrange.second, x); +- m_yrange.first = ::std::min(m_yrange.first, y); +- m_yrange.second = ::std::max(m_yrange.second, y); ++ m_xrange.first = (::std::min)(m_xrange.first, x); ++ m_xrange.second = (::std::max)(m_xrange.second, x); ++ m_yrange.first = (::std::min)(m_yrange.first, y); ++ m_yrange.second = (::std::max)(m_yrange.second, y); + + if (!m_root) + { Modified: head/devel/mdds/pkg-descr ============================================================================== --- head/devel/mdds/pkg-descr Mon Aug 10 23:19:33 2015 (r393924) +++ head/devel/mdds/pkg-descr Mon Aug 10 23:39:24 2015 (r393925) @@ -1,4 +1,4 @@ Multi-Dimensional Data Structure (mdds) is a collection of multi-dimensional data structure and indexing algorithm. -WWW: http://code.google.com/p/multidimalgorithm/ +WWW: https://gitlab.com/mdds/mdds From owner-svn-ports-all@freebsd.org Mon Aug 10 23:41:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01DA799E777; Mon, 10 Aug 2015 23:41:35 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C86E2922; Mon, 10 Aug 2015 23:41:35 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ANfZMZ003681; Mon, 10 Aug 2015 23:41:35 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ANfZW6003678; Mon, 10 Aug 2015 23:41:35 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508102341.t7ANfZW6003678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Mon, 10 Aug 2015 23:41:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393926 - head/graphics/libetonyek01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 23:41:36 -0000 Author: jkim Date: Mon Aug 10 23:41:34 2015 New Revision: 393926 URL: https://svnweb.freebsd.org/changeset/ports/393926 Log: Update to 0.1.3. Modified: head/graphics/libetonyek01/Makefile head/graphics/libetonyek01/distinfo head/graphics/libetonyek01/pkg-plist Modified: head/graphics/libetonyek01/Makefile ============================================================================== --- head/graphics/libetonyek01/Makefile Mon Aug 10 23:39:24 2015 (r393925) +++ head/graphics/libetonyek01/Makefile Mon Aug 10 23:41:34 2015 (r393926) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libetonyek -PORTVERSION= 0.1.1 +PORTVERSION= 0.1.3 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ @@ -13,6 +13,8 @@ COMMENT= Library to interpret and import LICENSE= LGPL21 MPL LICENSE_COMB= dual +BUILD_DEPENDS= mdds>=0.12.1_1:${PORTSDIR}/devel/mdds \ + ${LOCALBASE}/include/glm/glm.hpp:${PORTSDIR}/math/glm LIB_DEPENDS= libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ librevenge-0.0.so:${PORTSDIR}/textproc/librevenge \ libxml2.so:${PORTSDIR}/textproc/libxml2 @@ -23,7 +25,7 @@ CONFIGURE_ARGS= --disable-werror --witho CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= gmake gperf libtool pathfix pkgconfig tar:xz +USES= compiler:c++11-lang gmake libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip Modified: head/graphics/libetonyek01/distinfo ============================================================================== --- head/graphics/libetonyek01/distinfo Mon Aug 10 23:39:24 2015 (r393925) +++ head/graphics/libetonyek01/distinfo Mon Aug 10 23:41:34 2015 (r393926) @@ -1,2 +1,2 @@ -SHA256 (libetonyek-0.1.1.tar.xz) = 9c6a5a0f15ae6cc6e2dfb2272b664dedda7918ed46f3756f9f29a72589d8c83e -SIZE (libetonyek-0.1.1.tar.xz) = 338396 +SHA256 (libetonyek-0.1.3.tar.xz) = fe12276a62bd5f5ca4f5bfbd4938a74d097084e1f9fe173e521f63203f56f055 +SIZE (libetonyek-0.1.3.tar.xz) = 372884 Modified: head/graphics/libetonyek01/pkg-plist ============================================================================== --- head/graphics/libetonyek01/pkg-plist Mon Aug 10 23:39:24 2015 (r393925) +++ head/graphics/libetonyek01/pkg-plist Mon Aug 10 23:41:34 2015 (r393926) @@ -11,5 +11,5 @@ include/libetonyek-0.1/libetonyek/Etonye include/libetonyek-0.1/libetonyek/libetonyek.h lib/libetonyek-0.1.so lib/libetonyek-0.1.so.1 -lib/libetonyek-0.1.so.1.0.1 +lib/libetonyek-0.1.so.1.0.3 libdata/pkgconfig/libetonyek-0.1.pc From owner-svn-ports-all@freebsd.org Mon Aug 10 23:59:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7A6299ED8B; Mon, 10 Aug 2015 23:59:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BBF0E80; Mon, 10 Aug 2015 23:59:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ANxRdJ010541; Mon, 10 Aug 2015 23:59:27 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ANxQGr010537; Mon, 10 Aug 2015 23:59:26 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508102359.t7ANxQGr010537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Mon, 10 Aug 2015 23:59:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393927 - in head/textproc/libvisio01: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 23:59:27 -0000 Author: jkim Date: Mon Aug 10 23:59:25 2015 New Revision: 393927 URL: https://svnweb.freebsd.org/changeset/ports/393927 Log: Update to 0.1.3. Modified: head/textproc/libvisio01/Makefile head/textproc/libvisio01/distinfo head/textproc/libvisio01/files/patch-src__lib__VSDMetaData.cpp head/textproc/libvisio01/pkg-plist Modified: head/textproc/libvisio01/Makefile ============================================================================== --- head/textproc/libvisio01/Makefile Mon Aug 10 23:41:34 2015 (r393926) +++ head/textproc/libvisio01/Makefile Mon Aug 10 23:59:25 2015 (r393927) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libvisio -PORTVERSION= 0.1.1 -PORTREVISION= 1 +PORTVERSION= 0.1.3 CATEGORIES= textproc devel MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 Modified: head/textproc/libvisio01/distinfo ============================================================================== --- head/textproc/libvisio01/distinfo Mon Aug 10 23:41:34 2015 (r393926) +++ head/textproc/libvisio01/distinfo Mon Aug 10 23:59:25 2015 (r393927) @@ -1,2 +1,2 @@ -SHA256 (libvisio-0.1.1.tar.xz) = 4b510168d1465516fdf6e57c01e2f9eae1fc0ae232c74e44e70693bbc49227f1 -SIZE (libvisio-0.1.1.tar.xz) = 412752 +SHA256 (libvisio-0.1.3.tar.xz) = 943e03b1e6c969af4c2133a6671c9630adf3aaf8d460156744a28f58c9f47cd8 +SIZE (libvisio-0.1.3.tar.xz) = 479592 Modified: head/textproc/libvisio01/files/patch-src__lib__VSDMetaData.cpp ============================================================================== --- head/textproc/libvisio01/files/patch-src__lib__VSDMetaData.cpp Mon Aug 10 23:41:34 2015 (r393926) +++ head/textproc/libvisio01/files/patch-src__lib__VSDMetaData.cpp Mon Aug 10 23:59:25 2015 (r393927) @@ -1,11 +1,11 @@ ---- src/lib/VSDMetaData.cpp.orig 2015-01-01 16:11:45.000000000 -0500 -+++ src/lib/VSDMetaData.cpp 2015-02-02 17:20:34.953039000 -0500 -@@ -226,7 +226,7 @@ - uint64_t modifiedTime = readU64(input); +--- src/lib/VSDMetaData.cpp.orig 2015-07-25 07:17:57 UTC ++++ src/lib/VSDMetaData.cpp +@@ -302,7 +302,7 @@ bool libvisio::VSDMetaData::parseTimes(l + uint32_t firstDirSectorLocation = readU32(input); - // modifiedTime is number of 100ns since Jan 1 1601 -- static const uint64_t epoch = 11644473600; -+ static const uint64_t epoch = 11644473600ULL; - time_t sec = (modifiedTime / 10000000) - epoch; - const struct tm *time = localtime(&sec); - if (time) + // Seek to the Root Directory Entry +- size_t sectorSize = std::pow(2, sectorShift); ++ size_t sectorSize = 1UL << sectorShift; + input->seek((firstDirSectorLocation + 1) * sectorSize, librevenge::RVNG_SEEK_SET); + // DirectoryEntryName: 64 bytes + // DirectoryEntryNameLength: 2 bytes Modified: head/textproc/libvisio01/pkg-plist ============================================================================== --- head/textproc/libvisio01/pkg-plist Mon Aug 10 23:41:34 2015 (r393926) +++ head/textproc/libvisio01/pkg-plist Mon Aug 10 23:59:25 2015 (r393927) @@ -8,5 +8,5 @@ include/libvisio-0.1/libvisio/VisioDocum include/libvisio-0.1/libvisio/libvisio.h lib/libvisio-0.1.so lib/libvisio-0.1.so.1 -lib/libvisio-0.1.so.1.0.1 +lib/libvisio-0.1.so.1.0.3 libdata/pkgconfig/libvisio-0.1.pc From owner-svn-ports-all@freebsd.org Tue Aug 11 00:05:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3009499EF6C; Tue, 11 Aug 2015 00:05:30 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 200A92C5; Tue, 11 Aug 2015 00:05:30 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B05TcJ014636; Tue, 11 Aug 2015 00:05:29 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B05TAO014635; Tue, 11 Aug 2015 00:05:29 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508110005.t7B05TAO014635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 11 Aug 2015 00:05:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393928 - branches/2015Q3/textproc/libodfgen01 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 00:05:30 -0000 Author: jkim Date: Tue Aug 11 00:05:29 2015 New Revision: 393928 URL: https://svnweb.freebsd.org/changeset/ports/393928 Log: MFH: r393923 Remove graphics/libetonyek01 from LIB_DEPENDS. Approved by: ports-secteam (delphij) Modified: branches/2015Q3/textproc/libodfgen01/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/textproc/libodfgen01/Makefile ============================================================================== --- branches/2015Q3/textproc/libodfgen01/Makefile Mon Aug 10 23:59:25 2015 (r393927) +++ branches/2015Q3/textproc/libodfgen01/Makefile Tue Aug 11 00:05:29 2015 (r393928) @@ -12,8 +12,7 @@ COMMENT= Library for generating document LICENSE= LGPL21 MPL LICENSE_COMB= dual -LIB_DEPENDS= libetonyek-0.1.so:${PORTSDIR}/graphics/libetonyek01 \ - librevenge-0.0.so:${PORTSDIR}/textproc/librevenge +LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include From owner-svn-ports-all@freebsd.org Tue Aug 11 00:06:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C975399EF96; Tue, 11 Aug 2015 00:06:57 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B93DB3CC; Tue, 11 Aug 2015 00:06:57 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B06vQh014838; Tue, 11 Aug 2015 00:06:57 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B06vht014836; Tue, 11 Aug 2015 00:06:57 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508110006.t7B06vht014836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 11 Aug 2015 00:06:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393929 - in branches/2015Q3/devel/mdds: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 00:06:57 -0000 Author: jkim Date: Tue Aug 11 00:06:56 2015 New Revision: 393929 URL: https://svnweb.freebsd.org/changeset/ports/393929 Log: MFH: r393925 - Add several patches obtained from LibreOffice to make it more robust. - Update project URL in pkg-descr. Approved by: ports-secteam (delphij) Added: branches/2015Q3/devel/mdds/files/ - copied from r393925, head/devel/mdds/files/ Modified: branches/2015Q3/devel/mdds/Makefile branches/2015Q3/devel/mdds/pkg-descr Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/mdds/Makefile ============================================================================== --- branches/2015Q3/devel/mdds/Makefile Tue Aug 11 00:05:29 2015 (r393928) +++ branches/2015Q3/devel/mdds/Makefile Tue Aug 11 00:06:56 2015 (r393929) @@ -2,6 +2,7 @@ PORTNAME= mdds PORTVERSION= 0.12.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://kohei.us/files/mdds/src/ DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: branches/2015Q3/devel/mdds/pkg-descr ============================================================================== --- branches/2015Q3/devel/mdds/pkg-descr Tue Aug 11 00:05:29 2015 (r393928) +++ branches/2015Q3/devel/mdds/pkg-descr Tue Aug 11 00:06:56 2015 (r393929) @@ -1,4 +1,4 @@ Multi-Dimensional Data Structure (mdds) is a collection of multi-dimensional data structure and indexing algorithm. -WWW: http://code.google.com/p/multidimalgorithm/ +WWW: https://gitlab.com/mdds/mdds From owner-svn-ports-all@freebsd.org Tue Aug 11 01:48:59 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B31999D66E; Tue, 11 Aug 2015 01:48:59 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A152643; Tue, 11 Aug 2015 01:48:59 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B1mx0D055690; Tue, 11 Aug 2015 01:48:59 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B1mtQM055677; Tue, 11 Aug 2015 01:48:55 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508110148.t7B1mtQM055677@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 11 Aug 2015 01:48:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393930 - in head/net-mgmt/collectd5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 01:48:59 -0000 Author: junovitch Date: Tue Aug 11 01:48:54 2015 New Revision: 393930 URL: https://svnweb.freebsd.org/changeset/ports/393930 Log: net-mgmt/collectd5: update 5.4.2 -> 5.5.0 PR: 201514 Submitted by: ports@bsdserwis.com (maintainer) Approved by: feld (mentor) Differential Revision: https://reviews.freebsd.org/D3245 Added: head/net-mgmt/collectd5/files/patch-Makefile.am (contents, props changed) head/net-mgmt/collectd5/files/patch-src__Makefile.in (contents, props changed) head/net-mgmt/collectd5/files/patch-src__daemon__Makefile.am (contents, props changed) head/net-mgmt/collectd5/files/patch-src__daemon__collectd.h (contents, props changed) head/net-mgmt/collectd5/files/patch-src__modbus.c - copied, changed from r393918, head/net-mgmt/collectd5/files/patch-src_modbus.c Deleted: head/net-mgmt/collectd5/files/patch-src-curl_xml.c head/net-mgmt/collectd5/files/patch-src__collectd.c head/net-mgmt/collectd5/files/patch-src__collectd.h head/net-mgmt/collectd5/files/patch-src__disk.c head/net-mgmt/collectd5/files/patch-src__users.c head/net-mgmt/collectd5/files/patch-src_modbus.c Modified: head/net-mgmt/collectd5/Makefile head/net-mgmt/collectd5/distinfo head/net-mgmt/collectd5/files/patch-configure.ac head/net-mgmt/collectd5/files/patch-src__Makefile.am head/net-mgmt/collectd5/files/patch-src__dns.c head/net-mgmt/collectd5/files/patch-version-gen.sh head/net-mgmt/collectd5/pkg-descr head/net-mgmt/collectd5/pkg-plist Modified: head/net-mgmt/collectd5/Makefile ============================================================================== --- head/net-mgmt/collectd5/Makefile Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/Makefile Tue Aug 11 01:48:54 2015 (r393930) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= collectd -PORTVERSION= 5.4.2 -PORTREVISION= 3 +PORTVERSION= 5.5.0 CATEGORIES= net-mgmt -MASTER_SITES= http://collectd.org/files/ +MASTER_SITES= https://collectd.org/files/ \ + http://collectd.org/files/ PKGNAMESUFFIX= 5 MAINTAINER= ports@bsdserwis.com @@ -21,20 +21,22 @@ LIB_DEPENDS= libltdl.so:${PORTSDIR}/deve USES= autoreconf gmake libtool pkgconfig shebangfix tar:bzip2 GNU_CONFIGURE= yes -OPTIONS_DEFINE= CGI DEBUG GCRYPT VIRT +OPTIONS_DEFINE= CGI DEBUG GCRYPT LOGSTASH VIRT OPTIONS_GROUP= INPUT OUTPUT OPTIONS_GROUP_OUTPUT= RRDTOOL NOTIFYEMAIL NOTIFYDESKTOP RIEMANN -OPTIONS_GROUP_INPUT= CURL DBI JSON MEMCACHEC MODBUS MONGODB MYSQL \ - NUTUPS PERL PGSQL PING PYTHON RABBITMQ REDIS \ - ROUTEROS SIGROK SNMP STATGRAB TOKYOTYRANT VARNISH \ - XML XMMS +OPTIONS_GROUP_INPUT= CURL DBI IPMI JSON MEMCACHEC MODBUS MONGODB MYSQL \ + NUTUPS OLSRD ONEWIRE OPENLDAP PERL PGSQL PINBA PING \ + PYTHON RABBITMQ REDIS ROUTEROS SIGROK SNMP STATGRAB \ + STATSD TOKYOTYRANT VARNISH XML XMMS ZOOKEEPER CGI_DESC= Install collection.cgi (requires rrdtool) CURL_DESC= Enable curl-based plugins (apache, nginx, etc) DEBUG_DESC= Enable debugging DBI_DESC= Enable dbi plugin GCRYPT_DESC= Build with libgcrypt +IPMI_DESC= Enable OpenIPMI plugin JSON_DESC= Enable JSON plugins +LOGSTASH_DESC= Enable log_logstash plugin (requires json) MEMCACHEC_DESC= Enable memcachec plugin MODBUS_DESC= Enable modbus plugin MONGODB_DESC= Enable MongoDB-based plugins @@ -42,8 +44,12 @@ MYSQL_DESC= Enable mysql-based plugins NOTIFYEMAIL_DESC= Enable notifications via email NOTIFYDESKTOP_DESC= Enable desktop notifications NUTUPS_DESC= Enable nut (ups) plugin +OLSRD_DESC= Enable olsrd plugin +ONEWIRE_DESC= Eanble onewire plugin (via owfs) +OPENLDAP_DESC= Enable OpenLDAP plugin PERL_DESC= Enable libperl plugin and binding PGSQL_DESC= Enable postgresql-based plugins +PINBA_DESC= Enable pinba plugin (via protobuf-c) PING_DESC= Enable ping plugin PYTHON_DESC= Enable python-based plugins RABBITMQ_DESC= Enable rabbitmq-based plugins @@ -54,11 +60,13 @@ RRDTOOL_DESC= Enable rrdtool plugin (al SIGROK_DESC= Enable sigrok plugin SNMP_DESC= Enable SNMP plugin STATGRAB_DESC= Enable statgrab-based plugins (disk, interface, etc) +STATSD_DESC= Enable statsd plugin TOKYOTYRANT_DESC= Enable tokyotyrant plugin -VARNISH_DESC= Enable varnish 3.x cache statistics +VARNISH_DESC= Enable varnish 4.x cache statistics VIRT_DESC= Enable libvirt plugin (requires XML) XML_DESC= Enable XML plugins XMMS_DESC= Enable xmms plugin +ZOOKEEPER_DESC= Enable zookeeper plugin USE_RC_SUBR= collectd collectdmon @@ -81,17 +89,22 @@ CONFIGURE_ARGS= --localstatedir=/var \ --without-libganglia \ --without-libiptc \ --without-libjvm \ + --without-liblvm2app \ --without-libkstat \ + --without-libldap \ + --without-libmnl \ --without-libmodbus \ --without-libnetlink \ --without-libnetapp \ - --without-libopenipmi \ --without-libowcapi \ --without-libperfstat \ + --without-librdkafka \ --without-libsensors \ + --without-libvarnish \ --without-lvm \ --without-mic \ - --without-oracle + --without-oracle \ + --disable-turbostat # NOTE: Plugins without external dependencies CONFIGURE_ARGS+= \ @@ -104,6 +117,7 @@ CONFIGURE_ARGS+= \ --enable-dns \ --enable-email \ --enable-exec \ + --enable-fhcount \ --enable-filecount \ --enable-load \ --enable-logfile \ @@ -126,6 +140,7 @@ CONFIGURE_ARGS+= \ --enable-syslog \ --enable-table \ --enable-tail \ + --enable-tail_csv \ --enable-target_notification \ --enable-target_replace \ --enable-target_scale \ @@ -139,7 +154,8 @@ CONFIGURE_ARGS+= \ --enable-uptime \ --enable-uuid \ --enable-write_graphite \ - --enable-zfs_arc + --enable-write_log \ + --enable-zfs_arc \ .if ${PORT_OPTIONS:MCGI} RUN_DEPENDS+= p5-URI>=0:${PORTSDIR}/net/p5-URI \ @@ -217,6 +233,15 @@ LIBS+= -lgcrypt CONFIGURE_ARGS+=--without-libgcrypt .endif +.if ${PORT_OPTIONS:MIPMI} +LIB_DEPENDS+= libOpenIPMI.so:${PORTSDIR}/sysutils/openipmi +CONFIGURE_ARGS+=--enable-ipmi +PLIST_SUB+= IPMI="" +.else +CONFIGURE_ARGS+=--disable-ipmi +PLIST_SUB+= IPMI="@comment " +.endif + .if ${PORT_OPTIONS:MJSON} LIB_DEPENDS+= libyajl.so:${PORTSDIR}/devel/yajl CONFIGURE_ARGS+=--with-libyajl=${LOCALBASE} @@ -224,6 +249,16 @@ CONFIGURE_ARGS+=--with-libyajl=${LOCALBA CONFIGURE_ARGS+=--without-libyajl .endif +.if ${PORT_OPTIONS:MLOGSTASH} +CONFIGURE_ARGS+=--enable-log_logstash +PLIST_SUB+= LOGSTASH="" +.if empty(PORT_OPTIONS:MJSON) +IGNORE= LOGSTASH requires JSON. Either select JSON or deselect LOGSTASH +.endif +.else +PLIST_SUB+= LOGSTASH="@comment " +.endif + .if ${PORT_OPTIONS:MMEMCACHEC} LIB_DEPENDS+= libmemcached.so:${PORTSDIR}/databases/libmemcached CONFIGURE_ARGS+=--with-libmemcached=${LOCALBASE} --enable-memcachec @@ -235,7 +270,7 @@ PLIST_SUB+= MEMCACHEC="@comment " .if ${PORT_OPTIONS:MMODBUS} LIB_DEPENDS+= libmodbus.so:${PORTSDIR}/comms/libmodbus -CONFIGURE_ARGS+=--enable-modbus +CONFIGURE_ARGS+=--with-libmodbus=${LOCALBASE} --enable-modbus PLIST_SUB+= MODBUS="" .else PLIST_SUB+= MODBUS="@comment " @@ -290,6 +325,32 @@ CONFIGURE_ARGS+=--without-libupsclient - PLIST_SUB+= NUTUPS="@comment " .endif +.if ${PORT_OPTIONS:MOLSRD} +CONFIGURE_ARGS+=--enable-olsrd +PLIST_SUB+= OLSRD="" +.else +CONFIGURE_ARGS+=--enable-olsrd +PLIST_SUB+= OLSRD="@comment " +.endif + +.if ${PORT_OPTIONS:MONEWIRE} +LIB_DEPENDS+= libow.so:${PORTSDIR}/comms/owfs +CONFIGURE_ARGS+=--with-libowcapi=${LOCALBASE} --enable-onewire +PLIST_SUB+= ONEWIRE="" +.else +CONFIGURE_ARGS+=--disable-onewire +PLIST_SUB+= ONEWIRE="@comment " +.endif + +.if ${PORT_OPTIONS:MOPENLDAP} +USE_OPENLDAP= yes +CONFIGURE_ARGS+=--with-libldap=${LOCALBASE} --enable-openldap +PLIST_SUB+= OPENLDAP="" +.else +CONFIGURE_ARGS+=--disable-openldap +PLIST_SUB+= OPENLDAP="@comment " +.endif + .if ${PORT_OPTIONS:MPERL} USES+= perl5 CONFIGURE_ARGS+=--with-perl=${PERL} --with-perl-bindings --enable-perl @@ -308,6 +369,15 @@ CONFIGURE_ARGS+=--without-postgresql --d PLIST_SUB+= PGSQL="@comment " .endif +.if ${PORT_OPTIONS:MPINBA} +LIB_DEPENDS+= libprotobuf-c.so:${PORTSDIR}/devel/protobuf-c +CONFIGURE_ARGS+=--enable-pinba +PLIST_SUB+= PINBA="" +.else +CONFIGURE_ARGS+=--disable-pinba +PLIST_SUB+= PINBA="@comment " +.endif + .if ${PORT_OPTIONS:MPING} LIB_DEPENDS+= liboping.so:${PORTSDIR}/net/liboping CONFIGURE_ARGS+=--with-liboping=${LOCALBASE} --enable-ping @@ -338,8 +408,8 @@ PLIST_SUB+= RABBITMQ="@comment " .endif .if ${PORT_OPTIONS:MREDIS} -LIB_DEPENDS+= libcredis.so:${PORTSDIR}/databases/credis -CONFIGURE_ARGS+=--with-libcredis=${LOCALBASE} \ +LIB_DEPENDS+= libhiredis.so:${PORTSDIR}/databases/hiredis +CONFIGURE_ARGS+=--with-libhiredis=${LOCALBASE} \ --enable-redis \ --enable-write_redis PLIST_SUB+= REDIS="" @@ -382,7 +452,6 @@ PLIST_SUB+= RRDTOOL="@comment " .endif .if ${PORT_OPTIONS:MSTATGRAB} -USES+= pkgconfig LIB_DEPENDS+= libstatgrab.so:${PORTSDIR}/devel/libstatgrab LIBS+= `pkg-config --libs libstatgrab` CONFIGURE_ARGS+=--with-libstatgrab=${LOCALBASE} \ @@ -408,6 +477,7 @@ PLIST_SUB+= USERS="@comment " USE_GNOME+= glib20 LIB_DEPENDS+= libsigrok.so:${PORTSDIR}/devel/libsigrok CONFIGURE_ARGS+=--with-libsigrok --enable-sigrok +CFLAGS+= `pkg-config --cflags glib-2.0` PLIST_SUB+= SIGROK="" .else CONFIGURE_ARGS+=--disable-sigrok @@ -423,6 +493,14 @@ CONFIGURE_ARGS+=--without-libnetsnmp PLIST_SUB+= SNMP="@comment " .endif +.if ${PORT_OPTIONS:MSTATSD} +CONFIGURE_ARGS+=--enable-statsd +PLIST_SUB+= STATSD="" +.else +CONFIGURE_ARGS+=--disable-statsd +PLIST_SUB+= STATSD="@comment " +.endif + .if ${PORT_OPTIONS:MTOKYOTYRANT} LIB_DEPENDS+= libtokyotyrant.so:${PORTSDIR}/databases/tokyotyrant CONFIGURE_ARGS+=--with-libtokyotyrant=${LOCALBASE} --enable-tokyotyrant @@ -433,7 +511,7 @@ PLIST_SUB+= TOKYOTYRANT="@comment " .endif .if ${PORT_OPTIONS:MVARNISH} -LIB_DEPENDS+= libvarnishapi.so:${PORTSDIR}/www/varnish +LIB_DEPENDS+= libvarnishapi.so:${PORTSDIR}/www/varnish4 CONFIGURE_ARGS+=--with-libvarnish=${LOCALBASE} --enable-varnish PLIST_SUB+= VARNISH="" .else @@ -446,10 +524,10 @@ PLIST_SUB+= VARNISH="@comment " IGNORE= VIRT requires XML. Either select XML or deselect VIRT. .endif LIB_DEPENDS+= libvirt.so:${PORTSDIR}/devel/libvirt -CONFIGURE_ARGS+=--enable-libvirt +CONFIGURE_ARGS+=--enable-virt PLIST_SUB+= VIRT="" .else -CONFIGURE_ARGS+=--without-libvirt --disable-libvirt +CONFIGURE_ARGS+=--without-virt --disable-virt PLIST_SUB+= VIRT="@comment " .endif @@ -468,6 +546,15 @@ CONFIGURE_ARGS+=--without-libxmms --disa PLIST_SUB+= XMMS="@comment " .endif +.if ${PORT_OPTIONS:MZOOKEEPER} +LIB_DEPENDS+= libzookeeper_mt.so:${PORTSDIR}/devel/libzookeeper +CONFIGURE_ARGS+=--with-libzookeeper=${LOCALBASE} --enable-zookeeper +PLIST_SUB+= ZOOKEEPER="" +.else +CONFIGURE_ARGS+=--without-libzookeeper --disable-zookeeper +PLIST_SUB+= ZOOKEEPER="@comment " +.endif + INSTALL_TARGET=install-strip SHEBANG_FILES= contrib/collection.cgi @@ -479,7 +566,8 @@ post-patch: -e 's;@prefix@/var/;/var/;' \ -e 's;/var/lib/;/var/db/;' \ -e 's;@localstatedir@/lib/;/var/db/;' \ - ${WRKSRC}/src/collectd.conf.in + ${WRKSRC}/src/collectd.conf.in \ + ${WRKSRC}/src/collectd.conf.5 @${REINPLACE_CMD} \ -e 's;/etc/collection\.conf;${WWWDIR}/collection.conf;' \ ${WRKSRC}/contrib/collection.cgi Modified: head/net-mgmt/collectd5/distinfo ============================================================================== --- head/net-mgmt/collectd5/distinfo Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/distinfo Tue Aug 11 01:48:54 2015 (r393930) @@ -1,2 +1,2 @@ -SHA256 (collectd-5.4.2.tar.bz2) = 9789e900c138b5dbe907d3d744143f12b1e30022276cb1d8c65bbabaf0c4e393 -SIZE (collectd-5.4.2.tar.bz2) = 1633610 +SHA256 (collectd-5.5.0.tar.bz2) = 847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88 +SIZE (collectd-5.5.0.tar.bz2) = 1824495 Added: head/net-mgmt/collectd5/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/collectd5/files/patch-Makefile.am Tue Aug 11 01:48:54 2015 (r393930) @@ -0,0 +1,10 @@ +--- Makefile.am.orig 2015-03-09 09:38:22 UTC ++++ Makefile.am +@@ -8,7 +8,6 @@ EXTRA_DIST = contrib version-gen.sh + + install-exec-hook: + $(mkinstalldirs) $(DESTDIR)$(localstatedir)/run +- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/lib/$(PACKAGE_NAME) + $(mkinstalldirs) $(DESTDIR)$(localstatedir)/log + + maintainer-clean-local: Modified: head/net-mgmt/collectd5/files/patch-configure.ac ============================================================================== --- head/net-mgmt/collectd5/files/patch-configure.ac Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/files/patch-configure.ac Tue Aug 11 01:48:54 2015 (r393930) @@ -1,6 +1,6 @@ --- configure.ac.orig 2015-02-26 11:49:16 UTC +++ configure.ac -@@ -111,7 +111,7 @@ then +@@ -120,7 +120,7 @@ then fi # Where to install .pc files. @@ -9,7 +9,7 @@ AC_SUBST(pkgconfigdir) # Check for standards compliance mode -@@ -1440,6 +1440,7 @@ if test "x$with_kstat" = "xyes" +@@ -1495,6 +1495,7 @@ if test "x$with_kstat" = "xyes" then AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], []) fi @@ -17,7 +17,7 @@ if test "x$with_kstat" = "xyes" then AC_CHECK_LIB(devinfo, di_init, [with_devinfo="yes"], [with_devinfo="no (not found)"], []) -@@ -1449,6 +1450,8 @@ if test "x$with_kstat" = "xyes" +@@ -1504,6 +1505,8 @@ if test "x$with_kstat" = "xyes" then AC_DEFINE(HAVE_LIBKSTAT, 1, [Define to 1 if you have the 'kstat' library (-lkstat)]) @@ -26,7 +26,7 @@ fi AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes") AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes") -@@ -3508,7 +3511,7 @@ fi +@@ -3629,7 +3632,7 @@ fi if test "x$with_python" = "xyes" then LDFLAGS="-L$python_library_path $LDFLAGS" @@ -35,11 +35,13 @@ AC_CHECK_FUNC(PyObject_CallFunction, [with_python="yes"], -@@ -4415,7 +4418,7 @@ AC_ARG_WITH(libvarnish, [AS_HELP_STRING( +@@ -4692,8 +4695,8 @@ AC_ARG_WITH(libvarnish, [AS_HELP_STRING( + else if test -d "$with_libvarnish/lib" then AC_MSG_NOTICE([Not checking for libvarnish: Manually configured]) - with_libvarnish_cflags="-I$withval/include" +- with_libvarnish_cflags="-I$withval/include" - with_libvarnish_libs="-L$withval/lib -lvarnishapi" ++ with_libvarnish_cflags="-I$withval/include/varnish" + with_libvarnish_libs="-L$withval/lib/varnish -lvarnishapi" with_libvarnish="yes" fi; fi; fi Modified: head/net-mgmt/collectd5/files/patch-src__Makefile.am ============================================================================== --- head/net-mgmt/collectd5/files/patch-src__Makefile.am Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/files/patch-src__Makefile.am Tue Aug 11 01:48:54 2015 (r393930) @@ -1,7 +1,7 @@ ---- src/Makefile.am.orig 2013-08-18 04:24:25.061973000 -0600 -+++ src/Makefile.am 2013-08-20 21:34:14.000000000 -0600 -@@ -10,7 +10,7 @@ - AM_CPPFLAGS = -DPREFIX='"${prefix}"' +--- src/Makefile.am.orig 2015-05-26 19:38:14 UTC ++++ src/Makefile.am +@@ -14,7 +14,7 @@ AM_CPPFLAGS = -I$(srcdir)/daemon + AM_CPPFLAGS += -DPREFIX='"${prefix}"' AM_CPPFLAGS += -DCONFIGFILE='"${sysconfdir}/${PACKAGE_NAME}.conf"' AM_CPPFLAGS += -DLOCALSTATEDIR='"${localstatedir}"' -AM_CPPFLAGS += -DPKGLOCALSTATEDIR='"${localstatedir}/lib/${PACKAGE_NAME}"' @@ -9,34 +9,25 @@ if BUILD_FEATURE_DAEMON AM_CPPFLAGS += -DPIDFILE='"${localstatedir}/run/${PACKAGE_NAME}.pid"' endif -@@ -64,7 +64,7 @@ - collectd_LDADD += -lpthread - endif - if BUILD_WITH_LIBKSTAT --collectd_LDADD += -lkstat -+collectd_LDADD += $(BUILD_WITH_LIBKSTAT_LIBS) - endif - if BUILD_WITH_LIBDEVINFO - collectd_LDADD += -ldevinfo -@@ -275,7 +275,7 @@ - cpu_la_LDFLAGS = -module -avoid-version - cpu_la_LIBADD = +@@ -218,7 +218,7 @@ cpu_la_CFLAGS = $(AM_CFLAGS) + cpu_la_LDFLAGS = $(PLUGIN_LDFLAGS) + cpu_la_LIBADD = if BUILD_WITH_LIBKSTAT -cpu_la_LIBADD += -lkstat +cpu_la_LIBADD += $(BUILD_WITH_LIBKSTAT_LIBS) endif if BUILD_WITH_LIBDEVINFO cpu_la_LIBADD += -ldevinfo -@@ -373,7 +373,7 @@ - disk_la_LDFLAGS = -module -avoid-version - disk_la_LIBADD = +@@ -303,7 +303,7 @@ disk_la_CFLAGS = $(AM_CFLAGS) + disk_la_LDFLAGS = $(PLUGIN_LDFLAGS) + disk_la_LIBADD = if BUILD_WITH_LIBKSTAT -disk_la_LIBADD += -lkstat +disk_la_LIBADD += $(BUILD_WITH_LIBKSTAT_LIBS) endif if BUILD_WITH_LIBDEVINFO disk_la_LIBADD += -ldevinfo -@@ -480,7 +480,7 @@ +@@ -408,7 +408,7 @@ interface_la_CFLAGS += $(BUILD_WITH_LIBS interface_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) else if BUILD_WITH_LIBKSTAT @@ -45,44 +36,35 @@ endif if BUILD_WITH_LIBDEVINFO interface_la_LIBADD += -ldevinfo -@@ -694,7 +694,7 @@ - collectd_LDADD += "-dlopen" memory.la - collectd_DEPENDENCIES += memory.la +@@ -591,7 +591,7 @@ memory_la_CFLAGS = $(AM_CFLAGS) + memory_la_LDFLAGS = $(PLUGIN_LDFLAGS) + memory_la_LIBADD = if BUILD_WITH_LIBKSTAT -memory_la_LIBADD += -lkstat +memory_la_LIBADD += $(BUILD_WITH_LIBKSTAT_LIBS) endif if BUILD_WITH_LIBDEVINFO memory_la_LIBADD += -ldevinfo -@@ -823,7 +823,7 @@ - pkglib_LTLIBRARIES += notify_email.la - notify_email_la_SOURCES = notify_email.c - notify_email_la_LDFLAGS = -module -avoid-version --notify_email_la_LIBADD = -lesmtp -lssl -lcrypto -lpthread -ldl -+notify_email_la_LIBADD = -lesmtp -lssl -lcrypto -lpthread - collectd_LDADD += "-dlopen" notify_email.la - collectd_DEPENDENCIES += notify_email.la - endif -@@ -1108,7 +1108,7 @@ - collectd_LDADD += "-dlopen" swap.la - collectd_DEPENDENCIES += swap.la +@@ -964,7 +964,7 @@ swap_la_CFLAGS = $(AM_CFLAGS) + swap_la_LDFLAGS = $(PLUGIN_LDFLAGS) + swap_la_LIBADD = if BUILD_WITH_LIBKSTAT -swap_la_LIBADD += -lkstat +swap_la_LIBADD += $(BUILD_WITH_LIBKSTAT_LIBS) endif if BUILD_WITH_LIBDEVINFO swap_la_LIBADD += -ldevinfo -@@ -1162,7 +1162,7 @@ +@@ -1010,7 +1010,7 @@ if BUILD_PLUGIN_TAPE pkglib_LTLIBRARIES += tape.la tape_la_SOURCES = tape.c - tape_la_LDFLAGS = -module -avoid-version + tape_la_LDFLAGS = $(PLUGIN_LDFLAGS) -tape_la_LIBADD = -lkstat -ldevinfo +tape_la_LIBADD = $(BUILD_WITH_LIBKSTAT_LIBS) -ldevinfo - collectd_LDADD += "-dlopen" tape.la - collectd_DEPENDENCIES += tape.la endif -@@ -1285,7 +1285,7 @@ - uptime_la_LDFLAGS = -module -avoid-version + + if BUILD_PLUGIN_TARGET_NOTIFICATION +@@ -1116,7 +1116,7 @@ uptime_la_CFLAGS = $(AM_CFLAGS) + uptime_la_LDFLAGS = $(PLUGIN_LDFLAGS) uptime_la_LIBADD = if BUILD_WITH_LIBKSTAT -uptime_la_LIBADD += -lkstat @@ -90,7 +72,16 @@ endif if BUILD_WITH_PERFSTAT uptime_la_LIBADD += -lperfstat -@@ -1519,12 +1519,7 @@ +@@ -1275,7 +1275,7 @@ if BUILD_LINUX + # zfs_arc requires no library on linux + else + # solaris +-zfs_arc_la_LIBADD = -lkstat ++zfs_arc_la_LIBADD = $(BUILD_WITH_LIBKSTAT_LIBS) + endif + endif + endif +@@ -1364,12 +1364,7 @@ endif install-exec-hook: $(mkinstalldirs) $(DESTDIR)$(sysconfdir) Added: head/net-mgmt/collectd5/files/patch-src__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/collectd5/files/patch-src__Makefile.in Tue Aug 11 01:48:54 2015 (r393930) @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2015-05-27 07:51:49.001922000 +0000 ++++ src/Makefile.in +@@ -2434,7 +2434,7 @@ PLUGIN_LDFLAGS = -module -avoid-version + AM_CPPFLAGS = -I$(srcdir)/daemon -DPREFIX='"${prefix}"' \ + -DCONFIGFILE='"${sysconfdir}/${PACKAGE_NAME}.conf"' \ + -DLOCALSTATEDIR='"${localstatedir}"' \ +- -DPKGLOCALSTATEDIR='"${localstatedir}/lib/${PACKAGE_NAME}"' \ ++ -DPKGLOCALSTATEDIR='"${localstatedir}/db/${PACKAGE_NAME}"' \ + $(am__append_2) -DPLUGINDIR='"${pkglibdir}"' \ + -DPKGDATADIR='"${pkgdatadir}"' + AUTOMAKE_OPTIONS = subdir-objects Added: head/net-mgmt/collectd5/files/patch-src__daemon__Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/collectd5/files/patch-src__daemon__Makefile.am Tue Aug 11 01:48:54 2015 (r393930) @@ -0,0 +1,20 @@ +--- src/daemon/Makefile.am.orig 2015-05-26 19:38:31 UTC ++++ src/daemon/Makefile.am +@@ -6,7 +6,7 @@ + AM_CPPFLAGS += -DPREFIX='"${prefix}"' + AM_CPPFLAGS += -DCONFIGFILE='"${sysconfdir}/${PACKAGE_NAME}.conf"' + AM_CPPFLAGS += -DLOCALSTATEDIR='"${localstatedir}"' +-AM_CPPFLAGS += -DPKGLOCALSTATEDIR='"${localstatedir}/lib/${PACKAGE_NAME}"' ++AM_CPPFLAGS += -DPKGLOCALSTATEDIR='"${localstatedir}/db/${PACKAGE_NAME}"' + if BUILD_FEATURE_DAEMON + AM_CPPFLAGS += -DPIDFILE='"${localstatedir}/run/${PACKAGE_NAME}.pid"' + endif +@@ -49,7 +49,7 @@ collectd_CPPFLAGS = $(AM_CPPFLAGS) $(LT + collectd_CFLAGS = $(AM_CFLAGS) + collectd_LDFLAGS = -export-dynamic + collectd_LDADD = libavltree.la libcommon.la libheap.la -lm +-collectd_DEPENDENCIES = ++collectd_DEPENDENCIES = libavltree.la libcommon.la libheap.la + + # Link to these libraries.. + if BUILD_WITH_LIBRT Added: head/net-mgmt/collectd5/files/patch-src__daemon__collectd.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/collectd5/files/patch-src__daemon__collectd.h Tue Aug 11 01:48:54 2015 (r393930) @@ -0,0 +1,21 @@ +--- src/daemon/collectd.h.orig 2015-05-22 10:04:36 UTC ++++ src/daemon/collectd.h +@@ -240,15 +240,15 @@ typedef int _Bool; + #endif + + #ifndef LOCALSTATEDIR +-#define LOCALSTATEDIR PREFIX "/var" ++#define LOCALSTATEDIR "/var" + #endif + + #ifndef PKGLOCALSTATEDIR +-#define PKGLOCALSTATEDIR PREFIX "/var/lib/" PACKAGE_NAME ++#define PKGLOCALSTATEDIR PREFIX "/var/db/" PACKAGE_NAME + #endif + + #ifndef PIDFILE +-#define PIDFILE PREFIX "/var/run/" PACKAGE_NAME ".pid" ++#define PIDFILE "/var/run/" PACKAGE_NAME ".pid" + #endif + + #ifndef PLUGINDIR Modified: head/net-mgmt/collectd5/files/patch-src__dns.c ============================================================================== --- head/net-mgmt/collectd5/files/patch-src__dns.c Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/files/patch-src__dns.c Tue Aug 11 01:48:54 2015 (r393930) @@ -1,8 +1,6 @@ -diff --git src/dns.c src/dns.c -index fe3b672..0c43985 100644 ---- src/dns.c +--- src/dns.c.orig 2015-03-10 14:14:45 UTC +++ src/dns.c -@@ -223,6 +223,15 @@ static void *dns_child_loop (__attribute__((unused)) void *dummy) +@@ -224,6 +224,15 @@ static int dns_run_pcap_loop (void) pthread_sigmask (SIG_SETMASK, &sigmask, NULL); } Copied and modified: head/net-mgmt/collectd5/files/patch-src__modbus.c (from r393918, head/net-mgmt/collectd5/files/patch-src_modbus.c) ============================================================================== --- head/net-mgmt/collectd5/files/patch-src_modbus.c Mon Aug 10 22:30:20 2015 (r393918, copy source) +++ head/net-mgmt/collectd5/files/patch-src__modbus.c Tue Aug 11 01:48:54 2015 (r393930) @@ -1,5 +1,5 @@ ---- src/modbus.c.orig 2013-01-27 17:47:18.246255000 +0400 -+++ src/modbus.c 2013-05-14 18:40:05.000000000 +0400 +--- src/modbus.c.orig 2015-05-20 12:04:47 UTC ++++ src/modbus.c @@ -25,6 +25,9 @@ #include "plugin.h" #include "configfile.h" Modified: head/net-mgmt/collectd5/files/patch-version-gen.sh ============================================================================== --- head/net-mgmt/collectd5/files/patch-version-gen.sh Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/files/patch-version-gen.sh Tue Aug 11 01:48:54 2015 (r393930) @@ -1,18 +1,17 @@ ---- version-gen.sh.orig 2015-03-02 20:20:43 UTC +--- version-gen.sh.orig 2015-05-26 20:23:28 UTC +++ version-gen.sh @@ -1,13 +1,3 @@ --#!/usr/bin/env bash -- --DEFAULT_VERSION="5.4.2.git" + #!/bin/sh + +-DEFAULT_VERSION="5.5.0.git" - --VERSION="`git describe 2> /dev/null | sed -e 's/^collectd-//'`" +-VERSION="`git describe 2> /dev/null | grep collectd | sed -e 's/^collectd-//'`" - -if test -z "$VERSION"; then - VERSION="$DEFAULT_VERSION" -fi - -VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`" -+#!/bin/sh - --echo -n "$VERSION" -+echo -n "5.4.2.git" +- +-printf "%s" "$VERSION" ++echo -n "5.5.0.git" Modified: head/net-mgmt/collectd5/pkg-descr ============================================================================== --- head/net-mgmt/collectd5/pkg-descr Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/pkg-descr Tue Aug 11 01:48:54 2015 (r393930) @@ -3,4 +3,4 @@ system & network statistics along with u The daemon is very fast and allows for frequent polling of values, with support for polling as frequent as every 10 seconds. -WWW: http://www.collectd.org/ +WWW: https://www.collectd.org/ Modified: head/net-mgmt/collectd5/pkg-plist ============================================================================== --- head/net-mgmt/collectd5/pkg-plist Tue Aug 11 00:06:56 2015 (r393929) +++ head/net-mgmt/collectd5/pkg-plist Tue Aug 11 01:48:54 2015 (r393930) @@ -10,6 +10,9 @@ include/collectd/client.h include/collectd/lcc_features.h include/collectd/network.h include/collectd/network_buffer.h +lib/libcollectdclient.so +lib/libcollectdclient.so.1 +lib/libcollectdclient.so.1.0.0 lib/collectd/aggregation.so %%CURL%%lib/collectd/apache.so lib/collectd/apcups.so @@ -27,9 +30,12 @@ lib/collectd/df.so lib/collectd/dns.so lib/collectd/email.so lib/collectd/exec.so +lib/collectd/fhcount.so lib/collectd/filecount.so %%STATGRAB%%lib/collectd/interface.so +%%IPMI%%lib/collectd/ipmi.so lib/collectd/load.so +%%LOGSTASH%%lib/collectd/log_logstash.so lib/collectd/logfile.so lib/collectd/match_empty_counter.so lib/collectd/match_hashed.so @@ -40,21 +46,24 @@ lib/collectd/mbmon.so %%MEMCACHEC%%lib/collectd/memcachec.so lib/collectd/memcached.so lib/collectd/memory.so +%%MODBUS%%lib/collectd/modbus.so %%MYSQL%%lib/collectd/mysql.so lib/collectd/network.so %%CURL%%lib/collectd/nginx.so -%%NOTIFYEMAIL%%lib/collectd/notify_email.so %%NOTIFYDESKTOP%%lib/collectd/notify_desktop.so +%%NOTIFYEMAIL%%lib/collectd/notify_email.so lib/collectd/ntpd.so %%NUTUPS%%lib/collectd/nut.so +%%OLSRD%%lib/collectd/olsrd.so +%%ONEWIRE%%lib/collectd/onewire.so +%%OPENLDAP%%lib/collectd/openldap.so lib/collectd/openvpn.so %%PERL%%lib/collectd/perl.so -%%PERL%%%%PERL5_MAN3%%/Collectd::Unixsock.3.gz -%%PERL%%%%SITE_PERL%%/Collectd/Plugins/OpenVZ.pm +lib/collectd/pf.so +%%PINBA%%lib/collectd/pinba.so %%PING%%lib/collectd/ping.so %%PGSQL%%lib/collectd/postgresql.so lib/collectd/powerdns.so -lib/collectd/pf.so lib/collectd/processes.so %%PYTHON%%lib/collectd/python.so %%REDIS%%lib/collectd/redis.so @@ -63,11 +72,12 @@ lib/collectd/processes.so %%RRDTOOL%%lib/collectd/rrdtool.so %%SIGROK%%lib/collectd/sigrok.so %%SNMP%%lib/collectd/snmp.so -lib/collectd/statsd.so +%%STATSD%%lib/collectd/statsd.so lib/collectd/swap.so lib/collectd/syslog.so lib/collectd/table.so lib/collectd/tail.so +lib/collectd/tail_csv.so lib/collectd/target_notification.so lib/collectd/target_replace.so lib/collectd/target_scale.so @@ -83,20 +93,21 @@ lib/collectd/uptime.so %%USERS%%lib/collectd/users.so lib/collectd/uuid.so %%VARNISH%%lib/collectd/varnish.so -%%VIRT%%lib/collectd/libvirt.so +%%VIRT%%lib/collectd/virt.so lib/collectd/write_graphite.so %%CURL%%lib/collectd/write_http.so +lib/collectd/write_log.so %%MONGODB%%lib/collectd/write_mongodb.so %%REDIS%%lib/collectd/write_redis.so %%RIEMANN%%lib/collectd/write_riemann.so %%XMMS%%lib/collectd/xmms.so lib/collectd/zfs_arc.so -lib/libcollectdclient.so -lib/libcollectdclient.so.1 -lib/libcollectdclient.so.1.0.0 +%%ZOOKEEPER%%lib/collectd/zookeeper.so libdata/pkgconfig/libcollectdclient.pc %%DATADIR%%/postgresql_default.conf %%DATADIR%%/types.db +%%PERL%%%%PERL5_MAN3%%/Collectd::Unixsock.3.gz +%%PERL%%%%SITE_PERL%%/Collectd/Plugins/OpenVZ.pm %%PERL%%%%SITE_PERL%%/Collectd.pm %%PERL%%%%SITE_PERL%%/Collectd/Unixsock.pm man/man1/collectd-nagios.1.gz @@ -115,5 +126,3 @@ man/man5/collectd-unixsock.5.gz man/man5/collectd.conf.5.gz man/man5/types.db.5.gz @dir /var/db/collectd -@dir /var/lib/collectd -@dir /var/lib From owner-svn-ports-all@freebsd.org Tue Aug 11 04:53:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EB6199E465; Tue, 11 Aug 2015 04:53:04 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1692EA7D; Tue, 11 Aug 2015 04:53:04 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B4r3u2033649; Tue, 11 Aug 2015 04:53:03 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B4r3Lo033647; Tue, 11 Aug 2015 04:53:03 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201508110453.t7B4r3Lo033647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Tue, 11 Aug 2015 04:53:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393931 - head/net/ntp-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 04:53:04 -0000 Author: cy Date: Tue Aug 11 04:53:02 2015 New Revision: 393931 URL: https://svnweb.freebsd.org/changeset/ports/393931 Log: Update 4.3.67 --> 4.3.70 Modified: head/net/ntp-devel/Makefile head/net/ntp-devel/distinfo Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Tue Aug 11 01:48:54 2015 (r393930) +++ head/net/ntp-devel/Makefile Tue Aug 11 04:53:02 2015 (r393931) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.3.67 +PORTVERSION= 4.3.70 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-dev/ \ http://archive.ntp.org/ntp4/ntp-dev/ Modified: head/net/ntp-devel/distinfo ============================================================================== --- head/net/ntp-devel/distinfo Tue Aug 11 01:48:54 2015 (r393930) +++ head/net/ntp-devel/distinfo Tue Aug 11 04:53:02 2015 (r393931) @@ -1,2 +1,2 @@ -SHA256 (ntp-dev-4.3.67.tar.gz) = a8761310a2e3ca53fc880b2980276149ebce9711627da5b093d80a3842f379b2 -SIZE (ntp-dev-4.3.67.tar.gz) = 23658173 +SHA256 (ntp-dev-4.3.70.tar.gz) = 57e3385ac14c0e8cf10b22c3f472a8aebe71030747444261963d57d17b30dc88 +SIZE (ntp-dev-4.3.70.tar.gz) = 23677141 From owner-svn-ports-all@freebsd.org Tue Aug 11 05:14:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAC3599E96B; Tue, 11 Aug 2015 05:14:20 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB76F23C; Tue, 11 Aug 2015 05:14:20 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B5EKsc041849; Tue, 11 Aug 2015 05:14:20 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B5EKfD041847; Tue, 11 Aug 2015 05:14:20 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201508110514.t7B5EKfD041847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 11 Aug 2015 05:14:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393932 - head/devel/jenkins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 05:14:20 -0000 Author: lwhsu Date: Tue Aug 11 05:14:19 2015 New Revision: 393932 URL: https://svnweb.freebsd.org/changeset/ports/393932 Log: - Update to 1.624 Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Tue Aug 11 04:53:02 2015 (r393931) +++ head/devel/jenkins/Makefile Tue Aug 11 05:14:19 2015 (r393932) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 1.623 +PORTVERSION= 1.624 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Tue Aug 11 04:53:02 2015 (r393931) +++ head/devel/jenkins/distinfo Tue Aug 11 05:14:19 2015 (r393932) @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.623/jenkins.war) = 49c0f43f9e18b233de9506e7a23b86e215f76ea9f2b1fc392a5775d137f13f38 -SIZE (jenkins/1.623/jenkins.war) = 62880943 +SHA256 (jenkins/1.624/jenkins.war) = f8be718fe5ca3b025f53c89ddb484e1844995902816f739f93f5d2746e6db48a +SIZE (jenkins/1.624/jenkins.war) = 62882763 From owner-svn-ports-all@freebsd.org Tue Aug 11 06:32:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3CDC99DBCD; Tue, 11 Aug 2015 06:32:06 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93096173D; Tue, 11 Aug 2015 06:32:06 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B6W68Q074097; Tue, 11 Aug 2015 06:32:06 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B6W6t0074096; Tue, 11 Aug 2015 06:32:06 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508110632.t7B6W6t0074096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 11 Aug 2015 06:32:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393933 - head/textproc/libodfgen01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 06:32:06 -0000 Author: jkim Date: Tue Aug 11 06:32:05 2015 New Revision: 393933 URL: https://svnweb.freebsd.org/changeset/ports/393933 Log: Remove devel/gperf from BUILD_DEPENDS. It was never required. Modified: head/textproc/libodfgen01/Makefile Modified: head/textproc/libodfgen01/Makefile ============================================================================== --- head/textproc/libodfgen01/Makefile Tue Aug 11 05:14:19 2015 (r393932) +++ head/textproc/libodfgen01/Makefile Tue Aug 11 06:32:05 2015 (r393933) @@ -18,7 +18,7 @@ CONFIGURE_ARGS= --disable-werror --witho CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= compiler:features gperf libtool pathfix pkgconfig tar:xz +USES= compiler:features libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip From owner-svn-ports-all@freebsd.org Tue Aug 11 08:13:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D27EC99F415; Tue, 11 Aug 2015 08:13:26 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7625CC9; Tue, 11 Aug 2015 08:13:26 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B8DQ8H014620; Tue, 11 Aug 2015 08:13:26 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B8DOaH014613; Tue, 11 Aug 2015 08:13:24 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508110813.t7B8DOaH014613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 08:13:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393934 - in branches/2015Q3: Mk mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 08:13:26 -0000 Author: jbeich Date: Tue Aug 11 08:13:24 2015 New Revision: 393934 URL: https://svnweb.freebsd.org/changeset/ports/393934 Log: MFH: r393804 www/firefox: make testing bundled cairo easier via option BUNDLED_CAIRO does nothing with GTK3 until Firefox 41.0 https://bugzilla.mozilla.org/show_bug.cgi?id=1159273 PR: 202174 Approved by: ports-secteam (feld) Modified: branches/2015Q3/Mk/bsd.gecko.mk branches/2015Q3/mail/thunderbird/Makefile branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox/Makefile branches/2015Q3/www/firefox/Makefile.options branches/2015Q3/www/libxul/Makefile branches/2015Q3/www/seamonkey/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2015Q3/Mk/bsd.gecko.mk Tue Aug 11 06:32:05 2015 (r393933) +++ branches/2015Q3/Mk/bsd.gecko.mk Tue Aug 11 08:13:24 2015 (r393934) @@ -137,8 +137,10 @@ MOZ_OPTIONS+= --enable-jemalloc # Standard depends _ALL_DEPENDS= cairo event ffi graphite harfbuzz hunspell icu jpeg nspr nss opus png pixman soundtouch sqlite vorbis vpx +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} cairo_LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo cairo_MOZ_OPTIONS= --enable-system-cairo +.endif event_LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 event_MOZ_OPTIONS= --with-system-libevent Modified: branches/2015Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2015Q3/mail/thunderbird/Makefile Tue Aug 11 06:32:05 2015 (r393933) +++ branches/2015Q3/mail/thunderbird/Makefile Tue Aug 11 08:13:24 2015 (r393934) @@ -15,7 +15,6 @@ COMMENT= Mozilla Thunderbird is standalo BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -81,6 +80,10 @@ MOZ_OPTIONS:= ${MOZ_OPTIONS:S/${CONFIGUR RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Tue Aug 11 06:32:05 2015 (r393933) +++ branches/2015Q3/www/firefox-esr/Makefile Tue Aug 11 08:13:24 2015 (r393934) @@ -16,7 +16,6 @@ COMMENT= Web browser based on the browse BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -65,6 +64,10 @@ WRKSRC:= ${WRKDIR}/mozilla-esr38 RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Tue Aug 11 06:32:05 2015 (r393933) +++ branches/2015Q3/www/firefox/Makefile Tue Aug 11 08:13:24 2015 (r393934) @@ -15,7 +15,6 @@ COMMENT= Web browser based on the browse BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -63,6 +62,10 @@ WRKSRC:= ${WRKDIR}/mozilla-release RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: branches/2015Q3/www/firefox/Makefile.options ============================================================================== --- branches/2015Q3/www/firefox/Makefile.options Tue Aug 11 06:32:05 2015 (r393933) +++ branches/2015Q3/www/firefox/Makefile.options Tue Aug 11 08:13:24 2015 (r393934) @@ -1,13 +1,15 @@ # -*- makefile-bsdmake -*- -OPTIONS_DEFINE+= CANBERRA DBUS DEBUG DTRACE GCONF GIO GNOMEUI \ - GSTREAMER LIBPROXY LOGGING OPTIMIZED_CFLAGS \ +OPTIONS_DEFINE+= BUNDLED_CAIRO CANBERRA DBUS DEBUG DTRACE GCONF GIO \ + GNOMEUI GSTREAMER LIBPROXY LOGGING OPTIMIZED_CFLAGS \ PGO PROFILE TEST + OPTIONS_DEFAULT+= ALSA DBUS GIO GSTREAMER LOGGING OPTIMIZED_CFLAGS OPTIONS_MULTI+= AUDIO OPTIONS_MULTI_AUDIO= ALSA PULSEAUDIO +BUNDLED_CAIRO_DESC?= Use bundled fork of cairo-1.9.5 CANBERRA_DESC?= Sound theme alerts ENIGMAIL_DESC?= Enigmail extension GNOMEUI_DESC?= libgnomeui support module Modified: branches/2015Q3/www/libxul/Makefile ============================================================================== --- branches/2015Q3/www/libxul/Makefile Tue Aug 11 06:32:05 2015 (r393933) +++ branches/2015Q3/www/libxul/Makefile Tue Aug 11 08:13:24 2015 (r393934) @@ -14,7 +14,6 @@ COMMENT?= Mozilla runtime package that c BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -67,6 +66,10 @@ MOZ_PKGCONFIG_FILES+= mozilla-nss RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif Modified: branches/2015Q3/www/seamonkey/Makefile ============================================================================== --- branches/2015Q3/www/seamonkey/Makefile Tue Aug 11 06:32:05 2015 (r393933) +++ branches/2015Q3/www/seamonkey/Makefile Tue Aug 11 08:13:24 2015 (r393934) @@ -16,7 +16,6 @@ COMMENT= The open source, standards comp BUILD_DEPENDS= nspr>=4.10.6:${PORTSDIR}/devel/nspr \ nss>=3.17.4:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -79,6 +78,10 @@ XPI_LIBDIR= ${PREFIX}/lib/xpi RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif From owner-svn-ports-all@freebsd.org Tue Aug 11 08:52:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E907699FF6F; Tue, 11 Aug 2015 08:52:00 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD1B03CB; Tue, 11 Aug 2015 08:52:00 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7B8q0XQ030793; Tue, 11 Aug 2015 08:52:00 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7B8pxEY030785; Tue, 11 Aug 2015 08:51:59 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508110851.t7B8pxEY030785@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 11 Aug 2015 08:51:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393935 - in head/devel: . R-cran-doParallel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 08:52:01 -0000 Author: tota Date: Tue Aug 11 08:51:58 2015 New Revision: 393935 URL: https://svnweb.freebsd.org/changeset/ports/393935 Log: - Add new port: devel/R-cran-doParallel Provides a parallel backend for the %dopar% function using the parallel package. WWW: https://cran.r-project.org/web/packages/doParallel/ Added: head/devel/R-cran-doParallel/ head/devel/R-cran-doParallel/Makefile (contents, props changed) head/devel/R-cran-doParallel/distinfo (contents, props changed) head/devel/R-cran-doParallel/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Aug 11 08:13:24 2015 (r393934) +++ head/devel/Makefile Tue Aug 11 08:51:58 2015 (r393935) @@ -19,6 +19,7 @@ SUBDIR += R-cran-caTools SUBDIR += R-cran-caret SUBDIR += R-cran-chron + SUBDIR += R-cran-doParallel SUBDIR += R-cran-evaluate SUBDIR += R-cran-foreach SUBDIR += R-cran-gbm Added: head/devel/R-cran-doParallel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-doParallel/Makefile Tue Aug 11 08:51:58 2015 (r393935) @@ -0,0 +1,19 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= doParallel +PORTVERSION= 1.0.8 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Foreach parallel adaptor for the parallel package + +LICENSE= GPLv2 + +RUN_DEPENDS= R-cran-foreach>=1.2.0:${PORTSDIR}/devel/R-cran-foreach \ + R-cran-iterators>=1.0.0:${PORTSDIR}/devel/R-cran-iterators + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-doParallel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-doParallel/distinfo Tue Aug 11 08:51:58 2015 (r393935) @@ -0,0 +1,2 @@ +SHA256 (doParallel_1.0.8.tar.gz) = dd0a03106304e14aac9a93e65dae189e9593c99eb8a94bc8644be32d2de6ccfc +SIZE (doParallel_1.0.8.tar.gz) = 172665 Added: head/devel/R-cran-doParallel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-doParallel/pkg-descr Tue Aug 11 08:51:58 2015 (r393935) @@ -0,0 +1,4 @@ +Provides a parallel backend for the %dopar% function using the +parallel package. + +WWW: https://cran.r-project.org/web/packages/doParallel/ From owner-svn-ports-all@freebsd.org Tue Aug 11 11:09:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4343499EEE9; Tue, 11 Aug 2015 11:09:18 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A2826A3; Tue, 11 Aug 2015 11:09:18 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BB9Hqj083851; Tue, 11 Aug 2015 11:09:17 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BB9HD7083849; Tue, 11 Aug 2015 11:09:17 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201508111109.t7BB9HD7083849@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Tue, 11 Aug 2015 11:09:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393936 - head/mail/cyrus-imapd25 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 11:09:18 -0000 Author: ume Date: Tue Aug 11 11:09:16 2015 New Revision: 393936 URL: https://svnweb.freebsd.org/changeset/ports/393936 Log: Update to 2.5.5. Modified: head/mail/cyrus-imapd25/Makefile head/mail/cyrus-imapd25/distinfo Modified: head/mail/cyrus-imapd25/Makefile ============================================================================== --- head/mail/cyrus-imapd25/Makefile Tue Aug 11 08:51:58 2015 (r393935) +++ head/mail/cyrus-imapd25/Makefile Tue Aug 11 11:09:16 2015 (r393936) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cyrus-imapd -PORTVERSION= 2.5.4 +PORTVERSION= 2.5.5 #PORTREVISION= 0 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-imapd/ \ @@ -231,8 +231,8 @@ post-install: .endfor .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} - @${MKDIR} ${STAGEDIR}${DOCSDIR}/man - @${MKDIR} ${STAGEDIR}${DOCSDIR}/text +# @${MKDIR} ${STAGEDIR}${DOCSDIR}/man +# @${MKDIR} ${STAGEDIR}${DOCSDIR}/text .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/doc/${f}.html ${STAGEDIR}${DOCSDIR} @${ECHO_CMD} share/doc/${PORTNAME}/${f}.html >>${TMPPLIST} @@ -249,11 +249,11 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR} @${ECHO_CMD} share/doc/${PORTNAME}/${f} >>${TMPPLIST} .endfor -.for f in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/doc/text/${f} \ - ${STAGEDIR}${DOCSDIR}/text - @${ECHO_CMD} share/doc/${PORTNAME}/text/${f} >>${TMPPLIST} -.endfor +#.for f in ${DOCS} +# @${INSTALL_DATA} ${WRKSRC}/doc/text/${f} \ +# ${STAGEDIR}${DOCSDIR}/text +# @${ECHO_CMD} share/doc/${PORTNAME}/text/${f} >>${TMPPLIST} +#.endfor .endif @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @${INSTALL_DATA} ${FILESDIR}/imapd.conf \ Modified: head/mail/cyrus-imapd25/distinfo ============================================================================== --- head/mail/cyrus-imapd25/distinfo Tue Aug 11 08:51:58 2015 (r393935) +++ head/mail/cyrus-imapd25/distinfo Tue Aug 11 11:09:16 2015 (r393936) @@ -1,2 +1,2 @@ -SHA256 (cyrus-imapd-2.5.4.tar.gz) = 98839d2865c0ff5c5dc0f59aba54ad111135697c3383919e037651d90f00aaaa -SIZE (cyrus-imapd-2.5.4.tar.gz) = 3070894 +SHA256 (cyrus-imapd-2.5.5.tar.gz) = 6cfd45856c869921fa8f89da9be9d5c640757011a678f964252e95a753182eee +SIZE (cyrus-imapd-2.5.5.tar.gz) = 2940177 From owner-svn-ports-all@freebsd.org Tue Aug 11 11:15:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A5E199E0A3; Tue, 11 Aug 2015 11:15:16 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B3C2B2B; Tue, 11 Aug 2015 11:15:16 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BBFGGa087806; Tue, 11 Aug 2015 11:15:16 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BBFFx5087803; Tue, 11 Aug 2015 11:15:15 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201508111115.t7BBFFx5087803@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Tue, 11 Aug 2015 11:15:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393937 - head/www/pecl-http X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 11:15:16 -0000 Author: bofh Date: Tue Aug 11 11:15:14 2015 New Revision: 393937 URL: https://svnweb.freebsd.org/changeset/ports/393937 Log: www/pecl-http: Update version 2.5.0=>2.5.1 Modified: head/www/pecl-http/Makefile head/www/pecl-http/distinfo Modified: head/www/pecl-http/Makefile ============================================================================== --- head/www/pecl-http/Makefile Tue Aug 11 11:09:16 2015 (r393936) +++ head/www/pecl-http/Makefile Tue Aug 11 11:15:14 2015 (r393937) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= http -PORTVERSION= 2.5.0 +PORTVERSION= 2.5.1 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/www/pecl-http/distinfo ============================================================================== --- head/www/pecl-http/distinfo Tue Aug 11 11:09:16 2015 (r393936) +++ head/www/pecl-http/distinfo Tue Aug 11 11:15:14 2015 (r393937) @@ -1,2 +1,2 @@ -SHA256 (pecl_http-2.5.0.tgz) = 068fff6dcf161a91c9abff6f70a924e540e44d63e5224f5c1191b8c89b7ddc89 -SIZE (pecl_http-2.5.0.tgz) = 190149 +SHA256 (pecl_http-2.5.1.tgz) = 80e4b1a33b2f6521dbcdaa7566601b7632f17a01745554e7b95809ae93ab1eaf +SIZE (pecl_http-2.5.1.tgz) = 191275 From owner-svn-ports-all@freebsd.org Tue Aug 11 12:17:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB22699F531; Tue, 11 Aug 2015 12:17:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBCEE626; Tue, 11 Aug 2015 12:17:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BCHtY1013454; Tue, 11 Aug 2015 12:17:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BCHtRt013453; Tue, 11 Aug 2015 12:17:55 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111217.t7BCHtRt013453@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 12:17:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393938 - head/mail/p5-qpsmtpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 12:17:56 -0000 Author: amdmi3 Date: Tue Aug 11 12:17:54 2015 New Revision: 393938 URL: https://svnweb.freebsd.org/changeset/ports/393938 Log: - Drop @dirrm* from plist Approved by: portmgr blanket Modified: head/mail/p5-qpsmtpd/pkg-plist Modified: head/mail/p5-qpsmtpd/pkg-plist ============================================================================== --- head/mail/p5-qpsmtpd/pkg-plist Tue Aug 11 11:15:14 2015 (r393937) +++ head/mail/p5-qpsmtpd/pkg-plist Tue Aug 11 12:17:54 2015 (r393938) @@ -148,12 +148,3 @@ man/man1/qpsmtpd-async.1.gz %%SITE_PERL%%/Qpsmtpd/Transaction.pm %%SITE_PERL%%/Qpsmtpd/Utils.pm %%SITE_PERL%%/UPGRADING.pod -@dirrmtry %%DATADIR%% -@dirrmtry %%DATADIR%%/plugins -@dirrmtry %%DATADIR%%/plugins/async -@dirrmtry %%DATADIR%%/plugins/async/queue -@dirrmtry %%DATADIR%%/plugins/auth -@dirrmtry %%DATADIR%%/plugins/ident -@dirrmtry %%DATADIR%%/plugins/logging -@dirrmtry %%DATADIR%%/plugins/queue -@dirrmtry %%DATADIR%%/plugins/virus From owner-svn-ports-all@freebsd.org Tue Aug 11 12:18:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7438299F56F; Tue, 11 Aug 2015 12:18:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6488F774; Tue, 11 Aug 2015 12:18:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BCIIN6013592; Tue, 11 Aug 2015 12:18:18 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BCIHkm013578; Tue, 11 Aug 2015 12:18:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111218.t7BCIHkm013578@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 12:18:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393939 - head/www/linux-c6-qt47-webkit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 12:18:18 -0000 Author: amdmi3 Date: Tue Aug 11 12:18:17 2015 New Revision: 393939 URL: https://svnweb.freebsd.org/changeset/ports/393939 Log: - Drop @dirrm* from plist Approved by: portmgr blanket Modified: head/www/linux-c6-qt47-webkit/pkg-plist.i686 head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 Modified: head/www/linux-c6-qt47-webkit/pkg-plist.i686 ============================================================================== --- head/www/linux-c6-qt47-webkit/pkg-plist.i686 Tue Aug 11 12:17:54 2015 (r393938) +++ head/www/linux-c6-qt47-webkit/pkg-plist.i686 Tue Aug 11 12:18:17 2015 (r393939) @@ -4,6 +4,3 @@ usr/lib/qt47/libQtWebKit.so.4.7 usr/lib/qt47/libQtWebKit.so.4.7.2 usr/lib/qt47/plugins/designer/libqwebview.so usr/lib/qt47/imports/QtWebKit/qmldir -@dirrm usr/lib/qt47/imports/QtWebKit -@dirrmtry usr/lib/qt47/plugins/designer -@dirrmtry usr/lib/qt47/plugins Modified: head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 ============================================================================== --- head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 Tue Aug 11 12:17:54 2015 (r393938) +++ head/www/linux-c6-qt47-webkit/pkg-plist.x86_64 Tue Aug 11 12:18:17 2015 (r393939) @@ -4,6 +4,3 @@ usr/lib64/qt47/libQtWebKit.so.4.7 usr/lib64/qt47/libQtWebKit.so.4.7.2 usr/lib64/qt47/plugins/designer/libqwebview.so usr/lib64/qt47/imports/QtWebKit/qmldir -@dirrm usr/lib64/qt47/imports/QtWebKit -@dirrmtry usr/lib64/qt47/plugins/designer -@dirrmtry usr/lib64/qt47/plugins From owner-svn-ports-all@freebsd.org Tue Aug 11 12:18:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6EE299F573; Tue, 11 Aug 2015 12:18:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D752776; Tue, 11 Aug 2015 12:18:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BCIJvE013678; Tue, 11 Aug 2015 12:18:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BCIJsS013676; Tue, 11 Aug 2015 12:18:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111218.t7BCIJsS013676@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 12:18:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393940 - head/security/linux-c6-libgpg-error X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 12:18:19 -0000 Author: amdmi3 Date: Tue Aug 11 12:18:18 2015 New Revision: 393940 URL: https://svnweb.freebsd.org/changeset/ports/393940 Log: - Drop @dirrm* from plist Approved by: portmgr blanket Modified: head/security/linux-c6-libgpg-error/pkg-plist.i686 head/security/linux-c6-libgpg-error/pkg-plist.x86_64 Modified: head/security/linux-c6-libgpg-error/pkg-plist.i686 ============================================================================== --- head/security/linux-c6-libgpg-error/pkg-plist.i686 Tue Aug 11 12:18:17 2015 (r393939) +++ head/security/linux-c6-libgpg-error/pkg-plist.i686 Tue Aug 11 12:18:18 2015 (r393940) @@ -13,22 +13,3 @@ usr/share/locale/pl/LC_MESSAGES/libgpg-e usr/share/locale/ro/LC_MESSAGES/libgpg-error.mo usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo -@dirrmtry usr/share/locale/vi/LC_MESSAGES -@dirrmtry usr/share/locale/vi -@dirrmtry usr/share/locale/sv/LC_MESSAGES -@dirrmtry usr/share/locale/sv -@dirrmtry usr/share/locale/ro/LC_MESSAGES -@dirrmtry usr/share/locale/ro -@dirrmtry usr/share/locale/pl/LC_MESSAGES -@dirrmtry usr/share/locale/pl -@dirrmtry usr/share/locale/fr/LC_MESSAGES -@dirrmtry usr/share/locale/fr -@dirrmtry usr/share/locale/de/LC_MESSAGES -@dirrmtry usr/share/locale/de -@dirrmtry usr/share/locale -@dirrmtry usr/share/doc/libgpg-error-1.7 -@dirrmtry usr/share/doc -@dirrmtry usr/share -@dirrmtry usr/bin -@dirrmtry usr -@dirrmtry lib Modified: head/security/linux-c6-libgpg-error/pkg-plist.x86_64 ============================================================================== --- head/security/linux-c6-libgpg-error/pkg-plist.x86_64 Tue Aug 11 12:18:17 2015 (r393939) +++ head/security/linux-c6-libgpg-error/pkg-plist.x86_64 Tue Aug 11 12:18:18 2015 (r393940) @@ -13,22 +13,3 @@ usr/share/locale/pl/LC_MESSAGES/libgpg-e usr/share/locale/ro/LC_MESSAGES/libgpg-error.mo usr/share/locale/sv/LC_MESSAGES/libgpg-error.mo usr/share/locale/vi/LC_MESSAGES/libgpg-error.mo -@dirrmtry usr/share/locale/vi/LC_MESSAGES -@dirrmtry usr/share/locale/vi -@dirrmtry usr/share/locale/sv/LC_MESSAGES -@dirrmtry usr/share/locale/sv -@dirrmtry usr/share/locale/ro/LC_MESSAGES -@dirrmtry usr/share/locale/ro -@dirrmtry usr/share/locale/pl/LC_MESSAGES -@dirrmtry usr/share/locale/pl -@dirrmtry usr/share/locale/fr/LC_MESSAGES -@dirrmtry usr/share/locale/fr -@dirrmtry usr/share/locale/de/LC_MESSAGES -@dirrmtry usr/share/locale/de -@dirrmtry usr/share/locale -@dirrmtry usr/share/doc/libgpg-error-1.7 -@dirrmtry usr/share/doc -@dirrmtry usr/share -@dirrmtry usr/bin -@dirrmtry usr -@dirrmtry lib64 From owner-svn-ports-all@freebsd.org Tue Aug 11 13:22:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4B3699E5FF; Tue, 11 Aug 2015 13:22:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BE645272; Tue, 11 Aug 2015 13:22:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BDMwPi043153; Tue, 11 Aug 2015 13:22:58 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BDMtAD043138; Tue, 11 Aug 2015 13:22:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508111322.t7BDMtAD043138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 13:22:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393941 - in head: mail/thunderbird mail/thunderbird/files multimedia/openh264 multimedia/openh264/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files www/libxul w... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 13:22:58 -0000 Author: jbeich Date: Tue Aug 11 13:22:54 2015 New Revision: 393941 URL: https://svnweb.freebsd.org/changeset/ports/393941 Log: Switch OpenH264 plugin to use environment variable files/patch-system-openh264 causes patch churn on updates and hits assertion with DEBUG=on[1]. Rework to use MOZ_GMP_PATH instead. While here populate Last Updated field to avoid falling back to Epoch start and disable Automatic Updates in an unlikely case of - Cisco & Mozilla providing prebuilt version for FreeBSD - Firefox running with root priveleges i.e., write permission under /usr/local PR: 202218 [1] Reported by: kib, pi [1] Inspired by: Gentoo MFH: 2015Q3 Deleted: head/mail/thunderbird/files/patch-system-openh264 head/www/firefox-esr/files/patch-system-openh264 head/www/firefox/files/patch-system-openh264 head/www/libxul/files/patch-system-openh264 head/www/seamonkey/files/patch-system-openh264 Modified: head/mail/thunderbird/Makefile head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp head/multimedia/openh264/Makefile head/multimedia/openh264/files/gmpopenh264.js.in head/www/firefox-esr/Makefile head/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp head/www/firefox/Makefile head/www/firefox/files/patch-browser-app-nsBrowserApp.cpp head/www/libxul/Makefile head/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp head/www/seamonkey/Makefile head/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Tue Aug 11 12:18:18 2015 (r393940) +++ head/mail/thunderbird/Makefile Tue Aug 11 13:22:54 2015 (r393941) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.1.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp ============================================================================== --- head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Tue Aug 11 12:18:18 2015 (r393940) +++ head/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Tue Aug 11 13:22:54 2015 (r393941) @@ -1,10 +1,12 @@ --- mail/app/nsMailApp.cpp~ +++ mail/app/nsMailApp.cpp -@@ -320,6 +320,7 @@ int main(int argc, char* argv[]) +@@ -320,6 +320,9 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); ++ int gotCounters; #if defined(XP_UNIX) struct rusage initialRUsage; Modified: head/multimedia/openh264/Makefile ============================================================================== --- head/multimedia/openh264/Makefile Tue Aug 11 12:18:18 2015 (r393940) +++ head/multimedia/openh264/Makefile Tue Aug 11 13:22:54 2015 (r393941) @@ -3,7 +3,7 @@ PORTNAME= openh264 PORTVERSION= 1.4.0 DISTVERSIONPREFIX=v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MAINTAINER= gecko@FreeBSD.org @@ -35,7 +35,7 @@ PLUGINS_USES= webplugin:gecko WEBPLUGIN_NAME= gmp-gmp${PORTNAME} WEBPLUGIN_FILES=gmp${PORTNAME}.info libgmp${PORTNAME}.so SUB_FILES+= gmp${PORTNAME}.js -SUB_LIST+= PORTVERSION=${PORTVERSION} WEBPLUGIN_DIR="${WEBPLUGIN_DIR}" +SUB_LIST+= PORTVERSION=${PORTVERSION} TIMESTAMP="`date +%s`" TEST_BUILD_DEPENDS=googletest>=1.6.0:${PORTSDIR}/devel/googletest TEST_CFLAGS= -I${LOCALBASE}/include Modified: head/multimedia/openh264/files/gmpopenh264.js.in ============================================================================== --- head/multimedia/openh264/files/gmpopenh264.js.in Tue Aug 11 12:18:18 2015 (r393940) +++ head/multimedia/openh264/files/gmpopenh264.js.in Tue Aug 11 13:22:54 2015 (r393941) @@ -1,2 +1,3 @@ -pref("media.gmp-gmpopenh264.path", "%%WEBPLUGIN_DIR%%"); +pref("media.gmp-gmpopenh264.autoupdate", false); +pref("media.gmp-gmpopenh264.lastUpdate", %%TIMESTAMP%%); pref("media.gmp-gmpopenh264.version", "%%PORTVERSION%%"); Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/firefox-esr/Makefile Tue Aug 11 13:22:54 2015 (r393941) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: head/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp ============================================================================== --- head/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 13:22:54 2015 (r393941) @@ -1,9 +1,10 @@ --- browser/app/nsBrowserApp.cpp~ +++ browser/app/nsBrowserApp.cpp -@@ -334,6 +334,7 @@ int main(int argc, char* argv[]) +@@ -417,6 +417,8 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); int gotCounters; #if defined(XP_UNIX) Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/firefox/Makefile Tue Aug 11 13:22:54 2015 (r393941) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: head/www/firefox/files/patch-browser-app-nsBrowserApp.cpp ============================================================================== --- head/www/firefox/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/firefox/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 13:22:54 2015 (r393941) @@ -1,9 +1,10 @@ --- browser/app/nsBrowserApp.cpp~ +++ browser/app/nsBrowserApp.cpp -@@ -334,6 +334,7 @@ int main(int argc, char* argv[]) +@@ -417,6 +417,8 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); int gotCounters; #if defined(XP_UNIX) Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/libxul/Makefile Tue Aug 11 13:22:54 2015 (r393941) @@ -3,6 +3,7 @@ PORTNAME= libxul DISTVERSION= 38.2.0 +PORTREVISION= 1 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source Modified: head/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp ============================================================================== --- head/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp Tue Aug 11 13:22:54 2015 (r393941) @@ -1,9 +1,10 @@ --- xulrunner/stub/nsXULStub.cpp~ +++ xulrunner/stub/nsXULStub.cpp -@@ -202,6 +202,8 @@ main(int argc, char **argv) +@@ -160,6 +160,9 @@ main(int argc, char **argv) char greDir[MAXPATHLEN]; bool greFound = false; ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + #if defined(XP_MACOSX) Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/seamonkey/Makefile Tue Aug 11 13:22:54 2015 (r393941) @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.33.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp ============================================================================== --- head/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp Tue Aug 11 12:18:18 2015 (r393940) +++ head/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp Tue Aug 11 13:22:54 2015 (r393941) @@ -1,11 +1,21 @@ --- suite/app/nsSuiteApp.cpp~ +++ suite/app/nsSuiteApp.cpp -@@ -215,6 +215,8 @@ int main(int argc, char* argv[]) - #ifdef XP_MACOSX +@@ -331,6 +331,9 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif -+ + ++ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); - - nsresult rv = mozilla::BinaryPath::Get(argv[0], exePath); - if (NS_FAILED(rv)) { ++ + int gotCounters; + #if defined(XP_UNIX) + struct rusage initialRUsage; +@@ -339,7 +342,7 @@ int main(int argc, char* argv[]) + IO_COUNTERS ioCounters; + gotCounters = GetProcessIoCounters(GetCurrentProcess(), &ioCounters); + #endif +- ++ + nsIFile *xreDirectory; + + #ifdef HAS_DLL_BLOCKLIST From owner-svn-ports-all@freebsd.org Tue Aug 11 13:27:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC99599E6A2; Tue, 11 Aug 2015 13:27:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3B9F62A; Tue, 11 Aug 2015 13:27:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BDRiCl043494; Tue, 11 Aug 2015 13:27:44 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BDRiik043493; Tue, 11 Aug 2015 13:27:44 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201508111327.t7BDRiik043493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 11 Aug 2015 13:27:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393942 - head/net-mgmt/net-snmp/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 13:27:44 -0000 Author: mat Date: Tue Aug 11 13:27:43 2015 New Revision: 393942 URL: https://svnweb.freebsd.org/changeset/ports/393942 Log: Fix build with lang/perl5-devel after 16d89be. Approved by: zi Obtained from: Jarkko Hietaniemi Sponsored by: Absolight Added: head/net-mgmt/net-snmp/files/patch-perl5.23 (contents, props changed) Added: head/net-mgmt/net-snmp/files/patch-perl5.23 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/net-snmp/files/patch-perl5.23 Tue Aug 11 13:27:43 2015 (r393942) @@ -0,0 +1,65 @@ +--- agent/snmp_perl.c.orig 2015-08-11 13:07:06 UTC ++++ agent/snmp_perl.c +@@ -5,6 +5,10 @@ + #include + #include "perl.h" + ++#ifdef U64TYPE ++#define U64 U64pairU32 ++#endif ++ + #include + #include + #include +--- perl/OID/OID.xs.orig 2015-08-11 13:07:28 UTC ++++ perl/OID/OID.xs +@@ -7,6 +7,10 @@ + #include "perl.h" + #include "XSUB.h" + ++#ifdef U64TYPE ++#define U64 U64pairU32 ++#endif ++ + #include + #include + +--- perl/SNMP/SNMP.xs.orig 2015-08-11 13:07:54 UTC ++++ perl/SNMP/SNMP.xs +@@ -16,6 +16,10 @@ + #include "perl.h" + #include "XSUB.h" + ++#ifdef U64TYPE ++#define U64 U64pairU32 ++#endif ++ + #include + #include + #include +--- perl/TrapReceiver/TrapReceiver.xs.orig 2015-08-11 13:08:02 UTC ++++ perl/TrapReceiver/TrapReceiver.xs +@@ -9,6 +9,10 @@ + + #include "ppport.h" + ++#ifdef U64TYPE ++#define U64 U64pairU32 ++#endif ++ + #include + #include + #include +--- perl/agent/agent.xs.orig 2015-08-11 13:07:48 UTC ++++ perl/agent/agent.xs +@@ -9,6 +9,10 @@ + #include + #include + ++#ifdef U64TYPE ++#define U64 U64pairU32 ++#endif ++ + #include + #include + #include From owner-svn-ports-all@freebsd.org Tue Aug 11 14:49:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A209099F980; Tue, 11 Aug 2015 14:49:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92F691A8C; Tue, 11 Aug 2015 14:49:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BEnBbS076089; Tue, 11 Aug 2015 14:49:11 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BEnBGR076088; Tue, 11 Aug 2015 14:49:11 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111449.t7BEnBGR076088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 14:49:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393943 - head/security/razorback-swfScanner X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 14:49:11 -0000 Author: amdmi3 Date: Tue Aug 11 14:49:10 2015 New Revision: 393943 URL: https://svnweb.freebsd.org/changeset/ports/393943 Log: - Switch to USES=autoreconf Modified: head/security/razorback-swfScanner/Makefile Modified: head/security/razorback-swfScanner/Makefile ============================================================================== --- head/security/razorback-swfScanner/Makefile Tue Aug 11 13:27:43 2015 (r393942) +++ head/security/razorback-swfScanner/Makefile Tue Aug 11 14:49:10 2015 (r393943) @@ -22,8 +22,7 @@ RUN_DEPENDS= razorback-masterNugget>=0.5 RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig USE_LDCONFIG= ${RB_LIBDIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Tue Aug 11 14:49:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91D1F99F9B8; Tue, 11 Aug 2015 14:49:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82A901B7D; Tue, 11 Aug 2015 14:49:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BEnJvC076192; Tue, 11 Aug 2015 14:49:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BEnJAm076191; Tue, 11 Aug 2015 14:49:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111449.t7BEnJAm076191@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 14:49:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393944 - head/security/razorback-masterNugget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 14:49:19 -0000 Author: amdmi3 Date: Tue Aug 11 14:49:18 2015 New Revision: 393944 URL: https://svnweb.freebsd.org/changeset/ports/393944 Log: - Switch to USES=autoreconf Modified: head/security/razorback-masterNugget/Makefile Modified: head/security/razorback-masterNugget/Makefile ============================================================================== --- head/security/razorback-masterNugget/Makefile Tue Aug 11 14:49:10 2015 (r393943) +++ head/security/razorback-masterNugget/Makefile Tue Aug 11 14:49:18 2015 (r393944) @@ -18,8 +18,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= librazorback_api.so:${PORTSDIR}/security/razorback-api \ libjson-c.so:${PORTSDIR}/devel/json-c -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig GNU_CONFIGURE= yes USE_RC_SUBR= masterNugget masterNugget_safed CPPFLAGS+= -I${LOCALBASE}/include From owner-svn-ports-all@freebsd.org Tue Aug 11 15:19:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C681A99F17D; Tue, 11 Aug 2015 15:19:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B724335D; Tue, 11 Aug 2015 15:19:41 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BFJfkQ088404; Tue, 11 Aug 2015 15:19:41 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BFJf4k088403; Tue, 11 Aug 2015 15:19:41 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111519.t7BFJf4k088403@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 15:19:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393945 - head/security/razorback-syslogNugget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 15:19:41 -0000 Author: amdmi3 Date: Tue Aug 11 15:19:40 2015 New Revision: 393945 URL: https://svnweb.freebsd.org/changeset/ports/393945 Log: - Switch to USES=autoreconf Modified: head/security/razorback-syslogNugget/Makefile Modified: head/security/razorback-syslogNugget/Makefile ============================================================================== --- head/security/razorback-syslogNugget/Makefile Tue Aug 11 14:49:18 2015 (r393944) +++ head/security/razorback-syslogNugget/Makefile Tue Aug 11 15:19:40 2015 (r393945) @@ -20,10 +20,9 @@ LIB_DEPENDS= librazorback_api.so:${PORTS BUILD_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget RUN_DEPENDS= razorback-masterNugget>=0.5.0:${PORTSDIR}/security/razorback-masterNugget -USES= libtool pkgconfig +USES= autoreconf libtool pkgconfig RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf USE_LDCONFIG= ${RB_LIBDIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Tue Aug 11 15:45:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F217399F716; Tue, 11 Aug 2015 15:45:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E2A1982C; Tue, 11 Aug 2015 15:45:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BFjbWH000653; Tue, 11 Aug 2015 15:45:37 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BFjb5r000652; Tue, 11 Aug 2015 15:45:37 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111545.t7BFjb5r000652@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 15:45:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393946 - head/security/razorback-scriptNugget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 15:45:38 -0000 Author: amdmi3 Date: Tue Aug 11 15:45:37 2015 New Revision: 393946 URL: https://svnweb.freebsd.org/changeset/ports/393946 Log: - Switch to USES=autoreconf Modified: head/security/razorback-scriptNugget/Makefile Modified: head/security/razorback-scriptNugget/Makefile ============================================================================== --- head/security/razorback-scriptNugget/Makefile Tue Aug 11 15:19:40 2015 (r393945) +++ head/security/razorback-scriptNugget/Makefile Tue Aug 11 15:45:37 2015 (r393946) @@ -22,8 +22,7 @@ RUN_DEPENDS= razorback-masterNugget>=0.5 rubygem-razorback-scriptNugget>=0.5.0:${PORTSDIR}/security/rubygem-razorback-scriptNugget RB_LIBDIR?= ${PREFIX}/lib/razorback -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig USE_GNOME= libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-ruby From owner-svn-ports-all@freebsd.org Tue Aug 11 16:12:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E69A399FE1B; Tue, 11 Aug 2015 16:12:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7A33EB; Tue, 11 Aug 2015 16:12:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BGC2fn012925; Tue, 11 Aug 2015 16:12:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BGC2oe012924; Tue, 11 Aug 2015 16:12:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508111612.t7BGC2oe012924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 16:12:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393947 - head/multimedia/openh264 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 16:12:03 -0000 Author: jbeich Date: Tue Aug 11 16:12:02 2015 New Revision: 393947 URL: https://svnweb.freebsd.org/changeset/ports/393947 Log: multimedia/openh264: arm* don't need nasm to build *.S files PR: 201273 Modified: head/multimedia/openh264/Makefile Modified: head/multimedia/openh264/Makefile ============================================================================== --- head/multimedia/openh264/Makefile Tue Aug 11 15:45:37 2015 (r393946) +++ head/multimedia/openh264/Makefile Tue Aug 11 16:12:02 2015 (r393947) @@ -45,7 +45,7 @@ TEST_ALL_TARGET=test .include .if ! ${PORT_OPTIONS:MDEBUG} -. if ${ARCH} == amd64 || ${ARCH} == arm || ${ARCH} == i386 +. if ${ARCH} == amd64 || ${ARCH} == i386 BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm . endif .endif From owner-svn-ports-all@freebsd.org Tue Aug 11 16:36:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 834DC99E379; Tue, 11 Aug 2015 16:36:00 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 599062F7; Tue, 11 Aug 2015 16:36:00 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BGa00Z022205; Tue, 11 Aug 2015 16:36:00 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BGZxA2022195; Tue, 11 Aug 2015 16:35:59 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201508111635.t7BGZxA2022195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Tue, 11 Aug 2015 16:35:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393948 - in head/devel: libvirt py-libvirt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 16:36:00 -0000 Author: jgh Date: Tue Aug 11 16:35:58 2015 New Revision: 393948 URL: https://svnweb.freebsd.org/changeset/ports/393948 Log: - update devel/libvirt and devel/py-libvirt to 1.2.18 http://libvirt.org/git/?p=libvirt.git;a=shortlog;h=refs/tags/v1.2.18 Modified: head/devel/libvirt/Makefile head/devel/libvirt/distinfo head/devel/py-libvirt/Makefile head/devel/py-libvirt/distinfo Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Tue Aug 11 16:12:02 2015 (r393947) +++ head/devel/libvirt/Makefile Tue Aug 11 16:35:58 2015 (r393948) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 1.2.17 +PORTVERSION= 1.2.18 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ Modified: head/devel/libvirt/distinfo ============================================================================== --- head/devel/libvirt/distinfo Tue Aug 11 16:12:02 2015 (r393947) +++ head/devel/libvirt/distinfo Tue Aug 11 16:35:58 2015 (r393948) @@ -1,2 +1,2 @@ -SHA256 (libvirt-1.2.17.tar.gz) = e07eaf20b0590fae05ba3b53ad4dac3e5fbd771437563cc78b692f23ddd02fad -SIZE (libvirt-1.2.17.tar.gz) = 29320317 +SHA256 (libvirt-1.2.18.tar.gz) = d5a5ff18af4cced21fed986d28fa0a21b782d256920326bf0ff1c7731eeb6ade +SIZE (libvirt-1.2.18.tar.gz) = 29412554 Modified: head/devel/py-libvirt/Makefile ============================================================================== --- head/devel/py-libvirt/Makefile Tue Aug 11 16:12:02 2015 (r393947) +++ head/devel/py-libvirt/Makefile Tue Aug 11 16:35:58 2015 (r393948) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libvirt -PORTVERSION= 1.2.17 +PORTVERSION= 1.2.18 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/python/ \ ftp://libvirt.org/libvirt/python/ Modified: head/devel/py-libvirt/distinfo ============================================================================== --- head/devel/py-libvirt/distinfo Tue Aug 11 16:12:02 2015 (r393947) +++ head/devel/py-libvirt/distinfo Tue Aug 11 16:35:58 2015 (r393948) @@ -1,2 +1,2 @@ -SHA256 (libvirt-python-1.2.17.tar.gz) = f4d3db4012a800a2519e62bbef4ce14a37e030a20ab18f5b66759533a39b36ed -SIZE (libvirt-python-1.2.17.tar.gz) = 170511 +SHA256 (libvirt-python-1.2.18.tar.gz) = 204535ef160c9d10600b5fc3417f00f382e74b137a85b33774b97eb36d8a3638 +SIZE (libvirt-python-1.2.18.tar.gz) = 171009 From owner-svn-ports-all@freebsd.org Tue Aug 11 17:24:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A516D99EE8A; Tue, 11 Aug 2015 17:24:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95F261E1D; Tue, 11 Aug 2015 17:24:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHOXWp043067; Tue, 11 Aug 2015 17:24:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHOXfT043066; Tue, 11 Aug 2015 17:24:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111724.t7BHOXfT043066@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 17:24:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393949 - head/devel/cdash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:24:33 -0000 Author: amdmi3 Date: Tue Aug 11 17:24:32 2015 New Revision: 393949 URL: https://svnweb.freebsd.org/changeset/ports/393949 Log: - Add LICENSE_FILE - Add NO_ARCH - Cosmetic fixes Modified: head/devel/cdash/Makefile Modified: head/devel/cdash/Makefile ============================================================================== --- head/devel/cdash/Makefile Tue Aug 11 16:35:58 2015 (r393948) +++ head/devel/cdash/Makefile Tue Aug 11 17:24:32 2015 (r393949) @@ -11,23 +11,24 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Web-based software testing server LICENSE= BSD3CLAUSE - -OPTIONS_MULTI= DB -OPTIONS_MULTI_DB= MYSQL PGSQL -OPTIONS_DEFAULT=MYSQL +LICENSE_FILE= ${WRKSRC}/License.txt USES= dos2unix cmake:outsource zip DOS2UNIX_GLOB= *.php *.xml *.xsl *.txt - -CMAKE_ARGS+= -DCDASH_DB_NAME:STRING=cdash \ +CMAKE_ARGS= -DCDASH_DB_NAME:STRING=cdash \ -DCDASH_DB_LOGIN:STRING=cdash \ -DCDASH_DB_TYPE:STRING=${DB_TYPE} USE_PHP= curl gd pdo session xsl zlib +NO_ARCH= yes WRKSRC= ${WRKDIR}/${DISTNAME:S/./-/g} PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" SUB_FILES= pkg-message -SUB_LIST+= DB_TYPE=${DB_TYPE} +SUB_LIST= DB_TYPE=${DB_TYPE} + +OPTIONS_MULTI= DB +OPTIONS_MULTI_DB= MYSQL PGSQL +OPTIONS_DEFAULT=MYSQL .include From owner-svn-ports-all@freebsd.org Tue Aug 11 17:25:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC4BE99EF05; Tue, 11 Aug 2015 17:25:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D12EEB; Tue, 11 Aug 2015 17:25:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHPGWW043284; Tue, 11 Aug 2015 17:25:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHPGXl043282; Tue, 11 Aug 2015 17:25:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111725.t7BHPGXl043282@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 17:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393950 - in head/audio/ifp-line: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:25:16 -0000 Author: amdmi3 Date: Tue Aug 11 17:25:15 2015 New Revision: 393950 URL: https://svnweb.freebsd.org/changeset/ports/393950 Log: - Add LICENSE_FILE - Switch to USES=autoreconf Added: head/audio/ifp-line/files/ head/audio/ifp-line/files/patch-Makefile.am (contents, props changed) Modified: head/audio/ifp-line/Makefile Modified: head/audio/ifp-line/Makefile ============================================================================== --- head/audio/ifp-line/Makefile Tue Aug 11 17:24:32 2015 (r393949) +++ head/audio/ifp-line/Makefile Tue Aug 11 17:25:15 2015 (r393950) @@ -10,10 +10,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Command line interface to iRiver music players LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING -USES= iconv -USE_AUTOTOOLS= aclocal autoheader automake autoconf -ACLOCAL_ARGS= -I m4 +USES= autoreconf iconv +GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes CPPFLAGS+= -I${LOCALBASE}/include Added: head/audio/ifp-line/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/ifp-line/files/patch-Makefile.am Tue Aug 11 17:25:15 2015 (r393950) @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2005-12-10 07:35:04 UTC ++++ Makefile.am +@@ -2,6 +2,8 @@ + + EXTRA_DIST = $(man1_MANS) $(pkgdata_DATA) + ++ACLOCAL_AMFLAGS = -I m4 ++ + bin_PROGRAMS = ifp + ifp_SOURCES = ifp.c ifp_routines.c ifp_routines.h + ifp_CFLAGS = @LIBUSB_CFLAGS@ From owner-svn-ports-all@freebsd.org Tue Aug 11 17:33:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C3FC99F222; Tue, 11 Aug 2015 17:33:35 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D44FB63; Tue, 11 Aug 2015 17:33:35 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHXZM0047501; Tue, 11 Aug 2015 17:33:35 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHXYLm047499; Tue, 11 Aug 2015 17:33:34 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508111733.t7BHXYLm047499@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 11 Aug 2015 17:33:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393951 - head/www/py-selenium X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:33:35 -0000 Author: pawel Date: Tue Aug 11 17:33:34 2015 New Revision: 393951 URL: https://svnweb.freebsd.org/changeset/ports/393951 Log: Update to version 2.46.0 PR: 201415 Submitted by: jjachuf@gmail.com Approved by: maintainer Modified: head/www/py-selenium/Makefile head/www/py-selenium/distinfo Modified: head/www/py-selenium/Makefile ============================================================================== --- head/www/py-selenium/Makefile Tue Aug 11 17:25:15 2015 (r393950) +++ head/www/py-selenium/Makefile Tue Aug 11 17:33:34 2015 (r393951) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= selenium -PORTVERSION= 2.43.0 +PORTVERSION= 2.46.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-selenium/distinfo ============================================================================== --- head/www/py-selenium/distinfo Tue Aug 11 17:25:15 2015 (r393950) +++ head/www/py-selenium/distinfo Tue Aug 11 17:33:34 2015 (r393951) @@ -1,2 +1,2 @@ -SHA256 (selenium-2.43.0.tar.gz) = 6a2182991852f2181fa7c1cbd191e5e85addde115109ff88d074d39b2579944e -SIZE (selenium-2.43.0.tar.gz) = 2564632 +SHA256 (selenium-2.46.0.tar.gz) = fffce2696f1dfd64662086aac276e657e33953b32e265e34c4d28f5f1787e62c +SIZE (selenium-2.46.0.tar.gz) = 2621186 From owner-svn-ports-all@freebsd.org Tue Aug 11 17:42:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF66C99F449; Tue, 11 Aug 2015 17:42:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B0308129; Tue, 11 Aug 2015 17:42:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHgi54051841; Tue, 11 Aug 2015 17:42:44 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHgiN4051840; Tue, 11 Aug 2015 17:42:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111742.t7BHgiN4051840@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 17:42:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393952 - head/security/razorback-fsMonitor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:42:44 -0000 Author: amdmi3 Date: Tue Aug 11 17:42:43 2015 New Revision: 393952 URL: https://svnweb.freebsd.org/changeset/ports/393952 Log: - Switch to USES=autoreconf Modified: head/security/razorback-fsMonitor/Makefile Modified: head/security/razorback-fsMonitor/Makefile ============================================================================== --- head/security/razorback-fsMonitor/Makefile Tue Aug 11 17:33:34 2015 (r393951) +++ head/security/razorback-fsMonitor/Makefile Tue Aug 11 17:42:43 2015 (r393952) @@ -19,9 +19,8 @@ LIB_DEPENDS= librazorback_api.so:${PORTS libjson-c.so:${PORTSDIR}/devel/json-c \ libfam.so:${PORTSDIR}/devel/fam -USES= libtool pkgconfig +USES= autoreconf libtool pkgconfig GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Tue Aug 11 17:51:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D71D399F614; Tue, 11 Aug 2015 17:51:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C590E88B; Tue, 11 Aug 2015 17:51:43 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHphtG055465; Tue, 11 Aug 2015 17:51:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHphaG055464; Tue, 11 Aug 2015 17:51:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111751.t7BHphaG055464@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 17:51:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393953 - head/security/tsshbatch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:51:43 -0000 Author: amdmi3 Date: Tue Aug 11 17:51:42 2015 New Revision: 393953 URL: https://svnweb.freebsd.org/changeset/ports/393953 Log: - Add NO_ARCH Approved by: portmgr blanket Modified: head/security/tsshbatch/Makefile Modified: head/security/tsshbatch/Makefile ============================================================================== --- head/security/tsshbatch/Makefile Tue Aug 11 17:42:43 2015 (r393952) +++ head/security/tsshbatch/Makefile Tue Aug 11 17:51:42 2015 (r393953) @@ -17,6 +17,7 @@ LICENSE_PERMS= auto-accept RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}paramiko>=1.7.7.1:${PORTSDIR}/security/py-paramiko USES= python:run +NO_ARCH= yes PLIST_FILES= bin/tsshbatch.py \ man/man1/tsshbatch.1.gz From owner-svn-ports-all@freebsd.org Tue Aug 11 17:55:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 589A999F81F; Tue, 11 Aug 2015 17:55:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49959DE0; Tue, 11 Aug 2015 17:55:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHtJJf056281; Tue, 11 Aug 2015 17:55:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHtJFN056280; Tue, 11 Aug 2015 17:55:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111755.t7BHtJFN056280@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 17:55:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393954 - head/net/libnetdude X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:55:19 -0000 Author: amdmi3 Date: Tue Aug 11 17:55:18 2015 New Revision: 393954 URL: https://svnweb.freebsd.org/changeset/ports/393954 Log: Remove empty directories to fix stage-qa Modified: head/net/libnetdude/Makefile Modified: head/net/libnetdude/Makefile ============================================================================== --- head/net/libnetdude/Makefile Tue Aug 11 17:51:42 2015 (r393953) +++ head/net/libnetdude/Makefile Tue Aug 11 17:55:18 2015 (r393954) @@ -36,4 +36,7 @@ post-patch: -e 's,-I$$(top_srcdir)/libltdl,@INCLTDL@,' \ -e '/LIBADD/s,$$(top_builddir)/libltdl/libltdlc.la,@LIBLTDL@,' +post-install: + @${FIND} -d ${STAGEDIR}${DOCSDIR} -type d -empty -delete + .include From owner-svn-ports-all@freebsd.org Tue Aug 11 17:55:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E26F399F832; Tue, 11 Aug 2015 17:55:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1A28E16; Tue, 11 Aug 2015 17:55:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHtNCN056383; Tue, 11 Aug 2015 17:55:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHtNfG056382; Tue, 11 Aug 2015 17:55:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111755.t7BHtNfG056382@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 17:55:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393955 - head/security/razorback-pdfFox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:55:24 -0000 Author: amdmi3 Date: Tue Aug 11 17:55:22 2015 New Revision: 393955 URL: https://svnweb.freebsd.org/changeset/ports/393955 Log: - Switch to USES=autoreconf Modified: head/security/razorback-pdfFox/Makefile Modified: head/security/razorback-pdfFox/Makefile ============================================================================== --- head/security/razorback-pdfFox/Makefile Tue Aug 11 17:55:18 2015 (r393954) +++ head/security/razorback-pdfFox/Makefile Tue Aug 11 17:55:22 2015 (r393955) @@ -22,8 +22,7 @@ RUN_DEPENDS= razorback-masterNugget>=0.5 RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig USE_LDCONFIG= ${RB_LIBDIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Tue Aug 11 17:55:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6496499F862; Tue, 11 Aug 2015 17:55:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42F88F6C; Tue, 11 Aug 2015 17:55:30 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BHtTNR056486; Tue, 11 Aug 2015 17:55:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BHtTAt056485; Tue, 11 Aug 2015 17:55:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508111755.t7BHtTAt056485@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 11 Aug 2015 17:55:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393956 - head/security/razorback-virusTotal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 17:55:30 -0000 Author: amdmi3 Date: Tue Aug 11 17:55:29 2015 New Revision: 393956 URL: https://svnweb.freebsd.org/changeset/ports/393956 Log: - Switch to USES=autoreconf Modified: head/security/razorback-virusTotal/Makefile Modified: head/security/razorback-virusTotal/Makefile ============================================================================== --- head/security/razorback-virusTotal/Makefile Tue Aug 11 17:55:22 2015 (r393955) +++ head/security/razorback-virusTotal/Makefile Tue Aug 11 17:55:29 2015 (r393956) @@ -22,8 +22,7 @@ RUN_DEPENDS= razorback-masterNugget>=0.5 RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig USE_LDCONFIG= ${RB_LIBDIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-all@freebsd.org Tue Aug 11 18:27:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6EFE799FEC7; Tue, 11 Aug 2015 18:27:04 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5AC00639; Tue, 11 Aug 2015 18:27:04 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BIR44E068921; Tue, 11 Aug 2015 18:27:04 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BIR3li068918; Tue, 11 Aug 2015 18:27:03 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508111827.t7BIR3li068918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 11 Aug 2015 18:27:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393957 - head/www/piwik X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 18:27:04 -0000 Author: pawel Date: Tue Aug 11 18:27:02 2015 New Revision: 393957 URL: https://svnweb.freebsd.org/changeset/ports/393957 Log: Update to version 2.14.3 PR: 202124 Submitted by: Hans Fredrik Nordhaug (maintainer) Modified: head/www/piwik/Makefile head/www/piwik/distinfo head/www/piwik/pkg-plist Modified: head/www/piwik/Makefile ============================================================================== --- head/www/piwik/Makefile Tue Aug 11 17:55:29 2015 (r393956) +++ head/www/piwik/Makefile Tue Aug 11 18:27:02 2015 (r393957) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= piwik -PORTVERSION= 2.14.1 +PORTVERSION= 2.14.3 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ Modified: head/www/piwik/distinfo ============================================================================== --- head/www/piwik/distinfo Tue Aug 11 17:55:29 2015 (r393956) +++ head/www/piwik/distinfo Tue Aug 11 18:27:02 2015 (r393957) @@ -1,2 +1,2 @@ -SHA256 (piwik-2.14.1.tar.gz) = ddc84326eb0ffd5d36de49af8841ae98e4aaa879f9c651f5c406e7e37c8fbef6 -SIZE (piwik-2.14.1.tar.gz) = 12607323 +SHA256 (piwik-2.14.3.tar.gz) = 8a96533e59747405edc6c2f52963f3dfd32fa1446067716bf2f724a607ef0249 +SIZE (piwik-2.14.3.tar.gz) = 12620182 Modified: head/www/piwik/pkg-plist ============================================================================== --- head/www/piwik/pkg-plist Tue Aug 11 17:55:29 2015 (r393956) +++ head/www/piwik/pkg-plist Tue Aug 11 18:27:02 2015 (r393957) @@ -431,6 +431,7 @@ %%WWWDIR%%/core/Updates/2.13.1.php %%WWWDIR%%/core/Updates/2.14.0-b1.php %%WWWDIR%%/core/Updates/2.14.0-b2.php +%%WWWDIR%%/core/Updates/2.14.2.php %%WWWDIR%%/core/Updates/2.2.0-b15.php %%WWWDIR%%/core/Updates/2.2.3-b6.php %%WWWDIR%%/core/Updates/2.3.0-rc2.php @@ -1427,6 +1428,7 @@ %%WWWDIR%%/misc/gpl-3.0.txt %%WWWDIR%%/misc/internal-docs/content-tracking.md %%WWWDIR%%/misc/log-analytics/.gitignore +%%WWWDIR%%/misc/log-analytics/CONTRIBUTING.md %%WWWDIR%%/misc/log-analytics/README.md %%WWWDIR%%/misc/log-analytics/import_logs.py %%WWWDIR%%/misc/others/ExamplePiwikTracker.php @@ -1711,6 +1713,7 @@ %%WWWDIR%%/plugins/Contents/lang/et.json %%WWWDIR%%/plugins/Contents/lang/fi.json %%WWWDIR%%/plugins/Contents/lang/fr.json +%%WWWDIR%%/plugins/Contents/lang/gl.json %%WWWDIR%%/plugins/Contents/lang/hi.json %%WWWDIR%%/plugins/Contents/lang/it.json %%WWWDIR%%/plugins/Contents/lang/ja.json @@ -3791,7 +3794,9 @@ %%WWWDIR%%/plugins/MobileAppMeasurable/lang/fr.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/hi.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/it.json +%%WWWDIR%%/plugins/MobileAppMeasurable/lang/nl.json %%WWWDIR%%/plugins/MobileAppMeasurable/lang/sk.json +%%WWWDIR%%/plugins/MobileAppMeasurable/lang/sv.json %%WWWDIR%%/plugins/MobileAppMeasurable/plugin.json %%WWWDIR%%/plugins/MobileMessaging/API.php %%WWWDIR%%/plugins/MobileMessaging/APIException.php @@ -3831,6 +3836,7 @@ %%WWWDIR%%/plugins/MobileMessaging/lang/pt-br.json %%WWWDIR%%/plugins/MobileMessaging/lang/ro.json %%WWWDIR%%/plugins/MobileMessaging/lang/ru.json +%%WWWDIR%%/plugins/MobileMessaging/lang/sk.json %%WWWDIR%%/plugins/MobileMessaging/lang/sl.json %%WWWDIR%%/plugins/MobileMessaging/lang/sr.json %%WWWDIR%%/plugins/MobileMessaging/lang/sv.json @@ -4109,7 +4115,6 @@ %%WWWDIR%%/plugins/Overlay/client/loading.gif %%WWWDIR%%/plugins/Overlay/client/translations.js %%WWWDIR%%/plugins/Overlay/client/urlnormalizer.js -%%WWWDIR%%/plugins/Overlay/images/info.png %%WWWDIR%%/plugins/Overlay/images/overlay_icon.png %%WWWDIR%%/plugins/Overlay/images/overlay_icon_hover.png %%WWWDIR%%/plugins/Overlay/javascripts/Overlay_Helper.js @@ -6049,6 +6054,7 @@ %%WWWDIR%%/plugins/VisitsSummary/templates/index.twig %%WWWDIR%%/plugins/WebsiteMeasurable/Type.php %%WWWDIR%%/plugins/WebsiteMeasurable/WebsiteMeasurable.php +%%WWWDIR%%/plugins/WebsiteMeasurable/lang/ar.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/de.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/el.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/en.json @@ -6056,6 +6062,8 @@ %%WWWDIR%%/plugins/WebsiteMeasurable/lang/fr.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/hi.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/it.json +%%WWWDIR%%/plugins/WebsiteMeasurable/lang/nb.json +%%WWWDIR%%/plugins/WebsiteMeasurable/lang/nl.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/sk.json %%WWWDIR%%/plugins/WebsiteMeasurable/lang/zh-tw.json %%WWWDIR%%/plugins/WebsiteMeasurable/plugin.json @@ -6253,9 +6261,11 @@ %%WWWDIR%%/vendor/monolog/monolog/LICENSE %%WWWDIR%%/vendor/monolog/monolog/README.mdown %%WWWDIR%%/vendor/monolog/monolog/composer.json -%%WWWDIR%%/vendor/monolog/monolog/doc/extending.md +%%WWWDIR%%/vendor/monolog/monolog/doc/01-usage.md +%%WWWDIR%%/vendor/monolog/monolog/doc/02-handlers-formatters-processors.md +%%WWWDIR%%/vendor/monolog/monolog/doc/03-utilities.md +%%WWWDIR%%/vendor/monolog/monolog/doc/04-extending.md %%WWWDIR%%/vendor/monolog/monolog/doc/sockets.md -%%WWWDIR%%/vendor/monolog/monolog/doc/usage.md %%WWWDIR%%/vendor/monolog/monolog/phpunit.xml.dist %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/ErrorHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php @@ -6281,6 +6291,7 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php @@ -6306,6 +6317,7 @@ %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php +%%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php %%WWWDIR%%/vendor/monolog/monolog/src/Monolog/Handler/RavenHandler.php From owner-svn-ports-all@freebsd.org Tue Aug 11 18:30:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32DC699FF5E; Tue, 11 Aug 2015 18:30:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2094B7BB; Tue, 11 Aug 2015 18:30:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BIU40i070156; Tue, 11 Aug 2015 18:30:04 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BIU016069483; Tue, 11 Aug 2015 18:30:00 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508111830.t7BIU016069483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 18:30:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393958 - in branches/2015Q3: Mk Mk/Uses www/firefox www/firefox-esr www/firefox-esr-i18n www/firefox-i18n www/firefox/files www/libxul www/linux-firefox X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 18:30:04 -0000 Author: jbeich Date: Tue Aug 11 18:29:59 2015 New Revision: 393958 URL: https://svnweb.freebsd.org/changeset/ports/393958 Log: MFH: r393690, r393803, r393805, r393879 - Update Firefox to 40.0 - Update Firefox ESR and libxul to 38.2.0 - Phase out no longer supported LOGGING option [1] - Temporarily disable OMTC to avoid crashes [2] PORTREVISION was MFH'd as is to avoid merge conflicts in future. Changes: https://www.mozilla.org/firefox/40.0/releasenotes/ Changes: https://www.mozilla.org/firefox/38.2.0/releasenotes/ PR: 202165 [1] PR: 202174 [2] Reported by: rsmith@xs4all.nl [1] Reported by: many [2] Tested by: Martin Birgmeier, Andrey Fesenko, Konstantin Belousov [2] Approved by: ports-secteam (delphij, feld) Added: branches/2015Q3/www/firefox/files/patch-modules-libpref-init-all.js - copied unchanged from r393805, head/www/firefox/files/patch-modules-libpref-init-all.js Deleted: branches/2015Q3/www/firefox/files/patch-bug1073117 Modified: branches/2015Q3/Mk/Uses/gecko.mk branches/2015Q3/Mk/bsd.gecko.mk branches/2015Q3/www/firefox-esr-i18n/Makefile branches/2015Q3/www/firefox-esr-i18n/distinfo branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox-esr/distinfo branches/2015Q3/www/firefox-i18n/Makefile branches/2015Q3/www/firefox-i18n/distinfo branches/2015Q3/www/firefox/Makefile branches/2015Q3/www/firefox/distinfo branches/2015Q3/www/firefox/files/patch-bug1021761 branches/2015Q3/www/firefox/files/patch-bug826985 branches/2015Q3/www/firefox/files/patch-bug847568 branches/2015Q3/www/firefox/files/patch-ijg-libjpeg branches/2015Q3/www/firefox/files/patch-system-openh264 branches/2015Q3/www/firefox/files/patch-z-bug517422 branches/2015Q3/www/libxul/Makefile branches/2015Q3/www/libxul/distinfo branches/2015Q3/www/linux-firefox/Makefile branches/2015Q3/www/linux-firefox/distinfo branches/2015Q3/www/linux-firefox/pkg-plist Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/Mk/Uses/gecko.mk ============================================================================== --- branches/2015Q3/Mk/Uses/gecko.mk Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/Mk/Uses/gecko.mk Tue Aug 11 18:29:59 2015 (r393958) @@ -37,12 +37,12 @@ RUN_DEPENDS+= libxul>=38:${PORTSDIR}/www .elif ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 38 -_GECKO_VERSIONS= 38 39 +_GECKO_VERSIONS= 38 40 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 38_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr -39_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +40_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${LOCALBASE}/bin/firefox --version 2>/dev/null Modified: branches/2015Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2015Q3/Mk/bsd.gecko.mk Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/Mk/bsd.gecko.mk Tue Aug 11 18:29:59 2015 (r393958) @@ -380,10 +380,12 @@ STRIP= MOZ_OPTIONS+= --disable-dtrace .endif -.if ${PORT_OPTIONS:MLOGGING} || ${PORT_OPTIONS:MDEBUG} +.if ${MOZILLA_VER:R:R} < 40 +. if ${PORT_OPTIONS:MLOGGING} || ${PORT_OPTIONS:MDEBUG} MOZ_OPTIONS+= --enable-logging -.else +. else MOZ_OPTIONS+= --disable-logging +. endif .endif .if ${PORT_OPTIONS:MPROFILE} Modified: branches/2015Q3/www/firefox-esr-i18n/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr-i18n/Makefile Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox-esr-i18n/Makefile Tue Aug 11 18:29:59 2015 (r393958) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 38.1.0 -PORTREVISION= 1 +PORTVERSION= 38.2.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build1/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build2/linux-i686/xpi PKGNAMEPREFIX= PKGNAMESUFFIX= -esr-i18n DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} Modified: branches/2015Q3/www/firefox-esr-i18n/distinfo ============================================================================== --- branches/2015Q3/www/firefox-esr-i18n/distinfo Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox-esr-i18n/distinfo Tue Aug 11 18:29:59 2015 (r393958) @@ -1,176 +1,176 @@ -SHA256 (xpi/firefox-38.1.0/ach.xpi) = d8d0439db26597a0d869e5467bb849bc77c1786b0c2df3a16cf91801523cbebb -SIZE (xpi/firefox-38.1.0/ach.xpi) = 477969 -SHA256 (xpi/firefox-38.1.0/af.xpi) = 1a4c6835db2ba384767f6ceddf021a30b61c1d29f17577cf2f7330e3358c9ff7 -SIZE (xpi/firefox-38.1.0/af.xpi) = 483325 -SHA256 (xpi/firefox-38.1.0/an.xpi) = dbecee3b6d22ff49680d412a338a8e94d6f759c62110cb55ed6aa21f11537a0a -SIZE (xpi/firefox-38.1.0/an.xpi) = 461422 -SHA256 (xpi/firefox-38.1.0/ar.xpi) = 47eef2d1bfa6e5594cd8835bddca7bfd5019aac1553b54b05c1c749fad659dda -SIZE (xpi/firefox-38.1.0/ar.xpi) = 516495 -SHA256 (xpi/firefox-38.1.0/as.xpi) = 1628e61d5bb7e7c4cbdff288ca2e6d8623578ccf12797e63b27864e68be21c1c -SIZE (xpi/firefox-38.1.0/as.xpi) = 509574 -SHA256 (xpi/firefox-38.1.0/ast.xpi) = bfe8b26cffb80f7cc0824dc08546f31d54da190bf8fd342b12204ecdc85977e7 -SIZE (xpi/firefox-38.1.0/ast.xpi) = 397202 -SHA256 (xpi/firefox-38.1.0/az.xpi) = a29a1f0362aa53c7ea42e500478d2218e6e3e356c7305b249c65f078218fb272 -SIZE (xpi/firefox-38.1.0/az.xpi) = 489152 -SHA256 (xpi/firefox-38.1.0/be.xpi) = ff7583b04c4e57128f0165ecd94488bca77cf4a84bf0284f313f9aca2c885faf -SIZE (xpi/firefox-38.1.0/be.xpi) = 441056 -SHA256 (xpi/firefox-38.1.0/bg.xpi) = 5096d0dc1ff5e547fb07906e0a3183b3117a6453311fb28afa991db5c34c95d1 -SIZE (xpi/firefox-38.1.0/bg.xpi) = 487819 -SHA256 (xpi/firefox-38.1.0/bn-BD.xpi) = 2ca791e8a573f76f60698b3b634cf9c0768eee657ba6e99f65c0f8979e152216 -SIZE (xpi/firefox-38.1.0/bn-BD.xpi) = 528688 -SHA256 (xpi/firefox-38.1.0/bn-IN.xpi) = b664469d76782fe549f582b79cb88d8350d439038ee1eaa7a7388fd5b3cb1eff -SIZE (xpi/firefox-38.1.0/bn-IN.xpi) = 527927 -SHA256 (xpi/firefox-38.1.0/br.xpi) = 57ee679bb3532a0e9289827d4fb421598683ea8168656889edddcff1e21bb6b9 -SIZE (xpi/firefox-38.1.0/br.xpi) = 441962 -SHA256 (xpi/firefox-38.1.0/bs.xpi) = 92b42a21fdd59775f65f13316e875f93f7478695aa70ab02016f3145c79a3aea -SIZE (xpi/firefox-38.1.0/bs.xpi) = 485305 -SHA256 (xpi/firefox-38.1.0/ca.xpi) = 53c42f1501f90ddd9259ca255baae8a7ea6a1055fa88acc0cd1de9d8a20db2b9 -SIZE (xpi/firefox-38.1.0/ca.xpi) = 458091 -SHA256 (xpi/firefox-38.1.0/cs.xpi) = a23e9ea357bd08c5029d31d6865516efc5ff3aa8504dae8dc316af5efc859fa9 -SIZE (xpi/firefox-38.1.0/cs.xpi) = 446725 -SHA256 (xpi/firefox-38.1.0/cy.xpi) = 464c9b57d03fbaff4a6241dfa492623a338018a609e2289defeba196ab454b95 -SIZE (xpi/firefox-38.1.0/cy.xpi) = 444384 -SHA256 (xpi/firefox-38.1.0/da.xpi) = 2b339c9a73067076f4ca8b28d9d8543064be5616dd4db50cf0bf1ed0e4cea3c2 -SIZE (xpi/firefox-38.1.0/da.xpi) = 450762 -SHA256 (xpi/firefox-38.1.0/de.xpi) = bb0aca584ae740caa4cd2adeab2de09670c38ec8dd0241512318201b3ed6d761 -SIZE (xpi/firefox-38.1.0/de.xpi) = 451628 -SHA256 (xpi/firefox-38.1.0/dsb.xpi) = 921ff1abd17da602be91dcd9ddf7f0655bb97231840ac72f964252bacfdcfcf9 -SIZE (xpi/firefox-38.1.0/dsb.xpi) = 470923 -SHA256 (xpi/firefox-38.1.0/el.xpi) = 96e8b36888ccadce8d576208a76ab6522c3148c501bc35549e25bce545c11a01 -SIZE (xpi/firefox-38.1.0/el.xpi) = 498369 -SHA256 (xpi/firefox-38.1.0/en-GB.xpi) = 3f80590f27a73d5cb50b56b7658c38f4378f0bb1b84d3da4c2e0cd9a7b8f4120 -SIZE (xpi/firefox-38.1.0/en-GB.xpi) = 437845 -SHA256 (xpi/firefox-38.1.0/en-US.xpi) = 36fe4e6fc9b319f65b81ab0f9f8eda2b185ff175b6d4999799489365154142e6 -SIZE (xpi/firefox-38.1.0/en-US.xpi) = 469718 -SHA256 (xpi/firefox-38.1.0/en-ZA.xpi) = 6d3a854cffcb9a6ff37a6ae4b2b9a91da3fd16914ea4cd70f69ad3039b960ceb -SIZE (xpi/firefox-38.1.0/en-ZA.xpi) = 439925 -SHA256 (xpi/firefox-38.1.0/eo.xpi) = ac159c4a6b9dfb3b838dd757350cdfa92d7322c772e46bf79fbfce8d7e03b433 -SIZE (xpi/firefox-38.1.0/eo.xpi) = 488369 -SHA256 (xpi/firefox-38.1.0/es-AR.xpi) = 7410081864264d57267ffb4795aac402a72d30e369e4aa6ec2df6501c77ead8f -SIZE (xpi/firefox-38.1.0/es-AR.xpi) = 453982 -SHA256 (xpi/firefox-38.1.0/es-CL.xpi) = f5979bcfc6576cd6796a555617966c4f7c42d90bba52dc281824d09f7ca2ba01 -SIZE (xpi/firefox-38.1.0/es-CL.xpi) = 384678 -SHA256 (xpi/firefox-38.1.0/es-ES.xpi) = 87e28415879608af646ab9a531108c74b18a8b94f7a472439841ed7b79240537 -SIZE (xpi/firefox-38.1.0/es-ES.xpi) = 374072 -SHA256 (xpi/firefox-38.1.0/es-MX.xpi) = aa8e47ac74821a900eac826459e9fefb0eb8c0de77ee1b5246a55e23a369f4b8 -SIZE (xpi/firefox-38.1.0/es-MX.xpi) = 457049 -SHA256 (xpi/firefox-38.1.0/et.xpi) = 76e0e0480e62cc5187e6cf97845d61d835a16b883582cd8a27ef2b6e74c3d69c -SIZE (xpi/firefox-38.1.0/et.xpi) = 443228 -SHA256 (xpi/firefox-38.1.0/eu.xpi) = ecac2d452d2a4e4165970a1aed2a0ae6bff8212c0d6dc0687e5782758d5d72d9 -SIZE (xpi/firefox-38.1.0/eu.xpi) = 466554 -SHA256 (xpi/firefox-38.1.0/fa.xpi) = 90bbd088bff3a41dfc752f695f0184e68d5621ffdaa17536a989067bc2f4f7de -SIZE (xpi/firefox-38.1.0/fa.xpi) = 518281 -SHA256 (xpi/firefox-38.1.0/ff.xpi) = cb840656488d9044aa2042805f95458720fbcbb19e6fbd8beca197a9101817d1 -SIZE (xpi/firefox-38.1.0/ff.xpi) = 454586 -SHA256 (xpi/firefox-38.1.0/fi.xpi) = 6d1a14149420b2d851673c58308cff8b5218a4e9835b60d5a5274d2edf367635 -SIZE (xpi/firefox-38.1.0/fi.xpi) = 444852 -SHA256 (xpi/firefox-38.1.0/fr.xpi) = 8e416c8c930e09adb020ede16d420fd94a4e0e169d3a40213e33db94dee44d6b -SIZE (xpi/firefox-38.1.0/fr.xpi) = 461401 -SHA256 (xpi/firefox-38.1.0/fy-NL.xpi) = f6f06bac70b7edd570510deed989e3184d08a42a7e49a7e7960ed1f6a705e0a0 -SIZE (xpi/firefox-38.1.0/fy-NL.xpi) = 455537 -SHA256 (xpi/firefox-38.1.0/ga-IE.xpi) = 39ae1a583ac7be57fb3631e98734008823fe735ac679a173efe8729ef66e295c -SIZE (xpi/firefox-38.1.0/ga-IE.xpi) = 469623 -SHA256 (xpi/firefox-38.1.0/gd.xpi) = c38b1152552c91e0531eb4536b2727bc72c1c9397679d8b42003dbf7dab1be7d -SIZE (xpi/firefox-38.1.0/gd.xpi) = 454616 -SHA256 (xpi/firefox-38.1.0/gl.xpi) = d8ad198ce7afef708e7974384cac5b646efa58c1b914c0e58a0c19569276ac9d -SIZE (xpi/firefox-38.1.0/gl.xpi) = 448924 -SHA256 (xpi/firefox-38.1.0/gu-IN.xpi) = dc03e9021e27b9c5d41be2c9e569da7165176f2139872fc5694500edd71e7102 -SIZE (xpi/firefox-38.1.0/gu-IN.xpi) = 477980 -SHA256 (xpi/firefox-38.1.0/he.xpi) = 4d67723435a899817745f8141c7671fd8c0ed899db6b9fc040a7cf77a997113a -SIZE (xpi/firefox-38.1.0/he.xpi) = 486784 -SHA256 (xpi/firefox-38.1.0/hi-IN.xpi) = 3404e4a912049d583508619d92fb37663629cddc09f91f2c6f6e007fcbd1a281 -SIZE (xpi/firefox-38.1.0/hi-IN.xpi) = 508166 -SHA256 (xpi/firefox-38.1.0/hr.xpi) = 98487a75721efbb651b30d94fc00edac8962ca4aa0f356c714aae1761ed1650b -SIZE (xpi/firefox-38.1.0/hr.xpi) = 478271 -SHA256 (xpi/firefox-38.1.0/hsb.xpi) = b36779a40c56839cb9b6a78eca688704dcc5c202921493726640805580b7bf6e -SIZE (xpi/firefox-38.1.0/hsb.xpi) = 468719 -SHA256 (xpi/firefox-38.1.0/hu.xpi) = 93ace7ddee6b87c2a3cdfeedce151ced7354d3504d0d7e1aee8f2368094cabc0 -SIZE (xpi/firefox-38.1.0/hu.xpi) = 453554 -SHA256 (xpi/firefox-38.1.0/hy-AM.xpi) = 8c6a5918df7c1bdd36cdf9a5fe44400c53e2e8998dc910ad71ff29178299d63b -SIZE (xpi/firefox-38.1.0/hy-AM.xpi) = 534264 -SHA256 (xpi/firefox-38.1.0/id.xpi) = f37f250ba26bdf7cdb1f3d47a6bf7f7feb90ebd82da1a55ff4f11932af1da1e5 -SIZE (xpi/firefox-38.1.0/id.xpi) = 431488 -SHA256 (xpi/firefox-38.1.0/is.xpi) = fa4eca6ec46e110683178b282f4bd3cc6b47b315e4ddbd34cd99b8c00676b297 -SIZE (xpi/firefox-38.1.0/is.xpi) = 485128 -SHA256 (xpi/firefox-38.1.0/it.xpi) = 42948d7424e1554ce71e34d34c63b1bd3b94bf067845b8826576591aeeba3bb9 -SIZE (xpi/firefox-38.1.0/it.xpi) = 368409 -SHA256 (xpi/firefox-38.1.0/ja.xpi) = 456e16ba61c0bb904cbfb3d05b184d6fc9d7cac7f346c7b38d9fe230af96e96d -SIZE (xpi/firefox-38.1.0/ja.xpi) = 479113 -SHA256 (xpi/firefox-38.1.0/kk.xpi) = 0c10adeca506e653e464285b1feaf049d79dbcb45e1820dfe6cbb13198422c5a -SIZE (xpi/firefox-38.1.0/kk.xpi) = 503567 -SHA256 (xpi/firefox-38.1.0/km.xpi) = b94aff6d6093856b1726b1aa8d6ffa0ad2db3a897ea9ad6a5589fbffac6580a9 -SIZE (xpi/firefox-38.1.0/km.xpi) = 565673 -SHA256 (xpi/firefox-38.1.0/kn.xpi) = 72d4b3da5a920975904ba4f17b55826685ec71ffc4e952a946142210e2ae95eb -SIZE (xpi/firefox-38.1.0/kn.xpi) = 533464 -SHA256 (xpi/firefox-38.1.0/ko.xpi) = 4caa6c2e11b1c0d9184cc688fcb5f9534ab74a1d87c2d7624a83c0fc1ea4699d -SIZE (xpi/firefox-38.1.0/ko.xpi) = 460853 -SHA256 (xpi/firefox-38.1.0/lij.xpi) = 75c704a30c99d4bd6b0a99945709dd88c86b8859ffe448ed59b0b9af51c76c7b -SIZE (xpi/firefox-38.1.0/lij.xpi) = 444237 -SHA256 (xpi/firefox-38.1.0/lt.xpi) = 0a4c45516ba00ab84b2744690ff4e70ef624825238fa4c4cd6345db68be158e5 -SIZE (xpi/firefox-38.1.0/lt.xpi) = 486451 -SHA256 (xpi/firefox-38.1.0/lv.xpi) = 3f88098b580f7591a9a435ba93f06e73f6adb312d9a19ad4b756768b93bd3b1b -SIZE (xpi/firefox-38.1.0/lv.xpi) = 467197 -SHA256 (xpi/firefox-38.1.0/mai.xpi) = 27473c24c7f66a9ed31ccda36d04bf98cc81f699bdfe4c5958de0abd9c5c6824 -SIZE (xpi/firefox-38.1.0/mai.xpi) = 514665 -SHA256 (xpi/firefox-38.1.0/mk.xpi) = 6e2d2ac3b859eedc499041e2961cc1bf4b92316dd59526f14ff694fb4c2067b4 -SIZE (xpi/firefox-38.1.0/mk.xpi) = 529204 -SHA256 (xpi/firefox-38.1.0/ml.xpi) = f4d488f0207854450945af1230b70db6773bd94bad6804fdba4215bba921734f -SIZE (xpi/firefox-38.1.0/ml.xpi) = 528919 -SHA256 (xpi/firefox-38.1.0/mr.xpi) = dd9caa414cc4ba76ec4161b246612cb008585b5662b4c911d1ca7058e86a54a5 -SIZE (xpi/firefox-38.1.0/mr.xpi) = 505961 -SHA256 (xpi/firefox-38.1.0/ms.xpi) = 00c98155bc447385340e2c1b08ecfac7f4405b8b843c0603ab39a65b037f49e3 -SIZE (xpi/firefox-38.1.0/ms.xpi) = 489872 -SHA256 (xpi/firefox-38.1.0/nb-NO.xpi) = 9b17997524d839b610e60b42cae25c512ea93f3fedad473e723a91289f839ca5 -SIZE (xpi/firefox-38.1.0/nb-NO.xpi) = 444176 -SHA256 (xpi/firefox-38.1.0/nl.xpi) = 8d1532bbbb2a843babfd5b46909f0af1457fc8c9c14145b693ad0ff91b3e90ef -SIZE (xpi/firefox-38.1.0/nl.xpi) = 443993 -SHA256 (xpi/firefox-38.1.0/nn-NO.xpi) = 732a5be1501711e2aed2a5073dd6a3726095b8d3940765e4b368c74c2ad32c59 -SIZE (xpi/firefox-38.1.0/nn-NO.xpi) = 438451 -SHA256 (xpi/firefox-38.1.0/or.xpi) = 1297c29d98f2b1952d05f50417ba383c28505dd316ab8fd7179be6f6805ba892 -SIZE (xpi/firefox-38.1.0/or.xpi) = 527048 -SHA256 (xpi/firefox-38.1.0/pa-IN.xpi) = d3ee939b7914194a87f5ea3b24e569c3c9486ca3d0b997e8303c2c9c42b3bf76 -SIZE (xpi/firefox-38.1.0/pa-IN.xpi) = 493722 -SHA256 (xpi/firefox-38.1.0/pl.xpi) = 8b88410da0376d2c14ccc3e3c0eb8a0031d60d048aebba176100854a17bc16b4 -SIZE (xpi/firefox-38.1.0/pl.xpi) = 406566 -SHA256 (xpi/firefox-38.1.0/pt-BR.xpi) = f1b89e40d210497e3a7ef45b7acbf42c9d0b0b7990efd35d94f04fd0247dfc53 -SIZE (xpi/firefox-38.1.0/pt-BR.xpi) = 459812 -SHA256 (xpi/firefox-38.1.0/pt-PT.xpi) = 23e456c3550b31d7596956dd9739ef317ae742137419d426a4326f277e1c0206 -SIZE (xpi/firefox-38.1.0/pt-PT.xpi) = 439974 -SHA256 (xpi/firefox-38.1.0/rm.xpi) = f305e7a119c349ec71d4000517f315867f8174147dbbf6178a715e27e9aca29b -SIZE (xpi/firefox-38.1.0/rm.xpi) = 446286 -SHA256 (xpi/firefox-38.1.0/ro.xpi) = cd38ec29af9fbbc27ad61330d2804d57f999c98cebccf6333aa58d55c4e1db87 -SIZE (xpi/firefox-38.1.0/ro.xpi) = 494078 -SHA256 (xpi/firefox-38.1.0/ru.xpi) = b2c612a33a7e7126343644b3931749cd9de1421f8bb1aad283087f0ede074c31 -SIZE (xpi/firefox-38.1.0/ru.xpi) = 414418 -SHA256 (xpi/firefox-38.1.0/si.xpi) = 02de4fd1753d33e6b0c1d81dce2beec09dd01c1bff2c0e82864ec0700971bb68 -SIZE (xpi/firefox-38.1.0/si.xpi) = 537392 -SHA256 (xpi/firefox-38.1.0/sk.xpi) = 2fb1510e200824e455dee3492c8de7c0dd6bc4925307c5069d454fdc9513ca9b -SIZE (xpi/firefox-38.1.0/sk.xpi) = 469436 -SHA256 (xpi/firefox-38.1.0/sl.xpi) = d5f5ae891561d7ea891f9eaeee4a417e76159f8ee2b6402580d71e155de5bf23 -SIZE (xpi/firefox-38.1.0/sl.xpi) = 441593 -SHA256 (xpi/firefox-38.1.0/son.xpi) = 9fa1b158b3ca08335ca6c9bcf70fd76e6b4baab6cfdb667475188aaacc2f2193 -SIZE (xpi/firefox-38.1.0/son.xpi) = 449266 -SHA256 (xpi/firefox-38.1.0/sq.xpi) = 94d82f9dcf552f6e696e14d17ea9da388de8f5231e72bed6a0eef8b7426f6097 -SIZE (xpi/firefox-38.1.0/sq.xpi) = 486075 -SHA256 (xpi/firefox-38.1.0/sr.xpi) = f63271245f4919db7b86e9740a5128f50db750fe747e98343b1641291e7be1d3 -SIZE (xpi/firefox-38.1.0/sr.xpi) = 479418 -SHA256 (xpi/firefox-38.1.0/sv-SE.xpi) = 724e6ed7ad69ea5a612185851d1bcc39eb46e9cdaaee9032609637516b2fb4fc -SIZE (xpi/firefox-38.1.0/sv-SE.xpi) = 452631 -SHA256 (xpi/firefox-38.1.0/ta.xpi) = f0fc43a9cfde17cb71a3c1adef1ec4ae53201d0246528216f7c62fa93d5ca621 -SIZE (xpi/firefox-38.1.0/ta.xpi) = 506605 -SHA256 (xpi/firefox-38.1.0/te.xpi) = 47024b3c034826560b19281b5346d3c79b46b86c308d15c98acc5898545c47a5 -SIZE (xpi/firefox-38.1.0/te.xpi) = 526252 -SHA256 (xpi/firefox-38.1.0/th.xpi) = f99a2d738ee379bde70fc472626611365054eb25165c613824180d8ee7d53454 -SIZE (xpi/firefox-38.1.0/th.xpi) = 534269 -SHA256 (xpi/firefox-38.1.0/tr.xpi) = c7eac37f05b3a4afc073e85c9a065f343cc40b0cdba17fb8dd7219bc175c7723 -SIZE (xpi/firefox-38.1.0/tr.xpi) = 481075 -SHA256 (xpi/firefox-38.1.0/uk.xpi) = 6c68750ac5d4dab03b6c93d7694d8a8c430e95d9ad103a86c2477089fd678d99 -SIZE (xpi/firefox-38.1.0/uk.xpi) = 493312 -SHA256 (xpi/firefox-38.1.0/vi.xpi) = 874f22b8c19d7fe417496c6916b150c7d51a7021e5e73809a542799238c194fd -SIZE (xpi/firefox-38.1.0/vi.xpi) = 467503 -SHA256 (xpi/firefox-38.1.0/xh.xpi) = 53aca9e35a77091be291a3d2246ada0110d71e0451018c20d9a8c1f40dd2b2ae -SIZE (xpi/firefox-38.1.0/xh.xpi) = 450241 -SHA256 (xpi/firefox-38.1.0/zh-CN.xpi) = 0dbc3ac200290bdb5514c2076f5a1459442b4e3ee235ef29216384f2ad06d61f -SIZE (xpi/firefox-38.1.0/zh-CN.xpi) = 488276 -SHA256 (xpi/firefox-38.1.0/zh-TW.xpi) = e3ec89fe112a80d424e25934d21de61efbde5e6680ce2aece0c37a04d96be91c -SIZE (xpi/firefox-38.1.0/zh-TW.xpi) = 467843 +SHA256 (xpi/firefox-38.2.0/ach.xpi) = 80f2d65db6ba7c1079e36d4540c5364dadf50ee5cc00cdd1f4fe505915b12ef9 +SIZE (xpi/firefox-38.2.0/ach.xpi) = 477970 +SHA256 (xpi/firefox-38.2.0/af.xpi) = 4d822352bd0dbaa73dd547602e20ccdccb62b3ef9bdeccc03f172511e18b41ed +SIZE (xpi/firefox-38.2.0/af.xpi) = 483326 +SHA256 (xpi/firefox-38.2.0/an.xpi) = c58525c2b8bca44c5242e15a3597d3c5af89cbd227a2f37dec0cc64b777eaa2c +SIZE (xpi/firefox-38.2.0/an.xpi) = 461423 +SHA256 (xpi/firefox-38.2.0/ar.xpi) = 5e5e573f9cf9bb050ac9e94311887b83684c9933c8ba36021010b093b69c667b +SIZE (xpi/firefox-38.2.0/ar.xpi) = 516496 +SHA256 (xpi/firefox-38.2.0/as.xpi) = 690987405cf31ba44a2bc52a040f79e07bdca5e1a68bccb65a94f608dd32a168 +SIZE (xpi/firefox-38.2.0/as.xpi) = 509574 +SHA256 (xpi/firefox-38.2.0/ast.xpi) = 81ad42dce9d9525aa2d4339e928d5675d4f069b46deffed0c1afa7c29f7b4586 +SIZE (xpi/firefox-38.2.0/ast.xpi) = 397203 +SHA256 (xpi/firefox-38.2.0/az.xpi) = bb1b9b3e7ee14cf447780807ecda9789d696e83a6ceaa83a3f455025462976b0 +SIZE (xpi/firefox-38.2.0/az.xpi) = 489154 +SHA256 (xpi/firefox-38.2.0/be.xpi) = f025e13585be2126f1f805f431a2aab6f92064970a5d3ecf8e458fb35fcf1b04 +SIZE (xpi/firefox-38.2.0/be.xpi) = 441058 +SHA256 (xpi/firefox-38.2.0/bg.xpi) = d566656889a8922a88bab1a06fcf6e49f1131cc7ebc53aa19ea9b177314a7003 +SIZE (xpi/firefox-38.2.0/bg.xpi) = 487819 +SHA256 (xpi/firefox-38.2.0/bn-BD.xpi) = 1d8a734901cfc8f4a3372ae7586e6615a044757faaa43d0102d687465a7d8646 +SIZE (xpi/firefox-38.2.0/bn-BD.xpi) = 528690 +SHA256 (xpi/firefox-38.2.0/bn-IN.xpi) = 7a6e05c0eab890318718b014402168f30e2593a63cbd639b1dec9bbf88e74b30 +SIZE (xpi/firefox-38.2.0/bn-IN.xpi) = 527927 +SHA256 (xpi/firefox-38.2.0/br.xpi) = e5bc879e345784c9b4d9228a3e8900b4ffa4e643f01546db80cb4d9e11049a34 +SIZE (xpi/firefox-38.2.0/br.xpi) = 441961 +SHA256 (xpi/firefox-38.2.0/bs.xpi) = 0bf5d0e162a33a5ef6ac3059a5b713d88fff367f7384ad56a594ec07aafce358 +SIZE (xpi/firefox-38.2.0/bs.xpi) = 485305 +SHA256 (xpi/firefox-38.2.0/ca.xpi) = d2aaebad9dd838e9cb6aa4d5fcc45cfb2105cd655671455fd5a360ca43302842 +SIZE (xpi/firefox-38.2.0/ca.xpi) = 458091 +SHA256 (xpi/firefox-38.2.0/cs.xpi) = d3f1fe4b368d1f30cf93f6dba98af57491f2f23df1754edfc896aa7aef7bab8d +SIZE (xpi/firefox-38.2.0/cs.xpi) = 446725 +SHA256 (xpi/firefox-38.2.0/cy.xpi) = 7ab25f18ca0e267fcbc30503f47162319a5c1c08e1bc03518bab04c2c8fe59c2 +SIZE (xpi/firefox-38.2.0/cy.xpi) = 444385 +SHA256 (xpi/firefox-38.2.0/da.xpi) = 23147921fc13063f39818bc2d563d4b07b0a5ab466000d9405fd9b9249e67663 +SIZE (xpi/firefox-38.2.0/da.xpi) = 450762 +SHA256 (xpi/firefox-38.2.0/de.xpi) = 6d4cdaa88f41cc5feaae869db51684d85b1b1d6026ba9309c0572261828f8c1b +SIZE (xpi/firefox-38.2.0/de.xpi) = 451628 +SHA256 (xpi/firefox-38.2.0/dsb.xpi) = ff71942cac9c2548caa8f12df7005b5b9f91264f5b7da7360a99a088c4528440 +SIZE (xpi/firefox-38.2.0/dsb.xpi) = 470924 +SHA256 (xpi/firefox-38.2.0/el.xpi) = 24226e706875c0f1c1b18c4f2f55fb83e5963c3e22061a2af436d92e8b66ae29 +SIZE (xpi/firefox-38.2.0/el.xpi) = 498370 +SHA256 (xpi/firefox-38.2.0/en-GB.xpi) = 2824d85c15ff1a0ee6bd69228dec418481c9a7c4565beb5b45d0428e0b6f127b +SIZE (xpi/firefox-38.2.0/en-GB.xpi) = 437846 +SHA256 (xpi/firefox-38.2.0/en-US.xpi) = 92f20a9f6190d284201b5aff848d5bc111eda558f44c17b957eb45df9e787def +SIZE (xpi/firefox-38.2.0/en-US.xpi) = 469718 +SHA256 (xpi/firefox-38.2.0/en-ZA.xpi) = 7b103f2e7472388b6fea50c602a5950404e9d297a8ede752e04e93fecce4cc1a +SIZE (xpi/firefox-38.2.0/en-ZA.xpi) = 439926 +SHA256 (xpi/firefox-38.2.0/eo.xpi) = 7c41dc63256b9ae615206cecd5bf008879443791b03269e1d4dfcbb0b6e73fb9 +SIZE (xpi/firefox-38.2.0/eo.xpi) = 488370 +SHA256 (xpi/firefox-38.2.0/es-AR.xpi) = fede8e15d08da232349fd180b17d208d556de12fcb37a98a59362773e67ceca1 +SIZE (xpi/firefox-38.2.0/es-AR.xpi) = 453983 +SHA256 (xpi/firefox-38.2.0/es-CL.xpi) = 5957a2f6db01d593b6d82149f1ecd6b129e5322f74a254ac46d07503719e61c9 +SIZE (xpi/firefox-38.2.0/es-CL.xpi) = 384680 +SHA256 (xpi/firefox-38.2.0/es-ES.xpi) = 2da47c5401a9e60c84859bd28635cac8bd03d07cfc0d25ffd2fed66819d060bb +SIZE (xpi/firefox-38.2.0/es-ES.xpi) = 374073 +SHA256 (xpi/firefox-38.2.0/es-MX.xpi) = 0d396f5f5ea77920d7273fe4dd3662b08997657c321fb7ae62c9406abd9135e1 +SIZE (xpi/firefox-38.2.0/es-MX.xpi) = 457050 +SHA256 (xpi/firefox-38.2.0/et.xpi) = fac02f932ee8c93c660daf2b36ca6a8246724dfa5ac040809e6d88eb219b7a03 +SIZE (xpi/firefox-38.2.0/et.xpi) = 443228 +SHA256 (xpi/firefox-38.2.0/eu.xpi) = 492ac55eceaff28188516c154e738d4189615135e4434cde7d4108c6c92200a2 +SIZE (xpi/firefox-38.2.0/eu.xpi) = 466555 +SHA256 (xpi/firefox-38.2.0/fa.xpi) = 125f97265b11efa49886c6ca9611b6cdedfbaf40ac59fa7ba2f5d86308dbe4e9 +SIZE (xpi/firefox-38.2.0/fa.xpi) = 518281 +SHA256 (xpi/firefox-38.2.0/ff.xpi) = 36e58433af2939b69d461a4d21f8576c2773ab926f95e9742fcfa28c4b8155a9 +SIZE (xpi/firefox-38.2.0/ff.xpi) = 454587 +SHA256 (xpi/firefox-38.2.0/fi.xpi) = e56a3252d800bdc5ad2c18badf8a1a6743e7aa4fd29f459a339ef05a26614272 +SIZE (xpi/firefox-38.2.0/fi.xpi) = 444852 +SHA256 (xpi/firefox-38.2.0/fr.xpi) = 959138dcce85fd35da81fc9a1ddc28bfb06435f9a71fa1f2a2cf0b44978cdf70 +SIZE (xpi/firefox-38.2.0/fr.xpi) = 461402 +SHA256 (xpi/firefox-38.2.0/fy-NL.xpi) = 3f86674161098d9446ea0736969c0d030eca100688880921daa8e615a9410e38 +SIZE (xpi/firefox-38.2.0/fy-NL.xpi) = 455537 +SHA256 (xpi/firefox-38.2.0/ga-IE.xpi) = bfb2eeb0c787ff5ca2afec939f4da875eb854bc5baafcd61021b2d0a4db4456b +SIZE (xpi/firefox-38.2.0/ga-IE.xpi) = 469624 +SHA256 (xpi/firefox-38.2.0/gd.xpi) = 8acb2f0a4416f8ef182abcf6450e9169852524c0fbf37dbf15cb5156273eec8c +SIZE (xpi/firefox-38.2.0/gd.xpi) = 454616 +SHA256 (xpi/firefox-38.2.0/gl.xpi) = 53ecc5c4d83346d327cfea3ed8554b468f9ecb17daba0ee655268a3d1a23d276 +SIZE (xpi/firefox-38.2.0/gl.xpi) = 448924 +SHA256 (xpi/firefox-38.2.0/gu-IN.xpi) = 33799f5f28c4b6fd80f5ecb5b4ac1ff9ebe34461e50c59151d029053f1f73d53 +SIZE (xpi/firefox-38.2.0/gu-IN.xpi) = 477977 +SHA256 (xpi/firefox-38.2.0/he.xpi) = 98f05fde9c1341b7d32e196660884fa24c266575374aa8fb26859f5fa75b7b46 +SIZE (xpi/firefox-38.2.0/he.xpi) = 486785 +SHA256 (xpi/firefox-38.2.0/hi-IN.xpi) = 3a9480cd2345f00507ae719c33185acf5e9f66a9c996607dfac0ec95d0d32d89 +SIZE (xpi/firefox-38.2.0/hi-IN.xpi) = 508167 +SHA256 (xpi/firefox-38.2.0/hr.xpi) = 125abeb8f4a881fd68bb8f8bd31d7b89c98d35f3d04e18ade625a74e45723466 +SIZE (xpi/firefox-38.2.0/hr.xpi) = 478271 +SHA256 (xpi/firefox-38.2.0/hsb.xpi) = a88449a67fdb85b21e031b894fc060e328c42a3ac1a39d13fff8446cc4df00d1 +SIZE (xpi/firefox-38.2.0/hsb.xpi) = 468720 +SHA256 (xpi/firefox-38.2.0/hu.xpi) = d37fc8e422a2421829665a13c7b39bc18af76afc22639395fe346a3540a360e1 +SIZE (xpi/firefox-38.2.0/hu.xpi) = 453554 +SHA256 (xpi/firefox-38.2.0/hy-AM.xpi) = ebdf5d14d7b97eddafe6fedc3b7b58b4823e2ba7e9f019facc65c469a1c0538b +SIZE (xpi/firefox-38.2.0/hy-AM.xpi) = 534264 +SHA256 (xpi/firefox-38.2.0/id.xpi) = 861b0ee5cd7130606f8db16d16855a932f62d18ea279aeb425d13043b88afecf +SIZE (xpi/firefox-38.2.0/id.xpi) = 431488 +SHA256 (xpi/firefox-38.2.0/is.xpi) = 17f205a9d775e3a97ea3d7b63ee931f4cf5bb24089978fc979dc4d1b5d057311 +SIZE (xpi/firefox-38.2.0/is.xpi) = 485129 +SHA256 (xpi/firefox-38.2.0/it.xpi) = 1da955c3cb53ee2fdbf03454840f2588ec3731b88d5ea31e450c4473eb7c0c8b +SIZE (xpi/firefox-38.2.0/it.xpi) = 368409 +SHA256 (xpi/firefox-38.2.0/ja.xpi) = 1b51688caa1e55b2117fe510d31485a3219c3f4446e3475c87699abd460e84b0 +SIZE (xpi/firefox-38.2.0/ja.xpi) = 479113 +SHA256 (xpi/firefox-38.2.0/kk.xpi) = 9a445773926e5abf3df7ed1e4ace90e52c17ffcfc65e76bc81b14ce3f9a47910 +SIZE (xpi/firefox-38.2.0/kk.xpi) = 503568 +SHA256 (xpi/firefox-38.2.0/km.xpi) = fbff5ab8dae477e73725de8f1ee346287aede8c00b6891dbb11d4500b7e6620e +SIZE (xpi/firefox-38.2.0/km.xpi) = 565673 +SHA256 (xpi/firefox-38.2.0/kn.xpi) = d8756e4efe30cf21178d51ea7186d0bac4980a10fbfb29534d0e3988859d2997 +SIZE (xpi/firefox-38.2.0/kn.xpi) = 533464 +SHA256 (xpi/firefox-38.2.0/ko.xpi) = 19f3413cf7c9e0deaa025d254c8e787f2e2d3dbe0c800841d69f87dd02249b30 +SIZE (xpi/firefox-38.2.0/ko.xpi) = 460854 +SHA256 (xpi/firefox-38.2.0/lij.xpi) = 769ad5652416a94c038f1df689532c35cf00804e7971f7d0bfa7157ebc24e95d +SIZE (xpi/firefox-38.2.0/lij.xpi) = 444239 +SHA256 (xpi/firefox-38.2.0/lt.xpi) = 692e7fb76eba7b2926300e2ae12dd1215c4010722cd95ece2893556ce1729ff5 +SIZE (xpi/firefox-38.2.0/lt.xpi) = 486452 +SHA256 (xpi/firefox-38.2.0/lv.xpi) = 0e7a1903ee292b3bacf00a876bce9618a869a708820bb04cc4487536b7a09590 +SIZE (xpi/firefox-38.2.0/lv.xpi) = 467198 +SHA256 (xpi/firefox-38.2.0/mai.xpi) = c51b1627c24c48721cf799e9438d097d2b815e576042813a15d7631285385499 +SIZE (xpi/firefox-38.2.0/mai.xpi) = 514666 +SHA256 (xpi/firefox-38.2.0/mk.xpi) = e4be6327448665795bc83a5de98826bfbc78118d188e7687546b5b5d170a1e3a +SIZE (xpi/firefox-38.2.0/mk.xpi) = 529205 +SHA256 (xpi/firefox-38.2.0/ml.xpi) = 6aa7b005affd7cdc10d9c42454e841d94ecc94bec273755ef9754e033a3e62be +SIZE (xpi/firefox-38.2.0/ml.xpi) = 528919 +SHA256 (xpi/firefox-38.2.0/mr.xpi) = 73bb6c2101dfa7876814c68b3b02467608c72e0e8bc3517aa0fec61673069bba +SIZE (xpi/firefox-38.2.0/mr.xpi) = 505961 +SHA256 (xpi/firefox-38.2.0/ms.xpi) = f4f68fd8871ab409f9d3d0540873167e693314278a16508450a359d9cafdfdc3 +SIZE (xpi/firefox-38.2.0/ms.xpi) = 489872 +SHA256 (xpi/firefox-38.2.0/nb-NO.xpi) = 8056a9169fd52a12f8f806f1e2870a2578591df8a2c711786bee7ce84436dbfa +SIZE (xpi/firefox-38.2.0/nb-NO.xpi) = 444177 +SHA256 (xpi/firefox-38.2.0/nl.xpi) = 5dd497dbddcc664facae77de25b8b3f4e3c87a1747bc44595dd91b716ba82748 +SIZE (xpi/firefox-38.2.0/nl.xpi) = 443995 +SHA256 (xpi/firefox-38.2.0/nn-NO.xpi) = a7371d8b484cb686965b3769f0bedf6c8803bbbc05021c8b3e24d99dfe66348d +SIZE (xpi/firefox-38.2.0/nn-NO.xpi) = 438452 +SHA256 (xpi/firefox-38.2.0/or.xpi) = 79db2dab58df83d308c614469a7050d3228898fcb2edfbdb9eaf66d37d541719 +SIZE (xpi/firefox-38.2.0/or.xpi) = 527050 +SHA256 (xpi/firefox-38.2.0/pa-IN.xpi) = cbfc04c1b6dd2de9f87bca693b4de8275ab4860cc538c0d7a60fecb58b88c6dd +SIZE (xpi/firefox-38.2.0/pa-IN.xpi) = 493723 +SHA256 (xpi/firefox-38.2.0/pl.xpi) = f7f312ed6907c15004e75cfb95a0e254087932cf8203b1d0419dc1eea055a9c7 +SIZE (xpi/firefox-38.2.0/pl.xpi) = 406567 +SHA256 (xpi/firefox-38.2.0/pt-BR.xpi) = d13fcef16af096732c430b699a53b1d0d76eb3829bff5166d876ffcc94e123e7 +SIZE (xpi/firefox-38.2.0/pt-BR.xpi) = 459814 +SHA256 (xpi/firefox-38.2.0/pt-PT.xpi) = 9cd4c26a521f2e0550ea62ddc27ca751a2b3f2fdc6d55af861936abcdd6c1efd +SIZE (xpi/firefox-38.2.0/pt-PT.xpi) = 439976 +SHA256 (xpi/firefox-38.2.0/rm.xpi) = cf88953513fc4b20a5318b3d4e8f771edc7dc3ef3b3b09a8858ad1b9261c0866 +SIZE (xpi/firefox-38.2.0/rm.xpi) = 446287 +SHA256 (xpi/firefox-38.2.0/ro.xpi) = d5151574b477c6964461ae75563397ebc8f11dfb9331e2ffeb046a4bd046ea97 +SIZE (xpi/firefox-38.2.0/ro.xpi) = 494080 +SHA256 (xpi/firefox-38.2.0/ru.xpi) = 0289531702f0e2ad68984a9dd939e67dafed98eed7c1a6552d136d759ed74684 +SIZE (xpi/firefox-38.2.0/ru.xpi) = 414418 +SHA256 (xpi/firefox-38.2.0/si.xpi) = 314d1635548bbfd7f41927cf327c781d03d99b8ed1a2c8775a34ba6cd3b12a85 +SIZE (xpi/firefox-38.2.0/si.xpi) = 537394 +SHA256 (xpi/firefox-38.2.0/sk.xpi) = d40e11bda881fa9703e51065bab7204bc5dad8d4affedd4638cfe96f907ddf07 +SIZE (xpi/firefox-38.2.0/sk.xpi) = 469436 +SHA256 (xpi/firefox-38.2.0/sl.xpi) = 8ba7277af23a615970cc1384d3b54e8d88a3305da9fe03790819e7b1aeb41a15 +SIZE (xpi/firefox-38.2.0/sl.xpi) = 441594 +SHA256 (xpi/firefox-38.2.0/son.xpi) = 3709b10419d813e3255ef9022e276344ca90788c33858aec111c541b455bb79a +SIZE (xpi/firefox-38.2.0/son.xpi) = 449268 +SHA256 (xpi/firefox-38.2.0/sq.xpi) = fdc0e581d870726728aad45980c6f10d4141a0b9fa39424e51335c8751063e30 +SIZE (xpi/firefox-38.2.0/sq.xpi) = 486075 +SHA256 (xpi/firefox-38.2.0/sr.xpi) = 6007a48742b675c34bd8a331c201f79a19cb52fe7dd7907cd73e76ff9d0c090c +SIZE (xpi/firefox-38.2.0/sr.xpi) = 479420 +SHA256 (xpi/firefox-38.2.0/sv-SE.xpi) = 21158bf5a1286bc55dda4e34ef00fecf5490c55da61dfbb8de8a8f15f6c3fb95 +SIZE (xpi/firefox-38.2.0/sv-SE.xpi) = 452632 +SHA256 (xpi/firefox-38.2.0/ta.xpi) = ec13ec46f071219815b200ab46f103ebdca82308187562d57ae9ae01a9c234e8 +SIZE (xpi/firefox-38.2.0/ta.xpi) = 506606 +SHA256 (xpi/firefox-38.2.0/te.xpi) = b1ffd8fa3534f51d3ec9294288223898d8c41285c4fa400e096fc7ec1aff8b0b +SIZE (xpi/firefox-38.2.0/te.xpi) = 526253 +SHA256 (xpi/firefox-38.2.0/th.xpi) = 0e15637fcefb0e16c4722c242466d2f67b18eb0fbe79097cc29e5358cf7aa19d +SIZE (xpi/firefox-38.2.0/th.xpi) = 534271 +SHA256 (xpi/firefox-38.2.0/tr.xpi) = fae94efd727ddd145146d2df759e02e060e8302c666ea6cb2d09558bdff76abe +SIZE (xpi/firefox-38.2.0/tr.xpi) = 481076 +SHA256 (xpi/firefox-38.2.0/uk.xpi) = d9871bbdffe5f9cf5275894c05a7934a21af421c3343844fb5efa78efa06aaa8 +SIZE (xpi/firefox-38.2.0/uk.xpi) = 493314 +SHA256 (xpi/firefox-38.2.0/vi.xpi) = 9e7dc043c3aa7890255241bdd0292a01d957fcb77434ed236df07401e3f7a9b2 +SIZE (xpi/firefox-38.2.0/vi.xpi) = 467505 +SHA256 (xpi/firefox-38.2.0/xh.xpi) = d41ee639470dce1ff3a103987c16ad5dc32c3b1f468760855d9c840dfbc0a39d +SIZE (xpi/firefox-38.2.0/xh.xpi) = 450242 +SHA256 (xpi/firefox-38.2.0/zh-CN.xpi) = 6b58c8a6fd5e62933d8ec42758a6fc7dd4794b7f659855331debc876e8b80bec +SIZE (xpi/firefox-38.2.0/zh-CN.xpi) = 488277 +SHA256 (xpi/firefox-38.2.0/zh-TW.xpi) = bb22672b52104fd11c28d5609d2c039dd0b3636445b091523dfb90538cf84e94 +SIZE (xpi/firefox-38.2.0/zh-TW.xpi) = 467844 Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox-esr/Makefile Tue Aug 11 18:29:59 2015 (r393958) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 38.1.0 +DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build2/source PKGNAMESUFFIX= -esr MAINTAINER= gecko@FreeBSD.org Modified: branches/2015Q3/www/firefox-esr/distinfo ============================================================================== --- branches/2015Q3/www/firefox-esr/distinfo Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox-esr/distinfo Tue Aug 11 18:29:59 2015 (r393958) @@ -1,2 +1,2 @@ -SHA256 (firefox-38.1.0esr.source.tar.bz2) = 85eb5f916aa47a92cf50803dcb35e7fa3a9da29abf5fc91cbb6a70bbbc2618ff -SIZE (firefox-38.1.0esr.source.tar.bz2) = 180392775 +SHA256 (firefox-38.2.0esr.source.tar.bz2) = 55867254f21cfc610aa63c8aa0d7156df6eb4c0cb37ebac30259e4890170aacb +SIZE (firefox-38.2.0esr.source.tar.bz2) = 180722192 Modified: branches/2015Q3/www/firefox-i18n/Makefile ============================================================================== --- branches/2015Q3/www/firefox-i18n/Makefile Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox-i18n/Makefile Tue Aug 11 18:29:59 2015 (r393958) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 39.0 +PORTVERSION= 40.0 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build6/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build5/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:${PORTSDIR}/archivers/zip -USES= zip:infozip gecko:firefox,39,build +USES= zip:infozip gecko:firefox,40,build USE_XPI= firefox linux-firefox NO_ARCH= yes Modified: branches/2015Q3/www/firefox-i18n/distinfo ============================================================================== --- branches/2015Q3/www/firefox-i18n/distinfo Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox-i18n/distinfo Tue Aug 11 18:29:59 2015 (r393958) @@ -1,176 +1,176 @@ -SHA256 (xpi/firefox-i18n-39.0/ach.xpi) = c922e238ef7201cb0b0c2a9da00164c350b440a3d02c838daa45b17713bf3eab -SIZE (xpi/firefox-i18n-39.0/ach.xpi) = 483041 -SHA256 (xpi/firefox-i18n-39.0/af.xpi) = 3653816368acb76e6773826db81c6473bdd923f7d61ca5ef24e9144d38c3752e -SIZE (xpi/firefox-i18n-39.0/af.xpi) = 487310 -SHA256 (xpi/firefox-i18n-39.0/an.xpi) = c0bf2029255947a5c1fcb681fdb4ad0522a0b9941f5862046c45a70d04b68609 -SIZE (xpi/firefox-i18n-39.0/an.xpi) = 465359 -SHA256 (xpi/firefox-i18n-39.0/ar.xpi) = 1607562dafe4274ed7eb74e8d993baa70162c91de265bb2ac1dd8a63bdc1a3b3 -SIZE (xpi/firefox-i18n-39.0/ar.xpi) = 520323 -SHA256 (xpi/firefox-i18n-39.0/as.xpi) = 653ee076f738a7365dd75da4899032f31ac73451e9a2b26a1ec5e4621547f443 -SIZE (xpi/firefox-i18n-39.0/as.xpi) = 514544 -SHA256 (xpi/firefox-i18n-39.0/ast.xpi) = 1fde38dbd96c86bc523d8524472c0de157d58d07e963a1a9bb6794fb6db484d4 -SIZE (xpi/firefox-i18n-39.0/ast.xpi) = 387702 -SHA256 (xpi/firefox-i18n-39.0/az.xpi) = 6bdd0663efa56eebaa67edabee1630147b051181ad993c14241ba7a7b4ccaad0 -SIZE (xpi/firefox-i18n-39.0/az.xpi) = 494213 -SHA256 (xpi/firefox-i18n-39.0/be.xpi) = 8a2278c789a06cc5b27ccfff3731ed8c534529d67e9c5cc42a2e3b6d8613c858 -SIZE (xpi/firefox-i18n-39.0/be.xpi) = 445945 -SHA256 (xpi/firefox-i18n-39.0/bg.xpi) = 24d6285a03ee495b928be4f221f49af8a1f9a07f4ce5be14beff6ebc531f7687 -SIZE (xpi/firefox-i18n-39.0/bg.xpi) = 491422 -SHA256 (xpi/firefox-i18n-39.0/bn-BD.xpi) = 67d9759ac8d22b976ede194fd4c03b72411aa8bb7f733d13ea034119b0a086e5 -SIZE (xpi/firefox-i18n-39.0/bn-BD.xpi) = 533076 -SHA256 (xpi/firefox-i18n-39.0/bn-IN.xpi) = ec20ec3b29b5c7c8827fdbe78e7081ba20ae7d840ed7181b80bd983e19e26dc0 -SIZE (xpi/firefox-i18n-39.0/bn-IN.xpi) = 532548 -SHA256 (xpi/firefox-i18n-39.0/br.xpi) = b2cb99df9e051e3f625b99f8e929a2cddfea5252e41be0064d6ca3d782b1f592 -SIZE (xpi/firefox-i18n-39.0/br.xpi) = 445830 -SHA256 (xpi/firefox-i18n-39.0/bs.xpi) = 9b85eb51785eafdd7467baba89fec2ad72596e56ca7c955f809b23076467853e -SIZE (xpi/firefox-i18n-39.0/bs.xpi) = 489604 -SHA256 (xpi/firefox-i18n-39.0/ca.xpi) = e4302b4babac9b90600ef142bf9d1060a596ac64f91481b23c4884d10f69183f -SIZE (xpi/firefox-i18n-39.0/ca.xpi) = 461923 -SHA256 (xpi/firefox-i18n-39.0/cs.xpi) = 26de879be7e96d6c8020a46ba73049ed13344c1943ea0128ffdcce356cd02f95 -SIZE (xpi/firefox-i18n-39.0/cs.xpi) = 450723 -SHA256 (xpi/firefox-i18n-39.0/cy.xpi) = 91cb0a9d93c5214e0e42ec9fa19c318209635975f7da6849e0b3ccd3a95c5951 -SIZE (xpi/firefox-i18n-39.0/cy.xpi) = 448065 -SHA256 (xpi/firefox-i18n-39.0/da.xpi) = 64748e6b957775bb3ac42bb35f227c88092afb11afce62b425b4c0747fbe285f -SIZE (xpi/firefox-i18n-39.0/da.xpi) = 454611 -SHA256 (xpi/firefox-i18n-39.0/de.xpi) = 56bb69de98fc46442e3aa2c09f95ebd0723f3c73fd890a013450c88225f9a80f -SIZE (xpi/firefox-i18n-39.0/de.xpi) = 456189 -SHA256 (xpi/firefox-i18n-39.0/dsb.xpi) = 802fcc3a4a30b7b899bdceb5a45878b48da89a9048e4a295784c07b45198cd7a -SIZE (xpi/firefox-i18n-39.0/dsb.xpi) = 474911 -SHA256 (xpi/firefox-i18n-39.0/el.xpi) = 22f7185683d08b186ca0022663f1c822b865683f913e8411ebd50408dc91bd2f -SIZE (xpi/firefox-i18n-39.0/el.xpi) = 502653 -SHA256 (xpi/firefox-i18n-39.0/en-GB.xpi) = 2cf069f9da826329c5e5a22aadc4ea5a08ab0e25470b43c358e4ea14edebe88a -SIZE (xpi/firefox-i18n-39.0/en-GB.xpi) = 441232 -SHA256 (xpi/firefox-i18n-39.0/en-US.xpi) = 0e89eb7cbe1fb84203d0217200dcea154a7422d1a7e6049f564796576a732762 -SIZE (xpi/firefox-i18n-39.0/en-US.xpi) = 473134 -SHA256 (xpi/firefox-i18n-39.0/en-ZA.xpi) = 73a7c02e116e86db894266147770124e6627a82c8a3cfe8e336526215fd50444 -SIZE (xpi/firefox-i18n-39.0/en-ZA.xpi) = 444467 -SHA256 (xpi/firefox-i18n-39.0/eo.xpi) = 972ddf4c1acffd1f46b7fe3d7926994a8be0bfccc8589466c26490cc97d06a3d -SIZE (xpi/firefox-i18n-39.0/eo.xpi) = 489005 -SHA256 (xpi/firefox-i18n-39.0/es-AR.xpi) = 1f6fefebe9901763b950de6bbe6aa85bb948673d976f47814b907507274f0766 -SIZE (xpi/firefox-i18n-39.0/es-AR.xpi) = 457407 -SHA256 (xpi/firefox-i18n-39.0/es-CL.xpi) = 03bd03f60a298295a975252629c8ff9362430d15b650f5bcd82ce6604d0cf514 -SIZE (xpi/firefox-i18n-39.0/es-CL.xpi) = 386702 -SHA256 (xpi/firefox-i18n-39.0/es-ES.xpi) = a096fc6c58a2959bf8471830040351feddfac0555150af9409540cec10685afe -SIZE (xpi/firefox-i18n-39.0/es-ES.xpi) = 376299 -SHA256 (xpi/firefox-i18n-39.0/es-MX.xpi) = 56793b19b75c7c1e9692f3b3d415e572439800e288f8e0227bcf690466a064fa -SIZE (xpi/firefox-i18n-39.0/es-MX.xpi) = 462390 -SHA256 (xpi/firefox-i18n-39.0/et.xpi) = 0aaa0ccc0568456adbc0401acceb97983a7045405f4972058b60606fedc19c79 -SIZE (xpi/firefox-i18n-39.0/et.xpi) = 446725 -SHA256 (xpi/firefox-i18n-39.0/eu.xpi) = 7d04e5b11906f474d4096cb496514f8f370eada489739d31742128c7aaebcc91 -SIZE (xpi/firefox-i18n-39.0/eu.xpi) = 470410 -SHA256 (xpi/firefox-i18n-39.0/fa.xpi) = 605d95815fe0c77a4fc5df46d670d4e8e5b35924729a3a640210a0581d3330a1 -SIZE (xpi/firefox-i18n-39.0/fa.xpi) = 520579 -SHA256 (xpi/firefox-i18n-39.0/ff.xpi) = 30e3f30a775f38cb5663a707a1a85ee59f91007fbc229e47401a753702772d89 -SIZE (xpi/firefox-i18n-39.0/ff.xpi) = 459433 -SHA256 (xpi/firefox-i18n-39.0/fi.xpi) = 59d56595435d52e334cb3f388f711ced61075cf0026ba7d4e2cd04527d689ca7 -SIZE (xpi/firefox-i18n-39.0/fi.xpi) = 448585 -SHA256 (xpi/firefox-i18n-39.0/fr.xpi) = 59f1fc070ab7b7f65bab0c475f8fe894fa5c4e924d4f78b97cec8268d2359c41 -SIZE (xpi/firefox-i18n-39.0/fr.xpi) = 465588 -SHA256 (xpi/firefox-i18n-39.0/fy-NL.xpi) = 4812b3fae6bd6083fc0520487403c95f6104d7838e7edc450f05bce495832e3c -SIZE (xpi/firefox-i18n-39.0/fy-NL.xpi) = 459611 -SHA256 (xpi/firefox-i18n-39.0/ga-IE.xpi) = 75f737af71ef7cb19ef4bcd99fa63c6c5d5b77b2d2b96c526b46faa375c2c6db -SIZE (xpi/firefox-i18n-39.0/ga-IE.xpi) = 473547 -SHA256 (xpi/firefox-i18n-39.0/gd.xpi) = 792a7907e5eeb1486a404b9a3a8d88d7eecca87d87a2646d9a11cdaefe01a78c -SIZE (xpi/firefox-i18n-39.0/gd.xpi) = 458521 -SHA256 (xpi/firefox-i18n-39.0/gl.xpi) = fa21c7bcc4989c6c0c0c459f46f7bd716cb7d19ad37861d57389177e7b1e143a -SIZE (xpi/firefox-i18n-39.0/gl.xpi) = 453846 -SHA256 (xpi/firefox-i18n-39.0/gu-IN.xpi) = 189995f89fa441a743354e708d9e8a87d346625881ffaad7bff528de90ba1206 -SIZE (xpi/firefox-i18n-39.0/gu-IN.xpi) = 482866 -SHA256 (xpi/firefox-i18n-39.0/he.xpi) = 70984a01b309959bcbe1d693cba3d92b51a65c3e71535ec015c4b3f950a53f62 -SIZE (xpi/firefox-i18n-39.0/he.xpi) = 486474 -SHA256 (xpi/firefox-i18n-39.0/hi-IN.xpi) = a340651af88b6437a9c04e0c7186f928b730475550a383ac8387714f7a40f1a9 -SIZE (xpi/firefox-i18n-39.0/hi-IN.xpi) = 513451 -SHA256 (xpi/firefox-i18n-39.0/hr.xpi) = 48ab8729d65620b8ccb3e866a4d3eb57bb4e9d4e363491a0c61f1eea122e0c24 -SIZE (xpi/firefox-i18n-39.0/hr.xpi) = 482071 -SHA256 (xpi/firefox-i18n-39.0/hsb.xpi) = f87894bd9d003e9a62548ac82608dbb4b24f36eea8d776872c490a576b4c80e7 -SIZE (xpi/firefox-i18n-39.0/hsb.xpi) = 472665 -SHA256 (xpi/firefox-i18n-39.0/hu.xpi) = e1388ec88077f8a3111d8011b7e8e8773580a1e2b71d6432baff09fa08ee54a8 -SIZE (xpi/firefox-i18n-39.0/hu.xpi) = 457441 -SHA256 (xpi/firefox-i18n-39.0/hy-AM.xpi) = 1ab7dbb561103d9ac32e55c273ebf738480567a9882c9957f9e29829814dc766 -SIZE (xpi/firefox-i18n-39.0/hy-AM.xpi) = 538192 -SHA256 (xpi/firefox-i18n-39.0/id.xpi) = 41ec6c7ea5015d879600675359a21e160a6fc940e1ff634949c759a076da9c06 -SIZE (xpi/firefox-i18n-39.0/id.xpi) = 435240 -SHA256 (xpi/firefox-i18n-39.0/is.xpi) = 68651c22d74e0133a82eab94e8734bfded3bc219b1de7489180835573cb81ba6 -SIZE (xpi/firefox-i18n-39.0/is.xpi) = 488859 -SHA256 (xpi/firefox-i18n-39.0/it.xpi) = 7a681ca2928e3e2154ca190cc06d015144afffd9669b938410e8d48980a1c959 -SIZE (xpi/firefox-i18n-39.0/it.xpi) = 370614 -SHA256 (xpi/firefox-i18n-39.0/ja.xpi) = e510ba604a63b8cb6caf1e24500cb5cfb6a07a90ff22f111b501e847523ff2d0 -SIZE (xpi/firefox-i18n-39.0/ja.xpi) = 483150 -SHA256 (xpi/firefox-i18n-39.0/kk.xpi) = 5ff684dc2245de82a8edda2d02ee20dfbef7db6165060b20e6e3d229437968ef -SIZE (xpi/firefox-i18n-39.0/kk.xpi) = 507527 -SHA256 (xpi/firefox-i18n-39.0/km.xpi) = 27d62503232240cd92508ce3d724f351d5ff8ad99a52d3cf962cf948829a9162 -SIZE (xpi/firefox-i18n-39.0/km.xpi) = 571219 -SHA256 (xpi/firefox-i18n-39.0/kn.xpi) = 342165fe3c5060bb15f6a889e4be80653731012be8d694e8ef817b447230cc46 -SIZE (xpi/firefox-i18n-39.0/kn.xpi) = 537653 -SHA256 (xpi/firefox-i18n-39.0/ko.xpi) = 348a8c4cd0f26b244fc2bc8467a8e6a8285bb7228e6deb6288fc7b464152ebe5 -SIZE (xpi/firefox-i18n-39.0/ko.xpi) = 465013 -SHA256 (xpi/firefox-i18n-39.0/lij.xpi) = 1870af5218e7223a83f935bbe58415e95a278dd1191db1c7b9f2e3446ae12285 -SIZE (xpi/firefox-i18n-39.0/lij.xpi) = 448691 -SHA256 (xpi/firefox-i18n-39.0/lt.xpi) = c49a0538443d77e1fbaf6660fdc15bc76181723af2f8b07af6579b408bc24370 -SIZE (xpi/firefox-i18n-39.0/lt.xpi) = 490579 -SHA256 (xpi/firefox-i18n-39.0/lv.xpi) = 8ac08b4ac3ae70dd7bbe090f0b0f984ebefef03c6d1d20cc4ba3527605c921be -SIZE (xpi/firefox-i18n-39.0/lv.xpi) = 471166 -SHA256 (xpi/firefox-i18n-39.0/mai.xpi) = 561890d80e0162a7e2f3ba5e46ecc07f2ea681005f6f3bae6810fb8acf9408e0 -SIZE (xpi/firefox-i18n-39.0/mai.xpi) = 520123 -SHA256 (xpi/firefox-i18n-39.0/mk.xpi) = e91f81eb8b68e7a2af87d5c82577bc713e4c163a0a64b9a80a99ee6b0830dc56 -SIZE (xpi/firefox-i18n-39.0/mk.xpi) = 533582 -SHA256 (xpi/firefox-i18n-39.0/ml.xpi) = 9fecda84807976d1b320c0070b4f87eff5813f4965aec60e27df8f64e0f08622 -SIZE (xpi/firefox-i18n-39.0/ml.xpi) = 533592 -SHA256 (xpi/firefox-i18n-39.0/mr.xpi) = 511dcdbdb0d0fa919acf81879544d32e066e435bdda14a991f86d0c4999aae4c -SIZE (xpi/firefox-i18n-39.0/mr.xpi) = 510890 -SHA256 (xpi/firefox-i18n-39.0/ms.xpi) = 29494a97c34ed72ca533bec56481eb1baf75d48cc956e13030ff573d4434476e -SIZE (xpi/firefox-i18n-39.0/ms.xpi) = 494765 -SHA256 (xpi/firefox-i18n-39.0/nb-NO.xpi) = 4070b2df0eec4f1f2176c382759c1be4742a12313c01c3bd77ff80bfad0f7100 -SIZE (xpi/firefox-i18n-39.0/nb-NO.xpi) = 447825 -SHA256 (xpi/firefox-i18n-39.0/nl.xpi) = a99f7645bfb669f3a1e6d70ed6401f6492d1ac426757ca8c40683ecb3166ab19 -SIZE (xpi/firefox-i18n-39.0/nl.xpi) = 447540 -SHA256 (xpi/firefox-i18n-39.0/nn-NO.xpi) = 3481260f436473f8b4fa4116faece6a12472b022bd59e477bdec5d85edf211bd -SIZE (xpi/firefox-i18n-39.0/nn-NO.xpi) = 442076 -SHA256 (xpi/firefox-i18n-39.0/or.xpi) = 0a0fdb72e6ee2481fd0f6057021a03dd8c150b428cce05029649f72c8c308cc1 -SIZE (xpi/firefox-i18n-39.0/or.xpi) = 532004 -SHA256 (xpi/firefox-i18n-39.0/pa-IN.xpi) = 4f1359b27b7131ddc944b5746adb2af2b5c319d19151447075db512359f7f084 -SIZE (xpi/firefox-i18n-39.0/pa-IN.xpi) = 497420 -SHA256 (xpi/firefox-i18n-39.0/pl.xpi) = ca291faf583e5b53d5ac607d6e0a6eec13fdedddbf1a003158edf75d475c007d -SIZE (xpi/firefox-i18n-39.0/pl.xpi) = 408063 -SHA256 (xpi/firefox-i18n-39.0/pt-BR.xpi) = 55fbd2f5e4081394fa79b51935f809b5d5ed283f3c5d08597eb8aafdf1f012b4 -SIZE (xpi/firefox-i18n-39.0/pt-BR.xpi) = 463600 -SHA256 (xpi/firefox-i18n-39.0/pt-PT.xpi) = a41b6fc5b5791a596184b5226e3bb8d6185ad97a58bedcb8589afae849a6c40e -SIZE (xpi/firefox-i18n-39.0/pt-PT.xpi) = 444720 -SHA256 (xpi/firefox-i18n-39.0/rm.xpi) = 451394fad795daae087c5bd2d80d9afdc1b0eae52b73a66f97cb3bae61e1419d -SIZE (xpi/firefox-i18n-39.0/rm.xpi) = 449713 -SHA256 (xpi/firefox-i18n-39.0/ro.xpi) = a81a237f50f2aed3186029a1a63556d2ca6ed5c6b6b95c5b9137c94a88a1496c -SIZE (xpi/firefox-i18n-39.0/ro.xpi) = 497997 -SHA256 (xpi/firefox-i18n-39.0/ru.xpi) = 5b3ccfb721175424e567da7071ad3a3fd4f7ac1aaddea5106cd57f306014e1c4 -SIZE (xpi/firefox-i18n-39.0/ru.xpi) = 417166 -SHA256 (xpi/firefox-i18n-39.0/si.xpi) = bc0f7a5bdd857cc7bccec42aeaa87ebb50f3e6be515b91c1465de602ec4ba907 -SIZE (xpi/firefox-i18n-39.0/si.xpi) = 542367 -SHA256 (xpi/firefox-i18n-39.0/sk.xpi) = 749217670c0ab1bc40c5cf19380185ad77a9ab95b130a7d47bd71f5110303073 -SIZE (xpi/firefox-i18n-39.0/sk.xpi) = 473458 -SHA256 (xpi/firefox-i18n-39.0/sl.xpi) = 3c5807b2e4a150dcd625e227fa09414ac6e35f81c02984727681ce70158fdc35 -SIZE (xpi/firefox-i18n-39.0/sl.xpi) = 445483 -SHA256 (xpi/firefox-i18n-39.0/son.xpi) = c23ee1f72b1bdbaa2e9ead73dd8513413ed775d1f10ff3d73d17f10e0eba8267 -SIZE (xpi/firefox-i18n-39.0/son.xpi) = 453638 -SHA256 (xpi/firefox-i18n-39.0/sq.xpi) = 570609619b1850037303663b9bc27e1670b1248bd054a93d9d671e32dc9e037a -SIZE (xpi/firefox-i18n-39.0/sq.xpi) = 489758 -SHA256 (xpi/firefox-i18n-39.0/sr.xpi) = 0c559cc85f990b2759baf9cec96554e3e8c062ee5a0ab571e408aa888e6495b7 -SIZE (xpi/firefox-i18n-39.0/sr.xpi) = 483401 -SHA256 (xpi/firefox-i18n-39.0/sv-SE.xpi) = 88fa20f03e1c9f9ec7b8db45c1fbe3fd4eb89c10f52f0352b6e922352e986fa6 -SIZE (xpi/firefox-i18n-39.0/sv-SE.xpi) = 456397 -SHA256 (xpi/firefox-i18n-39.0/ta.xpi) = b1c71f7c30456bd20cc670cc976ca419257f15b01776be7095276d42e39f78ba -SIZE (xpi/firefox-i18n-39.0/ta.xpi) = 511678 -SHA256 (xpi/firefox-i18n-39.0/te.xpi) = 245cbea46dbbe581a728262a3bff4bdad410fc447c1dfcfc5ab68825f0685d6b -SIZE (xpi/firefox-i18n-39.0/te.xpi) = 531784 -SHA256 (xpi/firefox-i18n-39.0/th.xpi) = 1222f9eebb48c02abcac8e0f064e23bdb7b4c5288211816a51e598d2135aee90 -SIZE (xpi/firefox-i18n-39.0/th.xpi) = 539248 -SHA256 (xpi/firefox-i18n-39.0/tr.xpi) = 712b98ad2a0cf4b059554fe76d798a76ec3aa10ce2e95af0796dd9d46fa120b0 -SIZE (xpi/firefox-i18n-39.0/tr.xpi) = 484956 -SHA256 (xpi/firefox-i18n-39.0/uk.xpi) = 5b06984dc2d539dab5d3b83ec915b02a498d41185a2d3bfb7e465ef139fd605b -SIZE (xpi/firefox-i18n-39.0/uk.xpi) = 498395 -SHA256 (xpi/firefox-i18n-39.0/vi.xpi) = a44f0486939c81e86e2aaf255cfe70d17e2ec42b8cc400ec2d699c3a1a951044 -SIZE (xpi/firefox-i18n-39.0/vi.xpi) = 471789 -SHA256 (xpi/firefox-i18n-39.0/xh.xpi) = 8d66c08160c6a2e3860bca6cc7d9c87b653c97c70994beb45bfc8fad9afb4f03 -SIZE (xpi/firefox-i18n-39.0/xh.xpi) = 454916 -SHA256 (xpi/firefox-i18n-39.0/zh-CN.xpi) = a7e959d6aba6f67b880b9ebcc1d1c2e253f01e079475191dc3eef978a9d9b2b5 -SIZE (xpi/firefox-i18n-39.0/zh-CN.xpi) = 492380 -SHA256 (xpi/firefox-i18n-39.0/zh-TW.xpi) = ec30c554c57aa27835723253f4c0dfc4fc75ca591f9a64fbd65f7622d7b212dd -SIZE (xpi/firefox-i18n-39.0/zh-TW.xpi) = 471887 +SHA256 (xpi/firefox-i18n-40.0/ach.xpi) = ca02f5f99d39d1e8a0e213d38306ac51ec289fcb0487d057f54d09d1923cd0d1 +SIZE (xpi/firefox-i18n-40.0/ach.xpi) = 494118 +SHA256 (xpi/firefox-i18n-40.0/af.xpi) = f45aa959ace5e985d629558ae108349032dad513b6a2b5883e9e4a5a35053b60 +SIZE (xpi/firefox-i18n-40.0/af.xpi) = 498499 +SHA256 (xpi/firefox-i18n-40.0/an.xpi) = 091b85264dfe2331e62de8c5ea051bbc018e00ada06be4a15d6809573858504d +SIZE (xpi/firefox-i18n-40.0/an.xpi) = 476724 +SHA256 (xpi/firefox-i18n-40.0/ar.xpi) = 2a3e4125730d215d7090b8a6b7bf0b3e06d991d8f2c26132f2c777a90633e021 +SIZE (xpi/firefox-i18n-40.0/ar.xpi) = 532105 +SHA256 (xpi/firefox-i18n-40.0/as.xpi) = 07f9a6864edfd55807f961639862ff7a46d4b550a976fa3f978a1dcfee8b195c +SIZE (xpi/firefox-i18n-40.0/as.xpi) = 522245 +SHA256 (xpi/firefox-i18n-40.0/ast.xpi) = e53e3481dfda6235b8af3cba577b73a9ebab85a6a13e4cfc7a9630d39c14948e +SIZE (xpi/firefox-i18n-40.0/ast.xpi) = 408919 +SHA256 (xpi/firefox-i18n-40.0/az.xpi) = bdb6b617e20f02166e19f36eba02e18d5de2276bff3f0d45c12ebb9eb0df1845 +SIZE (xpi/firefox-i18n-40.0/az.xpi) = 505059 +SHA256 (xpi/firefox-i18n-40.0/be.xpi) = 65067347acf063f110ad8ade3254a7701db9fd5d73aea1d68497455f4fa43cf2 +SIZE (xpi/firefox-i18n-40.0/be.xpi) = 464200 +SHA256 (xpi/firefox-i18n-40.0/bg.xpi) = f51d9dc47627b2c9683220909174e31d293b4aa9088bcf753fbd895b84e92923 +SIZE (xpi/firefox-i18n-40.0/bg.xpi) = 503493 +SHA256 (xpi/firefox-i18n-40.0/bn-BD.xpi) = 4da27685170fedcc6d35e10bd214032956c098abea3fe9e78fc8c67c021b6403 +SIZE (xpi/firefox-i18n-40.0/bn-BD.xpi) = 538759 +SHA256 (xpi/firefox-i18n-40.0/bn-IN.xpi) = 0560547c67d500b634ce635d51a153ebbf3b9129e8ac450af2806e99cccf0ba5 +SIZE (xpi/firefox-i18n-40.0/bn-IN.xpi) = 541269 +SHA256 (xpi/firefox-i18n-40.0/br.xpi) = fbde4d5e57f4a750e313efe2d9cf72ec0a2ab3beb31816af76f30578a921ed9a +SIZE (xpi/firefox-i18n-40.0/br.xpi) = 456848 +SHA256 (xpi/firefox-i18n-40.0/bs.xpi) = df3e7c6d6598e8aed886769ddf93321d102e05a2c05610e95fa8d8bcc6a80835 +SIZE (xpi/firefox-i18n-40.0/bs.xpi) = 497331 +SHA256 (xpi/firefox-i18n-40.0/ca.xpi) = 9873d8a1ad290d5b5e53811498bb8e8cfc6133efffa34756195fd8c0b3e2d255 +SIZE (xpi/firefox-i18n-40.0/ca.xpi) = 474109 +SHA256 (xpi/firefox-i18n-40.0/cs.xpi) = eec694b24562c1157007b117e4fd9156145d72f1f9eccb09781facaa8a4d3533 +SIZE (xpi/firefox-i18n-40.0/cs.xpi) = 462357 +SHA256 (xpi/firefox-i18n-40.0/cy.xpi) = a523735be0880b194449884deb3c7fee16df67831668d0138daac651255e94a8 +SIZE (xpi/firefox-i18n-40.0/cy.xpi) = 459245 +SHA256 (xpi/firefox-i18n-40.0/da.xpi) = 7fffd2ac1cb1784268912d66cd4fd020c11a57ab2320c2e33cd2194e209cba40 +SIZE (xpi/firefox-i18n-40.0/da.xpi) = 465571 +SHA256 (xpi/firefox-i18n-40.0/de.xpi) = 473bfcd2abefb2bf4d016b9b7fa84affc1d1f337fc7e2f35e7a6e737e766037c +SIZE (xpi/firefox-i18n-40.0/de.xpi) = 467231 +SHA256 (xpi/firefox-i18n-40.0/dsb.xpi) = 2b929dac317a6eae1c11e56dc81359b7dfcee6904997af2ce2109348e0cd199c +SIZE (xpi/firefox-i18n-40.0/dsb.xpi) = 486586 +SHA256 (xpi/firefox-i18n-40.0/el.xpi) = 68eacf8bf2dfcc4ba1ba6b8c19300354a245d3d55ceb34c17a6694fe46762154 +SIZE (xpi/firefox-i18n-40.0/el.xpi) = 513115 +SHA256 (xpi/firefox-i18n-40.0/en-GB.xpi) = f7cee042d9c58291855ee601f6ccb441e31f06f6daa553867a83d1baba35ce82 +SIZE (xpi/firefox-i18n-40.0/en-GB.xpi) = 451899 +SHA256 (xpi/firefox-i18n-40.0/en-US.xpi) = efd835b830e5e42f900cb802a1f9affe9d3548db409271442b24dffb38da1ca0 +SIZE (xpi/firefox-i18n-40.0/en-US.xpi) = 483748 +SHA256 (xpi/firefox-i18n-40.0/en-ZA.xpi) = 4e9b6fb1470f999e454c0dbd1b3373c7f5851499f199ec6c3080ffcc18018ab5 +SIZE (xpi/firefox-i18n-40.0/en-ZA.xpi) = 455369 +SHA256 (xpi/firefox-i18n-40.0/eo.xpi) = 93b95ec661112188316f418a87c2a7866fa5d41fe2181fc77a011091dd099641 +SIZE (xpi/firefox-i18n-40.0/eo.xpi) = 500201 +SHA256 (xpi/firefox-i18n-40.0/es-AR.xpi) = e83df51c03b27623ee95451ce534fec89581b71ab2beeb9455226d46e2ddda33 +SIZE (xpi/firefox-i18n-40.0/es-AR.xpi) = 468597 +SHA256 (xpi/firefox-i18n-40.0/es-CL.xpi) = 58fd971bbc3eecc374905009eac0b057732a31960dc25559be2ae3931b4d5bc3 +SIZE (xpi/firefox-i18n-40.0/es-CL.xpi) = 394971 +SHA256 (xpi/firefox-i18n-40.0/es-ES.xpi) = a54c2857874d920be18341dede5edfe58b504ea58df608a6942892f27f038de7 +SIZE (xpi/firefox-i18n-40.0/es-ES.xpi) = 383893 +SHA256 (xpi/firefox-i18n-40.0/es-MX.xpi) = d2095ad86bfe5c75f4ece9f13f2bed9fc7c96552abb491268052091a5389162e +SIZE (xpi/firefox-i18n-40.0/es-MX.xpi) = 472916 +SHA256 (xpi/firefox-i18n-40.0/et.xpi) = 999d7f07b8883aa80b086a1c1e143c619898e9aa7bda4c633de99c028355d9b9 +SIZE (xpi/firefox-i18n-40.0/et.xpi) = 457407 +SHA256 (xpi/firefox-i18n-40.0/eu.xpi) = 63a5014e8fed8f45cfbad4f665fc476b8cca3110a096be990bef44e4d5c8ea49 +SIZE (xpi/firefox-i18n-40.0/eu.xpi) = 481823 +SHA256 (xpi/firefox-i18n-40.0/fa.xpi) = dff526ad97b4f49503d483782e052c8c8bc9dd76efbce9da1e56a179ac64da6d +SIZE (xpi/firefox-i18n-40.0/fa.xpi) = 526970 +SHA256 (xpi/firefox-i18n-40.0/ff.xpi) = 046651c1b1c7260d6f03795cc91d980904e3e0bce3c300010c32530e4088c5f4 +SIZE (xpi/firefox-i18n-40.0/ff.xpi) = 465792 +SHA256 (xpi/firefox-i18n-40.0/fi.xpi) = 1582bfdd5a88f8eba421c998ef91fada9ab9f7f4dea24dd557fd533404b3928a +SIZE (xpi/firefox-i18n-40.0/fi.xpi) = 459381 +SHA256 (xpi/firefox-i18n-40.0/fr.xpi) = ced2befd0e942378086fc42384eae7ba414e71d26d0b1ed18bc6b76737817006 +SIZE (xpi/firefox-i18n-40.0/fr.xpi) = 477147 +SHA256 (xpi/firefox-i18n-40.0/fy-NL.xpi) = 5614cb671ddf8bf4693dc0b56ce5ec66db097b2e0939731fead2c9834773806d +SIZE (xpi/firefox-i18n-40.0/fy-NL.xpi) = 471144 +SHA256 (xpi/firefox-i18n-40.0/ga-IE.xpi) = 2ecaa8311ab75575e7e5c3c2862f4fd92b463ba500b5cf04aa8c194967fe9e2f +SIZE (xpi/firefox-i18n-40.0/ga-IE.xpi) = 485534 +SHA256 (xpi/firefox-i18n-40.0/gd.xpi) = e0197a0970e00bc7c4743ba6c3cb1e51fea7c3bbc748ab0fae69a98024b3f0c1 +SIZE (xpi/firefox-i18n-40.0/gd.xpi) = 469749 +SHA256 (xpi/firefox-i18n-40.0/gl.xpi) = 982b7920f2a4fe99a675c85a53c19641bc87d3e604857c0c3b0627f2a6047b81 +SIZE (xpi/firefox-i18n-40.0/gl.xpi) = 463633 +SHA256 (xpi/firefox-i18n-40.0/gu-IN.xpi) = ee29696c663fdb9c7ee1840af3936e1c066b6bd6d0cb0c75c971313f2ae6ce41 +SIZE (xpi/firefox-i18n-40.0/gu-IN.xpi) = 498590 +SHA256 (xpi/firefox-i18n-40.0/he.xpi) = c0ac7563f99548086e167e17555929dc82e00962aae8b3693d2b38b5c5a9c780 +SIZE (xpi/firefox-i18n-40.0/he.xpi) = 497109 +SHA256 (xpi/firefox-i18n-40.0/hi-IN.xpi) = 7d80c3d7ca89e046649e99d7fe61f6d2d9d7e72980224132312220e62c42d8aa +SIZE (xpi/firefox-i18n-40.0/hi-IN.xpi) = 519928 +SHA256 (xpi/firefox-i18n-40.0/hr.xpi) = a687e6d6d960311ed82e37d030a6d91148b40adde2ca905ee4204702e23b9c49 +SIZE (xpi/firefox-i18n-40.0/hr.xpi) = 494491 +SHA256 (xpi/firefox-i18n-40.0/hsb.xpi) = 903b39eb11f9332df348026e3f58d4290ff1678b44d5f11a1df85c7377619d25 +SIZE (xpi/firefox-i18n-40.0/hsb.xpi) = 484248 +SHA256 (xpi/firefox-i18n-40.0/hu.xpi) = 7c927e48952f2611cba8b96effdb82e78c5e8ed60c812f952a3a974f01c2fbe7 +SIZE (xpi/firefox-i18n-40.0/hu.xpi) = 469053 +SHA256 (xpi/firefox-i18n-40.0/hy-AM.xpi) = 54f6aa6be8b097babce7a1bbce2755ff6ebc6cbfdfb1d2ec43b511dcca38a1bf +SIZE (xpi/firefox-i18n-40.0/hy-AM.xpi) = 550065 +SHA256 (xpi/firefox-i18n-40.0/id.xpi) = cbcf54dfbe363063324665ff95aad2999aefccc6bce46fce8d1c25d069eddabc +SIZE (xpi/firefox-i18n-40.0/id.xpi) = 446091 +SHA256 (xpi/firefox-i18n-40.0/is.xpi) = 8c43f3bdf8c19d08dd86b4e8ac6b7bd9372016eff975b0f5ff08c8afaaebf12a +SIZE (xpi/firefox-i18n-40.0/is.xpi) = 499892 +SHA256 (xpi/firefox-i18n-40.0/it.xpi) = 871a41fcc795d10190d20569679dc3de83017575e2154a52c42cdaca14b2a482 +SIZE (xpi/firefox-i18n-40.0/it.xpi) = 377832 +SHA256 (xpi/firefox-i18n-40.0/ja.xpi) = fc99e2a54727214f93dd0d76bfb86d5513ea05f6de99938a465c9d0c69a783ce +SIZE (xpi/firefox-i18n-40.0/ja.xpi) = 495438 +SHA256 (xpi/firefox-i18n-40.0/kk.xpi) = 0c5bcd8def91e4786c5a92e3b48426bcc5abb3c33531a82f2e1fa6333ac00d72 +SIZE (xpi/firefox-i18n-40.0/kk.xpi) = 520130 +SHA256 (xpi/firefox-i18n-40.0/km.xpi) = 114fd9a9dfd62b24ba8757ce6a5961902e9303052a7416310959c0b4bb3b2abb +SIZE (xpi/firefox-i18n-40.0/km.xpi) = 578732 +SHA256 (xpi/firefox-i18n-40.0/kn.xpi) = e781b59532705bbfc56bb3ffdd5af7cebaea04f29ab2debf12eae81d618c5ea1 +SIZE (xpi/firefox-i18n-40.0/kn.xpi) = 550863 +SHA256 (xpi/firefox-i18n-40.0/ko.xpi) = 876efa04637fb512567aa26a3fe29a49595381a54014dc96ba5da08b9f18c766 +SIZE (xpi/firefox-i18n-40.0/ko.xpi) = 476891 +SHA256 (xpi/firefox-i18n-40.0/lij.xpi) = 86d35b1e7c9e786c96e80848702271dbaf686c5096208e922bf62cc92a75211f +SIZE (xpi/firefox-i18n-40.0/lij.xpi) = 462237 +SHA256 (xpi/firefox-i18n-40.0/lt.xpi) = 90fc8ae12a9e138c362ce2f24c4ec4f92cd74531fcb1608c314b681a158858bd +SIZE (xpi/firefox-i18n-40.0/lt.xpi) = 502209 +SHA256 (xpi/firefox-i18n-40.0/lv.xpi) = c94d29e49ff3db5cc0d135947188209f8177a5191e387fb98011241416d4ab2f +SIZE (xpi/firefox-i18n-40.0/lv.xpi) = 482485 +SHA256 (xpi/firefox-i18n-40.0/mai.xpi) = 3ecfc494299261ff0794282741a56ba78ae3a5b2c35eb42bcccd1780852e9574 +SIZE (xpi/firefox-i18n-40.0/mai.xpi) = 527989 +SHA256 (xpi/firefox-i18n-40.0/mk.xpi) = a6c5228127d89c1bc17ef440a094177a8d7ba58950681edf46dfda5017b6e697 +SIZE (xpi/firefox-i18n-40.0/mk.xpi) = 542561 +SHA256 (xpi/firefox-i18n-40.0/ml.xpi) = 3766a54605edaf8eaa00fa21a5119d703edd2d5f9cc415a17684590c0ba9c210 +SIZE (xpi/firefox-i18n-40.0/ml.xpi) = 540382 +SHA256 (xpi/firefox-i18n-40.0/mr.xpi) = 1cfc49d575c6219b85ee6a1dc6745bd82941d7465c8c9e7c03d0f403427d0c29 +SIZE (xpi/firefox-i18n-40.0/mr.xpi) = 522284 +SHA256 (xpi/firefox-i18n-40.0/ms.xpi) = 4a670b3001e0d4027668b682d61db471f1674c5b73948f3b3e629f48b557f011 +SIZE (xpi/firefox-i18n-40.0/ms.xpi) = 504518 +SHA256 (xpi/firefox-i18n-40.0/nb-NO.xpi) = 2d5c92898d146f21557f8e7795a440ad62ebfc23c76318636fb7ff9daac955a8 +SIZE (xpi/firefox-i18n-40.0/nb-NO.xpi) = 458940 +SHA256 (xpi/firefox-i18n-40.0/nl.xpi) = 3d3d38700686e0827e68dccb2356156e2bac994b65c5535532a7737db197b467 +SIZE (xpi/firefox-i18n-40.0/nl.xpi) = 458630 +SHA256 (xpi/firefox-i18n-40.0/nn-NO.xpi) = 2b465866f5ed4b75c74916bfdb941625bfc87f3de91a456b93822c6c51eba76c +SIZE (xpi/firefox-i18n-40.0/nn-NO.xpi) = 453067 +SHA256 (xpi/firefox-i18n-40.0/or.xpi) = e35a70b4ae54805897ba1d9610ddfde53a32bf7d8d5e1d594f96e149088460c9 +SIZE (xpi/firefox-i18n-40.0/or.xpi) = 539206 +SHA256 (xpi/firefox-i18n-40.0/pa-IN.xpi) = 95946af6a91299e16db59860a27e2e0268ed3d275eea891e2c1765564938eb7d +SIZE (xpi/firefox-i18n-40.0/pa-IN.xpi) = 509121 +SHA256 (xpi/firefox-i18n-40.0/pl.xpi) = 282e248cdbcba9e0084bbda672ec05f719cd8dd268c556afe7dd2fb595ad5237 +SIZE (xpi/firefox-i18n-40.0/pl.xpi) = 415190 +SHA256 (xpi/firefox-i18n-40.0/pt-BR.xpi) = 03ea49f1805f8e92e9e412a4985b42cc2a6e7fffc8c49b9d5bac6e7a00e08530 +SIZE (xpi/firefox-i18n-40.0/pt-BR.xpi) = 475444 +SHA256 (xpi/firefox-i18n-40.0/pt-PT.xpi) = c3baa331322028ce9a4fe05ba9650b671e0499db407361c6e01c6b724e5a55ba +SIZE (xpi/firefox-i18n-40.0/pt-PT.xpi) = 456034 +SHA256 (xpi/firefox-i18n-40.0/rm.xpi) = f6c2a17f69d620d8fd1372a535ee13b233a6fdce599937e05b973c8bddb82fd0 +SIZE (xpi/firefox-i18n-40.0/rm.xpi) = 461465 +SHA256 (xpi/firefox-i18n-40.0/ro.xpi) = 44cda9cf2069951525d2dbe31246f89988e24edc7dcc348722e451c50afd0df3 +SIZE (xpi/firefox-i18n-40.0/ro.xpi) = 509715 +SHA256 (xpi/firefox-i18n-40.0/ru.xpi) = f18934cd55f93e507785c9e4aa80595030155367d69f1cf8d4a1b01ab88083ba +SIZE (xpi/firefox-i18n-40.0/ru.xpi) = 425656 +SHA256 (xpi/firefox-i18n-40.0/si.xpi) = a21bfb4257bfbaf9a1980469841db7512209528e1ae6316ad7d668e3f53d2ec3 +SIZE (xpi/firefox-i18n-40.0/si.xpi) = 548767 +SHA256 (xpi/firefox-i18n-40.0/sk.xpi) = 6fe43380ee3bce96815afa1ebd624ed5c69b8faa5857624805f48427ef16e2c7 +SIZE (xpi/firefox-i18n-40.0/sk.xpi) = 485119 +SHA256 (xpi/firefox-i18n-40.0/sl.xpi) = 894af87db630be047f0810dde97e335f4c232eeb5fc13be25e670dc381caa38e +SIZE (xpi/firefox-i18n-40.0/sl.xpi) = 457939 +SHA256 (xpi/firefox-i18n-40.0/son.xpi) = f27b321a469ae9f759306592c15b75110917bd3acaceafeb9551584e52fc1a57 +SIZE (xpi/firefox-i18n-40.0/son.xpi) = 465947 +SHA256 (xpi/firefox-i18n-40.0/sq.xpi) = 8dbc7015dd6a4cdfb8b8451bc6c911cb51a6c08f25669e20d3bb2163667da24d +SIZE (xpi/firefox-i18n-40.0/sq.xpi) = 501444 +SHA256 (xpi/firefox-i18n-40.0/sr.xpi) = fb94b577f6321ab0283e8edef75c46afa5ebbfad906bfa79d7fc03bd5eee3a50 +SIZE (xpi/firefox-i18n-40.0/sr.xpi) = 494735 +SHA256 (xpi/firefox-i18n-40.0/sv-SE.xpi) = e42282ec857ac1109b4ea67eca75c3b1aa93e706784e28931938169c1e6b702f +SIZE (xpi/firefox-i18n-40.0/sv-SE.xpi) = 467790 +SHA256 (xpi/firefox-i18n-40.0/ta.xpi) = d7835a10acd1466f5989b3a84d46642f2e648442492de8a3e8963037543056c1 +SIZE (xpi/firefox-i18n-40.0/ta.xpi) = 521799 +SHA256 (xpi/firefox-i18n-40.0/te.xpi) = d6138ba9a174fed4f5d9a47b24f88a6994da55bff36c5c0f98eabe735f482670 +SIZE (xpi/firefox-i18n-40.0/te.xpi) = 540973 +SHA256 (xpi/firefox-i18n-40.0/th.xpi) = a40620a3f192f16f7fc4718a19fb22793697dfb69b0386160ecff818ea749dc4 +SIZE (xpi/firefox-i18n-40.0/th.xpi) = 550262 +SHA256 (xpi/firefox-i18n-40.0/tr.xpi) = db14675bacb15818a308834d4df3cb33a63c80d232f285e0ba42c7deb159c89b +SIZE (xpi/firefox-i18n-40.0/tr.xpi) = 496252 +SHA256 (xpi/firefox-i18n-40.0/uk.xpi) = b31fbb07e96ed324ff4a6a5866c277a41bcd1cf5364f451872f92455b24ee229 +SIZE (xpi/firefox-i18n-40.0/uk.xpi) = 511143 +SHA256 (xpi/firefox-i18n-40.0/vi.xpi) = b808813cbc18c8499c6f7f4375615be4da26139e35de5fda9793ba343fa44d80 +SIZE (xpi/firefox-i18n-40.0/vi.xpi) = 481058 +SHA256 (xpi/firefox-i18n-40.0/xh.xpi) = 28bca0c51a4df03a9eff05b97448aa5c5ffa4e5063a4bd0f18eb1964ab5f2712 +SIZE (xpi/firefox-i18n-40.0/xh.xpi) = 461037 +SHA256 (xpi/firefox-i18n-40.0/zh-CN.xpi) = 8b11a715c1b61b6b06e444b64c9c04e6208351fd0ad70dcbf41252bbe64b5307 +SIZE (xpi/firefox-i18n-40.0/zh-CN.xpi) = 504407 +SHA256 (xpi/firefox-i18n-40.0/zh-TW.xpi) = 6e97bbc8e1e3868c741a79cb1a878e2b8f1d7a5175c62341dcc8e256698d9139 +SIZE (xpi/firefox-i18n-40.0/zh-TW.xpi) = 491274 Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox/Makefile Tue Aug 11 18:29:59 2015 (r393958) @@ -2,12 +2,13 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 39.0 +DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build6/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build5/source MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla @@ -48,6 +49,7 @@ MOZ_OPTIONS= --program-transform-name='s --enable-application=browser \ --enable-official-branding +OPTIONS_EXCLUDE= LOGGING OPTIONS_DEFAULT= GTK2 OPTIONS_SINGLE+= TOOLKIT Modified: branches/2015Q3/www/firefox/distinfo ============================================================================== --- branches/2015Q3/www/firefox/distinfo Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox/distinfo Tue Aug 11 18:29:59 2015 (r393958) @@ -1,2 +1,2 @@ -SHA256 (firefox-39.0.source.tar.bz2) = 7e25014deb926df9220c3ab40ac6816c13a04c4cf7bd89b08fc1743307df1096 -SIZE (firefox-39.0.source.tar.bz2) = 182881881 +SHA256 (firefox-40.0.source.tar.bz2) = e3a26164b3a7f1aefbe13a07f0fdcd322726e4bb8c7e9432d1671c8c9e37145a +SIZE (firefox-40.0.source.tar.bz2) = 178288925 Modified: branches/2015Q3/www/firefox/files/patch-bug1021761 ============================================================================== --- branches/2015Q3/www/firefox/files/patch-bug1021761 Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox/files/patch-bug1021761 Tue Aug 11 18:29:59 2015 (r393958) @@ -1070,11 +1070,11 @@ index 8b7a0dd..31212ce 100644 +CFLAGS += CONFIG['MOZ_OSS_CFLAGS'] CFLAGS += CONFIG['MOZ_ALSA_CFLAGS'] CFLAGS += CONFIG['MOZ_PULSEAUDIO_CFLAGS'] -diff --git media/webrtc/signaling/test/moz.build media/webrtc/signaling/test/moz.build +diff --git media/webrtc/signaling/test/common.build media/webrtc/signaling/test/common.build index 991f03f..3d99eb5 100644 ---- media/webrtc/signaling/test/moz.build -+++ media/webrtc/signaling/test/moz.build -@@ -112,8 +112,8 @@ if CONFIG['JS_SHARED_LIBRARY']: +--- media/webrtc/signaling/test/common.build ++++ media/webrtc/signaling/test/common.build +@@ -102,8 +102,8 @@ USE_LIBS += ['mozglue'] OS_LIBS += CONFIG['MOZ_WEBRTC_X11_LIBS'] OS_LIBS += CONFIG['REALTIME_LIBS'] Modified: branches/2015Q3/www/firefox/files/patch-bug826985 ============================================================================== --- branches/2015Q3/www/firefox/files/patch-bug826985 Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox/files/patch-bug826985 Tue Aug 11 18:29:59 2015 (r393958) @@ -51,13 +51,13 @@ index b483cd1..f1dd1f0 100644 # basic stuff for everything 'include_internal_video_render': 0, 'clang_use_chrome_plugins': 0, -diff --git media/webrtc/signaling/test/moz.build media/webrtc/signaling/test/moz.build +diff --git media/webrtc/signaling/test/common.build media/webrtc/signaling/test/common.build index b483cd1..f1dd1f0 100644 ---- media/webrtc/signaling/test/moz.build -+++ media/webrtc/signaling/test/moz.build -@@ -122,6 +122,7 @@ if CONFIG['JS_SHARED_LIBRARY']: - 'js', - ] +--- media/webrtc/signaling/test/common.build ++++ media/webrtc/signaling/test/common.build +@@ -99,6 +99,7 @@ if CONFIG['JS_SHARED_LIBRARY']: + + USE_LIBS += ['mozglue'] +OS_LIBS += CONFIG['MOZ_LIBV4L2_LIBS'] OS_LIBS += CONFIG['MOZ_WEBRTC_X11_LIBS'] Modified: branches/2015Q3/www/firefox/files/patch-bug847568 ============================================================================== --- branches/2015Q3/www/firefox/files/patch-bug847568 Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox/files/patch-bug847568 Tue Aug 11 18:29:59 2015 (r393958) @@ -87,16 +87,16 @@ diff --git dom/base/moz.build dom/base/m index a660ba4..6b2f602 100644 --- dom/base/moz.build +++ dom/base/moz.build -@@ -196,6 +196,9 @@ SOURCES += [ - 'nsObjectLoadingContent.cpp', - ] +@@ -375,6 +375,9 @@ if CONFIG['INTEL_ARCHITECTURE']: + SOURCES += ['nsTextFragmentSSE2.cpp'] + SOURCES['nsTextFragmentSSE2.cpp'].flags += CONFIG['SSE2_FLAGS'] +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + SOURCES['nsContentUtils.cpp'].flags += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + EXTRA_COMPONENTS += [ - 'contentAreaDropListener.js', - 'contentAreaDropListener.manifest', + 'ConsoleAPI.manifest', + 'ConsoleAPIStorage.js', diff --git gfx/graphite2/moz-gr-update.sh gfx/graphite2/moz-gr-update.sh index f3d76ea..a9e7fb6 100644 --- gfx/graphite2/moz-gr-update.sh @@ -121,10 +121,10 @@ diff --git gfx/harfbuzz/README-mozilla g index ca57d16..1ce21fe 100644 --- gfx/harfbuzz/README-mozilla +++ gfx/harfbuzz/README-mozilla -@@ -21,3 +21,8 @@ In addition, the src/Makefile.in file here is NOT from upstream, nor is it +@@ -18,3 +18,8 @@ the mozilla tree. + In addition, the src/Makefile.in file here is NOT from upstream, nor is it generated from src/Makefile.am (the original harfbuzz version); it is a mozilla- - specific makefile that is maintained by hand. It should only need updating when - new source files or exported headers are added in harfbuzz. + specific makefile that is maintained by hand. + +The in-tree copy may be omitted during build by --with-system-harfbuzz. +Make sure to keep pkg-config version check within configure.in in sync @@ -160,9 +160,9 @@ diff --git gfx/skia/generate_mozbuild.py index 28fa6b5..240dced 100755 --- gfx/skia/generate_mozbuild.py +++ gfx/skia/generate_mozbuild.py -@@ -140,6 +140,9 @@ if CONFIG['GNU_CXX']: - if not CONFIG['CLANG_CXX']: - CXXFLAGS += ['-Wno-logical-op'] +@@ -142,6 +142,9 @@ if CONFIG['GNU_CXX']: + if CONFIG['CPU_ARCH'] == 'arm': + SOURCES['trunk/src/opts/SkBlitRow_opts_arm.cpp'].flags += ['-fomit-frame-pointer'] +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] @@ -174,9 +174,9 @@ diff --git gfx/skia/moz.build gfx/skia/m index 1d0c2f9..adb8941 100644 --- gfx/skia/moz.build +++ gfx/skia/moz.build -@@ -968,6 +968,9 @@ if CONFIG['GNU_CXX']: - if not CONFIG['CLANG_CXX']: - CXXFLAGS += ['-Wno-logical-op'] +@@ -970,6 +970,9 @@ if CONFIG['GNU_CXX']: + if CONFIG['CPU_ARCH'] == 'arm': + SOURCES['trunk/src/opts/SkBlitRow_opts_arm.cpp'].flags += ['-fomit-frame-pointer'] +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] @@ -205,24 +205,29 @@ diff --git intl/unicharutil/util/moz.bui index d736943..41a931f 100644 --- intl/unicharutil/util/moz.build +++ intl/unicharutil/util/moz.build -@@ -37,3 +37,6 @@ if CONFIG['_MSC_VER']: - +@@ -42,6 +42,9 @@ if CONFIG['_MSC_VER']: if CONFIG['ENABLE_INTL_API']: CXXFLAGS += CONFIG['MOZ_ICU_CFLAGS'] -+ + +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] ++ + if CONFIG['GNU_CXX']: + FAIL_ON_WARNINGS = True + diff --git netwerk/dns/moz.build netwerk/dns/moz.build index 0b0717a..2e665c9 100644 --- netwerk/dns/moz.build +++ netwerk/dns/moz.build -@@ -64,3 +64,6 @@ GENERATED_FILES = [ - LOCAL_INCLUDES += [ +@@ -66,5 +66,8 @@ LOCAL_INCLUDES += [ '/netwerk/base', ] -+ + +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] ++ + if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['ANDROID_VERSION'] > '19': + CXXFLAGS += ['-I%s/bionic/libc/dns/include' % CONFIG['ANDROID_SOURCE']] diff --git toolkit/library/moz.build toolkit/library/moz.build index 67f0db9..d42137a 100644 --- toolkit/library/moz.build Modified: branches/2015Q3/www/firefox/files/patch-ijg-libjpeg ============================================================================== --- branches/2015Q3/www/firefox/files/patch-ijg-libjpeg Tue Aug 11 18:27:02 2015 (r393957) +++ branches/2015Q3/www/firefox/files/patch-ijg-libjpeg Tue Aug 11 18:29:59 2015 (r393958) @@ -69,7 +69,7 @@ index 8fa8200..1d2a259 100644 break; case JCS_CMYK: case JCS_YCCK: -@@ -433,6 +452,15 @@ nsJPEGDecoder::WriteInternal(const char* +@@ -448,6 +467,16 @@ nsJPEGDecoder::WriteInternal(const char* return; // I/O suspension } @@ -82,9 +82,10 @@ index 8fa8200..1d2a259 100644 + mInfo.cconvert->color_convert = ycc_rgb_convert_argb; + } +#endif - ++ // If this is a progressive JPEG ... mState = mInfo.buffered_image ? *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Tue Aug 11 18:31:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8817F99FFB3; Tue, 11 Aug 2015 18:31:20 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75EA99A7; Tue, 11 Aug 2015 18:31:20 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BIVK6G071364; Tue, 11 Aug 2015 18:31:20 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BIVJAJ071361; Tue, 11 Aug 2015 18:31:19 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508111831.t7BIVJAJ071361@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 11 Aug 2015 18:31:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393959 - head/devel/liblangtag X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 18:31:20 -0000 Author: jkim Date: Tue Aug 11 18:31:18 2015 New Revision: 393959 URL: https://svnweb.freebsd.org/changeset/ports/393959 Log: Update to 0.5.7. Modified: head/devel/liblangtag/Makefile head/devel/liblangtag/distinfo head/devel/liblangtag/pkg-plist Modified: head/devel/liblangtag/Makefile ============================================================================== --- head/devel/liblangtag/Makefile Tue Aug 11 18:29:59 2015 (r393958) +++ head/devel/liblangtag/Makefile Tue Aug 11 18:31:18 2015 (r393959) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= liblangtag -PORTVERSION= 0.5.4 +PORTVERSION= 0.5.7 CATEGORIES= devel textproc MASTER_SITES= https://bitbucket.org/tagoh/liblangtag/downloads/ \ LOCAL/jkim Modified: head/devel/liblangtag/distinfo ============================================================================== --- head/devel/liblangtag/distinfo Tue Aug 11 18:29:59 2015 (r393958) +++ head/devel/liblangtag/distinfo Tue Aug 11 18:31:18 2015 (r393959) @@ -1,2 +1,2 @@ -SHA256 (liblangtag-0.5.4.tar.bz2) = f0a2e9ffa29259452614d7a99fc125f75fd26beee75d97aebffbbc735de9b27e -SIZE (liblangtag-0.5.4.tar.bz2) = 666207 +SHA256 (liblangtag-0.5.7.tar.bz2) = f2b20d7b66c37e3be73feb67831195e5db16d0bb7df0d05c2e4bb96c4deb11cf +SIZE (liblangtag-0.5.7.tar.bz2) = 671856 Modified: head/devel/liblangtag/pkg-plist ============================================================================== --- head/devel/liblangtag/pkg-plist Tue Aug 11 18:29:59 2015 (r393958) +++ head/devel/liblangtag/pkg-plist Tue Aug 11 18:31:18 2015 (r393959) @@ -1,4 +1,5 @@ include/liblangtag/langtag.h +include/liblangtag/lt-config.h include/liblangtag/lt-database.h include/liblangtag/lt-error.h include/liblangtag/lt-ext-module-data.h @@ -25,23 +26,10 @@ include/liblangtag/lt-variant-db.h include/liblangtag/lt-variant.h lib/liblangtag.so lib/liblangtag.so.1 -lib/liblangtag.so.1.3.0 +lib/liblangtag.so.1.3.1 lib/liblangtag/liblangtag-ext-ldml-t.so lib/liblangtag/liblangtag-ext-ldml-u.so libdata/pkgconfig/liblangtag.pc -%%DATADIR%%/language-subtag-registry.xml -%%DATADIR%%/common/bcp47/calendar.xml -%%DATADIR%%/common/bcp47/collation.xml -%%DATADIR%%/common/bcp47/currency.xml -%%DATADIR%%/common/bcp47/number.xml -%%DATADIR%%/common/bcp47/timezone.xml -%%DATADIR%%/common/bcp47/transform.xml -%%DATADIR%%/common/bcp47/transform_ime.xml -%%DATADIR%%/common/bcp47/transform_keyboard.xml -%%DATADIR%%/common/bcp47/transform_mt.xml -%%DATADIR%%/common/bcp47/transform_private_use.xml -%%DATADIR%%/common/bcp47/variant.xml -%%DATADIR%%/common/supplemental/likelySubtags.xml share/gtk-doc/html/liblangtag/Container.html share/gtk-doc/html/liblangtag/Module.html share/gtk-doc/html/liblangtag/Utilities.html @@ -52,6 +40,7 @@ share/gtk-doc/html/liblangtag/deprecated share/gtk-doc/html/liblangtag/home.png share/gtk-doc/html/liblangtag/index.html share/gtk-doc/html/liblangtag/index.sgml +share/gtk-doc/html/liblangtag/left-insensitive.png share/gtk-doc/html/liblangtag/left.png share/gtk-doc/html/liblangtag/liblangtag-Container---Extension.html share/gtk-doc/html/liblangtag/liblangtag-Container---Extlang.html @@ -79,6 +68,21 @@ share/gtk-doc/html/liblangtag/liblangtag share/gtk-doc/html/liblangtag/liblangtag-Strings.html share/gtk-doc/html/liblangtag/liblangtag.devhelp2 share/gtk-doc/html/liblangtag/object-tree.html +share/gtk-doc/html/liblangtag/right-insensitive.png share/gtk-doc/html/liblangtag/right.png share/gtk-doc/html/liblangtag/style.css +share/gtk-doc/html/liblangtag/up-insensitive.png share/gtk-doc/html/liblangtag/up.png +%%DATADIR%%/language-subtag-registry.xml +%%DATADIR%%/common/bcp47/calendar.xml +%%DATADIR%%/common/bcp47/collation.xml +%%DATADIR%%/common/bcp47/currency.xml +%%DATADIR%%/common/bcp47/number.xml +%%DATADIR%%/common/bcp47/timezone.xml +%%DATADIR%%/common/bcp47/transform.xml +%%DATADIR%%/common/bcp47/transform_ime.xml +%%DATADIR%%/common/bcp47/transform_keyboard.xml +%%DATADIR%%/common/bcp47/transform_mt.xml +%%DATADIR%%/common/bcp47/transform_private_use.xml +%%DATADIR%%/common/bcp47/variant.xml +%%DATADIR%%/common/supplemental/likelySubtags.xml From owner-svn-ports-all@freebsd.org Tue Aug 11 18:51:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AA2B99F421; Tue, 11 Aug 2015 18:51:15 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D2A8258; Tue, 11 Aug 2015 18:51:15 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BIpEOe079387; Tue, 11 Aug 2015 18:51:14 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BIpEX6079384; Tue, 11 Aug 2015 18:51:14 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201508111851.t7BIpEX6079384@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Tue, 11 Aug 2015 18:51:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393960 - head/emulators/i386-wine-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 18:51:15 -0000 Author: dbn Date: Tue Aug 11 18:51:13 2015 New Revision: 393960 URL: https://svnweb.freebsd.org/changeset/ports/393960 Log: emulators/i386-wine-devel: update to 1.7.48. Modified: head/emulators/i386-wine-devel/Makefile.inc head/emulators/i386-wine-devel/distinfo head/emulators/i386-wine-devel/pkg-plist Modified: head/emulators/i386-wine-devel/Makefile.inc ============================================================================== --- head/emulators/i386-wine-devel/Makefile.inc Tue Aug 11 18:31:18 2015 (r393959) +++ head/emulators/i386-wine-devel/Makefile.inc Tue Aug 11 18:51:13 2015 (r393960) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -PORTVERSION= 1.7.47 +PORTVERSION= 1.7.48 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/${PORTVERSION} Modified: head/emulators/i386-wine-devel/distinfo ============================================================================== --- head/emulators/i386-wine-devel/distinfo Tue Aug 11 18:31:18 2015 (r393959) +++ head/emulators/i386-wine-devel/distinfo Tue Aug 11 18:51:13 2015 (r393960) @@ -1,16 +1,16 @@ -SHA256 (freebsd:8:x86:64/i386-wine-devel-1.7.47,1.txz) = 569ab9342b3796c060b6ae51e409d1261e84fa885f706ebba6f0f3555ae61527 -SIZE (freebsd:8:x86:64/i386-wine-devel-1.7.47,1.txz) = 49571704 -SHA256 (freebsd:8:x86:64/i386-wine-staging-1.7.47,1.txz) = 9f5df1871b999aebcb757469d3c99bd881733774306e9c1c1edf71403f21ed66 -SIZE (freebsd:8:x86:64/i386-wine-staging-1.7.47,1.txz) = 52589596 -SHA256 (freebsd:9:x86:64/i386-wine-devel-1.7.47,1.txz) = c74af0fa9d254b60ded94d1bac08dad56137cd31f2017e6dfb2027ee9b154898 -SIZE (freebsd:9:x86:64/i386-wine-devel-1.7.47,1.txz) = 48121520 -SHA256 (freebsd:9:x86:64/i386-wine-staging-1.7.47,1.txz) = b632a649d5768513a86ebd6c5872068c5bafcef10b4745b5f5fcecf2da475248 -SIZE (freebsd:9:x86:64/i386-wine-staging-1.7.47,1.txz) = 51173680 -SHA256 (freebsd:10:x86:64/i386-wine-devel-1.7.47,1.txz) = 386f7e0fd6cc3ee782cc634f5aea9080c90bcc51b36a3a1f2f50bc3bcbc54281 -SIZE (freebsd:10:x86:64/i386-wine-devel-1.7.47,1.txz) = 33979292 -SHA256 (freebsd:10:x86:64/i386-wine-staging-1.7.47,1.txz) = 6e446f64340b80cd616a603cf521e9cd963a0b26115599d396f22d5d613aad11 -SIZE (freebsd:10:x86:64/i386-wine-staging-1.7.47,1.txz) = 36987872 -SHA256 (freebsd:11:x86:64/i386-wine-devel-1.7.47,1.txz) = 92b4a616ff3ea96ba9d83f15778214332ab5803df65718f68fe505098f86b63c -SIZE (freebsd:11:x86:64/i386-wine-devel-1.7.47,1.txz) = 37421948 -SHA256 (freebsd:11:x86:64/i386-wine-staging-1.7.47,1.txz) = 5c63904f2b2504ce9cf81fa76cb631b4ec2fb7ee6e7c539d53b4efdccac2fafd -SIZE (freebsd:11:x86:64/i386-wine-staging-1.7.47,1.txz) = 39565496 +SHA256 (freebsd:8:x86:64/i386-wine-devel-1.7.48,1.txz) = 87e4c57d9bf2e60cbe87b9c7ad3abb270faf659fe0bc5e0efa7889cb79bce7ed +SIZE (freebsd:8:x86:64/i386-wine-devel-1.7.48,1.txz) = 49605628 +SHA256 (freebsd:8:x86:64/i386-wine-staging-1.7.48,1.txz) = 1370400ee015e6ada394dcc38a0d1ab281d94bd6155074dfa24cbc8b90ee1d3e +SIZE (freebsd:8:x86:64/i386-wine-staging-1.7.48,1.txz) = 52559872 +SHA256 (freebsd:9:x86:64/i386-wine-devel-1.7.48,1.txz) = bb8a78ea5ea51b8720d0c704f8b1d97491792559551a49e2868925e278ede282 +SIZE (freebsd:9:x86:64/i386-wine-devel-1.7.48,1.txz) = 48141348 +SHA256 (freebsd:9:x86:64/i386-wine-staging-1.7.48,1.txz) = eea02ba3f44aa785b7875f32fc28f15533e1ae38e54f90865a7e75c84f2e3bb9 +SIZE (freebsd:9:x86:64/i386-wine-staging-1.7.48,1.txz) = 51220864 +SHA256 (freebsd:10:x86:64/i386-wine-devel-1.7.48,1.txz) = 1585c5e1f777ebce3f5f56098b1d246655719ea16e3c5ff8072569e42cb828c5 +SIZE (freebsd:10:x86:64/i386-wine-devel-1.7.48,1.txz) = 34053520 +SHA256 (freebsd:10:x86:64/i386-wine-staging-1.7.48,1.txz) = c6663a01edd9a474b7c56d269d17d0155b62096737672c1de3b910ca9a1ee8ba +SIZE (freebsd:10:x86:64/i386-wine-staging-1.7.48,1.txz) = 37097820 +SHA256 (freebsd:11:x86:64/i386-wine-devel-1.7.48,1.txz) = 14e763906f85ec690c7b030a8d4660d7b03e5ab04f0b2618a4af8bda3e191e9f +SIZE (freebsd:11:x86:64/i386-wine-devel-1.7.48,1.txz) = 37549336 +SHA256 (freebsd:11:x86:64/i386-wine-staging-1.7.48,1.txz) = 7b145cfe25a6d2fa48a74c005bccd4671a67cc3cd9fcd153eaf5d5bbdc536c7b +SIZE (freebsd:11:x86:64/i386-wine-staging-1.7.48,1.txz) = 39684580 Modified: head/emulators/i386-wine-devel/pkg-plist ============================================================================== --- head/emulators/i386-wine-devel/pkg-plist Tue Aug 11 18:31:18 2015 (r393959) +++ head/emulators/i386-wine-devel/pkg-plist Tue Aug 11 18:51:13 2015 (r393960) @@ -230,6 +230,14 @@ include/wine/windows/d3drmobj.h include/wine/windows/d3drmwin.h include/wine/windows/d3dtypes.h include/wine/windows/d3dvec.inl +%%OSREL8-STAGING%%include/wine/windows/d3dx10core.h +%%OSREL9-STAGING%%include/wine/windows/d3dx10core.h +%%OSREL10-STAGING%%include/wine/windows/d3dx10core.h +%%OSREL11-STAGING%%include/wine/windows/d3dx10core.h +%%OSREL8-STAGING%%include/wine/windows/d3dx10core.idl +%%OSREL9-STAGING%%include/wine/windows/d3dx10core.idl +%%OSREL10-STAGING%%include/wine/windows/d3dx10core.idl +%%OSREL11-STAGING%%include/wine/windows/d3dx10core.idl include/wine/windows/d3dx9.h include/wine/windows/d3dx9anim.h include/wine/windows/d3dx9core.h @@ -241,6 +249,7 @@ include/wine/windows/d3dx9shader.h include/wine/windows/d3dx9shape.h include/wine/windows/d3dx9tex.h include/wine/windows/d3dx9xof.h +include/wine/windows/davclnt.h include/wine/windows/dbccmd.idl include/wine/windows/dbcses.idl include/wine/windows/dbdsad.idl @@ -380,6 +389,10 @@ include/wine/windows/gameux.idl include/wine/windows/gdiplus.h include/wine/windows/gdipluscolor.h include/wine/windows/gdipluscolormatrix.h +%%OSREL8-STAGING%%include/wine/windows/gdipluseffects.h +%%OSREL9-STAGING%%include/wine/windows/gdipluseffects.h +%%OSREL10-STAGING%%include/wine/windows/gdipluseffects.h +%%OSREL11-STAGING%%include/wine/windows/gdipluseffects.h include/wine/windows/gdiplusenums.h include/wine/windows/gdiplusflat.h include/wine/windows/gdiplusgpstubs.h @@ -433,6 +446,8 @@ include/wine/windows/inputscope.h include/wine/windows/inputscope.idl include/wine/windows/inseng.h include/wine/windows/inseng.idl +include/wine/windows/inspectable.h +include/wine/windows/inspectable.idl include/wine/windows/intshcut.h include/wine/windows/ipexport.h include/wine/windows/iphlpapi.h @@ -550,6 +565,7 @@ include/wine/windows/netcon.h include/wine/windows/netcon.idl include/wine/windows/netfw.h include/wine/windows/netfw.idl +include/wine/windows/netioapi.h include/wine/windows/netlistmgr.h include/wine/windows/netlistmgr.idl include/wine/windows/nldef.h @@ -775,6 +791,7 @@ include/wine/windows/wbemdisp.h include/wine/windows/wbemdisp.idl include/wine/windows/wbemprov.h include/wine/windows/wbemprov.idl +include/wine/windows/webservices.h include/wine/windows/werapi.h include/wine/windows/wfext.h include/wine/windows/wia.h @@ -900,6 +917,8 @@ lib32/libXxf86vm.so.1 lib32/libdrm.so.2 lib32/libdrm_intel.so.1 lib32/libdrm_radeon.so.1 +%%OSREL10%%lib32/libedit.so.0 +%%OSREL11%%lib32/libedit.so.0 lib32/libexpat.so.1 %%OSREL8-STAGING%%lib32/libffi.so.6 %%OSREL9-STAGING%%lib32/libffi.so.6 @@ -2089,10 +2108,6 @@ lib32/wine/libuserenv.def lib32/wine/libusp10.def lib32/wine/libuuid.a lib32/wine/libuxtheme.def -%%OSREL8-STAGING%%lib32/wine/libvcomp.def -%%OSREL9-STAGING%%lib32/wine/libvcomp.def -%%OSREL10-STAGING%%lib32/wine/libvcomp.def -%%OSREL11-STAGING%%lib32/wine/libvcomp.def lib32/wine/libvdmdbg.def lib32/wine/libversion.def lib32/wine/libwebservices.def @@ -2600,6 +2615,15 @@ share/wine/fonts/vgasysg.fon share/wine/fonts/vgasysr.fon share/wine/fonts/vgasyst.fon share/wine/fonts/wingding.ttf -share/wine/l_intl.nls -share/wine/patch-nvidia.sh -share/wine/wine.inf +%%OSREL8-DEVEL%%share/wine/l_intl.nls +%%OSREL9%%share/wine/l_intl.nls +%%OSREL10%%share/wine/l_intl.nls +%%OSREL11%%share/wine/l_intl.nls +%%OSREL8-DEVEL%%share/wine/patch-nvidia.sh +%%OSREL9%%share/wine/patch-nvidia.sh +%%OSREL10%%share/wine/patch-nvidia.sh +%%OSREL11%%share/wine/patch-nvidia.sh +%%OSREL8-DEVEL%%share/wine/wine.inf +%%OSREL9%%share/wine/wine.inf +%%OSREL10%%share/wine/wine.inf +%%OSREL11%%share/wine/wine.inf From owner-svn-ports-all@freebsd.org Tue Aug 11 18:51:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A7A199F44F; Tue, 11 Aug 2015 18:51:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FA6B3E4; Tue, 11 Aug 2015 18:51:58 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BIpw0S082109; Tue, 11 Aug 2015 18:51:58 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BIpwjG082108; Tue, 11 Aug 2015 18:51:58 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508111851.t7BIpwjG082108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 18:51:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393961 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 18:51:58 -0000 Author: jbeich Date: Tue Aug 11 18:51:57 2015 New Revision: 393961 URL: https://svnweb.freebsd.org/changeset/ports/393961 Log: Document recent mozilla vulnerabilities Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Aug 11 18:51:13 2015 (r393960) +++ head/security/vuxml/vuln.xml Tue Aug 11 18:51:57 2015 (r393961) @@ -58,6 +58,116 @@ Notes: --> + + mozilla -- multiple vulnerabilities + + + firefox + 40.0,1 + + + linux-firefox + 40.0,1 + + + seamonkey + 2.37 + + + linux-seamonkey + 2.37 + + + firefox-esr + 38.2.0,1 + + + libxul + 38.2.0 + + + thunderbird + 38.2.0 + + + linux-thunderbird + 38.2.0 + + + + +

The Mozilla Project reports:

+
+

MFSA 2015-79 Miscellaneous memory safety hazards (rv:40.0 + / rv:38.2)

+

MFSA 2015-80 Out-of-bounds read with malformed MP3 + file

+

MFSA 2015-81 Use-after-free in MediaStream playback

+

MFSA 2015-82 Redefinition of non-configurable JavaScript object properties

+

MFSA 2015-83 Overflow issues in libstagefright

+

MFSA 2015-84 Arbitrary file overwriting through Mozilla + Maintenance Service with hard links

+

MFSA 2015-85 Out-of-bounds write with Updater and + malicious MAR file

+

MFSA 2015-86 Feed protocol with POST bypasses mixed + content protections

+

MFSA 2015-87 Crash when using shared memory in + JavaScript

+

MFSA 2015-88 Heap overflow in gdk-pixbuf when scaling + bitmap images

+

MFSA 2015-89 Buffer overflows on Libvpx when decoding + WebM video

+

MFSA 2015-90 Vulnerabilities found through code + inspection

+

MFSA 2015-91 Mozilla Content Security Policy allows for + asterisk wildcards in violation of CSP specification

+

MFSA 2015-92 Use-after-free in XMLHttpRequest with shared + workers

+
+ +
+ + CVE-2015-4473 + CVE-2015-4474 + CVE-2015-4475 + CVE-2015-4477 + CVE-2015-4478 + CVE-2015-4479 + CVE-2015-4480 + CVE-2015-4481 + CVE-2015-4482 + CVE-2015-4483 + CVE-2015-4484 + CVE-2015-4485 + CVE-2015-4486 + CVE-2015-4487 + CVE-2015-4488 + CVE-2015-4489 + CVE-2015-4490 + CVE-2015-4491 + CVE-2015-4492 + CVE-2015-4493 + https://www.mozilla.org/security/advisories/mfsa2015-79/ + https://www.mozilla.org/security/advisories/mfsa2015-80/ + https://www.mozilla.org/security/advisories/mfsa2015-81/ + https://www.mozilla.org/security/advisories/mfsa2015-82/ + https://www.mozilla.org/security/advisories/mfsa2015-83/ + https://www.mozilla.org/security/advisories/mfsa2015-84/ + https://www.mozilla.org/security/advisories/mfsa2015-85/ + https://www.mozilla.org/security/advisories/mfsa2015-86/ + https://www.mozilla.org/security/advisories/mfsa2015-87/ + https://www.mozilla.org/security/advisories/mfsa2015-88/ + https://www.mozilla.org/security/advisories/mfsa2015-89/ + https://www.mozilla.org/security/advisories/mfsa2015-90/ + https://www.mozilla.org/security/advisories/mfsa2015-91/ + https://www.mozilla.org/security/advisories/mfsa2015-92/ + + + 2015-08-11 + 2015-08-11 + +
+ lighttpd -- Log injection vulnerability in mod_auth From owner-svn-ports-all@freebsd.org Tue Aug 11 19:03:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51D8499F632; Tue, 11 Aug 2015 19:03:37 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32BE0AB8; Tue, 11 Aug 2015 19:03:37 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJ3bkj086879; Tue, 11 Aug 2015 19:03:37 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJ3aD3086878; Tue, 11 Aug 2015 19:03:36 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508111903.t7BJ3aD3086878@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 19:03:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393962 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:03:37 -0000 Author: jbeich Date: Tue Aug 11 19:03:36 2015 New Revision: 393962 URL: https://svnweb.freebsd.org/changeset/ports/393962 Log: Move libvpx vulnerability into its own entry Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Aug 11 18:51:57 2015 (r393961) +++ head/security/vuxml/vuln.xml Tue Aug 11 19:03:36 2015 (r393962) @@ -58,6 +58,38 @@ Notes: --> + + libvpx -- multiple buffer overflows + + + libvpx + 1.5.0 + + + + +

The Mozilla Project reports:

+
+

Security researcher Abhishek Arya (Inferno) of the Google + Chrome Security Team used the Address Sanitizer tool to + discover two buffer overflow issues in the Libvpx library + used for WebM video when decoding a malformed WebM video + file. These buffer overflows result in potentially + exploitable crashes.

+
+ +
+ + CVE-2015-4485 + CVE-2015-4486 + https://www.mozilla.org/security/advisories/mfsa2015-89/ + + + 2015-08-11 + 2015-08-11 + +
+ mozilla -- multiple vulnerabilities @@ -115,8 +147,6 @@ Notes: JavaScript

MFSA 2015-88 Heap overflow in gdk-pixbuf when scaling bitmap images

-

MFSA 2015-89 Buffer overflows on Libvpx when decoding - WebM video

MFSA 2015-90 Vulnerabilities found through code inspection

MFSA 2015-91 Mozilla Content Security Policy allows for @@ -138,8 +168,6 @@ Notes: CVE-2015-4482 CVE-2015-4483 CVE-2015-4484 - CVE-2015-4485 - CVE-2015-4486 CVE-2015-4487 CVE-2015-4488 CVE-2015-4489 @@ -157,7 +185,6 @@ Notes: https://www.mozilla.org/security/advisories/mfsa2015-86/ https://www.mozilla.org/security/advisories/mfsa2015-87/ https://www.mozilla.org/security/advisories/mfsa2015-88/ - https://www.mozilla.org/security/advisories/mfsa2015-89/ https://www.mozilla.org/security/advisories/mfsa2015-90/ https://www.mozilla.org/security/advisories/mfsa2015-91/ https://www.mozilla.org/security/advisories/mfsa2015-92/ @@ -165,6 +192,7 @@ Notes: 2015-08-11 2015-08-11 + 2015-08-11 From owner-svn-ports-all@freebsd.org Tue Aug 11 19:04:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C842699F695; Tue, 11 Aug 2015 19:04:17 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F9BBBB9; Tue, 11 Aug 2015 19:04:17 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJ4HkP087034; Tue, 11 Aug 2015 19:04:17 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJ4Gi7087031; Tue, 11 Aug 2015 19:04:16 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508111904.t7BJ4Gi7087031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 11 Aug 2015 19:04:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393963 - head/graphics/graphite2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:04:17 -0000 Author: jkim Date: Tue Aug 11 19:04:16 2015 New Revision: 393963 URL: https://svnweb.freebsd.org/changeset/ports/393963 Log: Update to 1.3.0. Modified: head/graphics/graphite2/Makefile head/graphics/graphite2/distinfo head/graphics/graphite2/pkg-plist Modified: head/graphics/graphite2/Makefile ============================================================================== --- head/graphics/graphite2/Makefile Tue Aug 11 19:03:36 2015 (r393962) +++ head/graphics/graphite2/Makefile Tue Aug 11 19:04:16 2015 (r393963) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= graphite2 -PORTVERSION= 1.2.4 +PORTVERSION= 1.3.0 CATEGORIES= graphics print MASTER_SITES= SF/silgraphite/${PORTNAME} Modified: head/graphics/graphite2/distinfo ============================================================================== --- head/graphics/graphite2/distinfo Tue Aug 11 19:03:36 2015 (r393962) +++ head/graphics/graphite2/distinfo Tue Aug 11 19:04:16 2015 (r393963) @@ -1,2 +1,2 @@ -SHA256 (graphite2-1.2.4.tgz) = 4bc3d5168029bcc0aa00eb2c973269d29407be2796ff56f9c80e10736bd8b003 -SIZE (graphite2-1.2.4.tgz) = 6938866 +SHA256 (graphite2-1.3.0.tgz) = a9b1f59b657338cae67938f66af40874a1c8a7a552f59bfd5949927204d76f9d +SIZE (graphite2-1.3.0.tgz) = 8493201 Modified: head/graphics/graphite2/pkg-plist ============================================================================== --- head/graphics/graphite2/pkg-plist Tue Aug 11 19:03:36 2015 (r393962) +++ head/graphics/graphite2/pkg-plist Tue Aug 11 19:04:16 2015 (r393963) @@ -1,11 +1,11 @@ -%%DATADIR%%/graphite2-%%CMAKE_BUILD_TYPE%%.cmake -%%DATADIR%%/graphite2.cmake bin/gr2fonttest -include/graphite2/Log.h include/graphite2/Font.h +include/graphite2/Log.h include/graphite2/Segment.h include/graphite2/Types.h lib/libgraphite2.so lib/libgraphite2.so.3 lib/libgraphite2.so.3.0.1 libdata/pkgconfig/graphite2.pc +%%DATADIR%%/graphite2-%%CMAKE_BUILD_TYPE%%.cmake +%%DATADIR%%/graphite2.cmake From owner-svn-ports-all@freebsd.org Tue Aug 11 19:26:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67A8A99FB82; Tue, 11 Aug 2015 19:26:38 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 590F2AA3; Tue, 11 Aug 2015 19:26:38 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJQc49095394; Tue, 11 Aug 2015 19:26:38 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJQcMq095393; Tue, 11 Aug 2015 19:26:38 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201508111926.t7BJQcMq095393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 11 Aug 2015 19:26:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393964 - head/dns/dnsdist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:26:38 -0000 Author: pi Date: Tue Aug 11 19:26:37 2015 New Revision: 393964 URL: https://svnweb.freebsd.org/changeset/ports/393964 Log: dns/dnsdist: add USES=cpe PR: 202167 Submitted by: Carlos Jacobo Puga Medina (maintainer) Modified: head/dns/dnsdist/Makefile Modified: head/dns/dnsdist/Makefile ============================================================================== --- head/dns/dnsdist/Makefile Tue Aug 11 19:04:16 2015 (r393963) +++ head/dns/dnsdist/Makefile Tue Aug 11 19:26:37 2015 (r393964) @@ -20,7 +20,7 @@ CXXFLAGS+= -D_GLIBCXX_USE_C99 LDFLAGS+= -L${LOCALBASE}/lib -latomic GNU_CONFIGURE= yes USE_GCC= 4.8+ -USES= bison gmake libtool lua:52 pkgconfig readline tar:bz2 +USES= bison cpe gmake libtool lua:52 pkgconfig readline tar:bz2 INSTALL_TARGET= install-strip PLIST_FILES= bin/dnsdist \ From owner-svn-ports-all@freebsd.org Tue Aug 11 19:30:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9655D99FC0A; Tue, 11 Aug 2015 19:30:12 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8791CCD6; Tue, 11 Aug 2015 19:30:12 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJUC1n095684; Tue, 11 Aug 2015 19:30:12 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJUCYv095682; Tue, 11 Aug 2015 19:30:12 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201508111930.t7BJUCYv095682@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 11 Aug 2015 19:30:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393965 - head/www/alef-webfont X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:30:12 -0000 Author: pi Date: Tue Aug 11 19:30:11 2015 New Revision: 393965 URL: https://svnweb.freebsd.org/changeset/ports/393965 Log: www/alef-webfont: fix pkg-plist - Remove @dirrmtry directory (Deprecated) PR: 202210 Submitted by: Carlos Jacobo Puga Medina (maintainer) Modified: head/www/alef-webfont/Makefile head/www/alef-webfont/pkg-plist Modified: head/www/alef-webfont/Makefile ============================================================================== --- head/www/alef-webfont/Makefile Tue Aug 11 19:26:37 2015 (r393964) +++ head/www/alef-webfont/Makefile Tue Aug 11 19:30:11 2015 (r393965) @@ -3,6 +3,7 @@ PORTNAME= alef PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://alef.hagilda.com/ PKGNAMESUFFIX= -webfont Modified: head/www/alef-webfont/pkg-plist ============================================================================== --- head/www/alef-webfont/pkg-plist Tue Aug 11 19:26:37 2015 (r393964) +++ head/www/alef-webfont/pkg-plist Tue Aug 11 19:30:11 2015 (r393965) @@ -15,9 +15,3 @@ %%WWWDIR_REL%%/ttf/fonts.scale %%WWWDIR_REL%%/woff/Alef-Bold.woff %%WWWDIR_REL%%/woff/Alef-Regular.woff -@dirrmtry %%WWWDIR_REL%%/eot -@dirrmtry %%WWWDIR_REL%%/specimen_files -@dirrmtry %%WWWDIR_REL%%/svg -@dirrmtry %%WWWDIR_REL%%/ttf -@dirrmtry %%WWWDIR_REL%%/woff -@dirrmtry %%WWWDIR_REL%% From owner-svn-ports-all@freebsd.org Tue Aug 11 19:33:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFFF099FDD4; Tue, 11 Aug 2015 19:33:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 967248; Tue, 11 Aug 2015 19:33:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJXf7N099566; Tue, 11 Aug 2015 19:33:41 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJXeqS099563; Tue, 11 Aug 2015 19:33:40 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508111933.t7BJXeqS099563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 11 Aug 2015 19:33:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393966 - in head/mail/postfix-policyd-spf-python: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:33:41 -0000 Author: pawel Date: Tue Aug 11 19:33:40 2015 New Revision: 393966 URL: https://svnweb.freebsd.org/changeset/ports/393966 Log: - Update to version 1.3.1 [1] - Remove not needed bsd.port.options.mk include PR: 201690 [1] Submitted by: Yasuhiro KIMURA [1] Approved by: maintainer Modified: head/mail/postfix-policyd-spf-python/Makefile head/mail/postfix-policyd-spf-python/distinfo head/mail/postfix-policyd-spf-python/files/patch-setup.py Modified: head/mail/postfix-policyd-spf-python/Makefile ============================================================================== --- head/mail/postfix-policyd-spf-python/Makefile Tue Aug 11 19:30:11 2015 (r393965) +++ head/mail/postfix-policyd-spf-python/Makefile Tue Aug 11 19:33:40 2015 (r393966) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= postfix-policyd-spf-python -PORTVERSION= 1.2 +PORTVERSION= 1.3.1 CATEGORIES= mail python -MASTER_SITES= https://launchpadlibrarian.net/145855789/ +MASTER_SITES= https://launchpad.net/pypolicyd-spf/1.3/1.3.1/+download/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= pypolicyd-spf-${PORTVERSION} @@ -35,8 +35,6 @@ SUB_LIST= PYTHON_CMD=${PYTHON_CMD} OPTIONS_DEFINE= DOCS OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options -.include - post-patch: @${MV} ${WRKSRC}/policyd-spf.conf ${WRKSRC}/policyd-spf.conf.sample @${REINPLACE_CMD} -e "s|/etc/python-policyd-spf/|${PREFIX}/etc/postfix-policyd-spf-python/|" \ Modified: head/mail/postfix-policyd-spf-python/distinfo ============================================================================== --- head/mail/postfix-policyd-spf-python/distinfo Tue Aug 11 19:30:11 2015 (r393965) +++ head/mail/postfix-policyd-spf-python/distinfo Tue Aug 11 19:33:40 2015 (r393966) @@ -1,2 +1,2 @@ -SHA256 (pypolicyd-spf-1.2.tar.gz) = e1a94c79ad91cfea17b9c8b19b035536f06d75ff9ee2e8478191e7c27fe69f74 -SIZE (pypolicyd-spf-1.2.tar.gz) = 30783 +SHA256 (pypolicyd-spf-1.3.1.tar.gz) = 5b575638e3d30db5583ed4e3c0902b9a6d90ba7e126a9d37b9bffe2e6b201808 +SIZE (pypolicyd-spf-1.3.1.tar.gz) = 32093 Modified: head/mail/postfix-policyd-spf-python/files/patch-setup.py ============================================================================== --- head/mail/postfix-policyd-spf-python/files/patch-setup.py Tue Aug 11 19:30:11 2015 (r393965) +++ head/mail/postfix-policyd-spf-python/files/patch-setup.py Tue Aug 11 19:33:40 2015 (r393966) @@ -1,6 +1,6 @@ ---- setup.py.orig 2013-05-14 12:57:04.000000000 +0900 -+++ setup.py 2014-01-14 10:15:11.000000000 +0900 -@@ -13,10 +13,10 @@ +--- setup.py.orig 2014-06-04 05:08:20 UTC ++++ setup.py +@@ -13,10 +13,10 @@ setup(name='pypolicyd-spf', py_modules=['policydspfsupp', 'policydspfuser'], keywords = ['Postfix','spf','email'], scripts = ['policyd-spf'], From owner-svn-ports-all@freebsd.org Tue Aug 11 19:48:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A05799F0E1; Tue, 11 Aug 2015 19:48:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8AD6A7BA; Tue, 11 Aug 2015 19:48:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJmU8r004093; Tue, 11 Aug 2015 19:48:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJmUHE004092; Tue, 11 Aug 2015 19:48:30 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508111948.t7BJmUHE004092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 19:48:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393967 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:48:30 -0000 Author: jbeich Date: Tue Aug 11 19:48:29 2015 New Revision: 393967 URL: https://svnweb.freebsd.org/changeset/ports/393967 Log: Oops, mark bundled libvpx v1.4.0 in firefox as vulnerable again libvpx v1.3.0-4418-g587ff64 in firefox-esr 38.x shouldn't be affected given Mozilla hasn't backported the update there. MFSA 2015-89 says otherwise though. https://bugzilla.mozilla.org/show_bug.cgi?id=1178215 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Tue Aug 11 19:33:40 2015 (r393966) +++ head/security/vuxml/vuln.xml Tue Aug 11 19:48:29 2015 (r393967) @@ -65,6 +65,14 @@ Notes: libvpx 1.5.0 + + firefox + 40.0,1 + + + linux-firefox + 40.0,1 + @@ -87,6 +95,7 @@ Notes: 2015-08-11 2015-08-11 + 2015-08-11 From owner-svn-ports-all@freebsd.org Tue Aug 11 19:49:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 879FB99F148; Tue, 11 Aug 2015 19:49:32 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E47C8A0; Tue, 11 Aug 2015 19:49:32 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJnWuA004296; Tue, 11 Aug 2015 19:49:32 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJnVsm004292; Tue, 11 Aug 2015 19:49:31 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508111949.t7BJnVsm004292@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 11 Aug 2015 19:49:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393968 - in head/textproc: . py-python-docx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:49:32 -0000 Author: pawel Date: Tue Aug 11 19:49:30 2015 New Revision: 393968 URL: https://svnweb.freebsd.org/changeset/ports/393968 Log: Python library for creating and updating Microsoft Word files. WWW: https://github.com/mikemaccana/python-docx PR: 201320 Submitted by: jjachuf@gmail.com Added: head/textproc/py-python-docx/ head/textproc/py-python-docx/Makefile (contents, props changed) head/textproc/py-python-docx/distinfo (contents, props changed) head/textproc/py-python-docx/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Aug 11 19:48:29 2015 (r393967) +++ head/textproc/Makefile Tue Aug 11 19:49:30 2015 (r393968) @@ -1229,6 +1229,7 @@ SUBDIR += py-pystache SUBDIR += py-pystemmer SUBDIR += py-python-augeas + SUBDIR += py-python-docx SUBDIR += py-pytidylib SUBDIR += py-pyx12 SUBDIR += py-qrcode Added: head/textproc/py-python-docx/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-docx/Makefile Tue Aug 11 19:49:30 2015 (r393968) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= python-docx +PORTVERSION= 0.8.5 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jjachuf@gmail.com +COMMENT= Python library for creating and updating Microsoft Word files + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=3.3.4:${PORTSDIR}/devel/py-lxml + +# Python3 ready +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/textproc/py-python-docx/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-docx/distinfo Tue Aug 11 19:49:30 2015 (r393968) @@ -0,0 +1,2 @@ +SHA256 (python-docx-0.8.5.tar.gz) = 190ee604bd8c4ac9b8f97d665ff162c847e1f7ca8f5a49291fdbcaf272e8abd7 +SIZE (python-docx-0.8.5.tar.gz) = 5232432 Added: head/textproc/py-python-docx/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-docx/pkg-descr Tue Aug 11 19:49:30 2015 (r393968) @@ -0,0 +1,3 @@ +Python library for creating and updating Microsoft Word files. + +WWW: https://github.com/mikemaccana/python-docx From owner-svn-ports-all@freebsd.org Tue Aug 11 19:50:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7ED9299F1BE; Tue, 11 Aug 2015 19:50:41 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F384AD7; Tue, 11 Aug 2015 19:50:41 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJoff7007612; Tue, 11 Aug 2015 19:50:41 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJoegI007606; Tue, 11 Aug 2015 19:50:40 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508111950.t7BJoegI007606@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 11 Aug 2015 19:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393969 - in head/math: . R-cran-NMF X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:50:41 -0000 Author: tota Date: Tue Aug 11 19:50:39 2015 New Revision: 393969 URL: https://svnweb.freebsd.org/changeset/ports/393969 Log: - Add new port: math/R-cran-NMF Provides a framework to perform Non-negative Matrix Factorization (NMF). The package implements a set of already published algorithms and seeding methods, and provides a framework to test, develop and plug new/custom algorithms. Most of the built-in algorithms have been optimized in C++, and the main interface function provides an easy way of performing parallel computations on multicore machines. WWW: https://cran.r-project.org/web/packages/NMF/ Added: head/math/R-cran-NMF/ head/math/R-cran-NMF/Makefile (contents, props changed) head/math/R-cran-NMF/distinfo (contents, props changed) head/math/R-cran-NMF/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Aug 11 19:49:30 2015 (r393968) +++ head/math/Makefile Tue Aug 11 19:50:39 2015 (r393969) @@ -11,6 +11,7 @@ SUBDIR += R-cran-KFAS SUBDIR += R-cran-LearnBayes SUBDIR += R-cran-MCMCpack + SUBDIR += R-cran-NMF SUBDIR += R-cran-RHmm SUBDIR += R-cran-RSvgDevice SUBDIR += R-cran-RcppArmadillo Added: head/math/R-cran-NMF/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-NMF/Makefile Tue Aug 11 19:50:39 2015 (r393969) @@ -0,0 +1,30 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= NMF +PORTVERSION= 0.20.6 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Algorithms and Framework for Nonnegative Matrix Factorization + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +RUN_DEPENDS= R-cran-pkgmaker>=0.20:${PORTSDIR}/devel/R-cran-pkgmaker \ + R-cran-registry>0:${PORTSDIR}/devel/R-cran-registry \ + R-cran-rngtools>=1.2.3:${PORTSDIR}/devel/R-cran-rngtools \ + R-cran-stringr>=1.0.0:${PORTSDIR}/textproc/R-cran-stringr \ + R-cran-digest>0:${PORTSDIR}/security/R-cran-digest \ + R-cran-gridBase>0:${PORTSDIR}/graphics/R-cran-gridBase \ + R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace \ + R-cran-RColorBrewer>0:${PORTSDIR}/graphics/R-cran-RColorBrewer \ + R-cran-foreach>0:${PORTSDIR}/devel/R-cran-foreach \ + R-cran-doParallel>0:${PORTSDIR}/devel/R-cran-doParallel \ + R-cran-ggplot2>0:${PORTSDIR}/graphics/R-cran-ggplot2 \ + R-cran-reshape2>0:${PORTSDIR}/devel/R-cran-reshape2 + +USES= cran:auto-plist + +.include Added: head/math/R-cran-NMF/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-NMF/distinfo Tue Aug 11 19:50:39 2015 (r393969) @@ -0,0 +1,2 @@ +SHA256 (NMF_0.20.6.tar.gz) = dfccd4b4d6ec90cd7628fd128d2456d792f406cee4d32b13448dcb0ffe4ab056 +SIZE (NMF_0.20.6.tar.gz) = 1764466 Added: head/math/R-cran-NMF/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-NMF/pkg-descr Tue Aug 11 19:50:39 2015 (r393969) @@ -0,0 +1,8 @@ +Provides a framework to perform Non-negative Matrix Factorization +(NMF). The package implements a set of already published algorithms +and seeding methods, and provides a framework to test, develop and +plug new/custom algorithms. Most of the built-in algorithms have +been optimized in C++, and the main interface function provides an +easy way of performing parallel computations on multicore machines. + +WWW: https://cran.r-project.org/web/packages/NMF/ From owner-svn-ports-all@freebsd.org Tue Aug 11 19:55:14 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC1CA99F355; Tue, 11 Aug 2015 19:55:14 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C02E6D39; Tue, 11 Aug 2015 19:55:14 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJtEeD008459; Tue, 11 Aug 2015 19:55:14 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJtEjN008457; Tue, 11 Aug 2015 19:55:14 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201508111955.t7BJtEjN008457@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Tue, 11 Aug 2015 19:55:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393970 - in head/hebrew/elmar-fonts: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 19:55:15 -0000 Author: pi Date: Tue Aug 11 19:55:13 2015 New Revision: 393970 URL: https://svnweb.freebsd.org/changeset/ports/393970 Log: hebrew/elmar-fonts: some fixes in Makefile, pet portlint - Fix Makefile according to portlint checkings - Move pkg-message to ${FILESDIR}/pkg-message.in PR: 202219 Submitted by: Carlos Jacobo Puga Medina Added: head/hebrew/elmar-fonts/files/ head/hebrew/elmar-fonts/files/pkg-message.in - copied unchanged from r393963, head/hebrew/elmar-fonts/pkg-message Deleted: head/hebrew/elmar-fonts/pkg-message Modified: head/hebrew/elmar-fonts/Makefile Modified: head/hebrew/elmar-fonts/Makefile ============================================================================== --- head/hebrew/elmar-fonts/Makefile Tue Aug 11 19:50:39 2015 (r393969) +++ head/hebrew/elmar-fonts/Makefile Tue Aug 11 19:55:13 2015 (r393970) @@ -1,21 +1,24 @@ # Created by: nadav@cs.technion.ac.il # $FreeBSD$ -PORTNAME= elmar-fonts +PORTNAME= elmar PORTVERSION= 3.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= hebrew x11-fonts +MASTER_SITES= ftp://ftp.elmar.co.il/Portable/fonts/ +PKGNAMESUFFIX= -fonts DISTNAME= H.fonts -EXTRACT_SUFX= .tar.Z MAINTAINER= cpm@fbsd.es -COMMENT= Collection of Hebrew fonts from El-Mar software Ltd +COMMENT= Collection of Hebrew fonts from El-Mar software, Ltd -USES= fonts +USES= fonts tar:Z NO_WRKSUBDIR= yes NO_BUILD= yes FONTNAME= hebrew +SUB_FILES= pkg-message + do-install: @${MKDIR} ${STAGEDIR}${FONTSDIR} ${TAR} -C ${STAGEDIR}${FONTSDIR} -xZpf \ Copied: head/hebrew/elmar-fonts/files/pkg-message.in (from r393963, head/hebrew/elmar-fonts/pkg-message) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/hebrew/elmar-fonts/files/pkg-message.in Tue Aug 11 19:55:13 2015 (r393970, copy of r393963, head/hebrew/elmar-fonts/pkg-message) @@ -0,0 +1,8 @@ +You'll have to add this port's directory PREFIX/lib/X11/fonts/hebrew +to your X font path: + +$ xset fp+ PREFIX/lib/X11/fonts/hebrew +$ xset fp rehash + +or by adding a FontPath line for it in the X-server configuration file (usually +/etc/X11/xorg.conf) and restarting the X-server. From owner-svn-ports-all@freebsd.org Tue Aug 11 20:19:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F54899F878; Tue, 11 Aug 2015 20:19:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 800B018C9; Tue, 11 Aug 2015 20:19:41 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BKJfkA016767; Tue, 11 Aug 2015 20:19:41 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BKJfJb016765; Tue, 11 Aug 2015 20:19:41 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508112019.t7BKJfJb016765@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 11 Aug 2015 20:19:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393971 - head/security/ykpers X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 20:19:41 -0000 Author: pawel Date: Tue Aug 11 20:19:40 2015 New Revision: 393971 URL: https://svnweb.freebsd.org/changeset/ports/393971 Log: Update to version 1.17.1 PR: 201772 Submitted by: Christoph Moench-Tegeder Approved by: maintainer timeout Modified: head/security/ykpers/Makefile head/security/ykpers/distinfo Modified: head/security/ykpers/Makefile ============================================================================== --- head/security/ykpers/Makefile Tue Aug 11 19:55:13 2015 (r393970) +++ head/security/ykpers/Makefile Tue Aug 11 20:19:40 2015 (r393971) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ykpers -PORTVERSION= 1.15.1 +PORTVERSION= 1.17.1 CATEGORIES= security MASTER_SITES= http://opensource.yubico.com/yubikey-personalization/releases/ @@ -27,7 +27,7 @@ PLIST_FILES= bin/ykchalresp \ include/ykpers-1/ykstatus.h \ lib/libykpers-1.so \ lib/libykpers-1.so.1 \ - lib/libykpers-1.so.1.15.1 \ + lib/libykpers-1.so.${PORTVERSION} \ libdata/pkgconfig/ykpers-1.pc \ man/man1/ykchalresp.1.gz \ man/man1/ykinfo.1.gz \ Modified: head/security/ykpers/distinfo ============================================================================== --- head/security/ykpers/distinfo Tue Aug 11 19:55:13 2015 (r393970) +++ head/security/ykpers/distinfo Tue Aug 11 20:19:40 2015 (r393971) @@ -1,2 +1,2 @@ -SHA256 (ykpers-1.15.1.tar.gz) = 80cd384696007be5d195be7fe646b9bd64bcd65d2fadc29e9c55f6862c87dff5 -SIZE (ykpers-1.15.1.tar.gz) = 500262 +SHA256 (ykpers-1.17.1.tar.gz) = 556baec2bbc94bae01293e64dc3873d68f880119ea5c3772737e4f3dc44f69c4 +SIZE (ykpers-1.17.1.tar.gz) = 504827 From owner-svn-ports-all@freebsd.org Tue Aug 11 20:41:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEC7F99FE36; Tue, 11 Aug 2015 20:41:31 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A55D73EC; Tue, 11 Aug 2015 20:41:31 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BKfVxt028729; Tue, 11 Aug 2015 20:41:31 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BKfUeP028725; Tue, 11 Aug 2015 20:41:30 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508112041.t7BKfUeP028725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 11 Aug 2015 20:41:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393972 - in head/math: . R-cran-irlba X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 20:41:31 -0000 Author: tota Date: Tue Aug 11 20:41:29 2015 New Revision: 393972 URL: https://svnweb.freebsd.org/changeset/ports/393972 Log: - Add new port: math/R-cran-irlba A fast and memory-efficient method for computing a few approximate singular values and singular vectors of large matrices. WWW: https://cran.r-project.org/web/packages/irlba/ Added: head/math/R-cran-irlba/ head/math/R-cran-irlba/Makefile (contents, props changed) head/math/R-cran-irlba/distinfo (contents, props changed) head/math/R-cran-irlba/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Aug 11 20:19:40 2015 (r393971) +++ head/math/Makefile Tue Aug 11 20:41:29 2015 (r393972) @@ -29,6 +29,7 @@ SUBDIR += R-cran-gtable SUBDIR += R-cran-igraph SUBDIR += R-cran-inline + SUBDIR += R-cran-irlba SUBDIR += R-cran-labeling SUBDIR += R-cran-memisc SUBDIR += R-cran-minqa Added: head/math/R-cran-irlba/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-irlba/Makefile Tue Aug 11 20:41:29 2015 (r393972) @@ -0,0 +1,17 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= irlba +PORTVERSION= 1.0.3 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Fast partial SVD by implicitly-restarted Lanczos bidiagonalization + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +USES= cran:auto-plist + +.include Added: head/math/R-cran-irlba/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-irlba/distinfo Tue Aug 11 20:41:29 2015 (r393972) @@ -0,0 +1,2 @@ +SHA256 (irlba_1.0.3.tar.gz) = deaf82b5670f91bc65a0ff31a2f03c540e210539251c5e0e10b2a707d3ac5ec0 +SIZE (irlba_1.0.3.tar.gz) = 180965 Added: head/math/R-cran-irlba/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-irlba/pkg-descr Tue Aug 11 20:41:29 2015 (r393972) @@ -0,0 +1,4 @@ +A fast and memory-efficient method for computing a few approximate +singular values and singular vectors of large matrices. + +WWW: https://cran.r-project.org/web/packages/irlba/ From owner-svn-ports-all@freebsd.org Tue Aug 11 20:51:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1317C99F04A; Tue, 11 Aug 2015 20:51:56 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 00951A56; Tue, 11 Aug 2015 20:51:56 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BKptm9032864; Tue, 11 Aug 2015 20:51:55 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BKptPW032861; Tue, 11 Aug 2015 20:51:55 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201508112051.t7BKptPW032861@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Tue, 11 Aug 2015 20:51:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393973 - in head/x11/i3status: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 20:51:56 -0000 Author: jhb (src,doc committer) Date: Tue Aug 11 20:51:54 2015 New Revision: 393973 URL: https://svnweb.freebsd.org/changeset/ports/393973 Log: Fix some nits with displaying Ethernet media status exposed by the recent extended Ethernet media states: - Don't apply IFM_SUBTYPE to the raw subtype in the description table. IFM_SUBTYPE() requires a fully populated word and was truncating values in the table when comparing resulting in false matches (notably "10GBase-KX4" for the no media case). - Explicitly check for IFM_ETHER. - Use SIOCGIFXMEDIA when present to obtain extended media states. - Explicitly handle "no carrier". PR: 202247 Reviewed by: bapt Added: head/x11/i3status/files/ head/x11/i3status/files/patch-print_eth_info.c (contents, props changed) Modified: head/x11/i3status/Makefile Modified: head/x11/i3status/Makefile ============================================================================== --- head/x11/i3status/Makefile Tue Aug 11 20:41:29 2015 (r393972) +++ head/x11/i3status/Makefile Tue Aug 11 20:51:54 2015 (r393973) @@ -2,7 +2,7 @@ PORTNAME= i3status PORTVERSION= 2.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MASTER_SITES= http://i3wm.org/i3status/ Added: head/x11/i3status/files/patch-print_eth_info.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/i3status/files/patch-print_eth_info.c Tue Aug 11 20:51:54 2015 (r393973) @@ -0,0 +1,45 @@ +--- src/print_eth_info.c.orig 2015-08-11 09:37:31.470359000 -0700 ++++ src/print_eth_info.c 2015-08-11 10:12:38.744033000 -0700 +@@ -21,8 +21,6 @@ + + #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) + #include +-#define IFM_TYPE_MATCH(dt, t) \ +- (IFM_TYPE((dt)) == 0 || IFM_TYPE((dt)) == IFM_TYPE((t))) + + #define PART_ETHSPEED "E: %s (%s)" + #endif +@@ -52,19 +50,29 @@ + struct ifmediareq ifm; + (void)memset(&ifm, 0, sizeof(ifm)); + (void)strncpy(ifm.ifm_name, interface, sizeof(ifm.ifm_name)); +- int ret = ioctl(general_socket, SIOCGIFMEDIA, (caddr_t)&ifm); ++ int ret; ++#ifdef SIOCGIFXMEDIA ++ ret = ioctl(general_socket, SIOCGIFXMEDIA, (caddr_t)&ifm); ++ if (ret < 0) ++#endif ++ ret = ioctl(general_socket, SIOCGIFMEDIA, (caddr_t)&ifm); ++ if (ret < 0) ++ return sprintf(outwalk, "?"); + + /* Get the description of the media type, partially taken from + * FreeBSD's ifconfig */ + const struct ifmedia_description *desc; +- struct ifmedia_description ifm_subtype_descriptions[] = ++ static struct ifmedia_description ifm_subtype_descriptions[] = + IFM_SUBTYPE_ETHERNET_DESCRIPTIONS; + ++ if (IFM_TYPE(ifm.ifm_active) != IFM_ETHER) ++ return sprintf(outwalk, "?"); ++ if (ifm.ifm_status & IFM_AVALID && !(ifm.ifm_status & IFM_ACTIVE)) ++ return sprintf(outwalk, "no carrier"); + for (desc = ifm_subtype_descriptions; + desc->ifmt_string != NULL; + desc++) { +- if (IFM_TYPE_MATCH(desc->ifmt_word, ifm.ifm_active) && +- IFM_SUBTYPE(desc->ifmt_word) == IFM_SUBTYPE(ifm.ifm_active)) ++ if (desc->ifmt_word == IFM_SUBTYPE(ifm.ifm_active)) + break; + } + ethspeed = (desc->ifmt_string != NULL ? desc->ifmt_string : "?"); From owner-svn-ports-all@freebsd.org Tue Aug 11 21:32:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6175999F8B7; Tue, 11 Aug 2015 21:32:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4563DE80; Tue, 11 Aug 2015 21:32:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BLWU1G049393; Tue, 11 Aug 2015 21:32:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BLWQct049381; Tue, 11 Aug 2015 21:32:26 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508112132.t7BLWQct049381@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 21:32:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393974 - in branches/2015Q3: mail/thunderbird mail/thunderbird/files multimedia/openh264 multimedia/openh264/files www/firefox www/firefox-esr www/firefox-esr/files www/firefox/files w... X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 21:32:30 -0000 Author: jbeich Date: Tue Aug 11 21:32:26 2015 New Revision: 393974 URL: https://svnweb.freebsd.org/changeset/ports/393974 Log: MFH: r393941 Switch OpenH264 plugin to use environment variable files/patch-system-openh264 causes patch churn on updates and hits assertion with DEBUG=on[1]. Rework to use MOZ_GMP_PATH instead. While here populate Last Updated field to avoid falling back to Epoch start and disable Automatic Updates in an unlikely case of - Cisco & Mozilla providing prebuilt version for FreeBSD - Firefox running with root priveleges i.e., write permission under /usr/local PR: 202218 [1] Reported by: kib, pi [1] Inspired by: Gentoo Approved by: ports-secteam (feld) Deleted: branches/2015Q3/mail/thunderbird/files/patch-system-openh264 branches/2015Q3/www/firefox-esr/files/patch-system-openh264 branches/2015Q3/www/firefox/files/patch-system-openh264 branches/2015Q3/www/libxul/files/patch-system-openh264 branches/2015Q3/www/seamonkey/files/patch-system-openh264 Modified: branches/2015Q3/mail/thunderbird/Makefile branches/2015Q3/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp branches/2015Q3/multimedia/openh264/Makefile branches/2015Q3/multimedia/openh264/files/gmpopenh264.js.in branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp branches/2015Q3/www/firefox/Makefile branches/2015Q3/www/firefox/files/patch-browser-app-nsBrowserApp.cpp branches/2015Q3/www/libxul/Makefile branches/2015Q3/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp branches/2015Q3/www/seamonkey/Makefile branches/2015Q3/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2015Q3/mail/thunderbird/Makefile Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/mail/thunderbird/Makefile Tue Aug 11 21:32:26 2015 (r393974) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.1.0 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2015Q3/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp ============================================================================== --- branches/2015Q3/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/mail/thunderbird/files/patch-mail-app-nsMailApp.cpp Tue Aug 11 21:32:26 2015 (r393974) @@ -1,10 +1,12 @@ --- mail/app/nsMailApp.cpp~ +++ mail/app/nsMailApp.cpp -@@ -320,6 +320,7 @@ int main(int argc, char* argv[]) +@@ -320,6 +320,9 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); ++ int gotCounters; #if defined(XP_UNIX) struct rusage initialRUsage; Modified: branches/2015Q3/multimedia/openh264/Makefile ============================================================================== --- branches/2015Q3/multimedia/openh264/Makefile Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/multimedia/openh264/Makefile Tue Aug 11 21:32:26 2015 (r393974) @@ -3,7 +3,7 @@ PORTNAME= openh264 PORTVERSION= 1.4.0 DISTVERSIONPREFIX=v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MAINTAINER= gecko@FreeBSD.org @@ -35,7 +35,7 @@ PLUGINS_USES= webplugin:gecko WEBPLUGIN_NAME= gmp-gmp${PORTNAME} WEBPLUGIN_FILES=gmp${PORTNAME}.info libgmp${PORTNAME}.so SUB_FILES+= gmp${PORTNAME}.js -SUB_LIST+= PORTVERSION=${PORTVERSION} WEBPLUGIN_DIR="${WEBPLUGIN_DIR}" +SUB_LIST+= PORTVERSION=${PORTVERSION} TIMESTAMP="`date +%s`" TEST_BUILD_DEPENDS=googletest>=1.6.0:${PORTSDIR}/devel/googletest TEST_CFLAGS= -I${LOCALBASE}/include Modified: branches/2015Q3/multimedia/openh264/files/gmpopenh264.js.in ============================================================================== --- branches/2015Q3/multimedia/openh264/files/gmpopenh264.js.in Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/multimedia/openh264/files/gmpopenh264.js.in Tue Aug 11 21:32:26 2015 (r393974) @@ -1,2 +1,3 @@ -pref("media.gmp-gmpopenh264.path", "%%WEBPLUGIN_DIR%%"); +pref("media.gmp-gmpopenh264.autoupdate", false); +pref("media.gmp-gmpopenh264.lastUpdate", %%TIMESTAMP%%); pref("media.gmp-gmpopenh264.version", "%%PORTVERSION%%"); Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/firefox-esr/Makefile Tue Aug 11 21:32:26 2015 (r393974) @@ -4,6 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2015Q3/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp ============================================================================== --- branches/2015Q3/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/firefox-esr/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 21:32:26 2015 (r393974) @@ -1,9 +1,10 @@ --- browser/app/nsBrowserApp.cpp~ +++ browser/app/nsBrowserApp.cpp -@@ -334,6 +334,7 @@ int main(int argc, char* argv[]) +@@ -417,6 +417,8 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); int gotCounters; #if defined(XP_UNIX) Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/firefox/Makefile Tue Aug 11 21:32:26 2015 (r393974) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: branches/2015Q3/www/firefox/files/patch-browser-app-nsBrowserApp.cpp ============================================================================== --- branches/2015Q3/www/firefox/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/firefox/files/patch-browser-app-nsBrowserApp.cpp Tue Aug 11 21:32:26 2015 (r393974) @@ -1,9 +1,10 @@ --- browser/app/nsBrowserApp.cpp~ +++ browser/app/nsBrowserApp.cpp -@@ -334,6 +334,7 @@ int main(int argc, char* argv[]) +@@ -417,6 +417,8 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); int gotCounters; #if defined(XP_UNIX) Modified: branches/2015Q3/www/libxul/Makefile ============================================================================== --- branches/2015Q3/www/libxul/Makefile Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/libxul/Makefile Tue Aug 11 21:32:26 2015 (r393974) @@ -3,6 +3,7 @@ PORTNAME= libxul DISTVERSION= 38.2.0 +PORTREVISION= 1 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source Modified: branches/2015Q3/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp ============================================================================== --- branches/2015Q3/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/libxul/files/patch-xulrunner-stub-nsXULStub.cpp Tue Aug 11 21:32:26 2015 (r393974) @@ -1,9 +1,10 @@ --- xulrunner/stub/nsXULStub.cpp~ +++ xulrunner/stub/nsXULStub.cpp -@@ -202,6 +202,8 @@ main(int argc, char **argv) +@@ -160,6 +160,9 @@ main(int argc, char **argv) char greDir[MAXPATHLEN]; bool greFound = false; ++ setenv("MOZ_GMP_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + #if defined(XP_MACOSX) Modified: branches/2015Q3/www/seamonkey/Makefile ============================================================================== --- branches/2015Q3/www/seamonkey/Makefile Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/seamonkey/Makefile Tue Aug 11 21:32:26 2015 (r393974) @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.33.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2015Q3/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp ============================================================================== --- branches/2015Q3/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp Tue Aug 11 20:51:54 2015 (r393973) +++ branches/2015Q3/www/seamonkey/files/patch-suite-app-nsSuiteApp.cpp Tue Aug 11 21:32:26 2015 (r393974) @@ -1,11 +1,21 @@ --- suite/app/nsSuiteApp.cpp~ +++ suite/app/nsSuiteApp.cpp -@@ -215,6 +215,8 @@ int main(int argc, char* argv[]) - #ifdef XP_MACOSX +@@ -331,6 +331,9 @@ int main(int argc, char* argv[]) TriggerQuirks(); #endif -+ + ++ setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); + setenv("MOZ_PLUGIN_PATH", "%%LOCALBASE%%/lib/browser_plugins/symlinks/gecko", 0); - - nsresult rv = mozilla::BinaryPath::Get(argv[0], exePath); - if (NS_FAILED(rv)) { ++ + int gotCounters; + #if defined(XP_UNIX) + struct rusage initialRUsage; +@@ -339,7 +342,7 @@ int main(int argc, char* argv[]) + IO_COUNTERS ioCounters; + gotCounters = GetProcessIoCounters(GetCurrentProcess(), &ioCounters); + #endif +- ++ + nsIFile *xreDirectory; + + #ifdef HAS_DLL_BLOCKLIST From owner-svn-ports-all@freebsd.org Tue Aug 11 21:55:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87E3B99FE2E; Tue, 11 Aug 2015 21:55:43 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78A22A85; Tue, 11 Aug 2015 21:55:43 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BLthWK057741; Tue, 11 Aug 2015 21:55:43 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BLth1r057739; Tue, 11 Aug 2015 21:55:43 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508112155.t7BLth1r057739@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 11 Aug 2015 21:55:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393975 - head/mail/mu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 21:55:43 -0000 Author: pawel Date: Tue Aug 11 21:55:42 2015 New Revision: 393975 URL: https://svnweb.freebsd.org/changeset/ports/393975 Log: Update to version 0.9.12 PR: 201847 Submitted by: tkato432@yahoo.com Modified: head/mail/mu/Makefile head/mail/mu/distinfo Modified: head/mail/mu/Makefile ============================================================================== --- head/mail/mu/Makefile Tue Aug 11 21:32:26 2015 (r393974) +++ head/mail/mu/Makefile Tue Aug 11 21:55:42 2015 (r393975) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mu -PORTVERSION= 0.9.11 +PORTVERSION= 0.9.12 DISTVERSIONPREFIX= v CATEGORIES= mail @@ -43,9 +43,9 @@ MU4E_INFO= mu4e post-install: (cd ${FILESDIR} && ${INSTALL_SCRIPT} mu-ask \ ${STAGEDIR}${PREFIX}/bin) - .if ${PORT_OPTIONS:MGUILE} (${FIND} ${STAGEDIR}${PREFIX}/lib -name "*.so.*" -type f | \ ${XARGS} ${STRIP_CMD}) .endif + .include Modified: head/mail/mu/distinfo ============================================================================== --- head/mail/mu/distinfo Tue Aug 11 21:32:26 2015 (r393974) +++ head/mail/mu/distinfo Tue Aug 11 21:55:42 2015 (r393975) @@ -1,2 +1,2 @@ -SHA256 (djcb-mu-v0.9.11_GH0.tar.gz) = d01993299a634126bb7431d4390fc3be941f1a22e98a91ec2d55bb4bf0a7c106 -SIZE (djcb-mu-v0.9.11_GH0.tar.gz) = 2192943 +SHA256 (djcb-mu-v0.9.12_GH0.tar.gz) = b871124fc7774a2593815f89286671a8f31d7243bb898a8ca454685599f2b9af +SIZE (djcb-mu-v0.9.12_GH0.tar.gz) = 2196977 From owner-svn-ports-all@freebsd.org Tue Aug 11 22:00:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 952C799FFB9; Tue, 11 Aug 2015 22:00:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 85AE0D8D; Tue, 11 Aug 2015 22:00:43 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BM0hR6058152; Tue, 11 Aug 2015 22:00:43 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BM0haC058150; Tue, 11 Aug 2015 22:00:43 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508112200.t7BM0haC058150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 11 Aug 2015 22:00:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393976 - head/ports-mgmt/pkg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:00:43 -0000 Author: bapt Date: Tue Aug 11 22:00:42 2015 New Revision: 393976 URL: https://svnweb.freebsd.org/changeset/ports/393976 Log: Update to pkg 1.5.6 Changes: - Incorporate in sources the patch for expat CVE-2015-1283 Note that pkg is not vulnerable because it does not use the patched function - improvements in pkg check manpage - fix format specifier in libpkg's pkg_vets Modified: head/ports-mgmt/pkg/Makefile head/ports-mgmt/pkg/distinfo Modified: head/ports-mgmt/pkg/Makefile ============================================================================== --- head/ports-mgmt/pkg/Makefile Tue Aug 11 21:55:42 2015 (r393975) +++ head/ports-mgmt/pkg/Makefile Tue Aug 11 22:00:42 2015 (r393976) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.5.5 +DISTVERSION= 1.5.6 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Modified: head/ports-mgmt/pkg/distinfo ============================================================================== --- head/ports-mgmt/pkg/distinfo Tue Aug 11 21:55:42 2015 (r393975) +++ head/ports-mgmt/pkg/distinfo Tue Aug 11 22:00:42 2015 (r393976) @@ -1,2 +1,2 @@ -SHA256 (pkg-1.5.5.tar.xz) = 5d19b4cca5574f3e4d5299e65cd6ef3e31eff9c2bba06223119587137d750a1f -SIZE (pkg-1.5.5.tar.xz) = 1897720 +SHA256 (pkg-1.5.6.tar.xz) = 30c772e97e306ad85dcc652e2a9951ad49b0827337066f44dba5d91882ad92b1 +SIZE (pkg-1.5.6.tar.xz) = 1900900 From owner-svn-ports-all@freebsd.org Tue Aug 11 22:02:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC6E699F026; Tue, 11 Aug 2015 22:02:32 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C12F1143; Tue, 11 Aug 2015 22:02:32 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BM2Wsp061967; Tue, 11 Aug 2015 22:02:32 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BM2VPZ061962; Tue, 11 Aug 2015 22:02:31 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508112202.t7BM2VPZ061962@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Tue, 11 Aug 2015 22:02:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393977 - in head/textproc/p5-EBook-Tools: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:02:33 -0000 Author: junovitch Date: Tue Aug 11 22:02:30 2015 New Revision: 393977 URL: https://svnweb.freebsd.org/changeset/ports/393977 Log: textproc/p5-EBook-Tools: update 0.4.9_2 -> 0.5.4 - Update to p5-EBook-Tools-0.5.4 - Update tidy dependency to tidy-html5 - Take maintainership - Add NO_ARCH PR: 201703 Approved by: simond@irrelevant.org (outgoing maintainer), feld (mentor) Differential Revision: https://reviews.freebsd.org/D3348 Added: head/textproc/p5-EBook-Tools/files/ head/textproc/p5-EBook-Tools/files/patch-lib_EBook_Tools.pm (contents, props changed) head/textproc/p5-EBook-Tools/files/patch-scripts_ebook.pl (contents, props changed) Modified: head/textproc/p5-EBook-Tools/Makefile head/textproc/p5-EBook-Tools/distinfo head/textproc/p5-EBook-Tools/pkg-plist Modified: head/textproc/p5-EBook-Tools/Makefile ============================================================================== --- head/textproc/p5-EBook-Tools/Makefile Tue Aug 11 22:00:42 2015 (r393976) +++ head/textproc/p5-EBook-Tools/Makefile Tue Aug 11 22:02:30 2015 (r393977) @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= EBook-Tools -PORTVERSION= 0.4.9 +PORTVERSION= 0.5.4 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= simond@irrelevant.org +MAINTAINER= junovitch@FreeBSD.org COMMENT= Object class for manipulating and generating E-books LICENSE= GPLv2 @@ -18,11 +17,18 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:${PORTS p5-Data-UUID>=0:${PORTSDIR}/devel/p5-Data-UUID \ p5-Config-IniFiles>=0:${PORTSDIR}/devel/p5-Config-IniFiles \ p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ + p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ + p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite \ + p5-Encode-Detect>=0:${PORTSDIR}/converters/p5-Encode-Detect \ p5-File-MimeInfo>=0:${PORTSDIR}/devel/p5-File-MimeInfo \ p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ + p5-Lingua-EN-NameParse>=0:${PORTSDIR}/textproc/p5-Lingua-EN-NameParse \ + p5-LWP-Protocol-https>=0:${PORTSDIR}/www/p5-LWP-Protocol-https \ + p5-Mojolicious>=0:${PORTSDIR}/www/p5-Mojolicious \ p5-Tie-IxHash>=0:${PORTSDIR}/devel/p5-Tie-IxHash \ p5-XML-Twig>=0:${PORTSDIR}/textproc/p5-XML-Twig \ p5-File-Slurp>=0:${PORTSDIR}/devel/p5-File-Slurp \ + p5-File-Which>=0:${PORTSDIR}/sysutils/p5-File-Which \ p5-Palm>=0:${PORTSDIR}/palm/p5-Palm \ p5-Image-Size>=0:${PORTSDIR}/graphics/p5-Image-Size \ p5-String-CRC32>=0:${PORTSDIR}/devel/p5-String-CRC32 \ @@ -30,9 +36,10 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:${PORTS p5-Bit-Vector>=0:${PORTSDIR}/math/p5-Bit-Vector \ p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils RUN_DEPENDS:= ${BUILD_DEPENDS} -RUN_DEPENDS+= ${LOCALBASE}/bin/tidy4:${PORTSDIR}/www/tidy +RUN_DEPENDS+= ${LOCALBASE}/bin/tidy5:${PORTSDIR}/www/tidy-html5 USES= perl5 USE_PERL5= modbuild +NO_ARCH= yes .include Modified: head/textproc/p5-EBook-Tools/distinfo ============================================================================== --- head/textproc/p5-EBook-Tools/distinfo Tue Aug 11 22:00:42 2015 (r393976) +++ head/textproc/p5-EBook-Tools/distinfo Tue Aug 11 22:02:30 2015 (r393977) @@ -1,2 +1,2 @@ -SHA256 (EBook-Tools-v0.4.9.tar.gz) = 8645ff9d0df023481b78f39899806b884fac675080c8b180d25f821e57cc16fb -SIZE (EBook-Tools-v0.4.9.tar.gz) = 653399 +SHA256 (EBook-Tools-v0.5.4.tar.gz) = 2a94808f611da58086ed151c1348fcf9c9ffab7822fef8457eeac3376fa1a81a +SIZE (EBook-Tools-v0.5.4.tar.gz) = 725633 Added: head/textproc/p5-EBook-Tools/files/patch-lib_EBook_Tools.pm ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-EBook-Tools/files/patch-lib_EBook_Tools.pm Tue Aug 11 22:02:30 2015 (r393977) @@ -0,0 +1,10 @@ +--- lib/EBook/Tools.pm.orig 2014-10-01 22:27:01 UTC ++++ lib/EBook/Tools.pm +@@ -11710,6 +11710,7 @@ Returns the return value from tidy + '-q','-utf8','--tidy-mark','no', + '--wrap','0', + '-xml', ++ '-indent', + '--add-xml-decl','yes', + '-f',$tidyxmlerrors, + '-o',$outfile, Added: head/textproc/p5-EBook-Tools/files/patch-scripts_ebook.pl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/p5-EBook-Tools/files/patch-scripts_ebook.pl Tue Aug 11 22:02:30 2015 (r393977) @@ -0,0 +1,11 @@ +--- scripts/ebook.pl.orig 2014-10-01 22:27:01 UTC ++++ scripts/ebook.pl +@@ -92,7 +92,7 @@ my %opt = ( + 'raw' => 0, + 'subcategory' => undef, + 'tidy' => 0, +- 'tidycmd' => $config->val('helpers','tidy') || undef, ++ 'tidycmd' => $config->val('helpers','tidy') || 'tidy5', + 'tidysafety' => $tidysafety, + 'title' => undef, + 'verbose' => $config->val('config','debug') || 0, Modified: head/textproc/p5-EBook-Tools/pkg-plist ============================================================================== --- head/textproc/p5-EBook-Tools/pkg-plist Tue Aug 11 22:00:42 2015 (r393976) +++ head/textproc/p5-EBook-Tools/pkg-plist Tue Aug 11 22:02:30 2015 (r393977) @@ -1,5 +1,6 @@ man/man1/ebook.1.gz %%PERL5_MAN3%%/EBook::Tools.3.gz +%%PERL5_MAN3%%/EBook::Tools::BISG.3.gz %%PERL5_MAN3%%/EBook::Tools::EReader.3.gz %%PERL5_MAN3%%/EBook::Tools::IMP.3.gz %%PERL5_MAN3%%/EBook::Tools::LZSS.3.gz @@ -8,6 +9,7 @@ man/man1/ebook.1.gz %%PERL5_MAN3%%/EBook::Tools::PalmDoc.3.gz %%PERL5_MAN3%%/EBook::Tools::Unpack.3.gz %%SITE_PERL%%/EBook/Tools.pm +%%SITE_PERL%%/EBook/Tools/BISG.pm %%SITE_PERL%%/EBook/Tools/EReader.pm %%SITE_PERL%%/EBook/Tools/IMP.pm %%SITE_PERL%%/EBook/Tools/LZSS.pm From owner-svn-ports-all@freebsd.org Tue Aug 11 22:06:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3CCEB99F0CB; Tue, 11 Aug 2015 22:06:21 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CD3627E; Tue, 11 Aug 2015 22:06:21 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BM6LNi062318; Tue, 11 Aug 2015 22:06:21 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BM6KAG062316; Tue, 11 Aug 2015 22:06:20 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508112206.t7BM6KAG062316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 11 Aug 2015 22:06:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393978 - in head/textproc/expat2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:06:21 -0000 Author: bapt Date: Tue Aug 11 22:06:20 2015 New Revision: 393978 URL: https://svnweb.freebsd.org/changeset/ports/393978 Log: Add patch for CVE-2015-1283 Added: head/textproc/expat2/files/ head/textproc/expat2/files/CVE-2015-1283.patch (contents, props changed) Modified: head/textproc/expat2/Makefile Modified: head/textproc/expat2/Makefile ============================================================================== --- head/textproc/expat2/Makefile Tue Aug 11 22:02:30 2015 (r393977) +++ head/textproc/expat2/Makefile Tue Aug 11 22:06:20 2015 (r393978) @@ -3,7 +3,7 @@ PORTNAME= expat PORTVERSION= 2.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF @@ -15,6 +15,8 @@ ALL_TARGET= default USES= libtool pathfix USE_LDCONFIG= yes +EXTRA_PATCHES= ${FILESDIR}/CVE-2015-1283.patch:-p1 + post-patch: @${REINPLACE_CMD} -e '/^DESTDIR =/d' ${WRKSRC}/Makefile.in Added: head/textproc/expat2/files/CVE-2015-1283.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/expat2/files/CVE-2015-1283.patch Tue Aug 11 22:06:20 2015 (r393978) @@ -0,0 +1,77 @@ +Found at https://hg.mozilla.org/releases/mozilla-esr31/rev/2f3e78643f5c on 2015-07-27. Modified: replaced path parser/expat/lib/xmlparse.c with lib/xmlparse.c. +diff --git a/lib/xmlparse.c b/lib/xmlparse.c +--- a/lib/xmlparse.c ++++ b/lib/xmlparse.c +@@ -1646,29 +1646,40 @@ XML_ParseBuffer(XML_Parser parser, int l + XmlUpdatePosition(encoding, positionPtr, bufferPtr, &position); + positionPtr = bufferPtr; + return result; + } + + void * XMLCALL + XML_GetBuffer(XML_Parser parser, int len) + { ++/* BEGIN MOZILLA CHANGE (sanity check len) */ ++ if (len < 0) { ++ errorCode = XML_ERROR_NO_MEMORY; ++ return NULL; ++ } ++/* END MOZILLA CHANGE */ + switch (ps_parsing) { + case XML_SUSPENDED: + errorCode = XML_ERROR_SUSPENDED; + return NULL; + case XML_FINISHED: + errorCode = XML_ERROR_FINISHED; + return NULL; + default: ; + } + + if (len > bufferLim - bufferEnd) { +- /* FIXME avoid integer overflow */ + int neededSize = len + (int)(bufferEnd - bufferPtr); ++/* BEGIN MOZILLA CHANGE (sanity check neededSize) */ ++ if (neededSize < 0) { ++ errorCode = XML_ERROR_NO_MEMORY; ++ return NULL; ++ } ++/* END MOZILLA CHANGE */ + #ifdef XML_CONTEXT_BYTES + int keep = (int)(bufferPtr - buffer); + + if (keep > XML_CONTEXT_BYTES) + keep = XML_CONTEXT_BYTES; + neededSize += keep; + #endif /* defined XML_CONTEXT_BYTES */ + if (neededSize <= bufferLim - buffer) { +@@ -1687,17 +1698,25 @@ XML_GetBuffer(XML_Parser parser, int len + } + else { + char *newBuf; + int bufferSize = (int)(bufferLim - bufferPtr); + if (bufferSize == 0) + bufferSize = INIT_BUFFER_SIZE; + do { + bufferSize *= 2; +- } while (bufferSize < neededSize); ++/* BEGIN MOZILLA CHANGE (prevent infinite loop on overflow) */ ++ } while (bufferSize < neededSize && bufferSize > 0); ++/* END MOZILLA CHANGE */ ++/* BEGIN MOZILLA CHANGE (sanity check bufferSize) */ ++ if (bufferSize <= 0) { ++ errorCode = XML_ERROR_NO_MEMORY; ++ return NULL; ++ } ++/* END MOZILLA CHANGE */ + newBuf = (char *)MALLOC(bufferSize); + if (newBuf == 0) { + errorCode = XML_ERROR_NO_MEMORY; + return NULL; + } + bufferLim = newBuf + bufferSize; + #ifdef XML_CONTEXT_BYTES + if (bufferPtr) { + + + + From owner-svn-ports-all@freebsd.org Tue Aug 11 22:07:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89E5099F0F7; Tue, 11 Aug 2015 22:07:44 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 79E04391; Tue, 11 Aug 2015 22:07:44 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BM7iKv062488; Tue, 11 Aug 2015 22:07:44 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BM7icV062487; Tue, 11 Aug 2015 22:07:44 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508112207.t7BM7icV062487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 11 Aug 2015 22:07:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393979 - in branches/2015Q3/textproc/expat2: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:07:44 -0000 Author: bapt Date: Tue Aug 11 22:07:43 2015 New Revision: 393979 URL: https://svnweb.freebsd.org/changeset/ports/393979 Log: MFH: r393978 Add patch for CVE-2015-1283 Approved by: portmgr (implicit) Added: branches/2015Q3/textproc/expat2/files/ - copied from r393978, head/textproc/expat2/files/ Modified: branches/2015Q3/textproc/expat2/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/textproc/expat2/Makefile ============================================================================== --- branches/2015Q3/textproc/expat2/Makefile Tue Aug 11 22:06:20 2015 (r393978) +++ branches/2015Q3/textproc/expat2/Makefile Tue Aug 11 22:07:43 2015 (r393979) @@ -3,7 +3,7 @@ PORTNAME= expat PORTVERSION= 2.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF @@ -15,6 +15,8 @@ ALL_TARGET= default USES= libtool pathfix USE_LDCONFIG= yes +EXTRA_PATCHES= ${FILESDIR}/CVE-2015-1283.patch:-p1 + post-patch: @${REINPLACE_CMD} -e '/^DESTDIR =/d' ${WRKSRC}/Makefile.in From owner-svn-ports-all@freebsd.org Tue Aug 11 22:10:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C44899F245; Tue, 11 Aug 2015 22:10:29 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C8F575F; Tue, 11 Aug 2015 22:10:29 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BMAThq063788; Tue, 11 Aug 2015 22:10:29 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BMAS5l063786; Tue, 11 Aug 2015 22:10:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508112210.t7BMAS5l063786@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 11 Aug 2015 22:10:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393980 - branches/2015Q3/ports-mgmt/pkg X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:10:29 -0000 Author: bapt Date: Tue Aug 11 22:10:28 2015 New Revision: 393980 URL: https://svnweb.freebsd.org/changeset/ports/393980 Log: MFH: r391999 Release pkg 1.5.5 Changes: - Manpages updates - Add a random delay to pkg-audit when invoked without a TTY - Update zsh completion - Add a new AUTOCLEAN option to automatically clean the cache directory - Don't attempt to set file ownership when INSTALL_AS_USER is set - Add a new configuration item to define custom HTTP User-Agent - Fix an integer overflow when displaying package size for packages larger than 2GiB. Approved by: portmgr (implicit) Modified: branches/2015Q3/ports-mgmt/pkg/Makefile branches/2015Q3/ports-mgmt/pkg/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/ports-mgmt/pkg/Makefile ============================================================================== --- branches/2015Q3/ports-mgmt/pkg/Makefile Tue Aug 11 22:07:43 2015 (r393979) +++ branches/2015Q3/ports-mgmt/pkg/Makefile Tue Aug 11 22:10:28 2015 (r393980) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.5.4 +DISTVERSION= 1.5.5 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Modified: branches/2015Q3/ports-mgmt/pkg/distinfo ============================================================================== --- branches/2015Q3/ports-mgmt/pkg/distinfo Tue Aug 11 22:07:43 2015 (r393979) +++ branches/2015Q3/ports-mgmt/pkg/distinfo Tue Aug 11 22:10:28 2015 (r393980) @@ -1,2 +1,2 @@ -SHA256 (pkg-1.5.4.tar.xz) = 0baa890d8c81e2308196261cf6f1da8e72283781e89bc5d278d6b89be6ec215a -SIZE (pkg-1.5.4.tar.xz) = 1896980 +SHA256 (pkg-1.5.5.tar.xz) = 5d19b4cca5574f3e4d5299e65cd6ef3e31eff9c2bba06223119587137d750a1f +SIZE (pkg-1.5.5.tar.xz) = 1897720 From owner-svn-ports-all@freebsd.org Tue Aug 11 22:11:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A34599F26D; Tue, 11 Aug 2015 22:11:04 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7AD1488F; Tue, 11 Aug 2015 22:11:04 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BMB4bJ063971; Tue, 11 Aug 2015 22:11:04 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BMB4xU063969; Tue, 11 Aug 2015 22:11:04 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508112211.t7BMB4xU063969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 11 Aug 2015 22:11:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393981 - branches/2015Q3/ports-mgmt/pkg X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:11:04 -0000 Author: bapt Date: Tue Aug 11 22:11:03 2015 New Revision: 393981 URL: https://svnweb.freebsd.org/changeset/ports/393981 Log: MFH: r393976 Update to pkg 1.5.6 Changes: - Incorporate in sources the patch for expat CVE-2015-1283 Note that pkg is not vulnerable because it does not use the patched function - improvements in pkg check manpage - fix format specifier in libpkg's pkg_vets Approved by: portmgr (implicit) Modified: branches/2015Q3/ports-mgmt/pkg/Makefile branches/2015Q3/ports-mgmt/pkg/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/ports-mgmt/pkg/Makefile ============================================================================== --- branches/2015Q3/ports-mgmt/pkg/Makefile Tue Aug 11 22:10:28 2015 (r393980) +++ branches/2015Q3/ports-mgmt/pkg/Makefile Tue Aug 11 22:11:03 2015 (r393981) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.5.5 +DISTVERSION= 1.5.6 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Modified: branches/2015Q3/ports-mgmt/pkg/distinfo ============================================================================== --- branches/2015Q3/ports-mgmt/pkg/distinfo Tue Aug 11 22:10:28 2015 (r393980) +++ branches/2015Q3/ports-mgmt/pkg/distinfo Tue Aug 11 22:11:03 2015 (r393981) @@ -1,2 +1,2 @@ -SHA256 (pkg-1.5.5.tar.xz) = 5d19b4cca5574f3e4d5299e65cd6ef3e31eff9c2bba06223119587137d750a1f -SIZE (pkg-1.5.5.tar.xz) = 1897720 +SHA256 (pkg-1.5.6.tar.xz) = 30c772e97e306ad85dcc652e2a9951ad49b0827337066f44dba5d91882ad92b1 +SIZE (pkg-1.5.6.tar.xz) = 1900900 From owner-svn-ports-all@freebsd.org Tue Aug 11 22:25:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8ED8799F570; Tue, 11 Aug 2015 22:25:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F240F9A; Tue, 11 Aug 2015 22:25:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BMPGvA070826; Tue, 11 Aug 2015 22:25:16 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BMPGk2070824; Tue, 11 Aug 2015 22:25:16 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201508112225.t7BMPGk2070824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 11 Aug 2015 22:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393982 - head/ports-mgmt/pkg-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:25:16 -0000 Author: bapt Date: Tue Aug 11 22:25:15 2015 New Revision: 393982 URL: https://svnweb.freebsd.org/changeset/ports/393982 Log: Update to 1.5.99.7 Changes: - Use mmap with sqlite during pkg update - Fix pkg query humanized output - Improvement in pkg check manpage - Lots of improvements in the solver - Improve Linux support - Fix CVE-2015-1283 in bundle expat Note that this release does not pass 100% of the regression tests due to a known cosmetic issue. Modified: head/ports-mgmt/pkg-devel/Makefile head/ports-mgmt/pkg-devel/distinfo Modified: head/ports-mgmt/pkg-devel/Makefile ============================================================================== --- head/ports-mgmt/pkg-devel/Makefile Tue Aug 11 22:11:03 2015 (r393981) +++ head/ports-mgmt/pkg-devel/Makefile Tue Aug 11 22:25:15 2015 (r393982) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg -DISTVERSION= 1.5.99.6 +DISTVERSION= 1.5.99.7 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Modified: head/ports-mgmt/pkg-devel/distinfo ============================================================================== --- head/ports-mgmt/pkg-devel/distinfo Tue Aug 11 22:11:03 2015 (r393981) +++ head/ports-mgmt/pkg-devel/distinfo Tue Aug 11 22:25:15 2015 (r393982) @@ -1,2 +1,2 @@ -SHA256 (pkg-1.5.99.6.tar.xz) = 211797178cd0d5a8d781bb9d5945e255cd4e482109450532cea46b112cff9c82 -SIZE (pkg-1.5.99.6.tar.xz) = 1921100 +SHA256 (pkg-1.5.99.7.tar.xz) = 0ff01edc771bc340aa2d1788332a416a59a6c25dba19eb5d9dcbb65e220ec56b +SIZE (pkg-1.5.99.7.tar.xz) = 1894664 From owner-svn-ports-all@freebsd.org Tue Aug 11 22:50:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6154B99FAE3; Tue, 11 Aug 2015 22:50:19 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4DD97ECB; Tue, 11 Aug 2015 22:50:19 +0000 (UTC) (envelope-from kuriyama@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BMoJeh079220; Tue, 11 Aug 2015 22:50:19 GMT (envelope-from kuriyama@FreeBSD.org) Received: (from kuriyama@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BMoIDw079213; Tue, 11 Aug 2015 22:50:18 GMT (envelope-from kuriyama@FreeBSD.org) Message-Id: <201508112250.t7BMoIDw079213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kuriyama set sender to kuriyama@FreeBSD.org using -f From: Jun Kuriyama Date: Tue, 11 Aug 2015 22:50:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393983 - in head/security/gnupg: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 22:50:19 -0000 Author: kuriyama Date: Tue Aug 11 22:50:17 2015 New Revision: 393983 URL: https://svnweb.freebsd.org/changeset/ports/393983 Log: - Upgrade to 2.1.7 (minor fixes). Deleted: head/security/gnupg/files/patch-agent_agent.h Modified: head/security/gnupg/Makefile head/security/gnupg/distinfo head/security/gnupg/files/patch-doc-Makefile.in head/security/gnupg/pkg-plist Modified: head/security/gnupg/Makefile ============================================================================== --- head/security/gnupg/Makefile Tue Aug 11 22:25:15 2015 (r393982) +++ head/security/gnupg/Makefile Tue Aug 11 22:50:17 2015 (r393983) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnupg -PORTVERSION= 2.1.6 +PORTVERSION= 2.1.7 #PORTREVISION= 0 CATEGORIES= security MASTER_SITES= GNUPG Modified: head/security/gnupg/distinfo ============================================================================== --- head/security/gnupg/distinfo Tue Aug 11 22:25:15 2015 (r393982) +++ head/security/gnupg/distinfo Tue Aug 11 22:50:17 2015 (r393983) @@ -1,4 +1,4 @@ -SHA256 (gnupg-2.1.6.tar.bz2) = 5e599ad542199f3bd733eed2b88a539d1b4c3beda2dbab0ff69f1896f52e92fd -SIZE (gnupg-2.1.6.tar.bz2) = 4917722 -SHA256 (gnupg-2.1.6.tar.bz2.sig) = 44ca68757e7ae6dc8d5c2c1122015b195b366c32e06537b4d29ccdc3e5139c7b -SIZE (gnupg-2.1.6.tar.bz2.sig) = 287 +SHA256 (gnupg-2.1.7.tar.bz2) = c18a3776d47fec98892d51d28b6574ef16bf0a25eabb0956231058aaf2e7846e +SIZE (gnupg-2.1.7.tar.bz2) = 4918583 +SHA256 (gnupg-2.1.7.tar.bz2.sig) = 242db38327b5520b45a9243735b8584d0d319cca4131db6f1522abb6350228bc +SIZE (gnupg-2.1.7.tar.bz2.sig) = 287 Modified: head/security/gnupg/files/patch-doc-Makefile.in ============================================================================== --- head/security/gnupg/files/patch-doc-Makefile.in Tue Aug 11 22:25:15 2015 (r393982) +++ head/security/gnupg/files/patch-doc-Makefile.in Tue Aug 11 22:50:17 2015 (r393983) @@ -1,11 +1,11 @@ ---- doc/Makefile.in.orig 2014-11-22 17:40:32.499461775 +0900 -+++ doc/Makefile.in 2014-11-22 17:41:10.997462066 +0900 -@@ -415,7 +415,7 @@ +--- doc/Makefile.in.orig 2015-08-11 20:57:21.000000000 +0900 ++++ doc/Makefile.in 2015-08-12 01:06:54.960781832 +0900 +@@ -498,7 +498,7 @@ myman_pages = gpg2.1 gpgsm.1 gpg-agent.1 dirmngr.8 scdaemon.1 gpgv2.1 \ watchgnupg.1 gpgconf.1 addgnupghome.8 gpg-preset-passphrase.1 \ gpg-connect-agent.1 gpgparsemail.1 symcryptrun.1 \ -- gpgsm-gencert.sh.1 applygnupgdefaults.8 gpg-zip.1 \ -+ gpgsm-gencert.sh.1 applygnupgdefaults.8 \ +- applygnupgdefaults.8 gpg-zip.1 \ ++ applygnupgdefaults.8 \ dirmngr-client.1 man_MANS = $(myman_pages) gnupg.7 Modified: head/security/gnupg/pkg-plist ============================================================================== --- head/security/gnupg/pkg-plist Tue Aug 11 22:25:15 2015 (r393982) +++ head/security/gnupg/pkg-plist Tue Aug 11 22:50:17 2015 (r393983) @@ -12,7 +12,6 @@ bin/gpg2 bin/gpgconf bin/gpgkey2ssh bin/gpgparsemail -bin/gpgsm-gencert.sh bin/gpgv2 bin/symcryptrun bin/watchgnupg @@ -28,7 +27,6 @@ libexec/gpg-protect-tool %%PORTDOCS%%man/man1/gpg2.1.gz %%PORTDOCS%%man/man1/gpgconf.1.gz %%PORTDOCS%%man/man1/gpgparsemail.1.gz -%%PORTDOCS%%man/man1/gpgsm-gencert.sh.1.gz %%PORTDOCS%%man/man1/gpgsm.1.gz %%PORTDOCS%%man/man1/gpgv2.1.gz %%PORTDOCS%%man/man1/scdaemon.1.gz From owner-svn-ports-all@freebsd.org Tue Aug 11 23:20:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85F8E99F290; Tue, 11 Aug 2015 23:20:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54C79283; Tue, 11 Aug 2015 23:20:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BNKnqP095200; Tue, 11 Aug 2015 23:20:49 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BNKmQU095197; Tue, 11 Aug 2015 23:20:48 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508112320.t7BNKmQU095197@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 11 Aug 2015 23:20:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393984 - in head: Mk www/firefox www/firefox-esr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 23:20:49 -0000 Author: jbeich Date: Tue Aug 11 23:20:48 2015 New Revision: 393984 URL: https://svnweb.freebsd.org/changeset/ports/393984 Log: Add OAuth keys for importing Google contacts into Loop Loop aka Firefox Hello is available since 34.0. https://bugzilla.mozilla.org/show_bug.cgi?id=1106854 Inspired by: ArchLinux MFH: 2015Q3 Modified: head/Mk/bsd.gecko.mk head/www/firefox-esr/Makefile head/www/firefox/Makefile Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Tue Aug 11 22:50:17 2015 (r393983) +++ head/Mk/bsd.gecko.mk Tue Aug 11 23:20:48 2015 (r393984) @@ -256,8 +256,13 @@ MOZ_OPTIONS+= --with-system-zlib \ --disable-updater \ --disable-pedantic -# XXX stolen from www/chromium -MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 +# API keys from www/chromium +# http://www.chromium.org/developers/how-tos/api-keys +# Note: these are for FreeBSD use ONLY. For your own distribution, +# please get your own set of keys. +MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 \ + MOZ_GOOGLE_OAUTH_API_CLIENTID=996322985003.apps.googleusercontent.com \ + MOZ_GOOGLE_OAUTH_API_KEY=IR1za9-1VK0zZ0f_O8MVFicn .if ${PORT_OPTIONS:MGTK3} MOZ_TOOLKIT= cairo-gtk3 Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Tue Aug 11 22:50:17 2015 (r393983) +++ head/www/firefox-esr/Makefile Tue Aug 11 23:20:48 2015 (r393984) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Tue Aug 11 22:50:17 2015 (r393983) +++ head/www/firefox/Makefile Tue Aug 11 23:20:48 2015 (r393984) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ From owner-svn-ports-all@freebsd.org Tue Aug 11 23:31:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC67299F536; Tue, 11 Aug 2015 23:31:24 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C64C5B2F; Tue, 11 Aug 2015 23:31:24 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BNVOB6098266; Tue, 11 Aug 2015 23:31:24 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BNVOoa098262; Tue, 11 Aug 2015 23:31:24 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201508112331.t7BNVOoa098262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 11 Aug 2015 23:31:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393985 - in head/www/dokuwiki: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Aug 2015 23:31:25 -0000 Author: delphij Date: Tue Aug 11 23:31:23 2015 New Revision: 393985 URL: https://svnweb.freebsd.org/changeset/ports/393985 Log: Update to 2015-08-10 "Detritus". MFH: 2015Q3 Deleted: head/www/dokuwiki/files/patch-2014-09-29-to-2014-09-29a head/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c head/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d Modified: head/www/dokuwiki/Makefile head/www/dokuwiki/distinfo head/www/dokuwiki/pkg-plist Modified: head/www/dokuwiki/Makefile ============================================================================== --- head/www/dokuwiki/Makefile Tue Aug 11 23:20:48 2015 (r393984) +++ head/www/dokuwiki/Makefile Tue Aug 11 23:31:23 2015 (r393985) @@ -3,7 +3,6 @@ PORTNAME= dokuwiki PORTVERSION= ${DIST_VER:S/${PORTNAME}//:S/-//g} -PORTREVISION= 5 CATEGORIES= www MASTER_SITES= http://download.dokuwiki.org/src/dokuwiki/ DISTNAME= ${DIST_VER} @@ -13,7 +12,7 @@ COMMENT= Simple and easy to use wiki, no LICENSE= GPLv2 -DIST_VER= ${PORTNAME}-2014-09-29 +DIST_VER= ${PORTNAME}-2015-08-10 USE_PHP= gd mbstring openssl pcre session xml zlib NO_ARCH= YES NO_BUILD= YES Modified: head/www/dokuwiki/distinfo ============================================================================== --- head/www/dokuwiki/distinfo Tue Aug 11 23:20:48 2015 (r393984) +++ head/www/dokuwiki/distinfo Tue Aug 11 23:31:23 2015 (r393985) @@ -1,2 +1,2 @@ -SHA256 (dokuwiki-2014-09-29.tgz) = 941b6954d39de57530efbb27d0734b6bc9a49aaa3c781b39f6ecb305322534eb -SIZE (dokuwiki-2014-09-29.tgz) = 3241352 +SHA256 (dokuwiki-2015-08-10.tgz) = bdede4c71e95c1bd6a8daaa65e2ccfa8ef7372022504b9358f175df964f0a399 +SIZE (dokuwiki-2015-08-10.tgz) = 3399960 Modified: head/www/dokuwiki/pkg-plist ============================================================================== --- head/www/dokuwiki/pkg-plist Tue Aug 11 23:20:48 2015 (r393984) +++ head/www/dokuwiki/pkg-plist Tue Aug 11 23:31:23 2015 (r393985) @@ -49,6 +49,20 @@ %%WWWDIR%%/inc/DifferenceEngine.php %%WWWDIR%%/inc/EmailAddressValidator.php %%WWWDIR%%/inc/FeedParser.php +%%WWWDIR%%/inc/Form/CheckableElement.php +%%WWWDIR%%/inc/Form/Element.php +%%WWWDIR%%/inc/Form/FieldsetCloseElement.php +%%WWWDIR%%/inc/Form/FieldsetOpenElement.php +%%WWWDIR%%/inc/Form/Form.php +%%WWWDIR%%/inc/Form/HTMLElement.php +%%WWWDIR%%/inc/Form/InputElement.php +%%WWWDIR%%/inc/Form/Label.php +%%WWWDIR%%/inc/Form/LegacyForm.php +%%WWWDIR%%/inc/Form/TagCloseElement.php +%%WWWDIR%%/inc/Form/TagElement.php +%%WWWDIR%%/inc/Form/TagOpenElement.php +%%WWWDIR%%/inc/Form/TextareaElement.php +%%WWWDIR%%/inc/Form/ValueElement.php %%WWWDIR%%/inc/HTTPClient.php %%WWWDIR%%/inc/IXR_Library.php %%WWWDIR%%/inc/Input.class.php @@ -61,7 +75,6 @@ %%WWWDIR%%/inc/SimplePie.php %%WWWDIR%%/inc/Sitemapper.php %%WWWDIR%%/inc/Tar.class.php -%%WWWDIR%%/inc/TarLib.class.php %%WWWDIR%%/inc/ZipLib.class.php %%WWWDIR%%/inc/actions.php %%WWWDIR%%/inc/auth.php @@ -80,230 +93,6 @@ %%WWWDIR%%/inc/fetch.functions.php %%WWWDIR%%/inc/form.php %%WWWDIR%%/inc/fulltext.php -%%WWWDIR%%/inc/geshi.php -%%WWWDIR%%/inc/geshi/4cs.php -%%WWWDIR%%/inc/geshi/6502acme.php -%%WWWDIR%%/inc/geshi/6502kickass.php -%%WWWDIR%%/inc/geshi/6502tasm.php -%%WWWDIR%%/inc/geshi/68000devpac.php -%%WWWDIR%%/inc/geshi/abap.php -%%WWWDIR%%/inc/geshi/actionscript-french.php -%%WWWDIR%%/inc/geshi/actionscript.php -%%WWWDIR%%/inc/geshi/actionscript3.php -%%WWWDIR%%/inc/geshi/ada.php -%%WWWDIR%%/inc/geshi/algol68.php -%%WWWDIR%%/inc/geshi/apache.php -%%WWWDIR%%/inc/geshi/applescript.php -%%WWWDIR%%/inc/geshi/apt_sources.php -%%WWWDIR%%/inc/geshi/arm.php -%%WWWDIR%%/inc/geshi/asm.php -%%WWWDIR%%/inc/geshi/asp.php -%%WWWDIR%%/inc/geshi/asymptote.php -%%WWWDIR%%/inc/geshi/autoconf.php -%%WWWDIR%%/inc/geshi/autohotkey.php -%%WWWDIR%%/inc/geshi/autoit.php -%%WWWDIR%%/inc/geshi/avisynth.php -%%WWWDIR%%/inc/geshi/awk.php -%%WWWDIR%%/inc/geshi/bascomavr.php -%%WWWDIR%%/inc/geshi/bash.php -%%WWWDIR%%/inc/geshi/basic4gl.php -%%WWWDIR%%/inc/geshi/bf.php -%%WWWDIR%%/inc/geshi/bibtex.php -%%WWWDIR%%/inc/geshi/blitzbasic.php -%%WWWDIR%%/inc/geshi/bnf.php -%%WWWDIR%%/inc/geshi/boo.php -%%WWWDIR%%/inc/geshi/c.php -%%WWWDIR%%/inc/geshi/c_loadrunner.php -%%WWWDIR%%/inc/geshi/c_mac.php -%%WWWDIR%%/inc/geshi/caddcl.php -%%WWWDIR%%/inc/geshi/cadlisp.php -%%WWWDIR%%/inc/geshi/cfdg.php -%%WWWDIR%%/inc/geshi/cfm.php -%%WWWDIR%%/inc/geshi/chaiscript.php -%%WWWDIR%%/inc/geshi/cil.php -%%WWWDIR%%/inc/geshi/clojure.php -%%WWWDIR%%/inc/geshi/cmake.php -%%WWWDIR%%/inc/geshi/cobol.php -%%WWWDIR%%/inc/geshi/coffeescript.php -%%WWWDIR%%/inc/geshi/cpp-qt.php -%%WWWDIR%%/inc/geshi/cpp.php -%%WWWDIR%%/inc/geshi/csharp.php -%%WWWDIR%%/inc/geshi/css.php -%%WWWDIR%%/inc/geshi/cuesheet.php -%%WWWDIR%%/inc/geshi/d.php -%%WWWDIR%%/inc/geshi/dcl.php -%%WWWDIR%%/inc/geshi/dcpu16.php -%%WWWDIR%%/inc/geshi/dcs.php -%%WWWDIR%%/inc/geshi/delphi.php -%%WWWDIR%%/inc/geshi/diff.php -%%WWWDIR%%/inc/geshi/div.php -%%WWWDIR%%/inc/geshi/dos.php -%%WWWDIR%%/inc/geshi/dot.php -%%WWWDIR%%/inc/geshi/e.php -%%WWWDIR%%/inc/geshi/ecmascript.php -%%WWWDIR%%/inc/geshi/eiffel.php -%%WWWDIR%%/inc/geshi/email.php -%%WWWDIR%%/inc/geshi/epc.php -%%WWWDIR%%/inc/geshi/erlang.php -%%WWWDIR%%/inc/geshi/euphoria.php -%%WWWDIR%%/inc/geshi/f1.php -%%WWWDIR%%/inc/geshi/falcon.php -%%WWWDIR%%/inc/geshi/fo.php -%%WWWDIR%%/inc/geshi/fortran.php -%%WWWDIR%%/inc/geshi/freebasic.php -%%WWWDIR%%/inc/geshi/freeswitch.php -%%WWWDIR%%/inc/geshi/fsharp.php -%%WWWDIR%%/inc/geshi/gambas.php -%%WWWDIR%%/inc/geshi/gdb.php -%%WWWDIR%%/inc/geshi/genero.php -%%WWWDIR%%/inc/geshi/genie.php -%%WWWDIR%%/inc/geshi/gettext.php -%%WWWDIR%%/inc/geshi/glsl.php -%%WWWDIR%%/inc/geshi/gml.php -%%WWWDIR%%/inc/geshi/gnuplot.php -%%WWWDIR%%/inc/geshi/go.php -%%WWWDIR%%/inc/geshi/groovy.php -%%WWWDIR%%/inc/geshi/gwbasic.php -%%WWWDIR%%/inc/geshi/haskell.php -%%WWWDIR%%/inc/geshi/haxe.php -%%WWWDIR%%/inc/geshi/hicest.php -%%WWWDIR%%/inc/geshi/hq9plus.php -%%WWWDIR%%/inc/geshi/html4strict.php -%%WWWDIR%%/inc/geshi/html5.php -%%WWWDIR%%/inc/geshi/icon.php -%%WWWDIR%%/inc/geshi/idl.php -%%WWWDIR%%/inc/geshi/ini.php -%%WWWDIR%%/inc/geshi/inno.php -%%WWWDIR%%/inc/geshi/intercal.php -%%WWWDIR%%/inc/geshi/io.php -%%WWWDIR%%/inc/geshi/j.php -%%WWWDIR%%/inc/geshi/java.php -%%WWWDIR%%/inc/geshi/java5.php -%%WWWDIR%%/inc/geshi/javascript.php -%%WWWDIR%%/inc/geshi/jquery.php -%%WWWDIR%%/inc/geshi/kixtart.php -%%WWWDIR%%/inc/geshi/klonec.php -%%WWWDIR%%/inc/geshi/klonecpp.php -%%WWWDIR%%/inc/geshi/latex.php -%%WWWDIR%%/inc/geshi/lb.php -%%WWWDIR%%/inc/geshi/ldif.php -%%WWWDIR%%/inc/geshi/lisp.php -%%WWWDIR%%/inc/geshi/llvm.php -%%WWWDIR%%/inc/geshi/locobasic.php -%%WWWDIR%%/inc/geshi/logtalk.php -%%WWWDIR%%/inc/geshi/lolcode.php -%%WWWDIR%%/inc/geshi/lotusformulas.php -%%WWWDIR%%/inc/geshi/lotusscript.php -%%WWWDIR%%/inc/geshi/lscript.php -%%WWWDIR%%/inc/geshi/lsl2.php -%%WWWDIR%%/inc/geshi/lua.php -%%WWWDIR%%/inc/geshi/m68k.php -%%WWWDIR%%/inc/geshi/magiksf.php -%%WWWDIR%%/inc/geshi/make.php -%%WWWDIR%%/inc/geshi/mapbasic.php -%%WWWDIR%%/inc/geshi/matlab.php -%%WWWDIR%%/inc/geshi/mirc.php -%%WWWDIR%%/inc/geshi/mmix.php -%%WWWDIR%%/inc/geshi/modula2.php -%%WWWDIR%%/inc/geshi/modula3.php -%%WWWDIR%%/inc/geshi/mpasm.php -%%WWWDIR%%/inc/geshi/mxml.php -%%WWWDIR%%/inc/geshi/mysql.php -%%WWWDIR%%/inc/geshi/nagios.php -%%WWWDIR%%/inc/geshi/netrexx.php -%%WWWDIR%%/inc/geshi/newlisp.php -%%WWWDIR%%/inc/geshi/nsis.php -%%WWWDIR%%/inc/geshi/oberon2.php -%%WWWDIR%%/inc/geshi/objc.php -%%WWWDIR%%/inc/geshi/objeck.php -%%WWWDIR%%/inc/geshi/ocaml-brief.php -%%WWWDIR%%/inc/geshi/ocaml.php -%%WWWDIR%%/inc/geshi/octave.php -%%WWWDIR%%/inc/geshi/oobas.php -%%WWWDIR%%/inc/geshi/oorexx.php -%%WWWDIR%%/inc/geshi/oracle11.php -%%WWWDIR%%/inc/geshi/oracle8.php -%%WWWDIR%%/inc/geshi/oxygene.php -%%WWWDIR%%/inc/geshi/oz.php -%%WWWDIR%%/inc/geshi/parasail.php -%%WWWDIR%%/inc/geshi/parigp.php -%%WWWDIR%%/inc/geshi/pascal.php -%%WWWDIR%%/inc/geshi/pcre.php -%%WWWDIR%%/inc/geshi/per.php -%%WWWDIR%%/inc/geshi/perl.php -%%WWWDIR%%/inc/geshi/perl6.php -%%WWWDIR%%/inc/geshi/pf.php -%%WWWDIR%%/inc/geshi/php-brief.php -%%WWWDIR%%/inc/geshi/php.php -%%WWWDIR%%/inc/geshi/pic16.php -%%WWWDIR%%/inc/geshi/pike.php -%%WWWDIR%%/inc/geshi/pixelbender.php -%%WWWDIR%%/inc/geshi/pli.php -%%WWWDIR%%/inc/geshi/plsql.php -%%WWWDIR%%/inc/geshi/postgresql.php -%%WWWDIR%%/inc/geshi/povray.php -%%WWWDIR%%/inc/geshi/powerbuilder.php -%%WWWDIR%%/inc/geshi/powershell.php -%%WWWDIR%%/inc/geshi/proftpd.php -%%WWWDIR%%/inc/geshi/progress.php -%%WWWDIR%%/inc/geshi/prolog.php -%%WWWDIR%%/inc/geshi/properties.php -%%WWWDIR%%/inc/geshi/providex.php -%%WWWDIR%%/inc/geshi/purebasic.php -%%WWWDIR%%/inc/geshi/pycon.php -%%WWWDIR%%/inc/geshi/pys60.php -%%WWWDIR%%/inc/geshi/python.php -%%WWWDIR%%/inc/geshi/q.php -%%WWWDIR%%/inc/geshi/qbasic.php -%%WWWDIR%%/inc/geshi/rails.php -%%WWWDIR%%/inc/geshi/rebol.php -%%WWWDIR%%/inc/geshi/reg.php -%%WWWDIR%%/inc/geshi/rexx.php -%%WWWDIR%%/inc/geshi/robots.php -%%WWWDIR%%/inc/geshi/rpmspec.php -%%WWWDIR%%/inc/geshi/rsplus.php -%%WWWDIR%%/inc/geshi/ruby.php -%%WWWDIR%%/inc/geshi/sas.php -%%WWWDIR%%/inc/geshi/scala.php -%%WWWDIR%%/inc/geshi/scheme.php -%%WWWDIR%%/inc/geshi/scilab.php -%%WWWDIR%%/inc/geshi/sdlbasic.php -%%WWWDIR%%/inc/geshi/smalltalk.php -%%WWWDIR%%/inc/geshi/smarty.php -%%WWWDIR%%/inc/geshi/spark.php -%%WWWDIR%%/inc/geshi/sparql.php -%%WWWDIR%%/inc/geshi/sql.php -%%WWWDIR%%/inc/geshi/stonescript.php -%%WWWDIR%%/inc/geshi/systemverilog.php -%%WWWDIR%%/inc/geshi/tcl.php -%%WWWDIR%%/inc/geshi/teraterm.php -%%WWWDIR%%/inc/geshi/text.php -%%WWWDIR%%/inc/geshi/thinbasic.php -%%WWWDIR%%/inc/geshi/tsql.php -%%WWWDIR%%/inc/geshi/typoscript.php -%%WWWDIR%%/inc/geshi/unicon.php -%%WWWDIR%%/inc/geshi/upc.php -%%WWWDIR%%/inc/geshi/urbi.php -%%WWWDIR%%/inc/geshi/uscript.php -%%WWWDIR%%/inc/geshi/vala.php -%%WWWDIR%%/inc/geshi/vb.php -%%WWWDIR%%/inc/geshi/vbnet.php -%%WWWDIR%%/inc/geshi/vedit.php -%%WWWDIR%%/inc/geshi/verilog.php -%%WWWDIR%%/inc/geshi/vhdl.php -%%WWWDIR%%/inc/geshi/vim.php -%%WWWDIR%%/inc/geshi/visualfoxpro.php -%%WWWDIR%%/inc/geshi/visualprolog.php -%%WWWDIR%%/inc/geshi/whitespace.php -%%WWWDIR%%/inc/geshi/whois.php -%%WWWDIR%%/inc/geshi/winbatch.php -%%WWWDIR%%/inc/geshi/xbasic.php -%%WWWDIR%%/inc/geshi/xml.php -%%WWWDIR%%/inc/geshi/xorg_conf.php -%%WWWDIR%%/inc/geshi/xpp.php -%%WWWDIR%%/inc/geshi/yaml.php -%%WWWDIR%%/inc/geshi/z80.php -%%WWWDIR%%/inc/geshi/zxbasic.php %%WWWDIR%%/inc/html.php %%WWWDIR%%/inc/httputils.php %%WWWDIR%%/inc/indexer.php @@ -1084,6 +873,7 @@ %%WWWDIR%%/inc/lang/he/register.txt %%WWWDIR%%/inc/lang/he/registermail.txt %%WWWDIR%%/inc/lang/he/resendpwd.txt +%%WWWDIR%%/inc/lang/he/resetpwd.txt %%WWWDIR%%/inc/lang/he/revisions.txt %%WWWDIR%%/inc/lang/he/searchpage.txt %%WWWDIR%%/inc/lang/he/showrev.txt @@ -1343,6 +1133,7 @@ %%WWWDIR%%/inc/lang/ka/edit.txt %%WWWDIR%%/inc/lang/ka/editrev.txt %%WWWDIR%%/inc/lang/ka/index.txt +%%WWWDIR%%/inc/lang/ka/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/ka/lang.php %%WWWDIR%%/inc/lang/kk/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/kk/lang.php @@ -1401,29 +1192,16 @@ %%WWWDIR%%/inc/lang/ko/subscr_single.txt %%WWWDIR%%/inc/lang/ko/updateprofile.txt %%WWWDIR%%/inc/lang/ko/uploadmail.txt -%%WWWDIR%%/inc/lang/ku/admin.txt %%WWWDIR%%/inc/lang/ku/backlinks.txt %%WWWDIR%%/inc/lang/ku/conflict.txt -%%WWWDIR%%/inc/lang/ku/denied.txt %%WWWDIR%%/inc/lang/ku/diff.txt %%WWWDIR%%/inc/lang/ku/edit.txt -%%WWWDIR%%/inc/lang/ku/editrev.txt %%WWWDIR%%/inc/lang/ku/index.txt %%WWWDIR%%/inc/lang/ku/lang.php -%%WWWDIR%%/inc/lang/ku/locked.txt -%%WWWDIR%%/inc/lang/ku/login.txt -%%WWWDIR%%/inc/lang/ku/mailtext.txt %%WWWDIR%%/inc/lang/ku/newpage.txt -%%WWWDIR%%/inc/lang/ku/norev.txt -%%WWWDIR%%/inc/lang/ku/password.txt %%WWWDIR%%/inc/lang/ku/preview.txt -%%WWWDIR%%/inc/lang/ku/read.txt %%WWWDIR%%/inc/lang/ku/recent.txt -%%WWWDIR%%/inc/lang/ku/register.txt -%%WWWDIR%%/inc/lang/ku/revisions.txt %%WWWDIR%%/inc/lang/ku/searchpage.txt -%%WWWDIR%%/inc/lang/ku/showrev.txt -%%WWWDIR%%/inc/lang/ku/stopwords.txt %%WWWDIR%%/inc/lang/la/admin.txt %%WWWDIR%%/inc/lang/la/adminplugins.txt %%WWWDIR%%/inc/lang/la/backlinks.txt @@ -1580,6 +1358,7 @@ %%WWWDIR%%/inc/lang/mk/read.txt %%WWWDIR%%/inc/lang/mk/recent.txt %%WWWDIR%%/inc/lang/mk/showrev.txt +%%WWWDIR%%/inc/lang/ml/admin.txt %%WWWDIR%%/inc/lang/mr/admin.txt %%WWWDIR%%/inc/lang/mr/backlinks.txt %%WWWDIR%%/inc/lang/mr/conflict.txt @@ -1613,6 +1392,7 @@ %%WWWDIR%%/inc/lang/ms/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/ms/lang.php %%WWWDIR%%/inc/lang/ne/admin.txt +%%WWWDIR%%/inc/lang/ne/adminplugins.txt %%WWWDIR%%/inc/lang/ne/backlinks.txt %%WWWDIR%%/inc/lang/ne/conflict.txt %%WWWDIR%%/inc/lang/ne/denied.txt @@ -1809,6 +1589,7 @@ %%WWWDIR%%/inc/lang/pt/register.txt %%WWWDIR%%/inc/lang/pt/registermail.txt %%WWWDIR%%/inc/lang/pt/resendpwd.txt +%%WWWDIR%%/inc/lang/pt/resetpwd.txt %%WWWDIR%%/inc/lang/pt/revisions.txt %%WWWDIR%%/inc/lang/pt/searchpage.txt %%WWWDIR%%/inc/lang/pt/showrev.txt @@ -2078,7 +1859,15 @@ %%WWWDIR%%/inc/lang/sv/subscr_single.txt %%WWWDIR%%/inc/lang/sv/updateprofile.txt %%WWWDIR%%/inc/lang/sv/uploadmail.txt +%%WWWDIR%%/inc/lang/ta/admin.txt +%%WWWDIR%%/inc/lang/ta/adminplugins.txt +%%WWWDIR%%/inc/lang/ta/backlinks.txt +%%WWWDIR%%/inc/lang/ta/conflict.txt %%WWWDIR%%/inc/lang/ta/denied.txt +%%WWWDIR%%/inc/lang/ta/diff.txt +%%WWWDIR%%/inc/lang/ta/draft.txt +%%WWWDIR%%/inc/lang/ta/edit.txt +%%WWWDIR%%/inc/lang/ta/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/ta/lang.php %%WWWDIR%%/inc/lang/th/admin.txt %%WWWDIR%%/inc/lang/th/adminplugins.txt @@ -2330,6 +2119,7 @@ %%WWWDIR%%/lib/images/admin/plugin.png %%WWWDIR%%/lib/images/admin/popularity.png %%WWWDIR%%/lib/images/admin/revert.png +%%WWWDIR%%/lib/images/admin/styling.png %%WWWDIR%%/lib/images/admin/usermanager.png %%WWWDIR%%/lib/images/blank.gif %%WWWDIR%%/lib/images/bullet.png @@ -2491,14 +2281,12 @@ %%WWWDIR%%/lib/images/interwiki/amazon.gif %%WWWDIR%%/lib/images/interwiki/amazon.uk.gif %%WWWDIR%%/lib/images/interwiki/callto.gif -%%WWWDIR%%/lib/images/interwiki/coral.gif %%WWWDIR%%/lib/images/interwiki/doku.gif -%%WWWDIR%%/lib/images/interwiki/dokubug.gif %%WWWDIR%%/lib/images/interwiki/google.gif %%WWWDIR%%/lib/images/interwiki/paypal.gif %%WWWDIR%%/lib/images/interwiki/phpfn.gif -%%WWWDIR%%/lib/images/interwiki/sb.gif %%WWWDIR%%/lib/images/interwiki/skype.gif +%%WWWDIR%%/lib/images/interwiki/tel.gif %%WWWDIR%%/lib/images/interwiki/user.png %%WWWDIR%%/lib/images/interwiki/wp.gif %%WWWDIR%%/lib/images/interwiki/wpde.gif @@ -2745,13 +2533,18 @@ %%WWWDIR%%/lib/plugins/authad/conf/metadata.php %%WWWDIR%%/lib/plugins/authad/lang/ar/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ar/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/bg/lang.php %%WWWDIR%%/lib/plugins/authad/lang/bg/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/ca/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/da/lang.php %%WWWDIR%%/lib/plugins/authad/lang/da/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/de-informal/lang.php %%WWWDIR%%/lib/plugins/authad/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authad/lang/de/lang.php %%WWWDIR%%/lib/plugins/authad/lang/de/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/el/lang.php %%WWWDIR%%/lib/plugins/authad/lang/el/settings.php %%WWWDIR%%/lib/plugins/authad/lang/en/lang.php %%WWWDIR%%/lib/plugins/authad/lang/en/settings.php @@ -2759,34 +2552,50 @@ %%WWWDIR%%/lib/plugins/authad/lang/eo/settings.php %%WWWDIR%%/lib/plugins/authad/lang/es/lang.php %%WWWDIR%%/lib/plugins/authad/lang/es/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/et/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/eu/lang.php %%WWWDIR%%/lib/plugins/authad/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/fa/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/fi/lang.php %%WWWDIR%%/lib/plugins/authad/lang/fi/settings.php %%WWWDIR%%/lib/plugins/authad/lang/fr/lang.php %%WWWDIR%%/lib/plugins/authad/lang/fr/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/gl/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/he/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/he/settings.php %%WWWDIR%%/lib/plugins/authad/lang/hr/lang.php %%WWWDIR%%/lib/plugins/authad/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authad/lang/hu/lang.php %%WWWDIR%%/lib/plugins/authad/lang/hu/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/it/lang.php %%WWWDIR%%/lib/plugins/authad/lang/it/settings.php %%WWWDIR%%/lib/plugins/authad/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ja/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/ka/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ko/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ko/settings.php %%WWWDIR%%/lib/plugins/authad/lang/lv/lang.php %%WWWDIR%%/lib/plugins/authad/lang/lv/settings.php %%WWWDIR%%/lib/plugins/authad/lang/nl/lang.php %%WWWDIR%%/lib/plugins/authad/lang/nl/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/no/lang.php %%WWWDIR%%/lib/plugins/authad/lang/no/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/pl/lang.php %%WWWDIR%%/lib/plugins/authad/lang/pl/settings.php %%WWWDIR%%/lib/plugins/authad/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/authad/lang/pt-br/settings.php %%WWWDIR%%/lib/plugins/authad/lang/pt/lang.php %%WWWDIR%%/lib/plugins/authad/lang/pt/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/ro/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ru/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/sk/lang.php %%WWWDIR%%/lib/plugins/authad/lang/sk/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/sl/lang.php %%WWWDIR%%/lib/plugins/authad/lang/sl/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/sv/lang.php %%WWWDIR%%/lib/plugins/authad/lang/sv/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/tr/lang.php %%WWWDIR%%/lib/plugins/authad/lang/zh-tw/lang.php %%WWWDIR%%/lib/plugins/authad/lang/zh-tw/settings.php %%WWWDIR%%/lib/plugins/authad/lang/zh/lang.php @@ -2800,62 +2609,92 @@ %%WWWDIR%%/lib/plugins/authldap/lang/cs/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/da/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/de-informal/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/de/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/de/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/en/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/en/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/eo/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/es/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/es/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/et/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/fa/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/fi/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/fr/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/fr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/he/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/hr/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/hu/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/it/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ja/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/ko/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ko/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/lv/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/nl/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/nl/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/no/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/pl/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/pt-br/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/pt/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/pt/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ru/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/sk/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/sl/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/sv/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/tr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/zh-tw/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authldap/plugin.info.txt %%WWWDIR%%/lib/plugins/authmysql/auth.php %%WWWDIR%%/lib/plugins/authmysql/conf/default.php %%WWWDIR%%/lib/plugins/authmysql/conf/metadata.php +%%WWWDIR%%/lib/plugins/authmysql/lang/bg/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/cs/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/da/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/de-informal/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/de/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/de/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/en/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/en/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/eo/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/es/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/es/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/fa/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/fi/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/fr/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/fr/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/he/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/hr/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/hu/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/it/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ja/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/ko/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ko/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/lv/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/nl/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/nl/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/no/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/pl/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/pt-br/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/pt/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/pt/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ru/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sk/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sl/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sv/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/tr/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/tr/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/zh-tw/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authmysql/plugin.info.txt %%WWWDIR%%/lib/plugins/authpgsql/auth.php @@ -2890,6 +2729,69 @@ %%WWWDIR%%/lib/plugins/authpgsql/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authpgsql/plugin.info.txt %%WWWDIR%%/lib/plugins/authplain/auth.php +%%WWWDIR%%/lib/plugins/authplain/lang/af/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ar/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/az/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/bn/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ca-valencia/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ca/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/da/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/de-informal/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/de/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/el/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/en/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/eo/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/es/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/et/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/eu/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fi/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fo/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/gl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/he/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/hr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ia/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/id-ni/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/id/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/is/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/it/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ja/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ka/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/kk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/km/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ko/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ku/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/la/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/lb/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/lt/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/lv/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/mg/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/mk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/mr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ms/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ne/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/nl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/no/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/pl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/pt/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ro/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ru/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sq/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sv/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/th/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/tr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/uk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/vi/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/zh-tw/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authplain/plugin.info.txt %%WWWDIR%%/lib/plugins/config/admin.php %%WWWDIR%%/lib/plugins/config/images/danger.png @@ -3003,6 +2905,7 @@ %%WWWDIR%%/lib/plugins/extension/helper/gui.php %%WWWDIR%%/lib/plugins/extension/helper/list.php %%WWWDIR%%/lib/plugins/extension/helper/repository.php +%%WWWDIR%%/lib/plugins/extension/images/bug.gif %%WWWDIR%%/lib/plugins/extension/images/disabled.png %%WWWDIR%%/lib/plugins/extension/images/donate.png %%WWWDIR%%/lib/plugins/extension/images/down.png @@ -3015,8 +2918,16 @@ %%WWWDIR%%/lib/plugins/extension/images/template.png %%WWWDIR%%/lib/plugins/extension/images/up.png %%WWWDIR%%/lib/plugins/extension/images/warning.png +%%WWWDIR%%/lib/plugins/extension/lang/bg/lang.php %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/cs/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/cs/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/cs/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/da/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/da/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/da/intro_templates.txt +%%WWWDIR%%/lib/plugins/extension/lang/da/lang.php %%WWWDIR%%/lib/plugins/extension/lang/de/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/de/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/de/intro_search.txt @@ -3033,9 +2944,12 @@ %%WWWDIR%%/lib/plugins/extension/lang/eo/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/eo/lang.php %%WWWDIR%%/lib/plugins/extension/lang/es/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/es/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/es/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/es/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/es/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/fi/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_search.txt @@ -3051,6 +2965,8 @@ %%WWWDIR%%/lib/plugins/extension/lang/hu/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/hu/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/it/lang.php %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_plugins.txt @@ -3075,10 +2991,20 @@ %%WWWDIR%%/lib/plugins/extension/lang/pt-br/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/pt-br/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_templates.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/ru/lang.php %%WWWDIR%%/lib/plugins/extension/lang/sk/lang.php %%WWWDIR%%/lib/plugins/extension/lang/tr/lang.php %%WWWDIR%%/lib/plugins/extension/lang/zh-tw/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/zh-tw/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/zh-tw/lang.php %%WWWDIR%%/lib/plugins/extension/lang/zh/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/zh/intro_plugins.txt @@ -3321,6 +3247,33 @@ %%WWWDIR%%/lib/plugins/revert/plugin.info.txt %%WWWDIR%%/lib/plugins/safefnrecode/action.php %%WWWDIR%%/lib/plugins/safefnrecode/plugin.info.txt +%%WWWDIR%%/lib/plugins/styling/README +%%WWWDIR%%/lib/plugins/styling/action.php +%%WWWDIR%%/lib/plugins/styling/admin.php +%%WWWDIR%%/lib/plugins/styling/iris.js +%%WWWDIR%%/lib/plugins/styling/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/de/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/de/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/en/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/en/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/es/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/es/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/fr/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/ja/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/ja/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/ko/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/ko/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/nl/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/nl/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/pt-br/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/zh/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/zh/lang.php +%%WWWDIR%%/lib/plugins/styling/plugin.info.txt +%%WWWDIR%%/lib/plugins/styling/popup.php +%%WWWDIR%%/lib/plugins/styling/script.js +%%WWWDIR%%/lib/plugins/styling/style.less %%WWWDIR%%/lib/plugins/syntax.php %%WWWDIR%%/lib/plugins/usermanager/admin.php %%WWWDIR%%/lib/plugins/usermanager/images/search.png @@ -3359,6 +3312,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/da/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/da/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/da/list.txt @@ -3399,6 +3353,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/es/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/es/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/es/list.txt @@ -3549,6 +3504,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/list.txt @@ -3642,7 +3598,6 @@ %%WWWDIR%%/lib/scripts/compatibility.js %%WWWDIR%%/lib/scripts/cookie.js %%WWWDIR%%/lib/scripts/delay.js -%%WWWDIR%%/lib/scripts/drag.js %%WWWDIR%%/lib/scripts/edit.js %%WWWDIR%%/lib/scripts/editor.js %%WWWDIR%%/lib/scripts/fileuploader.js @@ -3653,7 +3608,6 @@ %%WWWDIR%%/lib/scripts/index.js %%WWWDIR%%/lib/scripts/jquery/jquery-migrate.js %%WWWDIR%%/lib/scripts/jquery/jquery-migrate.min.js -%%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/animated-overlay.gif %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_0_aaaaaa_40x100.png %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_75_ffffff_40x100.png %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_55_fbf9ee_1x400.png @@ -3683,7 +3637,6 @@ %%WWWDIR%%/lib/scripts/textselection.js %%WWWDIR%%/lib/scripts/toolbar.js %%WWWDIR%%/lib/scripts/tree.js -%%WWWDIR%%/lib/scripts/tw-sack.js %%WWWDIR%%/lib/styles/all.css %%WWWDIR%%/lib/styles/feed.css %%WWWDIR%%/lib/styles/geshi.less @@ -3746,6 +3699,24 @@ %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-arrows.png %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-bullet.png %%WWWDIR%%/lib/tpl/dokuwiki/images/usertools.png +%%WWWDIR%%/lib/tpl/dokuwiki/lang/de/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/de/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/en/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/en/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/es/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/es/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ko/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ko/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/nl/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/nl/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/main.php %%WWWDIR%%/lib/tpl/dokuwiki/mediamanager.php %%WWWDIR%%/lib/tpl/dokuwiki/script.js @@ -3754,6 +3725,281 @@ %%WWWDIR%%/lib/tpl/dokuwiki/tpl_footer.php %%WWWDIR%%/lib/tpl/dokuwiki/tpl_header.php %%WWWDIR%%/lib/tpl/index.php +%%WWWDIR%%/vendor/README +%%WWWDIR%%/vendor/autoload.php +%%WWWDIR%%/vendor/composer/ClassLoader.php +%%WWWDIR%%/vendor/composer/autoload_classmap.php +%%WWWDIR%%/vendor/composer/autoload_namespaces.php +%%WWWDIR%%/vendor/composer/autoload_psr4.php +%%WWWDIR%%/vendor/composer/autoload_real.php +%%WWWDIR%%/vendor/composer/installed.json +%%WWWDIR%%/vendor/easybook/geshi/README.md +%%WWWDIR%%/vendor/easybook/geshi/geshi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/4cs.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/6502acme.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/6502kickass.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/6502tasm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/68000devpac.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/abap.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/actionscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/actionscript3.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ada.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/aimms.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/algol68.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/apache.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/applescript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/apt_sources.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/arm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/asm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/asp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/asymptote.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/autoconf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/autohotkey.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/autoit.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/avisynth.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/awk.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bascomavr.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bash.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/basic4gl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/batch.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bibtex.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/blitzbasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bnf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/boo.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c_loadrunner.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c_mac.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c_winapi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/caddcl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cadlisp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cfdg.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cfm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/chaiscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/chapel.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cil.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/clojure.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cmake.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cobol.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/coffeescript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cpp-qt.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cpp-winapi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cpp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/csharp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/css.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cuesheet.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/d.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dart.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dcl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dcpu16.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dcs.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/delphi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/diff.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/div.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dos.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dot.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/e.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ecmascript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/eiffel.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/email.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/epc.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/erlang.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/euphoria.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ezt.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/f1.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/falcon.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/fo.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/fortran.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/freebasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/freeswitch.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/fsharp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gambas.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gdb.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/genero.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/genie.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gettext.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/glsl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gml.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gnuplot.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/go.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/groovy.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gwbasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/haskell.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/haxe.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/hicest.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/hq9plus.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/html4strict.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/html5.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/icon.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/idl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ini.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/inno.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/intercal.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/io.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ispfpanel.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/j.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/java.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/java5.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/javascript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/jcl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/jquery.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/kixtart.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/klonec.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/klonecpp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/latex.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lb.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ldif.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lisp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/llvm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/locobasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/logtalk.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lolcode.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lotusformulas.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lotusscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lsl2.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lua.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/m68k.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/magiksf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/make.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mapbasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/matlab.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mirc.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mmix.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/modula2.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/modula3.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mpasm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mxml.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mysql.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/nagios.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/netrexx.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/newlisp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/nginx.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/nsis.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oberon2.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/objc.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/objeck.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ocaml-brief.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ocaml.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/octave.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oobas.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oorexx.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oracle11.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oracle8.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oxygene.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oz.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/parasail.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/parigp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pascal.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pcre.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/per.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/perl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/perl6.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/php-brief.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/php.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pic16.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pike.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pixelbender.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pli.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/plsql.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/postgresql.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/povray.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/powerbuilder.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/powershell.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/proftpd.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/progress.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/prolog.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/properties.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/providex.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/purebasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pycon.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pys60.php *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Wed Aug 12 00:04:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37AA999FDAC; Wed, 12 Aug 2015 00:04:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27ACC919; Wed, 12 Aug 2015 00:04:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C04LhI011841; Wed, 12 Aug 2015 00:04:21 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C04KqG011839; Wed, 12 Aug 2015 00:04:20 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120004.t7C04KqG011839@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:04:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393986 - head/x11/sterm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:04:21 -0000 Author: pgollucci Date: Wed Aug 12 00:04:20 2015 New Revision: 393986 URL: https://svnweb.freebsd.org/changeset/ports/393986 Log: x11/sterm: update 0.5->0.6 PR: 201549 Submitted by: mmatalka@gmail.com Approved by: maintainer timeout (kitche@kitchetech.com ; 17 days) Modified: head/x11/sterm/Makefile head/x11/sterm/distinfo Modified: head/x11/sterm/Makefile ============================================================================== --- head/x11/sterm/Makefile Tue Aug 11 23:31:23 2015 (r393985) +++ head/x11/sterm/Makefile Wed Aug 12 00:04:20 2015 (r393986) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sterm -PORTVERSION= 0.5 +PORTVERSION= 0.6 CATEGORIES= x11 MASTER_SITES= http://dl.suckless.org/st/ DISTNAME= st-${PORTVERSION} Modified: head/x11/sterm/distinfo ============================================================================== --- head/x11/sterm/distinfo Tue Aug 11 23:31:23 2015 (r393985) +++ head/x11/sterm/distinfo Wed Aug 12 00:04:20 2015 (r393986) @@ -1,2 +1,2 @@ -SHA256 (st-0.5.tar.gz) = ae80ddfaf8146f7665772efc9b85e05e08be5087682a689ecdf71aa4d4bfdd4e -SIZE (st-0.5.tar.gz) = 36710 +SHA256 (st-0.6.tar.gz) = 85310c08c3814e099b5e45888f8ac7548640e69e9973e934d4fba38b03737a2b +SIZE (st-0.6.tar.gz) = 40271 From owner-svn-ports-all@freebsd.org Wed Aug 12 00:07:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9138299FE40; Wed, 12 Aug 2015 00:07:17 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8198AB85; Wed, 12 Aug 2015 00:07:17 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C07H4C012169; Wed, 12 Aug 2015 00:07:17 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C07HXw012168; Wed, 12 Aug 2015 00:07:17 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120007.t7C07HXw012168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:07:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393987 - head/x11-themes/gnome-icons X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:07:17 -0000 Author: pgollucci Date: Wed Aug 12 00:07:16 2015 New Revision: 393987 URL: https://svnweb.freebsd.org/changeset/ports/393987 Log: x11-themes/gnome-icons: convert to USES=metaport PR: 201619 Submitted by: s3erios@gmail.com Deleted: head/x11-themes/gnome-icons/pkg-plist Modified: head/x11-themes/gnome-icons/Makefile Modified: head/x11-themes/gnome-icons/Makefile ============================================================================== --- head/x11-themes/gnome-icons/Makefile Wed Aug 12 00:04:20 2015 (r393986) +++ head/x11-themes/gnome-icons/Makefile Wed Aug 12 00:07:16 2015 (r393987) @@ -9,9 +9,6 @@ PORTNAME= gnome-icons PORTVERSION= 20060914 PORTREVISION= 4 CATEGORIES= x11-themes gnome -MASTER_SITES= # empty -DISTFILES= # empty -EXTRACT_ONLY= # empty MAINTAINER= ports@FreeBSD.org COMMENT= Meta-port for Gnome iconsets @@ -30,8 +27,6 @@ RUN_DEPENDS= ${LOCALBASE}/share/icons/Aq ${LOCALBASE}/share/icons/ximian-south/index.theme:${PORTSDIR}/x11-themes/gnome-icons-ximian-south \ ${LOCALBASE}/share/icons/Lila/index.theme:${PORTSDIR}/x11-themes/gnome-icons-lila -NO_BUILD= yes - -do-install: # empty +USES= metaport .include From owner-svn-ports-all@freebsd.org Wed Aug 12 00:07:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4ADE899FE68; Wed, 12 Aug 2015 00:07:22 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 056DABD1; Wed, 12 Aug 2015 00:07:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C07Li0012282; Wed, 12 Aug 2015 00:07:21 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C07La8012281; Wed, 12 Aug 2015 00:07:21 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120007.t7C07La8012281@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:07:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393988 - head/mail/squirrelmail-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:07:22 -0000 Author: pgollucci Date: Wed Aug 12 00:07:21 2015 New Revision: 393988 URL: https://svnweb.freebsd.org/changeset/ports/393988 Log: mail/squirrelmail-plugins: convert to USES=metaport PR: 201625 Submitted by: s3erios@gmail.com Modified: head/mail/squirrelmail-plugins/Makefile Modified: head/mail/squirrelmail-plugins/Makefile ============================================================================== --- head/mail/squirrelmail-plugins/Makefile Wed Aug 12 00:07:16 2015 (r393987) +++ head/mail/squirrelmail-plugins/Makefile Wed Aug 12 00:07:21 2015 (r393988) @@ -5,15 +5,10 @@ PORTNAME= squirrelmail-plugins PORTVERSION= 1.0 PORTREVISION= 2 CATEGORIES= mail www -MASTER_SITES= # none -DISTFILES= # none MAINTAINER= ports@FreeBSD.org COMMENT= "meta-port" to install SquirrelMail plugins -NO_BUILD= yes -NO_MTREE= yes - SQUIRRELDIR?= ${PREFIX}/www/squirrelmail OPTIONS_DEFINE= BUTTONS CALENDAR LDAPPW LGAUTH LGNOTES MAILFT MLOGIN \ @@ -86,7 +81,6 @@ WEBSEARCH_RUN_DEPENDS= squirrelmail-web_ WETTER_DESC= Weather in Germany plugin WETTER_RUN_DEPENDS= squirrelmail-wetteronline-plugin>0:${PORTSDIR}/mail/squirrelmail-wetteronline-plugin -do-install: build - @${DO_NADA} +USES= metaport .include From owner-svn-ports-all@freebsd.org Wed Aug 12 00:08:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 75A4B99FEAB; Wed, 12 Aug 2015 00:08:54 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6598FD72; Wed, 12 Aug 2015 00:08:54 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C08sot012568; Wed, 12 Aug 2015 00:08:54 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C08sXA012567; Wed, 12 Aug 2015 00:08:54 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120008.t7C08sXA012567@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:08:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393989 - head/japanese/skk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:08:54 -0000 Author: pgollucci Date: Wed Aug 12 00:08:53 2015 New Revision: 393989 URL: https://svnweb.freebsd.org/changeset/ports/393989 Log: japanese/skk: convert to USES=metaport PR: 201630 Submitted by: s3erios@gmail.com Deleted: head/japanese/skk/pkg-plist Modified: head/japanese/skk/Makefile Modified: head/japanese/skk/Makefile ============================================================================== --- head/japanese/skk/Makefile Wed Aug 12 00:07:21 2015 (r393988) +++ head/japanese/skk/Makefile Wed Aug 12 00:08:53 2015 (r393989) @@ -5,9 +5,6 @@ PORTNAME= skk PORTVERSION= 9.6 PORTREVISION= 3 CATEGORIES= japanese elisp -MASTER_SITES= # empty -DISTFILES= # empty -EXTRACT_ONLY= # empty MAINTAINER= ports@FreeBSD.org COMMENT= The "meta-port" for the SKK Japanese-input software @@ -16,11 +13,9 @@ RUN_DEPENDS= ${LOCALBASE}/share/skk/${SK ${LOCALBASE}/bin/skkdic-count:${PORTSDIR}/japanese/skk-tools \ ${LOCALBASE}/sbin/skkserv:${PORTSDIR}/japanese/skkserv -NO_BUILD= yes +USES= metaport SKKJISYO_SIZE?= L SKKJISYO?= SKK-JISYO.${SKKJISYO_SIZE} -do-install: # empty - .include From owner-svn-ports-all@freebsd.org Wed Aug 12 00:08:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC22799FECE; Wed, 12 Aug 2015 00:08:58 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BBCC7DA4; Wed, 12 Aug 2015 00:08:58 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C08wOX012681; Wed, 12 Aug 2015 00:08:58 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C08wDL012680; Wed, 12 Aug 2015 00:08:58 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120008.t7C08wDL012680@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:08:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393990 - head/japanese/namazu2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:08:58 -0000 Author: pgollucci Date: Wed Aug 12 00:08:57 2015 New Revision: 393990 URL: https://svnweb.freebsd.org/changeset/ports/393990 Log: japanese/namazu2: convert to USES=metaport PR: 201632 Submitted by: s3erios@gmail.com Modified: head/japanese/namazu2/Makefile Modified: head/japanese/namazu2/Makefile ============================================================================== --- head/japanese/namazu2/Makefile Wed Aug 12 00:08:53 2015 (r393989) +++ head/japanese/namazu2/Makefile Wed Aug 12 00:08:57 2015 (r393990) @@ -5,10 +5,7 @@ PORTNAME= namazu PORTVERSION= ${NAMAZU_PORTVERSION} PORTREVISION= 1 CATEGORIES= japanese databases www textproc -MASTER_SITES= # empty PKGNAMESUFFIX= 2 -DISTFILES= # empty -EXTRACT_ONLY= # empty MAINTAINER= ports@FreeBSD.org COMMENT= Meta-port of Namazu and Japanese support modules @@ -16,8 +13,6 @@ COMMENT= Meta-port of Namazu and Japanes LIB_DEPENDS= libnmz.so:${PORTSDIR}/databases/namazu2 RUN_DEPENDS= ja-p5-nkf>=0:${PORTSDIR}/japanese/p5-nkf -PLIST= "@comment this plist is intentionally left empty" - .if defined(WITH_CHASEN) RUN_DEPENDS+= ja-p5-Text-ChaSen>=0:${PORTSDIR}/japanese/p5-Text-ChaSen .elif defined(WITH_KAKASI) @@ -28,10 +23,6 @@ RUN_DEPENDS+= ja-p5-MeCab>=0:${PORTSDIR} .include "${.CURDIR}/../../databases/namazu2/Makefile.common" -NO_BUILD= yes -USES= perl5 - -do-install: - @${DO_NADA} +USES= metaport perl5 .include From owner-svn-ports-all@freebsd.org Wed Aug 12 00:10:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C22399FF5C; Wed, 12 Aug 2015 00:10:31 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19B2EF79; Wed, 12 Aug 2015 00:10:31 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C0AUc0014890; Wed, 12 Aug 2015 00:10:30 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C0AUKC014889; Wed, 12 Aug 2015 00:10:30 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120010.t7C0AUKC014889@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:10:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393991 - head/lang/fpc-base X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:10:31 -0000 Author: pgollucci Date: Wed Aug 12 00:10:30 2015 New Revision: 393991 URL: https://svnweb.freebsd.org/changeset/ports/393991 Log: lang/fpc-base: convert to USES=metaport PR: 201640 Submitted by: s3erios@gmail.com Approved by: maintainer timeout (freebsd-fpc@FreeBSD.org ; 25 days) Deleted: head/lang/fpc-base/pkg-plist Modified: head/lang/fpc-base/Makefile Modified: head/lang/fpc-base/Makefile ============================================================================== --- head/lang/fpc-base/Makefile Wed Aug 12 00:08:57 2015 (r393990) +++ head/lang/fpc-base/Makefile Wed Aug 12 00:10:30 2015 (r393991) @@ -5,19 +5,14 @@ PORTNAME= base PORTVERSION= 2.6.4 PORTREVISION= 2 CATEGORIES= lang -MASTER_SITES= # empty PKGNAMEPREFIX= fpc- -DISTFILES= # empty -EXTRACT_ONLY= # empty MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Meta package to install all of the Free Pascal base +USES= metaport USE_FPC_RUN= yes WANT_FPC_BASE= yes -NO_BUILD= yes -NO_INSTALL= yes -NO_MTREE= yes OPTIONS_DEFINE= DOCS From owner-svn-ports-all@freebsd.org Wed Aug 12 00:10:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C707299FF82; Wed, 12 Aug 2015 00:10:36 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9ED7795; Wed, 12 Aug 2015 00:10:36 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C0Aa4E015034; Wed, 12 Aug 2015 00:10:36 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C0AZpA015031; Wed, 12 Aug 2015 00:10:35 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120010.t7C0AZpA015031@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:10:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393992 - in head/databases/sqlitebrowser: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:10:37 -0000 Author: pgollucci Date: Wed Aug 12 00:10:35 2015 New Revision: 393992 URL: https://svnweb.freebsd.org/changeset/ports/393992 Log: databases/sqlitebrowser: modernize, fix dependencies - Replace USE_QT4=linguist_build with USE_QT4=linguisttools_build. - Add missed corelib and network components into USE_QT4. - Regenerate patches. - Bump PORTREVISION PR: 201648 Submitted by: s3erios@gmail.com Approved by: maintainer timeout (coder@tuxfamily.org ; 25 days) Modified: head/databases/sqlitebrowser/Makefile head/databases/sqlitebrowser/files/patch-src-Application.cpp head/databases/sqlitebrowser/files/patch-src-PreferencesDialog.cpp Modified: head/databases/sqlitebrowser/Makefile ============================================================================== --- head/databases/sqlitebrowser/Makefile Wed Aug 12 00:10:30 2015 (r393991) +++ head/databases/sqlitebrowser/Makefile Wed Aug 12 00:10:35 2015 (r393992) @@ -3,6 +3,7 @@ PORTNAME= sqlitebrowser PORTVERSION= 3.6.0 +PORTREVISION= 1 CATEGORIES= databases MAINTAINER= coder@tuxfamily.org @@ -16,7 +17,8 @@ GH_ACCOUNT= sqlitebrowser GH_TAGNAME= e703344 USES= cmake desktop-file-utils -USE_QT4= gui qmake_build linguist_build moc_build uic_build rcc_build +USE_QT4= corelib network gui qmake_build linguisttools_build \ + moc_build uic_build rcc_build USE_SQLITE= yes INSTALLS_ICONS= yes Modified: head/databases/sqlitebrowser/files/patch-src-Application.cpp ============================================================================== --- head/databases/sqlitebrowser/files/patch-src-Application.cpp Wed Aug 12 00:10:30 2015 (r393991) +++ head/databases/sqlitebrowser/files/patch-src-Application.cpp Wed Aug 12 00:10:35 2015 (r393992) @@ -1,6 +1,6 @@ ---- src/Application.cpp.orig 2015-01-30 19:48:06.000000000 +0100 -+++ src/Application.cpp 2015-02-01 15:40:02.790619098 +0100 -@@ -30,8 +30,15 @@ +--- src/Application.cpp.orig 2015-04-27 09:31:47 UTC ++++ src/Application.cpp +@@ -30,8 +30,15 @@ Application::Application(int& argc, char // First of all try to load the application translation file. m_translatorApp = new QTranslator(this); @@ -16,7 +16,7 @@ if (ok == true) { PreferencesDialog::setSettingsValue("General", "language", name); -@@ -47,7 +54,9 @@ +@@ -47,7 +54,9 @@ Application::Application(int& argc, char ok = m_translatorQt->load("qt_" + name, QLibraryInfo::location(QLibraryInfo::TranslationsPath)); if (ok == false) Modified: head/databases/sqlitebrowser/files/patch-src-PreferencesDialog.cpp ============================================================================== --- head/databases/sqlitebrowser/files/patch-src-PreferencesDialog.cpp Wed Aug 12 00:10:30 2015 (r393991) +++ head/databases/sqlitebrowser/files/patch-src-PreferencesDialog.cpp Wed Aug 12 00:10:35 2015 (r393992) @@ -1,6 +1,6 @@ ---- src/PreferencesDialog.cpp.orig 2015-05-09 08:19:49.920343024 +0200 -+++ src/PreferencesDialog.cpp 2015-05-09 08:20:57.913337598 +0200 -@@ -356,8 +356,15 @@ +--- src/PreferencesDialog.cpp.orig 2015-04-27 09:31:47 UTC ++++ src/PreferencesDialog.cpp +@@ -356,8 +356,15 @@ void PreferencesDialog::removeExtension( void PreferencesDialog::fillLanguageBox() { From owner-svn-ports-all@freebsd.org Wed Aug 12 00:12:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B484D99D0C8; Wed, 12 Aug 2015 00:12:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 980833E1; Wed, 12 Aug 2015 00:12:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C0CLvR017062; Wed, 12 Aug 2015 00:12:21 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C0CKQQ017059; Wed, 12 Aug 2015 00:12:20 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120012.t7C0CKQQ017059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 00:12:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393993 - in head/games/chessx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:12:21 -0000 Author: pgollucci Date: Wed Aug 12 00:12:20 2015 New Revision: 393993 URL: https://svnweb.freebsd.org/changeset/ports/393993 Log: games/chessx: cleanup - USE_QT4=linguist_build -> USE_QT4=linguisttools_build. - Remove qt4-xml dependency - it's not used here. - Add LICENSE_FILE. - Bump PORTREVISION. - Fix portlint warnings: sort USES; use PLIST_FILES instead of pkg-plist; regenerate patch headers. PR: 201662 Submitted by: s3erios@gmail.com Approved by: yamagi@yamagi.org (maintainer) Deleted: head/games/chessx/pkg-plist Modified: head/games/chessx/Makefile head/games/chessx/files/patch-chessx.pro head/games/chessx/files/patch-src__database__threadedguess.cpp Modified: head/games/chessx/Makefile ============================================================================== --- head/games/chessx/Makefile Wed Aug 12 00:10:35 2015 (r393992) +++ head/games/chessx/Makefile Wed Aug 12 00:12:20 2015 (r393993) @@ -2,6 +2,7 @@ PORTNAME= chessx PORTVERSION= 1.3.2 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} @@ -9,12 +10,17 @@ MAINTAINER= yamagi@yamagi.org COMMENT= Qt 4 chess database application LICENSE= GPLv2 # (or later) +LICENSE_FILE= ${WRKSRC}/COPYING -USES= desktop-file-utils shared-mime-info qmake tar:tgz -USE_QT4= corelib gui svg xml network linguist_build \ +USES= desktop-file-utils qmake shared-mime-info tar:tgz +USE_QT4= corelib gui svg network linguisttools_build \ moc_build qmake_build rcc_build uic_build QMAKE_ARGS+= QMAKE_LRELEASE=${LRELEASE} +PLIST_FILES= bin/chessx \ + share/applications/chessx.desktop \ + share/pixmaps/chessx.png + OPTIONS_DEFINE= STOCKFISH CRAFTY STOCKFISH_DESC= Install Stockfish Chess Engine Modified: head/games/chessx/files/patch-chessx.pro ============================================================================== --- head/games/chessx/files/patch-chessx.pro Wed Aug 12 00:10:35 2015 (r393992) +++ head/games/chessx/files/patch-chessx.pro Wed Aug 12 00:12:20 2015 (r393993) @@ -1,6 +1,6 @@ ---- chessx.pro_orig 2014-03-21 10:53:31.321941038 +0100 -+++ chessx.pro 2014-03-21 10:54:00.294938611 +0100 -@@ -323,6 +323,15 @@ +--- chessx.pro.orig 2015-05-05 13:46:26 UTC ++++ chessx.pro +@@ -393,6 +393,15 @@ macx { QMAKE_INFO_PLIST = mac_osx/Info.plist } Modified: head/games/chessx/files/patch-src__database__threadedguess.cpp ============================================================================== --- head/games/chessx/files/patch-src__database__threadedguess.cpp Wed Aug 12 00:10:35 2015 (r393992) +++ head/games/chessx/files/patch-src__database__threadedguess.cpp Wed Aug 12 00:12:20 2015 (r393993) @@ -1,5 +1,5 @@ ---- src/database/threadedguess.cpp_ 2015-05-06 10:23:39.570986205 +0200 -+++ src/database/threadedguess.cpp 2015-05-06 10:24:33.855963312 +0200 +--- src/database/threadedguess.cpp.orig 2015-04-28 18:00:47 UTC ++++ src/database/threadedguess.cpp @@ -2,6 +2,7 @@ * Copyright (C) 2014 by Jens Nissen jens-chessx@gmx.net * ****************************************************************************/ From owner-svn-ports-all@freebsd.org Wed Aug 12 00:23:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E6B199D46C; Wed, 12 Aug 2015 00:23:49 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C2A6BA3; Wed, 12 Aug 2015 00:23:49 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C0NnK6021363; Wed, 12 Aug 2015 00:23:49 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C0Nm0s021359; Wed, 12 Aug 2015 00:23:48 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201508120023.t7C0Nm0s021359@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Wed, 12 Aug 2015 00:23:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393994 - in branches/2015Q3/www/dokuwiki: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:23:49 -0000 Author: delphij Date: Wed Aug 12 00:23:47 2015 New Revision: 393994 URL: https://svnweb.freebsd.org/changeset/ports/393994 Log: MFH: r393985 Update to 2015-08-10 "Detritus". Approved by: ports-secteam@ Deleted: branches/2015Q3/www/dokuwiki/files/patch-2014-09-29-to-2014-09-29a branches/2015Q3/www/dokuwiki/files/patch-2014-09-29a-to-2014-09-29c branches/2015Q3/www/dokuwiki/files/patch-2014-09-29c-to-2014-09-29d Modified: branches/2015Q3/www/dokuwiki/Makefile branches/2015Q3/www/dokuwiki/distinfo branches/2015Q3/www/dokuwiki/pkg-plist Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/dokuwiki/Makefile ============================================================================== --- branches/2015Q3/www/dokuwiki/Makefile Wed Aug 12 00:12:20 2015 (r393993) +++ branches/2015Q3/www/dokuwiki/Makefile Wed Aug 12 00:23:47 2015 (r393994) @@ -3,7 +3,6 @@ PORTNAME= dokuwiki PORTVERSION= ${DIST_VER:S/${PORTNAME}//:S/-//g} -PORTREVISION= 5 CATEGORIES= www MASTER_SITES= http://download.dokuwiki.org/src/dokuwiki/ DISTNAME= ${DIST_VER} @@ -13,7 +12,7 @@ COMMENT= Simple and easy to use wiki, no LICENSE= GPLv2 -DIST_VER= ${PORTNAME}-2014-09-29 +DIST_VER= ${PORTNAME}-2015-08-10 USE_PHP= gd mbstring openssl pcre session xml zlib NO_ARCH= YES NO_BUILD= YES Modified: branches/2015Q3/www/dokuwiki/distinfo ============================================================================== --- branches/2015Q3/www/dokuwiki/distinfo Wed Aug 12 00:12:20 2015 (r393993) +++ branches/2015Q3/www/dokuwiki/distinfo Wed Aug 12 00:23:47 2015 (r393994) @@ -1,2 +1,2 @@ -SHA256 (dokuwiki-2014-09-29.tgz) = 941b6954d39de57530efbb27d0734b6bc9a49aaa3c781b39f6ecb305322534eb -SIZE (dokuwiki-2014-09-29.tgz) = 3241352 +SHA256 (dokuwiki-2015-08-10.tgz) = bdede4c71e95c1bd6a8daaa65e2ccfa8ef7372022504b9358f175df964f0a399 +SIZE (dokuwiki-2015-08-10.tgz) = 3399960 Modified: branches/2015Q3/www/dokuwiki/pkg-plist ============================================================================== --- branches/2015Q3/www/dokuwiki/pkg-plist Wed Aug 12 00:12:20 2015 (r393993) +++ branches/2015Q3/www/dokuwiki/pkg-plist Wed Aug 12 00:23:47 2015 (r393994) @@ -49,6 +49,20 @@ %%WWWDIR%%/inc/DifferenceEngine.php %%WWWDIR%%/inc/EmailAddressValidator.php %%WWWDIR%%/inc/FeedParser.php +%%WWWDIR%%/inc/Form/CheckableElement.php +%%WWWDIR%%/inc/Form/Element.php +%%WWWDIR%%/inc/Form/FieldsetCloseElement.php +%%WWWDIR%%/inc/Form/FieldsetOpenElement.php +%%WWWDIR%%/inc/Form/Form.php +%%WWWDIR%%/inc/Form/HTMLElement.php +%%WWWDIR%%/inc/Form/InputElement.php +%%WWWDIR%%/inc/Form/Label.php +%%WWWDIR%%/inc/Form/LegacyForm.php +%%WWWDIR%%/inc/Form/TagCloseElement.php +%%WWWDIR%%/inc/Form/TagElement.php +%%WWWDIR%%/inc/Form/TagOpenElement.php +%%WWWDIR%%/inc/Form/TextareaElement.php +%%WWWDIR%%/inc/Form/ValueElement.php %%WWWDIR%%/inc/HTTPClient.php %%WWWDIR%%/inc/IXR_Library.php %%WWWDIR%%/inc/Input.class.php @@ -61,7 +75,6 @@ %%WWWDIR%%/inc/SimplePie.php %%WWWDIR%%/inc/Sitemapper.php %%WWWDIR%%/inc/Tar.class.php -%%WWWDIR%%/inc/TarLib.class.php %%WWWDIR%%/inc/ZipLib.class.php %%WWWDIR%%/inc/actions.php %%WWWDIR%%/inc/auth.php @@ -80,230 +93,6 @@ %%WWWDIR%%/inc/fetch.functions.php %%WWWDIR%%/inc/form.php %%WWWDIR%%/inc/fulltext.php -%%WWWDIR%%/inc/geshi.php -%%WWWDIR%%/inc/geshi/4cs.php -%%WWWDIR%%/inc/geshi/6502acme.php -%%WWWDIR%%/inc/geshi/6502kickass.php -%%WWWDIR%%/inc/geshi/6502tasm.php -%%WWWDIR%%/inc/geshi/68000devpac.php -%%WWWDIR%%/inc/geshi/abap.php -%%WWWDIR%%/inc/geshi/actionscript-french.php -%%WWWDIR%%/inc/geshi/actionscript.php -%%WWWDIR%%/inc/geshi/actionscript3.php -%%WWWDIR%%/inc/geshi/ada.php -%%WWWDIR%%/inc/geshi/algol68.php -%%WWWDIR%%/inc/geshi/apache.php -%%WWWDIR%%/inc/geshi/applescript.php -%%WWWDIR%%/inc/geshi/apt_sources.php -%%WWWDIR%%/inc/geshi/arm.php -%%WWWDIR%%/inc/geshi/asm.php -%%WWWDIR%%/inc/geshi/asp.php -%%WWWDIR%%/inc/geshi/asymptote.php -%%WWWDIR%%/inc/geshi/autoconf.php -%%WWWDIR%%/inc/geshi/autohotkey.php -%%WWWDIR%%/inc/geshi/autoit.php -%%WWWDIR%%/inc/geshi/avisynth.php -%%WWWDIR%%/inc/geshi/awk.php -%%WWWDIR%%/inc/geshi/bascomavr.php -%%WWWDIR%%/inc/geshi/bash.php -%%WWWDIR%%/inc/geshi/basic4gl.php -%%WWWDIR%%/inc/geshi/bf.php -%%WWWDIR%%/inc/geshi/bibtex.php -%%WWWDIR%%/inc/geshi/blitzbasic.php -%%WWWDIR%%/inc/geshi/bnf.php -%%WWWDIR%%/inc/geshi/boo.php -%%WWWDIR%%/inc/geshi/c.php -%%WWWDIR%%/inc/geshi/c_loadrunner.php -%%WWWDIR%%/inc/geshi/c_mac.php -%%WWWDIR%%/inc/geshi/caddcl.php -%%WWWDIR%%/inc/geshi/cadlisp.php -%%WWWDIR%%/inc/geshi/cfdg.php -%%WWWDIR%%/inc/geshi/cfm.php -%%WWWDIR%%/inc/geshi/chaiscript.php -%%WWWDIR%%/inc/geshi/cil.php -%%WWWDIR%%/inc/geshi/clojure.php -%%WWWDIR%%/inc/geshi/cmake.php -%%WWWDIR%%/inc/geshi/cobol.php -%%WWWDIR%%/inc/geshi/coffeescript.php -%%WWWDIR%%/inc/geshi/cpp-qt.php -%%WWWDIR%%/inc/geshi/cpp.php -%%WWWDIR%%/inc/geshi/csharp.php -%%WWWDIR%%/inc/geshi/css.php -%%WWWDIR%%/inc/geshi/cuesheet.php -%%WWWDIR%%/inc/geshi/d.php -%%WWWDIR%%/inc/geshi/dcl.php -%%WWWDIR%%/inc/geshi/dcpu16.php -%%WWWDIR%%/inc/geshi/dcs.php -%%WWWDIR%%/inc/geshi/delphi.php -%%WWWDIR%%/inc/geshi/diff.php -%%WWWDIR%%/inc/geshi/div.php -%%WWWDIR%%/inc/geshi/dos.php -%%WWWDIR%%/inc/geshi/dot.php -%%WWWDIR%%/inc/geshi/e.php -%%WWWDIR%%/inc/geshi/ecmascript.php -%%WWWDIR%%/inc/geshi/eiffel.php -%%WWWDIR%%/inc/geshi/email.php -%%WWWDIR%%/inc/geshi/epc.php -%%WWWDIR%%/inc/geshi/erlang.php -%%WWWDIR%%/inc/geshi/euphoria.php -%%WWWDIR%%/inc/geshi/f1.php -%%WWWDIR%%/inc/geshi/falcon.php -%%WWWDIR%%/inc/geshi/fo.php -%%WWWDIR%%/inc/geshi/fortran.php -%%WWWDIR%%/inc/geshi/freebasic.php -%%WWWDIR%%/inc/geshi/freeswitch.php -%%WWWDIR%%/inc/geshi/fsharp.php -%%WWWDIR%%/inc/geshi/gambas.php -%%WWWDIR%%/inc/geshi/gdb.php -%%WWWDIR%%/inc/geshi/genero.php -%%WWWDIR%%/inc/geshi/genie.php -%%WWWDIR%%/inc/geshi/gettext.php -%%WWWDIR%%/inc/geshi/glsl.php -%%WWWDIR%%/inc/geshi/gml.php -%%WWWDIR%%/inc/geshi/gnuplot.php -%%WWWDIR%%/inc/geshi/go.php -%%WWWDIR%%/inc/geshi/groovy.php -%%WWWDIR%%/inc/geshi/gwbasic.php -%%WWWDIR%%/inc/geshi/haskell.php -%%WWWDIR%%/inc/geshi/haxe.php -%%WWWDIR%%/inc/geshi/hicest.php -%%WWWDIR%%/inc/geshi/hq9plus.php -%%WWWDIR%%/inc/geshi/html4strict.php -%%WWWDIR%%/inc/geshi/html5.php -%%WWWDIR%%/inc/geshi/icon.php -%%WWWDIR%%/inc/geshi/idl.php -%%WWWDIR%%/inc/geshi/ini.php -%%WWWDIR%%/inc/geshi/inno.php -%%WWWDIR%%/inc/geshi/intercal.php -%%WWWDIR%%/inc/geshi/io.php -%%WWWDIR%%/inc/geshi/j.php -%%WWWDIR%%/inc/geshi/java.php -%%WWWDIR%%/inc/geshi/java5.php -%%WWWDIR%%/inc/geshi/javascript.php -%%WWWDIR%%/inc/geshi/jquery.php -%%WWWDIR%%/inc/geshi/kixtart.php -%%WWWDIR%%/inc/geshi/klonec.php -%%WWWDIR%%/inc/geshi/klonecpp.php -%%WWWDIR%%/inc/geshi/latex.php -%%WWWDIR%%/inc/geshi/lb.php -%%WWWDIR%%/inc/geshi/ldif.php -%%WWWDIR%%/inc/geshi/lisp.php -%%WWWDIR%%/inc/geshi/llvm.php -%%WWWDIR%%/inc/geshi/locobasic.php -%%WWWDIR%%/inc/geshi/logtalk.php -%%WWWDIR%%/inc/geshi/lolcode.php -%%WWWDIR%%/inc/geshi/lotusformulas.php -%%WWWDIR%%/inc/geshi/lotusscript.php -%%WWWDIR%%/inc/geshi/lscript.php -%%WWWDIR%%/inc/geshi/lsl2.php -%%WWWDIR%%/inc/geshi/lua.php -%%WWWDIR%%/inc/geshi/m68k.php -%%WWWDIR%%/inc/geshi/magiksf.php -%%WWWDIR%%/inc/geshi/make.php -%%WWWDIR%%/inc/geshi/mapbasic.php -%%WWWDIR%%/inc/geshi/matlab.php -%%WWWDIR%%/inc/geshi/mirc.php -%%WWWDIR%%/inc/geshi/mmix.php -%%WWWDIR%%/inc/geshi/modula2.php -%%WWWDIR%%/inc/geshi/modula3.php -%%WWWDIR%%/inc/geshi/mpasm.php -%%WWWDIR%%/inc/geshi/mxml.php -%%WWWDIR%%/inc/geshi/mysql.php -%%WWWDIR%%/inc/geshi/nagios.php -%%WWWDIR%%/inc/geshi/netrexx.php -%%WWWDIR%%/inc/geshi/newlisp.php -%%WWWDIR%%/inc/geshi/nsis.php -%%WWWDIR%%/inc/geshi/oberon2.php -%%WWWDIR%%/inc/geshi/objc.php -%%WWWDIR%%/inc/geshi/objeck.php -%%WWWDIR%%/inc/geshi/ocaml-brief.php -%%WWWDIR%%/inc/geshi/ocaml.php -%%WWWDIR%%/inc/geshi/octave.php -%%WWWDIR%%/inc/geshi/oobas.php -%%WWWDIR%%/inc/geshi/oorexx.php -%%WWWDIR%%/inc/geshi/oracle11.php -%%WWWDIR%%/inc/geshi/oracle8.php -%%WWWDIR%%/inc/geshi/oxygene.php -%%WWWDIR%%/inc/geshi/oz.php -%%WWWDIR%%/inc/geshi/parasail.php -%%WWWDIR%%/inc/geshi/parigp.php -%%WWWDIR%%/inc/geshi/pascal.php -%%WWWDIR%%/inc/geshi/pcre.php -%%WWWDIR%%/inc/geshi/per.php -%%WWWDIR%%/inc/geshi/perl.php -%%WWWDIR%%/inc/geshi/perl6.php -%%WWWDIR%%/inc/geshi/pf.php -%%WWWDIR%%/inc/geshi/php-brief.php -%%WWWDIR%%/inc/geshi/php.php -%%WWWDIR%%/inc/geshi/pic16.php -%%WWWDIR%%/inc/geshi/pike.php -%%WWWDIR%%/inc/geshi/pixelbender.php -%%WWWDIR%%/inc/geshi/pli.php -%%WWWDIR%%/inc/geshi/plsql.php -%%WWWDIR%%/inc/geshi/postgresql.php -%%WWWDIR%%/inc/geshi/povray.php -%%WWWDIR%%/inc/geshi/powerbuilder.php -%%WWWDIR%%/inc/geshi/powershell.php -%%WWWDIR%%/inc/geshi/proftpd.php -%%WWWDIR%%/inc/geshi/progress.php -%%WWWDIR%%/inc/geshi/prolog.php -%%WWWDIR%%/inc/geshi/properties.php -%%WWWDIR%%/inc/geshi/providex.php -%%WWWDIR%%/inc/geshi/purebasic.php -%%WWWDIR%%/inc/geshi/pycon.php -%%WWWDIR%%/inc/geshi/pys60.php -%%WWWDIR%%/inc/geshi/python.php -%%WWWDIR%%/inc/geshi/q.php -%%WWWDIR%%/inc/geshi/qbasic.php -%%WWWDIR%%/inc/geshi/rails.php -%%WWWDIR%%/inc/geshi/rebol.php -%%WWWDIR%%/inc/geshi/reg.php -%%WWWDIR%%/inc/geshi/rexx.php -%%WWWDIR%%/inc/geshi/robots.php -%%WWWDIR%%/inc/geshi/rpmspec.php -%%WWWDIR%%/inc/geshi/rsplus.php -%%WWWDIR%%/inc/geshi/ruby.php -%%WWWDIR%%/inc/geshi/sas.php -%%WWWDIR%%/inc/geshi/scala.php -%%WWWDIR%%/inc/geshi/scheme.php -%%WWWDIR%%/inc/geshi/scilab.php -%%WWWDIR%%/inc/geshi/sdlbasic.php -%%WWWDIR%%/inc/geshi/smalltalk.php -%%WWWDIR%%/inc/geshi/smarty.php -%%WWWDIR%%/inc/geshi/spark.php -%%WWWDIR%%/inc/geshi/sparql.php -%%WWWDIR%%/inc/geshi/sql.php -%%WWWDIR%%/inc/geshi/stonescript.php -%%WWWDIR%%/inc/geshi/systemverilog.php -%%WWWDIR%%/inc/geshi/tcl.php -%%WWWDIR%%/inc/geshi/teraterm.php -%%WWWDIR%%/inc/geshi/text.php -%%WWWDIR%%/inc/geshi/thinbasic.php -%%WWWDIR%%/inc/geshi/tsql.php -%%WWWDIR%%/inc/geshi/typoscript.php -%%WWWDIR%%/inc/geshi/unicon.php -%%WWWDIR%%/inc/geshi/upc.php -%%WWWDIR%%/inc/geshi/urbi.php -%%WWWDIR%%/inc/geshi/uscript.php -%%WWWDIR%%/inc/geshi/vala.php -%%WWWDIR%%/inc/geshi/vb.php -%%WWWDIR%%/inc/geshi/vbnet.php -%%WWWDIR%%/inc/geshi/vedit.php -%%WWWDIR%%/inc/geshi/verilog.php -%%WWWDIR%%/inc/geshi/vhdl.php -%%WWWDIR%%/inc/geshi/vim.php -%%WWWDIR%%/inc/geshi/visualfoxpro.php -%%WWWDIR%%/inc/geshi/visualprolog.php -%%WWWDIR%%/inc/geshi/whitespace.php -%%WWWDIR%%/inc/geshi/whois.php -%%WWWDIR%%/inc/geshi/winbatch.php -%%WWWDIR%%/inc/geshi/xbasic.php -%%WWWDIR%%/inc/geshi/xml.php -%%WWWDIR%%/inc/geshi/xorg_conf.php -%%WWWDIR%%/inc/geshi/xpp.php -%%WWWDIR%%/inc/geshi/yaml.php -%%WWWDIR%%/inc/geshi/z80.php -%%WWWDIR%%/inc/geshi/zxbasic.php %%WWWDIR%%/inc/html.php %%WWWDIR%%/inc/httputils.php %%WWWDIR%%/inc/indexer.php @@ -1084,6 +873,7 @@ %%WWWDIR%%/inc/lang/he/register.txt %%WWWDIR%%/inc/lang/he/registermail.txt %%WWWDIR%%/inc/lang/he/resendpwd.txt +%%WWWDIR%%/inc/lang/he/resetpwd.txt %%WWWDIR%%/inc/lang/he/revisions.txt %%WWWDIR%%/inc/lang/he/searchpage.txt %%WWWDIR%%/inc/lang/he/showrev.txt @@ -1343,6 +1133,7 @@ %%WWWDIR%%/inc/lang/ka/edit.txt %%WWWDIR%%/inc/lang/ka/editrev.txt %%WWWDIR%%/inc/lang/ka/index.txt +%%WWWDIR%%/inc/lang/ka/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/ka/lang.php %%WWWDIR%%/inc/lang/kk/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/kk/lang.php @@ -1401,29 +1192,16 @@ %%WWWDIR%%/inc/lang/ko/subscr_single.txt %%WWWDIR%%/inc/lang/ko/updateprofile.txt %%WWWDIR%%/inc/lang/ko/uploadmail.txt -%%WWWDIR%%/inc/lang/ku/admin.txt %%WWWDIR%%/inc/lang/ku/backlinks.txt %%WWWDIR%%/inc/lang/ku/conflict.txt -%%WWWDIR%%/inc/lang/ku/denied.txt %%WWWDIR%%/inc/lang/ku/diff.txt %%WWWDIR%%/inc/lang/ku/edit.txt -%%WWWDIR%%/inc/lang/ku/editrev.txt %%WWWDIR%%/inc/lang/ku/index.txt %%WWWDIR%%/inc/lang/ku/lang.php -%%WWWDIR%%/inc/lang/ku/locked.txt -%%WWWDIR%%/inc/lang/ku/login.txt -%%WWWDIR%%/inc/lang/ku/mailtext.txt %%WWWDIR%%/inc/lang/ku/newpage.txt -%%WWWDIR%%/inc/lang/ku/norev.txt -%%WWWDIR%%/inc/lang/ku/password.txt %%WWWDIR%%/inc/lang/ku/preview.txt -%%WWWDIR%%/inc/lang/ku/read.txt %%WWWDIR%%/inc/lang/ku/recent.txt -%%WWWDIR%%/inc/lang/ku/register.txt -%%WWWDIR%%/inc/lang/ku/revisions.txt %%WWWDIR%%/inc/lang/ku/searchpage.txt -%%WWWDIR%%/inc/lang/ku/showrev.txt -%%WWWDIR%%/inc/lang/ku/stopwords.txt %%WWWDIR%%/inc/lang/la/admin.txt %%WWWDIR%%/inc/lang/la/adminplugins.txt %%WWWDIR%%/inc/lang/la/backlinks.txt @@ -1580,6 +1358,7 @@ %%WWWDIR%%/inc/lang/mk/read.txt %%WWWDIR%%/inc/lang/mk/recent.txt %%WWWDIR%%/inc/lang/mk/showrev.txt +%%WWWDIR%%/inc/lang/ml/admin.txt %%WWWDIR%%/inc/lang/mr/admin.txt %%WWWDIR%%/inc/lang/mr/backlinks.txt %%WWWDIR%%/inc/lang/mr/conflict.txt @@ -1613,6 +1392,7 @@ %%WWWDIR%%/inc/lang/ms/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/ms/lang.php %%WWWDIR%%/inc/lang/ne/admin.txt +%%WWWDIR%%/inc/lang/ne/adminplugins.txt %%WWWDIR%%/inc/lang/ne/backlinks.txt %%WWWDIR%%/inc/lang/ne/conflict.txt %%WWWDIR%%/inc/lang/ne/denied.txt @@ -1809,6 +1589,7 @@ %%WWWDIR%%/inc/lang/pt/register.txt %%WWWDIR%%/inc/lang/pt/registermail.txt %%WWWDIR%%/inc/lang/pt/resendpwd.txt +%%WWWDIR%%/inc/lang/pt/resetpwd.txt %%WWWDIR%%/inc/lang/pt/revisions.txt %%WWWDIR%%/inc/lang/pt/searchpage.txt %%WWWDIR%%/inc/lang/pt/showrev.txt @@ -2078,7 +1859,15 @@ %%WWWDIR%%/inc/lang/sv/subscr_single.txt %%WWWDIR%%/inc/lang/sv/updateprofile.txt %%WWWDIR%%/inc/lang/sv/uploadmail.txt +%%WWWDIR%%/inc/lang/ta/admin.txt +%%WWWDIR%%/inc/lang/ta/adminplugins.txt +%%WWWDIR%%/inc/lang/ta/backlinks.txt +%%WWWDIR%%/inc/lang/ta/conflict.txt %%WWWDIR%%/inc/lang/ta/denied.txt +%%WWWDIR%%/inc/lang/ta/diff.txt +%%WWWDIR%%/inc/lang/ta/draft.txt +%%WWWDIR%%/inc/lang/ta/edit.txt +%%WWWDIR%%/inc/lang/ta/jquery.ui.datepicker.js %%WWWDIR%%/inc/lang/ta/lang.php %%WWWDIR%%/inc/lang/th/admin.txt %%WWWDIR%%/inc/lang/th/adminplugins.txt @@ -2330,6 +2119,7 @@ %%WWWDIR%%/lib/images/admin/plugin.png %%WWWDIR%%/lib/images/admin/popularity.png %%WWWDIR%%/lib/images/admin/revert.png +%%WWWDIR%%/lib/images/admin/styling.png %%WWWDIR%%/lib/images/admin/usermanager.png %%WWWDIR%%/lib/images/blank.gif %%WWWDIR%%/lib/images/bullet.png @@ -2491,14 +2281,12 @@ %%WWWDIR%%/lib/images/interwiki/amazon.gif %%WWWDIR%%/lib/images/interwiki/amazon.uk.gif %%WWWDIR%%/lib/images/interwiki/callto.gif -%%WWWDIR%%/lib/images/interwiki/coral.gif %%WWWDIR%%/lib/images/interwiki/doku.gif -%%WWWDIR%%/lib/images/interwiki/dokubug.gif %%WWWDIR%%/lib/images/interwiki/google.gif %%WWWDIR%%/lib/images/interwiki/paypal.gif %%WWWDIR%%/lib/images/interwiki/phpfn.gif -%%WWWDIR%%/lib/images/interwiki/sb.gif %%WWWDIR%%/lib/images/interwiki/skype.gif +%%WWWDIR%%/lib/images/interwiki/tel.gif %%WWWDIR%%/lib/images/interwiki/user.png %%WWWDIR%%/lib/images/interwiki/wp.gif %%WWWDIR%%/lib/images/interwiki/wpde.gif @@ -2745,13 +2533,18 @@ %%WWWDIR%%/lib/plugins/authad/conf/metadata.php %%WWWDIR%%/lib/plugins/authad/lang/ar/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ar/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/bg/lang.php %%WWWDIR%%/lib/plugins/authad/lang/bg/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/ca/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/lang.php %%WWWDIR%%/lib/plugins/authad/lang/cs/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/da/lang.php %%WWWDIR%%/lib/plugins/authad/lang/da/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/de-informal/lang.php %%WWWDIR%%/lib/plugins/authad/lang/de-informal/settings.php %%WWWDIR%%/lib/plugins/authad/lang/de/lang.php %%WWWDIR%%/lib/plugins/authad/lang/de/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/el/lang.php %%WWWDIR%%/lib/plugins/authad/lang/el/settings.php %%WWWDIR%%/lib/plugins/authad/lang/en/lang.php %%WWWDIR%%/lib/plugins/authad/lang/en/settings.php @@ -2759,34 +2552,50 @@ %%WWWDIR%%/lib/plugins/authad/lang/eo/settings.php %%WWWDIR%%/lib/plugins/authad/lang/es/lang.php %%WWWDIR%%/lib/plugins/authad/lang/es/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/et/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/eu/lang.php %%WWWDIR%%/lib/plugins/authad/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/fa/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/fi/lang.php %%WWWDIR%%/lib/plugins/authad/lang/fi/settings.php %%WWWDIR%%/lib/plugins/authad/lang/fr/lang.php %%WWWDIR%%/lib/plugins/authad/lang/fr/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/gl/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/he/lang.php +%%WWWDIR%%/lib/plugins/authad/lang/he/settings.php %%WWWDIR%%/lib/plugins/authad/lang/hr/lang.php %%WWWDIR%%/lib/plugins/authad/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authad/lang/hu/lang.php %%WWWDIR%%/lib/plugins/authad/lang/hu/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/it/lang.php %%WWWDIR%%/lib/plugins/authad/lang/it/settings.php %%WWWDIR%%/lib/plugins/authad/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ja/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/ka/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ko/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ko/settings.php %%WWWDIR%%/lib/plugins/authad/lang/lv/lang.php %%WWWDIR%%/lib/plugins/authad/lang/lv/settings.php %%WWWDIR%%/lib/plugins/authad/lang/nl/lang.php %%WWWDIR%%/lib/plugins/authad/lang/nl/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/no/lang.php %%WWWDIR%%/lib/plugins/authad/lang/no/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/pl/lang.php %%WWWDIR%%/lib/plugins/authad/lang/pl/settings.php %%WWWDIR%%/lib/plugins/authad/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/authad/lang/pt-br/settings.php %%WWWDIR%%/lib/plugins/authad/lang/pt/lang.php %%WWWDIR%%/lib/plugins/authad/lang/pt/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/ro/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authad/lang/ru/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/sk/lang.php %%WWWDIR%%/lib/plugins/authad/lang/sk/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/sl/lang.php %%WWWDIR%%/lib/plugins/authad/lang/sl/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/sv/lang.php %%WWWDIR%%/lib/plugins/authad/lang/sv/settings.php +%%WWWDIR%%/lib/plugins/authad/lang/tr/lang.php %%WWWDIR%%/lib/plugins/authad/lang/zh-tw/lang.php %%WWWDIR%%/lib/plugins/authad/lang/zh-tw/settings.php %%WWWDIR%%/lib/plugins/authad/lang/zh/lang.php @@ -2800,62 +2609,92 @@ %%WWWDIR%%/lib/plugins/authldap/lang/cs/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/da/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/de-informal/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/de/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/de/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/en/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/en/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/eo/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/es/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/es/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/et/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/fa/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/fi/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/fr/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/fr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/he/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/hr/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/hu/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/it/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ja/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/ko/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ko/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/lv/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/nl/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/nl/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/no/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/pl/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/pt-br/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/pt/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/pt/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/ru/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/sk/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/sl/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/sv/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/tr/settings.php %%WWWDIR%%/lib/plugins/authldap/lang/zh-tw/settings.php +%%WWWDIR%%/lib/plugins/authldap/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authldap/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authldap/plugin.info.txt %%WWWDIR%%/lib/plugins/authmysql/auth.php %%WWWDIR%%/lib/plugins/authmysql/conf/default.php %%WWWDIR%%/lib/plugins/authmysql/conf/metadata.php +%%WWWDIR%%/lib/plugins/authmysql/lang/bg/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/bg/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/cs/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/da/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/de-informal/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/de/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/de/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/en/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/en/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/eo/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/es/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/es/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/fa/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/fi/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/fr/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/fr/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/he/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/hr/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/hr/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/hu/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/it/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/ja/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ja/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/ko/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ko/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/lv/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/nl/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/nl/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/no/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/pl/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/pt-br/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/pt/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/pt/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/ru/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/ru/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sk/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sl/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/sv/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/tr/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/tr/settings.php %%WWWDIR%%/lib/plugins/authmysql/lang/zh-tw/settings.php +%%WWWDIR%%/lib/plugins/authmysql/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authmysql/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authmysql/plugin.info.txt %%WWWDIR%%/lib/plugins/authpgsql/auth.php @@ -2890,6 +2729,69 @@ %%WWWDIR%%/lib/plugins/authpgsql/lang/zh/settings.php %%WWWDIR%%/lib/plugins/authpgsql/plugin.info.txt %%WWWDIR%%/lib/plugins/authplain/auth.php +%%WWWDIR%%/lib/plugins/authplain/lang/af/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ar/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/az/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/bn/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ca-valencia/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ca/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/da/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/de-informal/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/de/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/el/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/en/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/eo/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/es/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/et/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/eu/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fi/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fo/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/gl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/he/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/hr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ia/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/id-ni/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/id/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/is/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/it/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ja/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ka/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/kk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/km/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ko/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ku/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/la/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/lb/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/lt/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/lv/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/mg/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/mk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/mr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ms/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ne/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/nl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/no/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/pl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/pt/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ro/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/ru/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sl/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sq/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/sv/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/th/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/tr/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/uk/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/vi/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/zh-tw/lang.php +%%WWWDIR%%/lib/plugins/authplain/lang/zh/lang.php %%WWWDIR%%/lib/plugins/authplain/plugin.info.txt %%WWWDIR%%/lib/plugins/config/admin.php %%WWWDIR%%/lib/plugins/config/images/danger.png @@ -3003,6 +2905,7 @@ %%WWWDIR%%/lib/plugins/extension/helper/gui.php %%WWWDIR%%/lib/plugins/extension/helper/list.php %%WWWDIR%%/lib/plugins/extension/helper/repository.php +%%WWWDIR%%/lib/plugins/extension/images/bug.gif %%WWWDIR%%/lib/plugins/extension/images/disabled.png %%WWWDIR%%/lib/plugins/extension/images/donate.png %%WWWDIR%%/lib/plugins/extension/images/down.png @@ -3015,8 +2918,16 @@ %%WWWDIR%%/lib/plugins/extension/images/template.png %%WWWDIR%%/lib/plugins/extension/images/up.png %%WWWDIR%%/lib/plugins/extension/images/warning.png +%%WWWDIR%%/lib/plugins/extension/lang/bg/lang.php %%WWWDIR%%/lib/plugins/extension/lang/cs/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/cs/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/cs/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/cs/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/cs/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/da/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/da/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/da/intro_templates.txt +%%WWWDIR%%/lib/plugins/extension/lang/da/lang.php %%WWWDIR%%/lib/plugins/extension/lang/de/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/de/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/de/intro_search.txt @@ -3033,9 +2944,12 @@ %%WWWDIR%%/lib/plugins/extension/lang/eo/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/eo/lang.php %%WWWDIR%%/lib/plugins/extension/lang/es/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/es/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/es/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/es/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/es/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fa/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/fi/lang.php %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/fr/intro_search.txt @@ -3051,6 +2965,8 @@ %%WWWDIR%%/lib/plugins/extension/lang/hu/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/hu/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/hu/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/it/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/it/lang.php %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/ja/intro_plugins.txt @@ -3075,10 +2991,20 @@ %%WWWDIR%%/lib/plugins/extension/lang/pt-br/intro_search.txt %%WWWDIR%%/lib/plugins/extension/lang/pt-br/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/intro_templates.txt +%%WWWDIR%%/lib/plugins/extension/lang/pt/lang.php +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_plugins.txt +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_search.txt +%%WWWDIR%%/lib/plugins/extension/lang/ru/intro_templates.txt %%WWWDIR%%/lib/plugins/extension/lang/ru/lang.php %%WWWDIR%%/lib/plugins/extension/lang/sk/lang.php %%WWWDIR%%/lib/plugins/extension/lang/tr/lang.php %%WWWDIR%%/lib/plugins/extension/lang/zh-tw/intro_install.txt +%%WWWDIR%%/lib/plugins/extension/lang/zh-tw/intro_plugins.txt %%WWWDIR%%/lib/plugins/extension/lang/zh-tw/lang.php %%WWWDIR%%/lib/plugins/extension/lang/zh/intro_install.txt %%WWWDIR%%/lib/plugins/extension/lang/zh/intro_plugins.txt @@ -3321,6 +3247,33 @@ %%WWWDIR%%/lib/plugins/revert/plugin.info.txt %%WWWDIR%%/lib/plugins/safefnrecode/action.php %%WWWDIR%%/lib/plugins/safefnrecode/plugin.info.txt +%%WWWDIR%%/lib/plugins/styling/README +%%WWWDIR%%/lib/plugins/styling/action.php +%%WWWDIR%%/lib/plugins/styling/admin.php +%%WWWDIR%%/lib/plugins/styling/iris.js +%%WWWDIR%%/lib/plugins/styling/lang/bg/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/de/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/de/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/en/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/en/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/es/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/es/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/fr/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/fr/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/ja/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/ja/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/ko/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/ko/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/nl/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/nl/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/pt-br/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/pt-br/lang.php +%%WWWDIR%%/lib/plugins/styling/lang/zh/intro.txt +%%WWWDIR%%/lib/plugins/styling/lang/zh/lang.php +%%WWWDIR%%/lib/plugins/styling/plugin.info.txt +%%WWWDIR%%/lib/plugins/styling/popup.php +%%WWWDIR%%/lib/plugins/styling/script.js +%%WWWDIR%%/lib/plugins/styling/style.less %%WWWDIR%%/lib/plugins/syntax.php %%WWWDIR%%/lib/plugins/usermanager/admin.php %%WWWDIR%%/lib/plugins/usermanager/images/search.png @@ -3359,6 +3312,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/da/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/da/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/da/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/da/list.txt @@ -3399,6 +3353,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/es/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/es/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/es/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/es/list.txt @@ -3549,6 +3504,7 @@ %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/add.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/delete.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/edit.txt +%%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/import.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/intro.txt %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/lang.php %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br/list.txt @@ -3642,7 +3598,6 @@ %%WWWDIR%%/lib/scripts/compatibility.js %%WWWDIR%%/lib/scripts/cookie.js %%WWWDIR%%/lib/scripts/delay.js -%%WWWDIR%%/lib/scripts/drag.js %%WWWDIR%%/lib/scripts/edit.js %%WWWDIR%%/lib/scripts/editor.js %%WWWDIR%%/lib/scripts/fileuploader.js @@ -3653,7 +3608,6 @@ %%WWWDIR%%/lib/scripts/index.js %%WWWDIR%%/lib/scripts/jquery/jquery-migrate.js %%WWWDIR%%/lib/scripts/jquery/jquery-migrate.min.js -%%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/animated-overlay.gif %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_0_aaaaaa_40x100.png %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_75_ffffff_40x100.png %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_55_fbf9ee_1x400.png @@ -3683,7 +3637,6 @@ %%WWWDIR%%/lib/scripts/textselection.js %%WWWDIR%%/lib/scripts/toolbar.js %%WWWDIR%%/lib/scripts/tree.js -%%WWWDIR%%/lib/scripts/tw-sack.js %%WWWDIR%%/lib/styles/all.css %%WWWDIR%%/lib/styles/feed.css %%WWWDIR%%/lib/styles/geshi.less @@ -3746,6 +3699,24 @@ %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-arrows.png %%WWWDIR%%/lib/tpl/dokuwiki/images/toc-bullet.png %%WWWDIR%%/lib/tpl/dokuwiki/images/usertools.png +%%WWWDIR%%/lib/tpl/dokuwiki/lang/de/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/de/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/en/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/en/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/es/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/es/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/fr/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ja/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ko/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/ko/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/nl/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/nl/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/pt-br/style.txt +%%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/lang.php +%%WWWDIR%%/lib/tpl/dokuwiki/lang/zh/style.txt %%WWWDIR%%/lib/tpl/dokuwiki/main.php %%WWWDIR%%/lib/tpl/dokuwiki/mediamanager.php %%WWWDIR%%/lib/tpl/dokuwiki/script.js @@ -3754,6 +3725,281 @@ %%WWWDIR%%/lib/tpl/dokuwiki/tpl_footer.php %%WWWDIR%%/lib/tpl/dokuwiki/tpl_header.php %%WWWDIR%%/lib/tpl/index.php +%%WWWDIR%%/vendor/README +%%WWWDIR%%/vendor/autoload.php +%%WWWDIR%%/vendor/composer/ClassLoader.php +%%WWWDIR%%/vendor/composer/autoload_classmap.php +%%WWWDIR%%/vendor/composer/autoload_namespaces.php +%%WWWDIR%%/vendor/composer/autoload_psr4.php +%%WWWDIR%%/vendor/composer/autoload_real.php +%%WWWDIR%%/vendor/composer/installed.json +%%WWWDIR%%/vendor/easybook/geshi/README.md +%%WWWDIR%%/vendor/easybook/geshi/geshi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/4cs.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/6502acme.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/6502kickass.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/6502tasm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/68000devpac.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/abap.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/actionscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/actionscript3.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ada.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/aimms.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/algol68.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/apache.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/applescript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/apt_sources.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/arm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/asm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/asp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/asymptote.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/autoconf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/autohotkey.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/autoit.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/avisynth.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/awk.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bascomavr.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bash.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/basic4gl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/batch.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bibtex.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/blitzbasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/bnf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/boo.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c_loadrunner.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c_mac.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/c_winapi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/caddcl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cadlisp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cfdg.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cfm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/chaiscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/chapel.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cil.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/clojure.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cmake.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cobol.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/coffeescript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cpp-qt.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cpp-winapi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cpp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/csharp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/css.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/cuesheet.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/d.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dart.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dcl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dcpu16.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dcs.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/delphi.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/diff.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/div.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dos.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/dot.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/e.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ecmascript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/eiffel.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/email.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/epc.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/erlang.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/euphoria.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ezt.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/f1.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/falcon.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/fo.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/fortran.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/freebasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/freeswitch.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/fsharp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gambas.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gdb.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/genero.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/genie.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gettext.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/glsl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gml.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gnuplot.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/go.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/groovy.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/gwbasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/haskell.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/haxe.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/hicest.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/hq9plus.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/html4strict.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/html5.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/icon.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/idl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ini.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/inno.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/intercal.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/io.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ispfpanel.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/j.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/java.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/java5.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/javascript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/jcl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/jquery.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/kixtart.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/klonec.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/klonecpp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/latex.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lb.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ldif.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lisp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/llvm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/locobasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/logtalk.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lolcode.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lotusformulas.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lotusscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lscript.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lsl2.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/lua.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/m68k.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/magiksf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/make.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mapbasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/matlab.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mirc.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mmix.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/modula2.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/modula3.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mpasm.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mxml.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/mysql.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/nagios.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/netrexx.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/newlisp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/nginx.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/nsis.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oberon2.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/objc.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/objeck.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ocaml-brief.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/ocaml.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/octave.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oobas.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oorexx.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oracle11.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oracle8.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oxygene.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/oz.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/parasail.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/parigp.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pascal.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pcre.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/per.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/perl.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/perl6.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pf.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/php-brief.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/php.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pic16.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pike.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pixelbender.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pli.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/plsql.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/postgresql.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/povray.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/powerbuilder.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/powershell.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/proftpd.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/progress.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/prolog.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/properties.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/providex.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/purebasic.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pycon.php +%%WWWDIR%%/vendor/easybook/geshi/geshi/pys60.php *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Wed Aug 12 00:31:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E15F99D668; Wed, 12 Aug 2015 00:31:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1AAF6FA0; Wed, 12 Aug 2015 00:31:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C0VdGY023005; Wed, 12 Aug 2015 00:31:39 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C0VcYi023000; Wed, 12 Aug 2015 00:31:38 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508120031.t7C0VcYi023000@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 12 Aug 2015 00:31:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393995 - in head: mail/thunderbird/files www/firefox-esr/files www/firefox/files www/libxul/files www/seamonkey/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 00:31:40 -0000 Author: jkim Date: Wed Aug 12 00:31:38 2015 New Revision: 393995 URL: https://svnweb.freebsd.org/changeset/ports/393995 Log: Fix linker failures with graphite2 1.3.0. Added: head/mail/thunderbird/files/patch-gfx-thebes-moz.build (contents, props changed) head/www/firefox-esr/files/patch-gfx-thebes-moz.build (contents, props changed) head/www/firefox/files/patch-gfx-thebes-moz.build (contents, props changed) head/www/libxul/files/patch-gfx-thebes-moz.build (contents, props changed) head/www/seamonkey/files/patch-gfx-thebes-moz.build (contents, props changed) Added: head/mail/thunderbird/files/patch-gfx-thebes-moz.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/thunderbird/files/patch-gfx-thebes-moz.build Wed Aug 12 00:31:38 2015 (r393995) @@ -0,0 +1,10 @@ +--- mozilla/gfx/thebes/moz.build.orig 2015-07-07 13:45:40.000000000 -0400 ++++ mozilla/gfx/thebes/moz.build 2015-08-11 19:11:43.406562000 -0400 +@@ -304,7 +304,5 @@ + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] + +-DEFINES['GRAPHITE2_STATIC'] = True +- + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True Added: head/www/firefox-esr/files/patch-gfx-thebes-moz.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox-esr/files/patch-gfx-thebes-moz.build Wed Aug 12 00:31:38 2015 (r393995) @@ -0,0 +1,10 @@ +--- gfx/thebes/moz.build.orig 2015-08-06 13:40:59.000000000 -0400 ++++ gfx/thebes/moz.build 2015-08-11 19:26:38.799990000 -0400 +@@ -304,7 +304,5 @@ + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] + +-DEFINES['GRAPHITE2_STATIC'] = True +- + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True Added: head/www/firefox/files/patch-gfx-thebes-moz.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-gfx-thebes-moz.build Wed Aug 12 00:31:38 2015 (r393995) @@ -0,0 +1,11 @@ +--- gfx/thebes/moz.build.orig 2015-08-07 11:54:06.000000000 -0400 ++++ gfx/thebes/moz.build 2015-08-11 19:23:49.961640000 -0400 +@@ -300,8 +300,6 @@ + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] + +-DEFINES['GRAPHITE2_STATIC'] = True +- + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True + Added: head/www/libxul/files/patch-gfx-thebes-moz.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libxul/files/patch-gfx-thebes-moz.build Wed Aug 12 00:31:38 2015 (r393995) @@ -0,0 +1,10 @@ +--- gfx/thebes/moz.build.orig 2015-08-06 13:40:59.000000000 -0400 ++++ gfx/thebes/moz.build 2015-08-11 19:26:38.799990000 -0400 +@@ -304,7 +304,5 @@ + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] + +-DEFINES['GRAPHITE2_STATIC'] = True +- + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True Added: head/www/seamonkey/files/patch-gfx-thebes-moz.build ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/seamonkey/files/patch-gfx-thebes-moz.build Wed Aug 12 00:31:38 2015 (r393995) @@ -0,0 +1,10 @@ +--- mozilla/gfx/thebes/moz.build.orig 2015-03-21 22:59:27.000000000 -0400 ++++ mozilla/gfx/thebes/moz.build 2015-08-11 19:36:15.404249000 -0400 +@@ -299,7 +299,5 @@ + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] + +-DEFINES['GRAPHITE2_STATIC'] = True +- + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True From owner-svn-ports-all@freebsd.org Wed Aug 12 01:09:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1188B99DD33; Wed, 12 Aug 2015 01:09:01 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01EAFF38; Wed, 12 Aug 2015 01:09:01 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C190cX038067; Wed, 12 Aug 2015 01:09:00 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C190ur038066; Wed, 12 Aug 2015 01:09:00 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120109.t7C190ur038066@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 01:09:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393996 - head/www/validator X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 01:09:01 -0000 Author: pgollucci Date: Wed Aug 12 01:09:00 2015 New Revision: 393996 URL: https://svnweb.freebsd.org/changeset/ports/393996 Log: www/validator: fix w/ perl 5.22+ - Needs www/p5-CGI.pm for perl 5.22+ - Bump PORTREVISION @dirrm already committed by amdmi3@ PR: 201616 Submitted by: yasu@utahime.org Approved by: cyberbotx@cyberbotx.com Modified: head/www/validator/Makefile Modified: head/www/validator/Makefile ============================================================================== --- head/www/validator/Makefile Wed Aug 12 00:31:38 2015 (r393995) +++ head/www/validator/Makefile Wed Aug 12 01:09:00 2015 (r393996) @@ -3,6 +3,7 @@ PORTNAME= validator PORTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://validator.w3.org/dist/ \ http://www.cyberbotx.com/w3c-validator/ @@ -39,6 +40,12 @@ HTML_TIDY_DESC= Enable HTML Markup Clean HTML_TIDY_RUN_DEPENDS= p5-HTML-Tidy>=0:${PORTSDIR}/textproc/p5-HTML-Tidy +.include + +.if ${PERL_LEVEL} >= 502200 +RUN_DEPENDS+= p5-CGI.pm>=0:${PORTSDIR}/www/p5-CGI.pm +.endif + post-extract: @${RM} ${WRKSRC}/README.cvs @${RM} -rf ${WRKSRC}/misc @@ -56,4 +63,4 @@ do-install: ${INSTALL_SCRIPT} ${WRKSRC}/httpd/cgi-bin/* ${STAGEDIR}${PREFIX}/www/validator/httpd/cgi-bin (cd ${WRKSRC}/share && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/validator/share/) -.include +.include From owner-svn-ports-all@freebsd.org Wed Aug 12 01:17:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E97F99E0D1; Wed, 12 Aug 2015 01:17:20 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1FED163E; Wed, 12 Aug 2015 01:17:19 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C1HJf7042138; Wed, 12 Aug 2015 01:17:19 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C1HJhP042136; Wed, 12 Aug 2015 01:17:19 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201508120117.t7C1HJhP042136@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Wed, 12 Aug 2015 01:17:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393997 - head/www/phalcon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 01:17:20 -0000 Author: vanilla Date: Wed Aug 12 01:17:18 2015 New Revision: 393997 URL: https://svnweb.freebsd.org/changeset/ports/393997 Log: Upgrade to 2.0.6. PR: 202187 Submitted by: maintainer Modified: head/www/phalcon/Makefile head/www/phalcon/distinfo Modified: head/www/phalcon/Makefile ============================================================================== --- head/www/phalcon/Makefile Wed Aug 12 01:09:00 2015 (r393996) +++ head/www/phalcon/Makefile Wed Aug 12 01:17:18 2015 (r393997) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phalcon -PORTVERSION= 2.0.5 +PORTVERSION= 2.0.6 DISTVERSIONPREFIX= ${PORTNAME}-v CATEGORIES= www Modified: head/www/phalcon/distinfo ============================================================================== --- head/www/phalcon/distinfo Wed Aug 12 01:09:00 2015 (r393996) +++ head/www/phalcon/distinfo Wed Aug 12 01:17:18 2015 (r393997) @@ -1,2 +1,2 @@ -SHA256 (phalcon-cphalcon-phalcon-v2.0.5_GH0.tar.gz) = 7288dcaf55c11e345f2f15a609ff22029365d2597de321f74d7af25ab39128a4 -SIZE (phalcon-cphalcon-phalcon-v2.0.5_GH0.tar.gz) = 5000549 +SHA256 (phalcon-cphalcon-phalcon-v2.0.6_GH0.tar.gz) = 5bab4f86a9a1fdbad3539da43771514a0a437d6fad6c42bc11f14d1f155b23ca +SIZE (phalcon-cphalcon-phalcon-v2.0.6_GH0.tar.gz) = 5013004 From owner-svn-ports-all@freebsd.org Wed Aug 12 01:35:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5246699E5D6; Wed, 12 Aug 2015 01:35:19 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 261221DF5; Wed, 12 Aug 2015 01:35:19 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C1ZJO1050264; Wed, 12 Aug 2015 01:35:19 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C1ZITM050262; Wed, 12 Aug 2015 01:35:18 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120135.t7C1ZITM050262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 01:35:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393998 - head/ports-mgmt/freebsd-bugzilla-cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 01:35:19 -0000 Author: pgollucci Date: Wed Aug 12 01:35:17 2015 New Revision: 393998 URL: https://svnweb.freebsd.org/changeset/ports/393998 Log: ports-mgmt/freebsd-bugzilla-cli: update 0.10.1->0.10.6 Changes: change bz get to output where the pr went to change bz patch to pull the pr first via bz get fix bz timeout to work when there are no flags fix bz close to allow no comment for real fix bz search -r to work with the backend pybugz [1] Reported by: jmg@ [1] Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile head/ports-mgmt/freebsd-bugzilla-cli/distinfo Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/Makefile Wed Aug 12 01:17:18 2015 (r393997) +++ head/ports-mgmt/freebsd-bugzilla-cli/Makefile Wed Aug 12 01:35:17 2015 (r393998) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= freebsd-bugzilla-cli -PORTVERSION= 0.10.1 +PORTVERSION= 0.10.6 CATEGORIES= ports-mgmt MAINTAINER= pgollucci@FreeBSD.org @@ -12,7 +12,7 @@ LICENSE= APACHE20 OPTIONS_GROUP= BACKEND OPTIONS_GROUP_BACKEND= PYBUGZ -OPTIONS_DEFAULT= PYBUGZ +OPTIONS_DEFAULT= PYBUGZK OPTIONS_SUB= yes PYBUGZ_DESC= use devel/pybugz for bugzilla interface Modified: head/ports-mgmt/freebsd-bugzilla-cli/distinfo ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/distinfo Wed Aug 12 01:17:18 2015 (r393997) +++ head/ports-mgmt/freebsd-bugzilla-cli/distinfo Wed Aug 12 01:35:17 2015 (r393998) @@ -1,2 +1,2 @@ -SHA256 (pgollucci-freebsd-bugzilla-cli-0.10.1_GH0.tar.gz) = 204c1d1e54efa2928dfc4a9931a3d88bf3fd8d5188669fe598d4c376e84db077 -SIZE (pgollucci-freebsd-bugzilla-cli-0.10.1_GH0.tar.gz) = 13336 +SHA256 (pgollucci-freebsd-bugzilla-cli-0.10.6_GH0.tar.gz) = 6c27a2649f035809964288ae0894646f0de761d7c4cbb6e33d4fd78bc47a0d0f +SIZE (pgollucci-freebsd-bugzilla-cli-0.10.6_GH0.tar.gz) = 13429 From owner-svn-ports-all@freebsd.org Wed Aug 12 01:36:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 945D899E64E; Wed, 12 Aug 2015 01:36:36 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8481C98; Wed, 12 Aug 2015 01:36:36 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C1aaQ0050413; Wed, 12 Aug 2015 01:36:36 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C1aa7c050412; Wed, 12 Aug 2015 01:36:36 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120136.t7C1aa7c050412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 01:36:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393999 - head/ports-mgmt/freebsd-bugzilla-cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 01:36:36 -0000 Author: pgollucci Date: Wed Aug 12 01:36:35 2015 New Revision: 393999 URL: https://svnweb.freebsd.org/changeset/ports/393999 Log: fix typo Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/Makefile Wed Aug 12 01:35:17 2015 (r393998) +++ head/ports-mgmt/freebsd-bugzilla-cli/Makefile Wed Aug 12 01:36:35 2015 (r393999) @@ -12,7 +12,7 @@ LICENSE= APACHE20 OPTIONS_GROUP= BACKEND OPTIONS_GROUP_BACKEND= PYBUGZ -OPTIONS_DEFAULT= PYBUGZK +OPTIONS_DEFAULT= PYBUGZ OPTIONS_SUB= yes PYBUGZ_DESC= use devel/pybugz for bugzilla interface From owner-svn-ports-all@freebsd.org Wed Aug 12 01:45:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 012FF99E8FC; Wed, 12 Aug 2015 01:45:38 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD369919; Wed, 12 Aug 2015 01:45:37 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C1jb81054507; Wed, 12 Aug 2015 01:45:37 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C1jbo0054502; Wed, 12 Aug 2015 01:45:37 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508120145.t7C1jbo0054502@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 12 Aug 2015 01:45:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394000 - head/net-mgmt/lldpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 01:45:38 -0000 Author: junovitch Date: Wed Aug 12 01:45:36 2015 New Revision: 394000 URL: https://svnweb.freebsd.org/changeset/ports/394000 Log: net-mgmt/lldpd: update 0.7.15 -> 0.7.16 - Explicitly set --enable-hardening configure option - Chase upstream bash completion path change in pkg-plist PR: 202245 Submitted by: Mathieu Simon (maintainer) Approved by: pgollucci (mentor) Modified: head/net-mgmt/lldpd/Makefile head/net-mgmt/lldpd/distinfo head/net-mgmt/lldpd/pkg-plist Modified: head/net-mgmt/lldpd/Makefile ============================================================================== --- head/net-mgmt/lldpd/Makefile Wed Aug 12 01:36:35 2015 (r393999) +++ head/net-mgmt/lldpd/Makefile Wed Aug 12 01:45:36 2015 (r394000) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lldpd -PORTVERSION= 0.7.15 +PORTVERSION= 0.7.16 CATEGORIES= net-mgmt MASTER_SITES= http://media.luffy.cx/files/${PORTNAME}/ @@ -18,6 +18,7 @@ USE_LDCONFIG= yes USE_RC_SUBR= ${PORTNAME} GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-doxygen-doc \ + --enable-hardening \ --enable-privsep \ --with-privsep-chroot=/var/empty \ --with-lldpd-ctl-socket=/var/run/lldpd.socket \ Modified: head/net-mgmt/lldpd/distinfo ============================================================================== --- head/net-mgmt/lldpd/distinfo Wed Aug 12 01:36:35 2015 (r393999) +++ head/net-mgmt/lldpd/distinfo Wed Aug 12 01:45:36 2015 (r394000) @@ -1,2 +1,2 @@ -SHA256 (lldpd-0.7.15.tar.gz) = c891d6d4480a6a890561ac43d8cc923bd027deb82a3999d65f37d96ca368c246 -SIZE (lldpd-0.7.15.tar.gz) = 1529127 +SHA256 (lldpd-0.7.16.tar.gz) = a0b85a5e685b8e7dad08b6f20ea79d8bec47d8dbf39daef419bd20ad7f37d63f +SIZE (lldpd-0.7.16.tar.gz) = 1536603 Modified: head/net-mgmt/lldpd/pkg-plist ============================================================================== --- head/net-mgmt/lldpd/pkg-plist Wed Aug 12 01:36:35 2015 (r393999) +++ head/net-mgmt/lldpd/pkg-plist Wed Aug 12 01:45:36 2015 (r394000) @@ -1,11 +1,10 @@ -%%BASH%%etc/bash_completion.d/lldpcli.bash-completion %%ETCDIR%%.d/README.conf include/lldp-const.h include/lldpctl.h lib/liblldpctl.a lib/liblldpctl.so lib/liblldpctl.so.4 -lib/liblldpctl.so.4.6.0 +lib/liblldpctl.so.4.7.0 libdata/pkgconfig/lldpctl.pc man/man8/lldpcli.8.gz man/man8/lldpctl.8.gz @@ -13,6 +12,7 @@ man/man8/lldpd.8.gz sbin/lldpcli sbin/lldpctl sbin/lldpd +%%BASH%%share/bash-completion/completions/lldpcli %%DOCS%%%%PORTDOCS%%%%DOCSDIR%%/CONTRIBUTE.md %%DOCS%%%%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%DOCS%%%%PORTDOCS%%%%DOCSDIR%%/NEWS From owner-svn-ports-all@freebsd.org Wed Aug 12 01:57:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7646E99EC4F; Wed, 12 Aug 2015 01:57:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C375F83; Wed, 12 Aug 2015 01:57:54 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C1vsrl058733; Wed, 12 Aug 2015 01:57:54 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C1vro3058731; Wed, 12 Aug 2015 01:57:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508120157.t7C1vro3058731@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 12 Aug 2015 01:57:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394001 - head/www/py-nevow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 01:57:54 -0000 Author: amdmi3 Date: Wed Aug 12 01:57:53 2015 New Revision: 394001 URL: https://svnweb.freebsd.org/changeset/ports/394001 Log: - Fix fetch - Add NO_ARCH - Drop @dirrm* from plist Approved by: portmgr blanket Modified: head/www/py-nevow/Makefile head/www/py-nevow/pkg-plist Modified: head/www/py-nevow/Makefile ============================================================================== --- head/www/py-nevow/Makefile Wed Aug 12 01:45:36 2015 (r394000) +++ head/www/py-nevow/Makefile Wed Aug 12 01:57:53 2015 (r394001) @@ -5,7 +5,8 @@ PORTNAME= nevow PORTVERSION= 0.10.0 PORTREVISION= 3 CATEGORIES= www python devel -MASTER_SITES= http://divmod.org/trac/attachment/wiki/SoftwareReleases/ +MASTER_SITES= http://divmod.org/trac/attachment/wiki/SoftwareReleases/ \ + https://pypi.python.org/packages/source/N/Nevow/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Nevow-${PORTVERSION} EXTRACT_SUFX= .tar.gz?format=raw @@ -13,10 +14,9 @@ EXTRACT_SUFX= .tar.gz?format=raw MAINTAINER= nivit@FreeBSD.org COMMENT= Web application templating system, based on the Twisted Woven -BROKEN= Unfetchable - USE_PYTHON= distutils autoplist USES= gettext python twisted:web +NO_ARCH= yes SUB_FILES= pkg-message PKGMESSAGE= ${WRKSRC}/pkg-message Modified: head/www/py-nevow/pkg-plist ============================================================================== --- head/www/py-nevow/pkg-plist Wed Aug 12 01:45:36 2015 (r394000) +++ head/www/py-nevow/pkg-plist Wed Aug 12 01:57:53 2015 (r394001) @@ -193,87 +193,3 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xul/__init__.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xul/xul_example.xul %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xul/xul_nevow.py -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xul -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/wsgi -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/with_axiom -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/userdb -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tree -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/todo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/table -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tabbed -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/progress -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/postit/styles -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/postit/images -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/postit -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pastebin/templates -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pastebin/static/images -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pastebin/static/css -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pastebin/static -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pastebin/pastebin/web -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pastebin/pastebin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pastebin -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/objcontainer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/nestedsequence -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/most_basic -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/manualform -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/macros -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/logout_guard -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/livepage -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/liveanimal -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/irenderer -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/image_uploader -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/it/LC_MESSAGES -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/it -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/fr/LC_MESSAGES -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/fr -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/fi/LC_MESSAGES -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/fi -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/en/LC_MESSAGES -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/en-us/LC_MESSAGES -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/en-us -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/en -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/de/LC_MESSAGES -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale/de -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n/locale -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/i18n -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/http_auth -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hello -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/guarded -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/fragments -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/formpost -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/formbuilder -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/files -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/disktemplates -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/db -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/customform -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/children -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/canvas -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/cal -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/blogengine/styles -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/blogengine/images -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/blogengine -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/athenademo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/advanced_manualform -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/old -%%PORTDOCS%%@dirrm %%DOCSDIR%%/man -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/listings/gettingstarted -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/listings -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part01/listings/nevow/plugins -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part01/listings/nevow -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part01/listings/chatthing/js -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part01/listings/chatthing -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part01/listings -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part01 -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part00/listings/nevow/plugins -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part00/listings/nevow -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part00/listings/echothing/js -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part00/listings/echothing -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part00/listings -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial/part00 -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto/chattutorial -%%PORTDOCS%%@dirrm %%DOCSDIR%%/howto -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-all@freebsd.org Wed Aug 12 02:02:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4638B99EE09; Wed, 12 Aug 2015 02:02:15 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 36DC9337; Wed, 12 Aug 2015 02:02:15 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C22FR6062664; Wed, 12 Aug 2015 02:02:15 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C22Fek062663; Wed, 12 Aug 2015 02:02:15 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508120202.t7C22Fek062663@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 02:02:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394002 - head/net-p2p/zetacoin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 02:02:15 -0000 Author: pgollucci Date: Wed Aug 12 02:02:14 2015 New Revision: 394002 URL: https://svnweb.freebsd.org/changeset/ports/394002 Log: net-p2p/zetacoin: mark broken on armv6 Reported by: pkg-fallout Modified: head/net-p2p/zetacoin/Makefile Modified: head/net-p2p/zetacoin/Makefile ============================================================================== --- head/net-p2p/zetacoin/Makefile Wed Aug 12 01:57:53 2015 (r394001) +++ head/net-p2p/zetacoin/Makefile Wed Aug 12 02:02:14 2015 (r394002) @@ -13,6 +13,8 @@ LICENSE= MIT BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconf LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs +BROKEN_armv6= #error Please implement AtomicPointer for this platform. + USE_GITHUB= yes GH_TAGNAME= 22ddb9b From owner-svn-ports-all@freebsd.org Wed Aug 12 02:59:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 306C89989C3 for ; Wed, 12 Aug 2015 02:59:06 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from mail-ig0-f177.google.com (mail-ig0-f177.google.com [209.85.213.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0264A9C6 for ; Wed, 12 Aug 2015 02:59:05 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: by igbij6 with SMTP id ij6so103684227igb.1 for ; Tue, 11 Aug 2015 19:59:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=d4RgDDZprtfoSzub5mz0C0voLUzk+6Wkf1qGQ7d5tnU=; b=HLU+zQQUVJeClg3Wr83Gp2quVNa0qimAEj6ZxYdYGBt/HddZwp/XzheJHSR1lKOwwv 9EK6ebAY0o5ZrvueEttJMEdbo8wYZV/+2hvwzufQhNr/bPOX6YJRQvBcXTjgV8b0Ingw l+Obly/aGkMqUQavwqjWUOaOJ4Q+a2Eu8A8RHaAcvOxcS2R3ES04AYZAI+UwdMv/nJP7 iM9WghZWISF1Y8UcIi3KAtjtsPzz3q70jcItQDIs7dRmd8hrmpwKvUYNOpciyMccKeJT 4m0ixnm3UyZQLGAn/ncufKfJUjNLVuroJeebgZo53rksajMHEEZCEJFB2W/y76N/OrNh +yHA== X-Gm-Message-State: ALoCoQkNeA/SIK9kQVcv/3iKYeaYgsfMy0LO47pcV+NKUQTZ4OHbgWDG9OLUaU/ByVb+NAXWopuf X-Received: by 10.50.178.133 with SMTP id cy5mr23024224igc.5.1439348344870; Tue, 11 Aug 2015 19:59:04 -0700 (PDT) MIME-Version: 1.0 Received: by 10.50.195.230 with HTTP; Tue, 11 Aug 2015 19:58:25 -0700 (PDT) X-Originating-IP: [71.246.253.67] In-Reply-To: References: <201507271932.t6RJW73v037092@repo.freebsd.org> From: "Philip M. Gollucci" Date: Tue, 11 Aug 2015 22:58:25 -0400 Message-ID: Subject: Re: svn commit: r393026 - head/Mk/Uses To: Mathieu Arnold Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 02:59:06 -0000 Instead of force commits, you could actually fix the commit msg. On Mon, Jul 27, 2015 at 5:55 PM, Mathieu Arnold wrote: > > > +--On 27 juillet 2015 15:51:55 -0400 "Philip M. Gollucci" > wrote: > | Why don't we like use the revprop edit ? > > what for ? > > -- > Mathieu Arnold -- --------------------------------------------------------------------------------- Curb: Your ride is here 4096R/D21D2752 ECDF B597 B54B 7F92 753E E0EA F699 A450 D21D 2752 Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. Director IT Operations, Curb What doesn't kill us can only make us stronger; Except it almost kills you. From owner-svn-ports-all@freebsd.org Wed Aug 12 03:11:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47F04998E74; Wed, 12 Aug 2015 03:11:39 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3803B16FD; Wed, 12 Aug 2015 03:11:39 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C3BdrP092002; Wed, 12 Aug 2015 03:11:39 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C3Bc6e091999; Wed, 12 Aug 2015 03:11:38 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508120311.t7C3Bc6e091999@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 12 Aug 2015 03:11:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394003 - head/databases/pgpool-II-33 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 03:11:39 -0000 Author: junovitch Date: Wed Aug 12 03:11:38 2015 New Revision: 394003 URL: https://svnweb.freebsd.org/changeset/ports/394003 Log: databases/pgpool-II-33: update 3.3.3_1 -> 3.3.7 PR: 201862 Submitted by: Michelle Sullivan (maintainer) Approved by: pgollucci (mentor) Modified: head/databases/pgpool-II-33/Makefile head/databases/pgpool-II-33/distinfo Modified: head/databases/pgpool-II-33/Makefile ============================================================================== --- head/databases/pgpool-II-33/Makefile Wed Aug 12 02:02:14 2015 (r394002) +++ head/databases/pgpool-II-33/Makefile Wed Aug 12 03:11:38 2015 (r394003) @@ -1,11 +1,9 @@ # $FreeBSD$ PORTNAME= pgpool-II -PORTVERSION= 3.3.3 -PORTREVISION= 1 +PORTVERSION= 3.3.7 CATEGORIES= databases -MASTER_SITES= http://www.pgpool.net/mediawiki/images/ \ - LOCAL/matthew/${PORTNAME} +MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= 33 MAINTAINER= michelle@sorbs.net @@ -15,7 +13,7 @@ LICENSE= MIT RUN_DEPENDS= rsync:${PORTSDIR}/net/rsync -USES= gmake libtool pgsql perl5 +USES= gmake libtool perl5 pgsql WANT_PGSQL= client USE_PERL5= run GNU_CONFIGURE= yes Modified: head/databases/pgpool-II-33/distinfo ============================================================================== --- head/databases/pgpool-II-33/distinfo Wed Aug 12 02:02:14 2015 (r394002) +++ head/databases/pgpool-II-33/distinfo Wed Aug 12 03:11:38 2015 (r394003) @@ -1,2 +1,2 @@ -SHA256 (pgpool-II-3.3.3.tar.gz) = b8da35bb50b24f011da9fffef2875035f07cd6da8e3c60f8c0c33323b16214c4 -SIZE (pgpool-II-3.3.3.tar.gz) = 1725512 +SHA256 (pgpool-II-3.3.7.tar.gz) = b1bfc8c48be252f6c4e54521d24a0e28e86d0027b18aa4ccf6b8405508319032 +SIZE (pgpool-II-3.3.7.tar.gz) = 1808677 From owner-svn-ports-all@freebsd.org Wed Aug 12 05:20:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 888DC99FD9F; Wed, 12 Aug 2015 05:20:09 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D169870; Wed, 12 Aug 2015 05:20:09 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C5K99a041204; Wed, 12 Aug 2015 05:20:09 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C5K82T041201; Wed, 12 Aug 2015 05:20:08 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201508120520.t7C5K82T041201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Wed, 12 Aug 2015 05:20:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394004 - head/www/owncloud X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 05:20:09 -0000 Author: kevlo Date: Wed Aug 12 05:20:07 2015 New Revision: 394004 URL: https://svnweb.freebsd.org/changeset/ports/394004 Log: Update to 8.1.1 Modified: head/www/owncloud/Makefile head/www/owncloud/distinfo head/www/owncloud/pkg-plist Modified: head/www/owncloud/Makefile ============================================================================== --- head/www/owncloud/Makefile Wed Aug 12 03:11:38 2015 (r394003) +++ head/www/owncloud/Makefile Wed Aug 12 05:20:07 2015 (r394004) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= owncloud -PORTVERSION= 8.1.0 +PORTVERSION= 8.1.1 CATEGORIES= www MASTER_SITES= http://download.owncloud.org/community/ Modified: head/www/owncloud/distinfo ============================================================================== --- head/www/owncloud/distinfo Wed Aug 12 03:11:38 2015 (r394003) +++ head/www/owncloud/distinfo Wed Aug 12 05:20:07 2015 (r394004) @@ -1,2 +1,2 @@ -SHA256 (owncloud-8.1.0.tar.bz2) = 3d308d3b3d7083ca9fbfdde461ccd4bb66b7fb36f922ade5e6baf1b03bf174ee -SIZE (owncloud-8.1.0.tar.bz2) = 26247599 +SHA256 (owncloud-8.1.1.tar.bz2) = 91f39cbb2f542c9f5f949d02f31e6379ce9e3b7b6b4ae7b093c19e81d069c7d1 +SIZE (owncloud-8.1.1.tar.bz2) = 27042475 Modified: head/www/owncloud/pkg-plist ============================================================================== --- head/www/owncloud/pkg-plist Wed Aug 12 03:11:38 2015 (r394003) +++ head/www/owncloud/pkg-plist Wed Aug 12 05:20:07 2015 (r394004) @@ -3428,6 +3428,7 @@ %%WWWDIR%%/apps/files/appinfo/register_command.php %%WWWDIR%%/apps/files/appinfo/remote.php %%WWWDIR%%/apps/files/appinfo/routes.php +%%WWWDIR%%/apps/files/appinfo/update.php %%WWWDIR%%/apps/files/appinfo/version %%WWWDIR%%/apps/files/command/deleteorphanedfiles.php %%WWWDIR%%/apps/files/command/scan.php @@ -5375,6 +5376,7 @@ %%WWWDIR%%/apps/files_sharing/tests/js/publicAppSpec.js %%WWWDIR%%/apps/files_sharing/tests/js/shareSpec.js %%WWWDIR%%/apps/files_sharing/tests/js/sharedfilelistSpec.js +%%WWWDIR%%/apps/files_sharing/tests/locking.php %%WWWDIR%%/apps/files_sharing/tests/middleware/sharingcheckmiddleware.php %%WWWDIR%%/apps/files_sharing/tests/migrationtest.php %%WWWDIR%%/apps/files_sharing/tests/permissions.php @@ -7290,10 +7292,17 @@ %%WWWDIR%%/apps/user_ldap/templates/part.wizard-userfilter.php %%WWWDIR%%/apps/user_ldap/templates/part.wizardcontrols.php %%WWWDIR%%/apps/user_ldap/templates/settings.php +%%WWWDIR%%/apps/user_ldap/tests/.htaccess %%WWWDIR%%/apps/user_ldap/tests/access.php %%WWWDIR%%/apps/user_ldap/tests/connection.php %%WWWDIR%%/apps/user_ldap/tests/group_ldap.php %%WWWDIR%%/apps/user_ldap/tests/integration/exceptionOnLostConnection.php +%%WWWDIR%%/apps/user_ldap/tests/integration/lib/IntegrationTestAccessGroupsMatchFilter.php +%%WWWDIR%%/apps/user_ldap/tests/integration/readme.md +%%WWWDIR%%/apps/user_ldap/tests/integration/run-test.sh +%%WWWDIR%%/apps/user_ldap/tests/integration/setup-scripts/createExplicitGroups.php +%%WWWDIR%%/apps/user_ldap/tests/integration/setup-scripts/createExplicitGroupsDifferentOU.php +%%WWWDIR%%/apps/user_ldap/tests/integration/setup-scripts/createExplicitUsers.php %%WWWDIR%%/apps/user_ldap/tests/jobs/cleanup.php %%WWWDIR%%/apps/user_ldap/tests/mapping/abstractmappingtest.php %%WWWDIR%%/apps/user_ldap/tests/mapping/groupmapping.php @@ -7566,7 +7575,6 @@ %%WWWDIR%%/core/doc/admin/_images/antivirus-executable.png %%WWWDIR%%/core/doc/admin/_images/antivirus-logging.png %%WWWDIR%%/core/doc/admin/_images/app-sharepoint-enable.png -%%WWWDIR%%/core/doc/admin/_images/build-a-cloud-of-servers-320.png %%WWWDIR%%/core/doc/admin/_images/cert-1.png %%WWWDIR%%/core/doc/admin/_images/cert-11.png %%WWWDIR%%/core/doc/admin/_images/cert-12.png @@ -7605,8 +7613,17 @@ %%WWWDIR%%/core/doc/admin/_images/cert-47.png %%WWWDIR%%/core/doc/admin/_images/cert-5.png %%WWWDIR%%/core/doc/admin/_images/cert-50.png -%%WWWDIR%%/core/doc/admin/_images/cert-52.png +%%WWWDIR%%/core/doc/admin/_images/cert-53.png +%%WWWDIR%%/core/doc/admin/_images/cert-54.png +%%WWWDIR%%/core/doc/admin/_images/cert-55.png +%%WWWDIR%%/core/doc/admin/_images/cert-56.png +%%WWWDIR%%/core/doc/admin/_images/cert-57.png +%%WWWDIR%%/core/doc/admin/_images/cert-58.png +%%WWWDIR%%/core/doc/admin/_images/cert-59.png %%WWWDIR%%/core/doc/admin/_images/cert-6.png +%%WWWDIR%%/core/doc/admin/_images/cert-60.png +%%WWWDIR%%/core/doc/admin/_images/cert-61.png +%%WWWDIR%%/core/doc/admin/_images/cert-62.png %%WWWDIR%%/core/doc/admin/_images/cert-7.png %%WWWDIR%%/core/doc/admin/_images/cert-8.png %%WWWDIR%%/core/doc/admin/_images/cert-9.png @@ -7658,7 +7675,6 @@ %%WWWDIR%%/core/doc/admin/_images/external-storage-google-drive8.png %%WWWDIR%%/core/doc/admin/_images/external-storage-smb.png %%WWWDIR%%/core/doc/admin/_images/external-storage-webdav.png -%%WWWDIR%%/core/doc/admin/_images/file-lock-status.png %%WWWDIR%%/core/doc/admin/_images/files-drop-1.png %%WWWDIR%%/core/doc/admin/_images/files-drop-2.png %%WWWDIR%%/core/doc/admin/_images/files-drop-3.png @@ -7675,6 +7691,21 @@ %%WWWDIR%%/core/doc/admin/_images/ios-p12-5.png %%WWWDIR%%/core/doc/admin/_images/ios-p12-6.png %%WWWDIR%%/core/doc/admin/_images/ios-p12.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-10.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-11.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-12.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-13.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-14.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-15.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-2.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-3.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-4.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-5.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-6.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-7.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-8.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish-9.png +%%WWWDIR%%/core/doc/admin/_images/ios-publish.png %%WWWDIR%%/core/doc/admin/_images/itunes-udid-3.png %%WWWDIR%%/core/doc/admin/_images/itunes-udid-4.png %%WWWDIR%%/core/doc/admin/_images/itunes-udid.png @@ -7704,12 +7735,9 @@ %%WWWDIR%%/core/doc/admin/_images/mac-5.png %%WWWDIR%%/core/doc/admin/_images/mac-6.png %%WWWDIR%%/core/doc/admin/_images/mac-7.png -%%WWWDIR%%/core/doc/admin/_images/oc-video-1.png -%%WWWDIR%%/core/doc/admin/_images/oc-video-2.png %%WWWDIR%%/core/doc/admin/_images/oc_admin_app_page.png %%WWWDIR%%/core/doc/admin/_images/oracle-1.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-1.png -%%WWWDIR%%/core/doc/admin/_images/ownbrander-10.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-11.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-12.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-13.png @@ -7730,13 +7758,16 @@ %%WWWDIR%%/core/doc/admin/_images/ownbrander-26.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-27.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-28.png +%%WWWDIR%%/core/doc/admin/_images/ownbrander-29.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-3.png +%%WWWDIR%%/core/doc/admin/_images/ownbrander-30.png +%%WWWDIR%%/core/doc/admin/_images/ownbrander-31.png +%%WWWDIR%%/core/doc/admin/_images/ownbrander-32.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-4.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-5.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-6.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-7.png %%WWWDIR%%/core/doc/admin/_images/ownbrander-8.png -%%WWWDIR%%/core/doc/admin/_images/ownbrander-9.png %%WWWDIR%%/core/doc/admin/_images/phpinfo.png %%WWWDIR%%/core/doc/admin/_images/preview_images.png %%WWWDIR%%/core/doc/admin/_images/remote_shares.png @@ -7771,6 +7802,8 @@ %%WWWDIR%%/core/doc/admin/_images/theming-6.png %%WWWDIR%%/core/doc/admin/_images/theming-7.png %%WWWDIR%%/core/doc/admin/_images/theming-8.png +%%WWWDIR%%/core/doc/admin/_images/transactional-locking-1.png +%%WWWDIR%%/core/doc/admin/_images/transactional-locking-2.png %%WWWDIR%%/core/doc/admin/_images/ucs-app-center-install.png %%WWWDIR%%/core/doc/admin/_images/ucs-app-center-module.png %%WWWDIR%%/core/doc/admin/_images/ucsint.png @@ -7790,6 +7823,9 @@ %%WWWDIR%%/core/doc/admin/_images/users-config.png %%WWWDIR%%/core/doc/admin/_images/users-create.png %%WWWDIR%%/core/doc/admin/_images/users-groups.png +%%WWWDIR%%/core/doc/admin/_images/video_externalstorage.png +%%WWWDIR%%/core/doc/admin/_images/video_firstminute.png +%%WWWDIR%%/core/doc/admin/_images/video_usermanagement.png %%WWWDIR%%/core/doc/admin/_sources/configuration_database/db_conversion.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_database/index.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_database/linux_database_configuration.txt @@ -7803,7 +7839,7 @@ %%WWWDIR%%/core/doc/admin/_sources/configuration_files/federated_cloud_sharing_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_files/file_sharing_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_files/files_locking_enabling.txt -%%WWWDIR%%/core/doc/admin/_sources/configuration_files/files_locking_experimental.txt +%%WWWDIR%%/core/doc/admin/_sources/configuration_files/files_locking_transactional.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_files/index.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_files/previews_configuration.txt %%WWWDIR%%/core/doc/admin/_sources/configuration_files/serving_static_files_configuration.txt @@ -7890,7 +7926,6 @@ %%WWWDIR%%/core/doc/admin/_sources/operations/scaling_multiple_machines.txt %%WWWDIR%%/core/doc/admin/_sources/operations/theming.txt %%WWWDIR%%/core/doc/admin/_sources/release_notes.txt -%%WWWDIR%%/core/doc/admin/_sources/videos/index.txt %%WWWDIR%%/core/doc/admin/_sources/whats_new_admin.txt %%WWWDIR%%/core/doc/admin/_static/ajax-loader.gif %%WWWDIR%%/core/doc/admin/_static/basic.css @@ -7939,7 +7974,7 @@ %%WWWDIR%%/core/doc/admin/configuration_files/federated_cloud_sharing_configuration.html %%WWWDIR%%/core/doc/admin/configuration_files/file_sharing_configuration.html %%WWWDIR%%/core/doc/admin/configuration_files/files_locking_enabling.html -%%WWWDIR%%/core/doc/admin/configuration_files/files_locking_experimental.html +%%WWWDIR%%/core/doc/admin/configuration_files/files_locking_transactional.html %%WWWDIR%%/core/doc/admin/configuration_files/index.html %%WWWDIR%%/core/doc/admin/configuration_files/previews_configuration.html %%WWWDIR%%/core/doc/admin/configuration_files/serving_static_files_configuration.html @@ -8030,7 +8065,6 @@ %%WWWDIR%%/core/doc/admin/release_notes.html %%WWWDIR%%/core/doc/admin/search.html %%WWWDIR%%/core/doc/admin/searchindex.js -%%WWWDIR%%/core/doc/admin/videos/index.html %%WWWDIR%%/core/doc/admin/whats_new_admin.html %%WWWDIR%%/core/doc/user/_images/bookmark_addurl.png %%WWWDIR%%/core/doc/user/_images/bookmark_setting.png @@ -9579,6 +9613,7 @@ %%WWWDIR%%/lib/repair/searchlucenetables.php %%WWWDIR%%/lib/repair/sqliteautoincrement.php %%WWWDIR%%/lib/repair/updatecertificatestore.php +%%WWWDIR%%/lib/repair/updateoutdatedocsids.php %%WWWDIR%%/occ %%WWWDIR%%/ocs-provider/index.php %%WWWDIR%%/ocs-provider/provider.php From owner-svn-ports-all@freebsd.org Wed Aug 12 05:44:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7CCB799F3C4; Wed, 12 Aug 2015 05:44:31 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D9943A4; Wed, 12 Aug 2015 05:44:31 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C5iVEo053371; Wed, 12 Aug 2015 05:44:31 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C5iVl9053369; Wed, 12 Aug 2015 05:44:31 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201508120544.t7C5iVl9053369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Wed, 12 Aug 2015 05:44:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394005 - in head/devel/py-foolscap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 05:44:31 -0000 Author: kevlo Date: Wed Aug 12 05:44:30 2015 New Revision: 394005 URL: https://svnweb.freebsd.org/changeset/ports/394005 Log: Update to 0.8.0 PR: 202261 Submitted by: Thomas Hurst Deleted: head/devel/py-foolscap/files/ Modified: head/devel/py-foolscap/Makefile head/devel/py-foolscap/distinfo Modified: head/devel/py-foolscap/Makefile ============================================================================== --- head/devel/py-foolscap/Makefile Wed Aug 12 05:20:07 2015 (r394004) +++ head/devel/py-foolscap/Makefile Wed Aug 12 05:44:30 2015 (r394005) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= foolscap -PORTVERSION= 0.6.4 -PORTREVISION= 1 +PORTVERSION= 0.8.0 CATEGORIES= devel python MASTER_SITES= http://foolscap.lothar.com/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,6 +17,9 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}op RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python twisted -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Modified: head/devel/py-foolscap/distinfo ============================================================================== --- head/devel/py-foolscap/distinfo Wed Aug 12 05:20:07 2015 (r394004) +++ head/devel/py-foolscap/distinfo Wed Aug 12 05:44:30 2015 (r394005) @@ -1,2 +1,2 @@ -SHA256 (foolscap-0.6.4.tar.gz) = 74b283dd68a3c9d68ebf4e9b4ebf5cfb37480915b6a808ac930fe858a66f8d99 -SIZE (foolscap-0.6.4.tar.gz) = 479664 +SHA256 (foolscap-0.8.0.tar.gz) = 6ab49e8c52ee49597148802a877593ddb6ca9a63cb32eaae8bff2900667be1c9 +SIZE (foolscap-0.8.0.tar.gz) = 475062 From owner-svn-ports-all@freebsd.org Wed Aug 12 05:44:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF6B999F3F6; Wed, 12 Aug 2015 05:44:39 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wi0-x22b.google.com (mail-wi0-x22b.google.com [IPv6:2a00:1450:400c:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 42AA86AF; Wed, 12 Aug 2015 05:44:39 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by wijp15 with SMTP id p15so202993262wij.0; Tue, 11 Aug 2015 22:44:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=tvkNKiCGoEndOlkTpK5kLMK+mtOPCB2KvrQy0mnSPlk=; b=NrAcXidnWUIPT6pT5rsrUUX2HOiBBYsByPHPTEm1HUxs4m+U9StxhD+L1prBXFQAJn R3PjKhfOcGaAIsq7ZoyNuYP4nBLxLH1zQxzr0P2Q1h2JpUUnSDqflzX/trKHIOlC8FSa MZCclo26ukdmoGaYM4WxJ9XFjGdzMQi+gGuva+OYTLj+XfvwhYyoDjmvgj+7liY9uyV7 d0TtNZHtO4iyW8/UgHVenZWUzgyOnyAf+wsnvwyuKlhvKxENLlk9XHmtCYGvMTNAzQ1V A9mL9EhrAGsvgjTOrEqnZbl3GZQObyUBBuRAY7QPhZ1IhmTPGIMriqPZnuMhbBqmKnpK jKSQ== X-Received: by 10.180.108.175 with SMTP id hl15mr44215393wib.1.1439358277591; Tue, 11 Aug 2015 22:44:37 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id b13sm6530919wic.15.2015.08.11.22.44.36 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 11 Aug 2015 22:44:36 -0700 (PDT) Sender: Baptiste Daroussin Date: Wed, 12 Aug 2015 07:44:34 +0200 From: Baptiste Daroussin To: "Philip M. Gollucci" Cc: Mathieu Arnold , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: Re: svn commit: r393026 - head/Mk/Uses Message-ID: <20150812054434.GG10390@ivaldir.etoilebsd.net> References: <201507271932.t6RJW73v037092@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="VaKJWhUROU/xPxjb" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 05:44:39 -0000 --VaKJWhUROU/xPxjb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 11, 2015 at 10:58:25PM -0400, Philip M. Gollucci wrote: > Instead of force commits, you could actually fix the commit msg. >=20 And break the conversion to any other VCS, no the is a really bad idea imho. Bapt --VaKJWhUROU/xPxjb Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlXK3UIACgkQ8kTtMUmk6ExZMwCfQiFLe3diKufg5+RtQr/Gf3qL 7p4An3hiNpfly3GygWI+cppGTrWOxkEu =RQri -----END PGP SIGNATURE----- --VaKJWhUROU/xPxjb-- From owner-svn-ports-all@freebsd.org Wed Aug 12 07:16:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FBC599FC87; Wed, 12 Aug 2015 07:16:37 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BE0FAF9; Wed, 12 Aug 2015 07:16:37 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C7GbDo090232; Wed, 12 Aug 2015 07:16:37 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C7GaNj090230; Wed, 12 Aug 2015 07:16:36 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201508120716.t7C7GaNj090230@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 12 Aug 2015 07:16:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394006 - head/www/mediawiki125 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 07:16:37 -0000 Author: wen Date: Wed Aug 12 07:16:36 2015 New Revision: 394006 URL: https://svnweb.freebsd.org/changeset/ports/394006 Log: - Update to 1.25.2 - Update options Modified: head/www/mediawiki125/Makefile head/www/mediawiki125/distinfo Modified: head/www/mediawiki125/Makefile ============================================================================== --- head/www/mediawiki125/Makefile Wed Aug 12 05:44:30 2015 (r394005) +++ head/www/mediawiki125/Makefile Wed Aug 12 07:16:36 2015 (r394006) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.25.1 +PORTVERSION= 1.25.2 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 125 @@ -18,6 +18,7 @@ USES= shebangfix SHEBANG_FILES= maintenance/dev/*.sh \ maintenance/hiphop/run-server \ vendor/leafo/lessphp/lessify \ + vendor/ruflin/elastica/test/bin/*.sh \ maintenance/postgres/*.pl \ maintenance/storage/make-blobs \ includes/limit.sh @@ -34,54 +35,31 @@ PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message SUB_LIST= MEDIAWIKIDIR=${PREFIX}/${MEDIAWIKIDIR} -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL XCACHE IMAGICK -OPTIONS_DEFAULT=MYSQL +OPTIONS_DEFINE= LDAP MEMCACHED IMAGICK +OPTIONS_SINGLE= DB +OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE +OPTIONS_RADIO= ACCEL +OPTIONS_RADIO_ACCEL= APC XCACHE +OPTIONS_DEFAULT= MYSQL MEMCACHED_DESC= Use memcached APC_DESC= Use pecl-APC (Mediawiki recommended) -EACCEL_DESC= Use eAccelerator (instead of pecl-APC) XCACHE_DESC= Use xCache (instead of pecl-APC) IMAGICK_DESC= Use ImageMagick -.include - -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= client -USE_PHP+= mysql -.endif - -.if ${PORT_OPTIONS:MPGSQL} -USE_PHP+= pgsql -.endif - -.if ${PORT_OPTIONS:MSQLITE} -USE_PHP+= sqlite3 -.endif - -.if ${PORT_OPTIONS:MLDAP} -USE_PHP+= ldap -.endif - -.if ${PORT_OPTIONS:MMEMCACHED} -RUN_DEPENDS= memcached:${PORTSDIR}/databases/memcached -.endif - -.if ${PORT_OPTIONS:MIMAGICK} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick -.endif - -.if ${PORT_OPTIONS:MAPC} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.elif ${PORT_OPTIONS:MEACCEL} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator -.elif ${PORT_OPTIONS:MXCACHE} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache -.endif +MYSQL_USE= mysql=client php=mysql +PGSQL_USE= php=pgsql +SQLITE_USE= php=sqlite3 +LDAP_USE= php=ldap + +MEMCACHED_RUN_DEPENDS= memcached:${PORTSDIR}/databases/memcached +IMAGICK_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/imagick.so:${PORTSDIR}/graphics/pecl-imagick +APC_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC +XCACHE_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache pre-install: @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} - @${ECHO} "@dir %%WWWDIR%%/vendor/zordius/lightncandy/specs/handlebars" >> ${PLIST} - @${ECHO} "@dir %%WWWDIR%%/vendor/zordius/lightncandy/specs/mustache" >> ${PLIST} + @${ECHO} "@dir %%WWWDIR%%/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures" >> ${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} do-install: Modified: head/www/mediawiki125/distinfo ============================================================================== --- head/www/mediawiki125/distinfo Wed Aug 12 05:44:30 2015 (r394005) +++ head/www/mediawiki125/distinfo Wed Aug 12 07:16:36 2015 (r394006) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.25.1.tar.gz) = b3a7d672d12bd329d9ca64ae2428a19fbf5e10b234568114fa17df84d2428731 -SIZE (mediawiki-1.25.1.tar.gz) = 23661450 +SHA256 (mediawiki-1.25.2.tar.gz) = 539fecfe3d0c7de8130b0c3b548fe1f862f60df76396dc54ee0548c87e5f2482 +SIZE (mediawiki-1.25.2.tar.gz) = 24018158 From owner-svn-ports-all@freebsd.org Wed Aug 12 07:31:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C55699F2A0; Wed, 12 Aug 2015 07:31:36 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE1BD26D; Wed, 12 Aug 2015 07:31:35 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C7VZNM098107; Wed, 12 Aug 2015 07:31:35 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C7VZfi098106; Wed, 12 Aug 2015 07:31:35 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508120731.t7C7VZfi098106@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Wed, 12 Aug 2015 07:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394007 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 07:31:36 -0000 Author: kwm Date: Wed Aug 12 07:31:35 2015 New Revision: 394007 URL: https://svnweb.freebsd.org/changeset/ports/394007 Log: Document newest flash vulnabilities. Also list the c6_64 flash port. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Aug 12 07:16:36 2015 (r394006) +++ head/security/vuxml/vuln.xml Wed Aug 12 07:31:35 2015 (r394007) @@ -58,6 +58,98 @@ Notes: --> + + Adobe Flash Player -- critical vulnerabilities + + + linux-c6-flashplugin + linux-c6_64-flashplugin + 11.2r202.508 + + + linux-f10-flashplugin + 11.2r202.508 + + + + +

Adobe reports:

+
+

Adobe has released security updates for Adobe Flash Player. + These updates address critical vulnerabilities that could + potentially allow an attacker to take control of the affected + system.

+

These updates resolve type confusion vulnerabilities that could + lead to code execution (CVE-2015-5128, CVE-2015-5554, + CVE-2015-5555, CVE-2015-5558, CVE-2015-5562).

+

These updates include further hardening to a mitigation + introduced in version 18.0.0.209 to defend against vector + length corruptions (CVE-2015-5125).

+

These updates resolve use-after-free vulnerabilities that could + lead to code execution (CVE-2015-5550, CVE-2015-5551, + CVE-2015-3107, CVE-2015-5556, CVE-2015-5130, CVE-2015-5134, + CVE-2015-5539, CVE-2015-5540, CVE-2015-5557, CVE-2015-5559, + CVE-2015-5127, CVE-2015-5563, CVE-2015-5561, CVE-2015-5124, + CVE-2015-5564).

+

These updates resolve heap buffer overflow vulnerabilities + that could lead to code execution (CVE-2015-5129, + CVE-2015-5541).

+

These updates resolve buffer overflow vulnerabilities that + could lead to code execution (CVE-2015-5131, CVE-2015-5132, + CVE-2015-5133).

+

These updates resolve memory corruption vulnerabilities that + could lead to code execution (CVE-2015-5544, CVE-2015-5545, + CVE-2015-5546, CVE-2015-5547, CVE-2015-5548, CVE-2015-5549, + CVE-2015-5552, CVE-2015-5553).

+

These updates resolve an integer overflow vulnerability that + could lead to code execution (CVE-2015-5560).

+
+ + + + CVE-2015-3107 + CVE-2015-5124 + CVE-2015-5125 + CVE-2015-5127 + CVE-2015-5128 + CVE-2015-5129 + CVE-2015-5130 + CVE-2015-5131 + CVE-2015-5132 + CVE-2015-5133 + CVE-2015-5134 + CVE-2015-5539 + CVE-2015-5540 + CVE-2015-5541 + CVE-2015-5544 + CVE-2015-5545 + CVE-2015-5546 + CVE-2015-5547 + CVE-2015-5548 + CVE-2015-5549 + CVE-2015-5550 + CVE-2015-5551 + CVE-2015-5552 + CVE-2015-5553 + CVE-2015-5554 + CVE-2015-5555 + CVE-2015-5556 + CVE-2015-5557 + CVE-2015-5558 + CVE-2015-5559 + CVE-2015-5560 + CVE-2015-5561 + CVE-2015-5562 + CVE-2015-5563 + CVE-2015-5564 + https://helpx.adobe.com/security/products/flash-player/apsb15-19.html + + + 2015-08-11 + 2015-08-12 + +
+ libvpx -- multiple buffer overflows From owner-svn-ports-all@freebsd.org Wed Aug 12 07:35:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18AD699F359; Wed, 12 Aug 2015 07:35:06 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08DA76EA; Wed, 12 Aug 2015 07:35:06 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C7Z56S098425; Wed, 12 Aug 2015 07:35:05 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C7Z5HU098422; Wed, 12 Aug 2015 07:35:05 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508120735.t7C7Z5HU098422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Wed, 12 Aug 2015 07:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394008 - head/www/linux-c6-flashplugin11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 07:35:06 -0000 Author: kwm Date: Wed Aug 12 07:35:04 2015 New Revision: 394008 URL: https://svnweb.freebsd.org/changeset/ports/394008 Log: Update the f10, c6 and c6_64 of the linux flash player to 11.2r202.508 Security: f3778328-d288-4b39-86a4-65877331eaf7 Modified: head/www/linux-c6-flashplugin11/Makefile head/www/linux-c6-flashplugin11/distinfo.i686 head/www/linux-c6-flashplugin11/distinfo.x86_64 Modified: head/www/linux-c6-flashplugin11/Makefile ============================================================================== --- head/www/linux-c6-flashplugin11/Makefile Wed Aug 12 07:31:35 2015 (r394007) +++ head/www/linux-c6-flashplugin11/Makefile Wed Aug 12 07:35:04 2015 (r394008) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplugin -PORTVERSION= 11.2r202.491 +PORTVERSION= 11.2r202.508 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:S/r/./}/:plugin \ LOCAL/nox:suplib Modified: head/www/linux-c6-flashplugin11/distinfo.i686 ============================================================================== --- head/www/linux-c6-flashplugin11/distinfo.i686 Wed Aug 12 07:31:35 2015 (r394007) +++ head/www/linux-c6-flashplugin11/distinfo.i686 Wed Aug 12 07:35:04 2015 (r394008) @@ -1,4 +1,4 @@ -SHA256 (flashplugin/11.2r202.491/install_flash_player_11_linux.i386.tar.gz) = be3f277fe1a15e4b082938019b4e0f9fac4336b460b2eb08d8f22bf90c718e53 -SIZE (flashplugin/11.2r202.491/install_flash_player_11_linux.i386.tar.gz) = 6942060 -SHA256 (flashplugin/11.2r202.491/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.491/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +SHA256 (flashplugin/11.2r202.508/install_flash_player_11_linux.i386.tar.gz) = 2a263957676a1d5f3f7ff28fc119e41bc24c6187fc948759d890554f465c0391 +SIZE (flashplugin/11.2r202.508/install_flash_player_11_linux.i386.tar.gz) = 6947080 +SHA256 (flashplugin/11.2r202.508/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.508/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 Modified: head/www/linux-c6-flashplugin11/distinfo.x86_64 ============================================================================== --- head/www/linux-c6-flashplugin11/distinfo.x86_64 Wed Aug 12 07:31:35 2015 (r394007) +++ head/www/linux-c6-flashplugin11/distinfo.x86_64 Wed Aug 12 07:35:04 2015 (r394008) @@ -1,4 +1,4 @@ -SHA256 (flashplugin/11.2r202.466/install_flash_player_11_linux.x86_64.tar.gz) = a884194f5125144b63ba8137f7859ee587acfa4b211ea9d13093bd5330749cb2 -SIZE (flashplugin/11.2r202.466/install_flash_player_11_linux.x86_64.tar.gz) = 7246913 -SHA256 (flashplugin/11.2r202.466/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.466/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +SHA256 (flashplugin/11.2r202.508/install_flash_player_11_linux.i386.tar.gz) = 2a263957676a1d5f3f7ff28fc119e41bc24c6187fc948759d890554f465c0391 +SIZE (flashplugin/11.2r202.508/install_flash_player_11_linux.i386.tar.gz) = 6947080 +SHA256 (flashplugin/11.2r202.508/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.508/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 From owner-svn-ports-all@freebsd.org Wed Aug 12 08:04:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EAC6999FE13; Wed, 12 Aug 2015 08:04:49 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C16D2694; Wed, 12 Aug 2015 08:04:49 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C84nQU010953; Wed, 12 Aug 2015 08:04:49 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C84nr4010951; Wed, 12 Aug 2015 08:04:49 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201508120804.t7C84nr4010951@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 12 Aug 2015 08:04:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394009 - head/www/mediawiki124 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 08:04:50 -0000 Author: wen Date: Wed Aug 12 08:04:48 2015 New Revision: 394009 URL: https://svnweb.freebsd.org/changeset/ports/394009 Log: - Update to 1.24.3 - Update options - Fix file permissions Modified: head/www/mediawiki124/Makefile head/www/mediawiki124/distinfo Modified: head/www/mediawiki124/Makefile ============================================================================== --- head/www/mediawiki124/Makefile Wed Aug 12 07:35:04 2015 (r394008) +++ head/www/mediawiki124/Makefile Wed Aug 12 08:04:48 2015 (r394009) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.24.2 -PORTREVISION= 1 +PORTVERSION= 1.24.3 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 124 @@ -31,12 +30,11 @@ PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message SUB_LIST= MEDIAWIKIDIR=${PREFIX}/${MEDIAWIKIDIR} -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL XCACHE IMAGICK +OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC XCACHE IMAGICK OPTIONS_DEFAULT=MYSQL MEMCACHED_DESC= Use memcached APC_DESC= Use pecl-APC (Mediawiki recommended) -EACCEL_DESC= Use eAccelerator (instead of pecl-APC) XCACHE_DESC= Use xCache (instead of pecl-APC) IMAGICK_DESC= Use ImageMagick @@ -69,19 +67,13 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP .if ${PORT_OPTIONS:MAPC} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/apc.so:${PORTSDIR}/www/pecl-APC -.elif ${PORT_OPTIONS:MEACCEL} -RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/eaccelerator.so:${PORTSDIR}/www/eaccelerator .elif ${PORT_OPTIONS:MXCACHE} RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xcache.so:${PORTSDIR}/www/xcache .endif pre-install: - @${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST} - @${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST} @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} - @${ECHO_CMD} "@group" >> ${PLIST} - @${ECHO_CMD} "@owner" >> ${PLIST} do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${MEDIAWIKIDIR} Modified: head/www/mediawiki124/distinfo ============================================================================== --- head/www/mediawiki124/distinfo Wed Aug 12 07:35:04 2015 (r394008) +++ head/www/mediawiki124/distinfo Wed Aug 12 08:04:48 2015 (r394009) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.24.2.tar.gz) = 01ceb6b6e1df9d6ee99a0221424bd1554e10770993a18df98153c7a298cad3bb -SIZE (mediawiki-1.24.2.tar.gz) = 21874196 +SHA256 (mediawiki-1.24.3.tar.gz) = 15f1d4a245b5d9912b4501e6eaf525cd6225ede37665e2b014a0f6b59f782fb5 +SIZE (mediawiki-1.24.3.tar.gz) = 21931304 From owner-svn-ports-all@freebsd.org Wed Aug 12 08:30:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DFA1699F49B; Wed, 12 Aug 2015 08:30:21 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5E00F07; Wed, 12 Aug 2015 08:30:21 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C8ULpq019369; Wed, 12 Aug 2015 08:30:21 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C8UKOL019362; Wed, 12 Aug 2015 08:30:20 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508120830.t7C8UKOL019362@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 08:30:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394010 - in head/www: . R-cran-htmlwidgets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 08:30:22 -0000 Author: tota Date: Wed Aug 12 08:30:19 2015 New Revision: 394010 URL: https://svnweb.freebsd.org/changeset/ports/394010 Log: - Add new port: www/R-cran-htmlwidgets A framework for creating HTML widgets that render in various contexts including the R console, 'R Markdown' documents, and 'Shiny' web applications. WWW: https://cran.r-project.org/web/packages/htmlwidgets/ Added: head/www/R-cran-htmlwidgets/ head/www/R-cran-htmlwidgets/Makefile (contents, props changed) head/www/R-cran-htmlwidgets/distinfo (contents, props changed) head/www/R-cran-htmlwidgets/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Aug 12 08:04:48 2015 (r394009) +++ head/www/Makefile Wed Aug 12 08:30:19 2015 (r394010) @@ -6,6 +6,7 @@ SUBDIR += MT SUBDIR += R-cran-RgoogleMaps SUBDIR += R-cran-Rpad + SUBDIR += R-cran-htmlwidgets SUBDIR += R-cran-httpuv SUBDIR += R-cran-httr SUBDIR += R-cran-scrapeR Added: head/www/R-cran-htmlwidgets/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-htmlwidgets/Makefile Wed Aug 12 08:30:19 2015 (r394010) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= htmlwidgets +PORTVERSION= 0.5 +CATEGORIES= www +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= HTML Widgets for R + +LICENSE= MIT + +RUN_DEPENDS= R-cran-htmltools>=0.2.6:${PORTSDIR}/textproc/R-cran-htmltools \ + R-cran-jsonlite>=0.9.16:${PORTSDIR}/converters/R-cran-jsonlite \ + R-cran-yaml>0:${PORTSDIR}/textproc/R-cran-yaml + +USES= cran:auto-plist + +.include Added: head/www/R-cran-htmlwidgets/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-htmlwidgets/distinfo Wed Aug 12 08:30:19 2015 (r394010) @@ -0,0 +1,2 @@ +SHA256 (htmlwidgets_0.5.tar.gz) = 12c54d89bf7633eea5b7a1007602361f11ed4ecc4c070fb026398977e61ca8b4 +SIZE (htmlwidgets_0.5.tar.gz) = 829921 Added: head/www/R-cran-htmlwidgets/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-htmlwidgets/pkg-descr Wed Aug 12 08:30:19 2015 (r394010) @@ -0,0 +1,5 @@ +A framework for creating HTML widgets that render in various contexts +including the R console, 'R Markdown' documents, and 'Shiny' web +applications. + +WWW: https://cran.r-project.org/web/packages/htmlwidgets/ From owner-svn-ports-all@freebsd.org Wed Aug 12 09:12:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D7C999E1EF; Wed, 12 Aug 2015 09:12:40 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 6360A6A4; Wed, 12 Aug 2015 09:12:40 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 05940BDC8F; Wed, 12 Aug 2015 11:12:32 +0200 (CEST) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id DFADEBDC85; Wed, 12 Aug 2015 11:12:31 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 9E56C40BE1CA; Wed, 12 Aug 2015 11:12:31 +0200 (CEST) Date: Wed, 12 Aug 2015 11:12:31 +0200 From: Mathieu Arnold To: "Philip M. Gollucci" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r394002 - head/net-p2p/zetacoin Message-ID: <119E57656109CE822C0CCF8F@atuin.in.mat.cc> In-Reply-To: <201508120202.t7C22Fek062663@repo.freebsd.org> References: <201508120202.t7C22Fek062663@repo.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========CF752A5AE9BA2D883590==========" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 09:12:40 -0000 --==========CF752A5AE9BA2D883590========== Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline +--On 12 ao=C3=BBt 2015 02:02:15 +0000 "Philip M. Gollucci" wrote: | Author: pgollucci | Date: Wed Aug 12 02:02:14 2015 | New Revision: 394002 | URL: https://svnweb.freebsd.org/changeset/ports/394002 |=20 | Log: | net-p2p/zetacoin: mark broken on armv6 | =20 | Reported by: pkg-fallout |=20 | Modified: | head/net-p2p/zetacoin/Makefile |=20 | Modified: head/net-p2p/zetacoin/Makefile | = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D | =3D=3D=3D=3D=3D --- head/net-p2p/zetacoin/Makefile Wed Aug 12 01:57:53 = 2015 | (r394001) +++ head/net-p2p/zetacoin/Makefile Wed Aug 12 02:02:14 2015 | (r394002) @@ -13,6 +13,8 @@ LICENSE=3D MIT | BUILD_DEPENDS=3D pkg-config:${PORTSDIR}/devel/pkgconf | LIB_DEPENDS=3D libboost_date_time.so:${PORTSDIR}/devel/boost-libs | =20 | +BROKEN_armv6=3D #error Please implement AtomicPointer for this platform. Trying to copy the error message verbatim is nice, but note that # starts a comment, so: $ make -V BROKEN_armv6 $ Also, note that setting BROKEN_arch will give the error message: =3D=3D=3D> zetacoin-0.9.2.4 is marked as broken on armv6: error Please = implement AtomicPointer for this platform. A simpler and better message would be something like: BROKEN_armv6=3D AtomicPointer not implemented. Documenting the full error message in the commit is nice too. --=20 Mathieu Arnold --==========CF752A5AE9BA2D883590========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQJ8BAEBCgBmBQJVyw3/XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85I2D8P/i/EE4/Kl+CWAXkssRAwqPES CRbSpIWFnuMAmHFSdpJqUNBEUfWiQUI5IcqMQ4eGvQb4Fxe8WlwXQVOeqo8bzSC1 AVeVcbqoJ2I2uNbekouLk+++uQOG3dYzmDBnaSrmI+wHKXvPN6IL8yerUlJoQy/4 jGQGHD7OsHgIVNq4Cl3eUI26hqCEf87rqZIFcgj52qm0A6TiVRBR2SwqRmUdh1Vk uyelfJAZKx8AV04VOuuSy3hU8XqEUV8+T9SdtkRWiQGe+NiNxSwSu1oadQep4mZb 3GIbJP+HQP+xiF22Ffys9ZZPLdLowE7120f0sPY7DEOrPyo9nhQ+mWLuumKgeoXs 3N286SCJr8OYGJ/553Ak8rxz0ozCJ6beHwkUHUITnjYB3uft9LRVwUz62Qc62W71 dbkWszD6Mfgb7L3jPOdsKc2ctnUx/OVQE/GCRoFBNCoVlEv9f/H/A0JmB0l9aZkF X2WyHnigBq8PetRz6xSphIbJJnW05UsRHSiwyI+GHBYaLzJ2ZJ4cOoxv9NdY9eQT GGZaqQhpFIZTUrUOZTQJblMuX+YPp09iTALt6Lk9pApNquYBubSOrjUNoE1ynulS 0GMF6HpUgIbM7mGddIKxZ6Ylp2UxAirGYvSiOFtvq8c/Cq0zS5flpBlS+OEVFAwX NDkg7JXdIRZ8CtnKfCdR =FCWT -----END PGP SIGNATURE----- --==========CF752A5AE9BA2D883590==========-- From owner-svn-ports-all@freebsd.org Wed Aug 12 09:16:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58ABF99E264; Wed, 12 Aug 2015 09:16:00 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3768D8B3; Wed, 12 Aug 2015 09:16:00 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C9G08R039600; Wed, 12 Aug 2015 09:16:00 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C9FxMR039592; Wed, 12 Aug 2015 09:15:59 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201508120915.t7C9FxMR039592@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Wed, 12 Aug 2015 09:15:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394011 - in head/devel/llvm37: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 09:16:00 -0000 Author: brooks Date: Wed Aug 12 09:15:58 2015 New Revision: 394011 URL: https://svnweb.freebsd.org/changeset/ports/394011 Log: Upgrade to 3.7.0 rc2. Attempt to allow builds with gcc on DragonFly. Modified: head/devel/llvm37/Makefile head/devel/llvm37/distinfo head/devel/llvm37/files/clang-patch-tools_clang_lib_Headers_CMakeLists.txt head/devel/llvm37/pkg-plist Modified: head/devel/llvm37/Makefile ============================================================================== --- head/devel/llvm37/Makefile Wed Aug 12 08:30:19 2015 (r394010) +++ head/devel/llvm37/Makefile Wed Aug 12 09:15:58 2015 (r394011) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= llvm -DISTVERSION= 3.7.0rc1 -PORTREVISION= 1 +DISTVERSION= 3.7.0rc2 CATEGORIES= devel lang MASTER_SITES= http://llvm.org/${PRE_}releases/${LLVM_RELEASE}/${RCDIR} DISTNAME= ${PORTNAME}-${DISTVERSION}.src @@ -159,7 +158,7 @@ NOT_FOR_ARCH= ia64 .include -.if ${COMPILER_TYPE} != clang +.if ${OPSYS} == "FreeBSD" && ${COMPILER_TYPE} != clang # Evil hack around gcc48 not providing a usable c++11 environment on 9.x PLIST_SUB:= ${PLIST_SUB:NLLDB=*} LLDB="@comment " .endif @@ -171,7 +170,7 @@ post-extract-LLD-on: ${MV} ${WRKSRC_lld} ${PATCH_WRKSRC}/tools/lld post-extract-LLDB-on: -.if ${COMPILER_TYPE} == clang +.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang ${MV} ${WRKSRC_lldb} ${PATCH_WRKSRC}/tools/lldb .endif @@ -207,7 +206,7 @@ post-install-DOCS-on: ${RMDIR} ${STAGEDIR}${LLVM_PREFIX}/share/man/ post-install-LLDB-on: -.if ${COMPILER_TYPE} == clang +.if ${OPSYS} != "FreeBSD" || ${COMPILER_TYPE} == clang ${RM} ${STAGEDIR}${LLVM_PREFIX}/lib/python*/site-packages/lib .endif Modified: head/devel/llvm37/distinfo ============================================================================== --- head/devel/llvm37/distinfo Wed Aug 12 08:30:19 2015 (r394010) +++ head/devel/llvm37/distinfo Wed Aug 12 09:15:58 2015 (r394011) @@ -1,10 +1,10 @@ -SHA256 (llvm-3.7.0rc1.src.tar.xz) = 79059af9e5a3e2c4daad5be2444af773a915d9982f6f86756d8e1add24f62e35 -SIZE (llvm-3.7.0rc1.src.tar.xz) = 14619256 -SHA256 (cfe-3.7.0rc1.src.tar.xz) = 30dd39f3268bcda85bd5972a820e61aa15efd0352d4c183e2551bdc1777c6cd2 -SIZE (cfe-3.7.0rc1.src.tar.xz) = 9101300 -SHA256 (lld-3.7.0rc1.src.tar.xz) = 905ca113556ad7a88955a601fd97f92a7323b339bf4f614057eab2bd6a9e6b37 -SIZE (lld-3.7.0rc1.src.tar.xz) = 586180 -SHA256 (lldb-3.7.0rc1.src.tar.xz) = 0b4318a7c9dc326aa5f727b0296ee37d2d03ad824f5a9ac11eaa9818bb94920c -SIZE (lldb-3.7.0rc1.src.tar.xz) = 10646600 -SHA256 (openmp-3.7.0rc1.src.tar.xz) = 34e5752bcd9addda9bb04a12c3f2a9e999e28baefb809f068c83e2e4c3acddfb -SIZE (openmp-3.7.0rc1.src.tar.xz) = 2251260 +SHA256 (llvm-3.7.0rc2.src.tar.xz) = 36a79ba3198afb5c973d89ec2e4ef1d4587d97fa3b3f51fb1badcd7c0c868213 +SIZE (llvm-3.7.0rc2.src.tar.xz) = 14624620 +SHA256 (cfe-3.7.0rc2.src.tar.xz) = a371a416af039eec9291b9acc167911ad9c8d9f3494111c8e53beb07b7f5dfaa +SIZE (cfe-3.7.0rc2.src.tar.xz) = 9141532 +SHA256 (lld-3.7.0rc2.src.tar.xz) = 849a99def4c4ccc1639989d7296680fe36b845391a728a0cb75b41e91a9fc9c4 +SIZE (lld-3.7.0rc2.src.tar.xz) = 586280 +SHA256 (lldb-3.7.0rc2.src.tar.xz) = 56a3e14de7568f1fa151f7d1af014dfc4f54e589c062ba04b2d9b7ae1f28e1ae +SIZE (lldb-3.7.0rc2.src.tar.xz) = 10645800 +SHA256 (openmp-3.7.0rc2.src.tar.xz) = 0a23f842d92dd7a434b5725f9bee5dec7493131589abcfdbc0c54cfec7b04696 +SIZE (openmp-3.7.0rc2.src.tar.xz) = 2250736 Modified: head/devel/llvm37/files/clang-patch-tools_clang_lib_Headers_CMakeLists.txt ============================================================================== --- head/devel/llvm37/files/clang-patch-tools_clang_lib_Headers_CMakeLists.txt Wed Aug 12 08:30:19 2015 (r394010) +++ head/devel/llvm37/files/clang-patch-tools_clang_lib_Headers_CMakeLists.txt Wed Aug 12 09:15:58 2015 (r394011) @@ -1,4 +1,4 @@ ---- tools/clang/lib/Headers/CMakeLists.txt.orig 2015-07-21 15:57:35 UTC +--- tools/clang/lib/Headers/CMakeLists.txt.orig 2015-07-30 22:47:41 UTC +++ tools/clang/lib/Headers/CMakeLists.txt @@ -30,7 +30,6 @@ set(files Intrin.h @@ -26,6 +26,6 @@ unwind.h vadefs.h - varargs.h + vecintrin.h __wmmintrin_aes.h wmmintrin.h - __wmmintrin_pclmul.h Modified: head/devel/llvm37/pkg-plist ============================================================================== --- head/devel/llvm37/pkg-plist Wed Aug 12 08:30:19 2015 (r394010) +++ head/devel/llvm37/pkg-plist Wed Aug 12 09:15:58 2015 (r394011) @@ -1830,6 +1830,7 @@ llvm37/lib/LLVMHello.so %%CLANG%%llvm37/lib/clang/3.7.0/include/tmmintrin.h %%CLANG%%llvm37/lib/clang/3.7.0/include/unwind.h %%CLANG%%llvm37/lib/clang/3.7.0/include/vadefs.h +%%CLANG%%llvm37/lib/clang/3.7.0/include/vecintrin.h %%CLANG%%llvm37/lib/clang/3.7.0/include/wmmintrin.h %%CLANG%%llvm37/lib/clang/3.7.0/include/x86intrin.h %%CLANG%%llvm37/lib/clang/3.7.0/include/xmmintrin.h From owner-svn-ports-all@freebsd.org Wed Aug 12 09:20:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D74BD99E354; Wed, 12 Aug 2015 09:20:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC888B62; Wed, 12 Aug 2015 09:20:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C9KeIt039997; Wed, 12 Aug 2015 09:20:40 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C9KdAl039989; Wed, 12 Aug 2015 09:20:39 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508120920.t7C9KdAl039989@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 12 Aug 2015 09:20:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394012 - in head: mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 09:20:40 -0000 Author: jbeich Date: Wed Aug 12 09:20:38 2015 New Revision: 394012 URL: https://svnweb.freebsd.org/changeset/ports/394012 Log: Switch back to bundled libvpx per vulnerabilites in v1.4.0 Security: http://www.vuxml.org/freebsd/34e60332-2448-4ed6-93f0-12713749f250.html MFH: 2015Q3 Modified: head/mail/thunderbird/Makefile head/www/firefox-esr/Makefile head/www/firefox/Makefile head/www/libxul/Makefile head/www/seamonkey/Makefile Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Wed Aug 12 09:15:58 2015 (r394011) +++ head/mail/thunderbird/Makefile Wed Aug 12 09:20:38 2015 (r394012) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -37,7 +37,7 @@ L_VERSION= 4.0.1 SSP_UNSAFE= yes USE_GECKO= gecko -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx USE_QT5= # empty QT_NONSTANDARD= yes Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Wed Aug 12 09:15:58 2015 (r394011) +++ head/www/firefox-esr/Makefile Wed Aug 12 09:20:38 2015 (r394012) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -36,7 +36,7 @@ USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= firefox-4[0-4].* firefox-3[02-9].* firefox-2[0-35-9].* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx MOZILLA_NAME= Firefox USE_QT5= # empty Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Wed Aug 12 09:15:58 2015 (r394011) +++ head/www/firefox/Makefile Wed Aug 12 09:20:38 2015 (r394012) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ @@ -20,13 +20,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -34,7 +34,7 @@ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/mult USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr-31.* firefox-esr-24.* firefox-esr-17.* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx MOZILLA_NAME= Firefox USE_QT5= # empty Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Wed Aug 12 09:15:58 2015 (r394011) +++ head/www/libxul/Makefile Wed Aug 12 09:20:38 2015 (r394012) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 38.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source @@ -19,13 +19,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -46,7 +46,7 @@ MOZ_OPTIONS?= --enable-application=xulru USE_GECKO= gecko CPE_PRODUCT= firefox_esr MOZILLA_EXEC_NAME=xulrunner -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx MOZILLA_PLIST_DIRS= bin include lib share/idl libdata MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-js \ mozilla-plugin Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Wed Aug 12 09:15:58 2015 (r394011) +++ head/www/seamonkey/Makefile Wed Aug 12 09:20:38 2015 (r394012) @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.33.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.6:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.7.4:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -47,7 +47,7 @@ MOZ_EXTENSIONS= default MOZ_OPTIONS+= --program-transform-name='s/seamonkey/${MOZILLA}/' \ --enable-application=suite -USE_MOZILLA= # empty +USE_MOZILLA= -vpx MOZ_PKGCONFIG_FILES= NOT_FOR_ARCHS= ia64 From owner-svn-ports-all@freebsd.org Wed Aug 12 09:44:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 291FD99EB46; Wed, 12 Aug 2015 09:44:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D7119AD; Wed, 12 Aug 2015 09:44:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C9iliv051985; Wed, 12 Aug 2015 09:44:47 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C9il5V051978; Wed, 12 Aug 2015 09:44:47 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508120944.t7C9il5V051978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 09:44:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394013 - in head/graphics: . R-cran-dygraphs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 09:44:48 -0000 Author: tota Date: Wed Aug 12 09:44:46 2015 New Revision: 394013 URL: https://svnweb.freebsd.org/changeset/ports/394013 Log: - Add new port: graphics/R-cran-dygraphs An R interface to the 'dygraphs' JavaScript charting library (a copy of which is included in the package). Provides rich facilities for charting time-series data in R, including highly configurable series- and axis-display and interactive features like zoom/pan and series/point highlighting. WWW: https://cran.r-project.org/web/packages/dygraphs/ Added: head/graphics/R-cran-dygraphs/ head/graphics/R-cran-dygraphs/Makefile (contents, props changed) head/graphics/R-cran-dygraphs/distinfo (contents, props changed) head/graphics/R-cran-dygraphs/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Aug 12 09:20:38 2015 (r394012) +++ head/graphics/Makefile Wed Aug 12 09:44:46 2015 (r394013) @@ -20,6 +20,7 @@ SUBDIR += R-cran-colorspace SUBDIR += R-cran-diagram SUBDIR += R-cran-dichromat + SUBDIR += R-cran-dygraphs SUBDIR += R-cran-ggplot2 SUBDIR += R-cran-gridBase SUBDIR += R-cran-munsell Added: head/graphics/R-cran-dygraphs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-dygraphs/Makefile Wed Aug 12 09:44:46 2015 (r394013) @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= dygraphs +PORTVERSION= 0.4.5 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Interface to Dygraphs Interactive Time Series Charting Library + +LICENSE= MIT + +RUN_DEPENDS= R-cran-magrittr>0:${PORTSDIR}/devel/R-cran-magrittr \ + R-cran-htmlwidgets>=0.3.2:${PORTSDIR}/www/R-cran-htmlwidgets \ + R-cran-zoo>=1.7.10:${PORTSDIR}/math/R-cran-zoo \ + R-cran-xts>=0.9.7:${PORTSDIR}/math/R-cran-xts + +USES= cran:auto-plist + +.include Added: head/graphics/R-cran-dygraphs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-dygraphs/distinfo Wed Aug 12 09:44:46 2015 (r394013) @@ -0,0 +1,2 @@ +SHA256 (dygraphs_0.4.5.tar.gz) = 492de52d03ecbcf022d77e6847fb30f18042a64e1719b3a1754d21075a206c21 +SIZE (dygraphs_0.4.5.tar.gz) = 476027 Added: head/graphics/R-cran-dygraphs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-dygraphs/pkg-descr Wed Aug 12 09:44:46 2015 (r394013) @@ -0,0 +1,7 @@ +An R interface to the 'dygraphs' JavaScript charting library (a +copy of which is included in the package). Provides rich facilities +for charting time-series data in R, including highly configurable +series- and axis-display and interactive features like zoom/pan and +series/point highlighting. + +WWW: https://cran.r-project.org/web/packages/dygraphs/ From owner-svn-ports-all@freebsd.org Wed Aug 12 09:55:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7328799EE32; Wed, 12 Aug 2015 09:55:11 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62D19F2F; Wed, 12 Aug 2015 09:55:11 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7C9tBUC056147; Wed, 12 Aug 2015 09:55:11 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7C9tBjh056146; Wed, 12 Aug 2015 09:55:11 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508120955.t7C9tBjh056146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 12 Aug 2015 09:55:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394014 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 09:55:11 -0000 Author: jbeich Date: Wed Aug 12 09:55:10 2015 New Revision: 394014 URL: https://svnweb.freebsd.org/changeset/ports/394014 Log: Make libvpx-1.3.0 vulnerable by moving MFSA 2014-77 into separate entry Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Aug 12 09:44:46 2015 (r394013) +++ head/security/vuxml/vuln.xml Wed Aug 12 09:55:10 2015 (r394014) @@ -58,6 +58,70 @@ Notes: --> + + libvpx -- out-of-bounds write + + + libvpx + 1.4.0 + + + firefox + 33.0,1 + + + firefox-esr + 31.1.2,1 + + + linux-firefox + 33.0,1 + + + linux-seamonkey + 2.30 + + + linux-thunderbird + 31.1.2 + + + seamonkey + 2.30 + + + thunderbird + 31.1.2 + + + libxul + 31.1.2 + + + + +

The Mozilla Project reports:

+
+

Using the Address Sanitizer tool, security researcher + Abhishek Arya (Inferno) of the Google Chrome Security Team + found an out-of-bounds write when buffering WebM format + video containing frames with invalid tile sizes. This can + lead to a potentially exploitable crash during WebM video + playback.

+
+ +
+ + CVE-2014-1578 + https://www.mozilla.org/security/advisories/mfsa2014-77/ + https://hg.mozilla.org/releases/mozilla-esr31/rev/6023f0b4f8ba + + + 2014-10-14 + 2015-08-12 + +
+ Adobe Flash Player -- critical vulnerabilities @@ -12223,7 +12287,6 @@ Notes:

MFSA 2014-75 Buffer overflow during CSS manipulation

MFSA 2014-76 Web Audio memory corruption issues with custom waveforms

-

MFSA 2014-77 Out-of-bounds write with WebM video

MFSA 2014-78 Further uninitialized memory use during GIF

MFSA 2014-79 Use-after-free interacting with text directionality

@@ -12239,7 +12302,6 @@ Notes: CVE-2014-1575 CVE-2014-1576 CVE-2014-1577 - CVE-2014-1578 CVE-2014-1580 CVE-2014-1581 CVE-2014-1582 @@ -12250,7 +12312,6 @@ Notes: https://www.mozilla.org/security/announce/2014/mfsa2014-74.html https://www.mozilla.org/security/announce/2014/mfsa2014-75.html https://www.mozilla.org/security/announce/2014/mfsa2014-76.html - https://www.mozilla.org/security/announce/2014/mfsa2014-77.html https://www.mozilla.org/security/announce/2014/mfsa2014-78.html https://www.mozilla.org/security/announce/2014/mfsa2014-79.html https://www.mozilla.org/security/announce/2014/mfsa2014-80.html @@ -12261,7 +12322,7 @@ Notes: 2014-10-14 2014-10-14 - 2014-10-16 + 2015-08-12
From owner-svn-ports-all@freebsd.org Wed Aug 12 11:18:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 508F699F24D; Wed, 12 Aug 2015 11:18:37 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 43E7681F; Wed, 12 Aug 2015 11:18:37 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 427CA1C7D; Wed, 12 Aug 2015 11:18:37 +0000 (UTC) Date: Wed, 12 Aug 2015 11:18:37 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Cc: "Philip M. Gollucci" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r394002 - head/net-p2p/zetacoin Message-ID: <20150812111837.GA46950@FreeBSD.org> References: <201508120202.t7C22Fek062663@repo.freebsd.org> <119E57656109CE822C0CCF8F@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <119E57656109CE822C0CCF8F@atuin.in.mat.cc> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 11:18:37 -0000 On Wed, Aug 12, 2015 at 11:12:31AM +0200, Mathieu Arnold wrote: > $ make -V BROKEN_armv6 > > Also, note that setting BROKEN_arch will give the error message: > > ===> zetacoin-0.9.2.4 is marked as broken on armv6: error Please implement > AtomicPointer for this platform. > > A simpler and better message would be something like: > > BROKEN_armv6= AtomicPointer not implemented. Your version is also buggy because it contains trailing dot. ;-) But I totally agree in general, very often people obviously do not bother to check the real output, while it's very simple: after adding BROKEN_foo, just do "make ARCH=foo" to see how it reads. ./danfe From owner-svn-ports-all@freebsd.org Wed Aug 12 11:24:05 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0248199F3DA; Wed, 12 Aug 2015 11:24:05 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DAF8BB3D; Wed, 12 Aug 2015 11:24:04 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CBO4N9092736; Wed, 12 Aug 2015 11:24:04 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CBO3x2092732; Wed, 12 Aug 2015 11:24:03 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508121124.t7CBO3x2092732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 11:24:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394015 - in head/textproc: . R-cran-DT X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 11:24:05 -0000 Author: tota Date: Wed Aug 12 11:24:03 2015 New Revision: 394015 URL: https://svnweb.freebsd.org/changeset/ports/394015 Log: - Add new port: textproc/R-cran-DT Data objects in R can be rendered as HTML tables using the JavaScript library 'DataTables' (typically via R Markdown or Shiny). The 'DataTables' library has been included in this R package. The package name 'DT' is an abbreviation of 'DataTables'. WWW: https://cran.r-project.org/web/packages/DT/ Added: head/textproc/R-cran-DT/ head/textproc/R-cran-DT/Makefile (contents, props changed) head/textproc/R-cran-DT/distinfo (contents, props changed) head/textproc/R-cran-DT/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Aug 12 09:55:10 2015 (r394014) +++ head/textproc/Makefile Wed Aug 12 11:24:03 2015 (r394015) @@ -4,6 +4,7 @@ COMMENT = Text processing utilities (does not include desktop publishing) SUBDIR += 2bsd-diff + SUBDIR += R-cran-DT SUBDIR += R-cran-R2HTML SUBDIR += R-cran-XML SUBDIR += R-cran-formatR Added: head/textproc/R-cran-DT/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-DT/Makefile Wed Aug 12 11:24:03 2015 (r394015) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= DT +PORTVERSION= 0.1 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Wrapper of the JavaScript Library 'DataTables' + +LICENSE= GPLv3 + +RUN_DEPENDS= R-cran-htmltools>0:${PORTSDIR}/textproc/R-cran-htmltools \ + R-cran-htmlwidgets>=0.4:${PORTSDIR}/www/R-cran-htmlwidgets \ + R-cran-magrittr>0:${PORTSDIR}/devel/R-cran-magrittr + +USES= cran:auto-plist + +.include Added: head/textproc/R-cran-DT/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-DT/distinfo Wed Aug 12 11:24:03 2015 (r394015) @@ -0,0 +1,2 @@ +SHA256 (DT_0.1.tar.gz) = 129bdafededbdcc3279d63b16f00c885b215f23cab2edfe33c9cbe177c8c4756 +SIZE (DT_0.1.tar.gz) = 332407 Added: head/textproc/R-cran-DT/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-DT/pkg-descr Wed Aug 12 11:24:03 2015 (r394015) @@ -0,0 +1,6 @@ +Data objects in R can be rendered as HTML tables using the JavaScript +library 'DataTables' (typically via R Markdown or Shiny). The +'DataTables' library has been included in this R package. The package +name 'DT' is an abbreviation of 'DataTables'. + +WWW: https://cran.r-project.org/web/packages/DT/ From owner-svn-ports-all@freebsd.org Wed Aug 12 11:37:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEA5699F76A; Wed, 12 Aug 2015 11:37:43 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A508E11DE; Wed, 12 Aug 2015 11:37:43 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CBbhel097254; Wed, 12 Aug 2015 11:37:43 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CBbfPd097243; Wed, 12 Aug 2015 11:37:41 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201508121137.t7CBbfPd097243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 12 Aug 2015 11:37:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394016 - in head/multimedia/mkvtoolnix: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 11:37:43 -0000 Author: ehaupt Date: Wed Aug 12 11:37:40 2015 New Revision: 394016 URL: https://svnweb.freebsd.org/changeset/ports/394016 Log: Update to 8.2.0 Deleted: head/multimedia/mkvtoolnix/files/patch-Rakefile head/multimedia/mkvtoolnix/files/patch-src_common_strings_editing.h Modified: head/multimedia/mkvtoolnix/Makefile head/multimedia/mkvtoolnix/distinfo head/multimedia/mkvtoolnix/files/patch-lib__libebml__ebml__EbmlBinary.h head/multimedia/mkvtoolnix/files/patch-src-common-timecode.h head/multimedia/mkvtoolnix/files/patch-src_common_common.cpp head/multimedia/mkvtoolnix/files/patch-src_common_dts.cpp head/multimedia/mkvtoolnix/files/patch-src_input_r__dts.cpp head/multimedia/mkvtoolnix/files/patch-src_input_r__wav.cpp head/multimedia/mkvtoolnix/pkg-plist Modified: head/multimedia/mkvtoolnix/Makefile ============================================================================== --- head/multimedia/mkvtoolnix/Makefile Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/Makefile Wed Aug 12 11:37:40 2015 (r394016) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mkvtoolnix -PORTVERSION= 7.9.0 +PORTVERSION= 8.2.0 CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ \ LOCAL/ehaupt @@ -19,7 +19,7 @@ LIB_DEPENDS= libvorbis.so:${PORTSDIR}/au libboost_regex.so:${PORTSDIR}/devel/boost-libs \ libmatroska.so:${PORTSDIR}/multimedia/libmatroska -USES= pkgconfig gettext iconv compiler:c++11-lib tar:xz +USES= compiler:c++11-lib gettext iconv pkgconfig tar:xz GNU_CONFIGURE= yes USE_RUBY= yes RUBY_NO_RUN_DEPENDS= yes Modified: head/multimedia/mkvtoolnix/distinfo ============================================================================== --- head/multimedia/mkvtoolnix/distinfo Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/distinfo Wed Aug 12 11:37:40 2015 (r394016) @@ -1,2 +1,2 @@ -SHA256 (mkvtoolnix-7.9.0.tar.xz) = 39788fa57d9cebd6ea3be9db58dbf8a10fd7c96ad8fa4f79bdf4dadca77bba4a -SIZE (mkvtoolnix-7.9.0.tar.xz) = 5628608 +SHA256 (mkvtoolnix-8.2.0.tar.xz) = eb6d3d7a0254bb4326dccc9983418801783198cdf4a259f31261dab4e843a5c4 +SIZE (mkvtoolnix-8.2.0.tar.xz) = 5856988 Modified: head/multimedia/mkvtoolnix/files/patch-lib__libebml__ebml__EbmlBinary.h ============================================================================== --- head/multimedia/mkvtoolnix/files/patch-lib__libebml__ebml__EbmlBinary.h Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/files/patch-lib__libebml__ebml__EbmlBinary.h Wed Aug 12 11:37:40 2015 (r394016) @@ -1,5 +1,5 @@ ---- ./lib/libebml/ebml/EbmlBinary.h.orig 2013-09-16 22:01:58.000000000 +0200 -+++ ./lib/libebml/ebml/EbmlBinary.h 2013-10-09 08:13:47.119105934 +0200 +--- lib/libebml/ebml/EbmlBinary.h.orig 2015-07-18 11:39:43 UTC ++++ lib/libebml/ebml/EbmlBinary.h @@ -41,6 +41,7 @@ #include "EbmlTypes.h" Modified: head/multimedia/mkvtoolnix/files/patch-src-common-timecode.h ============================================================================== --- head/multimedia/mkvtoolnix/files/patch-src-common-timecode.h Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/files/patch-src-common-timecode.h Wed Aug 12 11:37:40 2015 (r394016) @@ -1,6 +1,6 @@ ---- src/common/timecode.h.orig 2012-09-22 22:31:07.000000000 +0800 -+++ src/common/timecode.h 2012-09-22 22:31:19.000000000 +0800 -@@ -139,7 +139,7 @@ +--- src/common/timecode.h.orig 2015-07-18 11:39:41 UTC ++++ src/common/timecode.h +@@ -147,7 +147,7 @@ public: } basic_timecode_c abs() const { @@ -8,4 +8,4 @@ + return basic_timecode_c{(T)std::abs(m_timecode), m_valid}; } - // comparison + basic_timecode_c value_or_min() const { Modified: head/multimedia/mkvtoolnix/files/patch-src_common_common.cpp ============================================================================== --- head/multimedia/mkvtoolnix/files/patch-src_common_common.cpp Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/files/patch-src_common_common.cpp Wed Aug 12 11:37:40 2015 (r394016) @@ -1,6 +1,6 @@ ---- src/common/common.cpp.orig 2015-06-08 16:28:17.092399114 +0200 -+++ src/common/common.cpp 2015-06-08 16:28:32.292398239 +0200 -@@ -30,6 +30,10 @@ +--- src/common/common.cpp.orig 2015-07-18 11:39:41 UTC ++++ src/common/common.cpp +@@ -33,6 +33,10 @@ #include "common/strings/editing.h" #include "common/translation.h" Modified: head/multimedia/mkvtoolnix/files/patch-src_common_dts.cpp ============================================================================== --- head/multimedia/mkvtoolnix/files/patch-src_common_dts.cpp Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/files/patch-src_common_dts.cpp Wed Aug 12 11:37:40 2015 (r394016) @@ -1,6 +1,6 @@ ---- src/common/dts.cpp.orig 2015-06-08 14:19:36 UTC +--- src/common/dts.cpp.orig 2015-07-18 11:39:41 UTC +++ src/common/dts.cpp -@@ -19,6 +19,10 @@ +@@ -23,6 +23,10 @@ #include "common/endian.h" #include "common/math.h" Modified: head/multimedia/mkvtoolnix/files/patch-src_input_r__dts.cpp ============================================================================== --- head/multimedia/mkvtoolnix/files/patch-src_input_r__dts.cpp Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/files/patch-src_input_r__dts.cpp Wed Aug 12 11:37:40 2015 (r394016) @@ -1,6 +1,6 @@ ---- src/input/r_dts.cpp.orig 2015-06-08 14:20:03 UTC +--- src/input/r_dts.cpp.orig 2015-07-18 11:39:41 UTC +++ src/input/r_dts.cpp -@@ -23,6 +23,10 @@ +@@ -27,6 +27,10 @@ #include "merge/input_x.h" #include "output/p_dts.h" Modified: head/multimedia/mkvtoolnix/files/patch-src_input_r__wav.cpp ============================================================================== --- head/multimedia/mkvtoolnix/files/patch-src_input_r__wav.cpp Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/files/patch-src_input_r__wav.cpp Wed Aug 12 11:37:40 2015 (r394016) @@ -1,6 +1,6 @@ ---- src/input/r_wav.cpp.orig 2015-06-08 14:20:26 UTC +--- src/input/r_wav.cpp.orig 2015-07-18 11:39:41 UTC +++ src/input/r_wav.cpp -@@ -29,6 +29,10 @@ +@@ -32,6 +32,10 @@ #include "output/p_dts.h" #include "output/p_pcm.h" Modified: head/multimedia/mkvtoolnix/pkg-plist ============================================================================== --- head/multimedia/mkvtoolnix/pkg-plist Wed Aug 12 11:24:03 2015 (r394015) +++ head/multimedia/mkvtoolnix/pkg-plist Wed Aug 12 11:37:40 2015 (r394016) @@ -124,7 +124,6 @@ %%WXGTK%%man/zh_CN/man1/mmg.1.gz %%WXGTK%%share/applications/mkvinfo.desktop %%WXGTK%%share/applications/mkvmergeGUI.desktop -%%WXGTK%%share/applications/mkvtoolnix-gui.desktop %%WXGTK%%share/icons/hicolor/128x128/apps/mkvextract.png %%WXGTK%%share/icons/hicolor/128x128/apps/mkvinfo.png %%WXGTK%%share/icons/hicolor/128x128/apps/mkvmerge.png @@ -190,6 +189,11 @@ bin/mkvextract bin/mkvinfo bin/mkvmerge bin/mkvpropedit +man/es/man1/mkvextract.1.gz +man/es/man1/mkvinfo.1.gz +man/es/man1/mkvmerge.1.gz +man/es/man1/mkvpropedit.1.gz +man/es/man1/mmg.1.gz man/ja/man1/mkvextract.1.gz man/ja/man1/mkvinfo.1.gz man/ja/man1/mkvmerge.1.gz From owner-svn-ports-all@freebsd.org Wed Aug 12 12:00:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B4FA9A01B2; Wed, 12 Aug 2015 12:00:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F07FB1E89; Wed, 12 Aug 2015 12:00:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CC0XhM005742; Wed, 12 Aug 2015 12:00:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CC0XCm005741; Wed, 12 Aug 2015 12:00:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508121200.t7CC0XCm005741@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 12 Aug 2015 12:00:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394017 - head/print/texlive-texmf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 12:00:34 -0000 Author: amdmi3 Date: Wed Aug 12 12:00:33 2015 New Revision: 394017 URL: https://svnweb.freebsd.org/changeset/ports/394017 Log: - Fix shebangs - Add NO_ARCH - Fix NO_WRKSRC (should be NO_WRKSUBDIR) Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/print/texlive-texmf/Makefile Modified: head/print/texlive-texmf/Makefile ============================================================================== --- head/print/texlive-texmf/Makefile Wed Aug 12 11:37:40 2015 (r394016) +++ head/print/texlive-texmf/Makefile Wed Aug 12 12:00:33 2015 (r394017) @@ -2,7 +2,7 @@ PORTNAME= texlive PORTVERSION= 20150523 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print MASTER_SITES= ftp://ftp.tug.org/historic/systems/texlive/2015/:texmf \ LOCAL/hrs:latex @@ -18,11 +18,12 @@ COMMENT= TeX Live Typesetting System, te CONFLICTS_INSTALL= texlive-base-201[234]* \ texlive-texmf-201[234]* -USES= tar:xz +USES= shebangfix tar:xz USE_TEX= basic:extract base tlmgr:run texhash TEXHASHDIRS= ${TEXMFDIR} ${TEXMFDISTDIR} NO_BUILD= yes -NO_WRKSRC= yes +NO_WRKSUBDIR= yes +NO_ARCH= yes EXCLUDE_FILES= \*/doc/man \ texmf-dist/ls-R \ @@ -271,4 +272,12 @@ do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${TEXMFDISTDIR}/source ${TOUCH} ${STAGEDIR}${PREFIX}/${TEXMFDISTDIR}/source/.keep_me +post-install: + @${REINPLACE_CMD} -i '' -e '1s|${bash_OLD_CMD}|${bash_CMD}|' \ + ${STAGEDIR}${PREFIX}/share/texmf-dist/scripts/logicpuzzle/createlpsudoku \ + ${STAGEDIR}${PREFIX}/share/texmf-dist/scripts/logicpuzzle/lpsmag \ + ${STAGEDIR}${PREFIX}/share/texmf-dist/scripts/shipunov/biokey2html.sh + @${REINPLACE_CMD} -i '' -e '1s|${perl_OLD_CMD}|${perl_CMD}|' \ + ${STAGEDIR}${PREFIX}/share/texmf-dist/scripts/mycv/mycv_split_contents.pl + .include From owner-svn-ports-all@freebsd.org Wed Aug 12 12:43:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A7BF9A0AB8; Wed, 12 Aug 2015 12:43:33 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7583F336; Wed, 12 Aug 2015 12:43:33 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CChXhB025662; Wed, 12 Aug 2015 12:43:33 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CChXD9025661; Wed, 12 Aug 2015 12:43:33 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201508121243.t7CChXD9025661@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 12 Aug 2015 12:43:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394018 - head/multimedia/mkvtoolnix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 12:43:33 -0000 Author: ehaupt Date: Wed Aug 12 12:43:32 2015 New Revision: 394018 URL: https://svnweb.freebsd.org/changeset/ports/394018 Log: Fix package list if the default option WXGTK is disabled. Modified: head/multimedia/mkvtoolnix/pkg-plist Modified: head/multimedia/mkvtoolnix/pkg-plist ============================================================================== --- head/multimedia/mkvtoolnix/pkg-plist Wed Aug 12 12:00:33 2015 (r394017) +++ head/multimedia/mkvtoolnix/pkg-plist Wed Aug 12 12:43:32 2015 (r394018) @@ -117,6 +117,7 @@ %%WXGTK%%man/de/man1/mkvmerge.1.gz %%WXGTK%%man/de/man1/mkvpropedit.1.gz %%WXGTK%%man/de/man1/mmg.1.gz +%%WXGTK%%man/es/man1/mmg.1.gz %%WXGTK%%man/ja/man1/mmg.1.gz %%WXGTK%%man/man1/mmg.1.gz %%WXGTK%%man/nl/man1/mmg.1.gz @@ -193,7 +194,6 @@ man/es/man1/mkvextract.1.gz man/es/man1/mkvinfo.1.gz man/es/man1/mkvmerge.1.gz man/es/man1/mkvpropedit.1.gz -man/es/man1/mmg.1.gz man/ja/man1/mkvextract.1.gz man/ja/man1/mkvinfo.1.gz man/ja/man1/mkvmerge.1.gz From owner-svn-ports-all@freebsd.org Wed Aug 12 13:10:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3D7C99F291; Wed, 12 Aug 2015 13:10:30 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 94B72144; Wed, 12 Aug 2015 13:10:30 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CDAUYr034201; Wed, 12 Aug 2015 13:10:30 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CDAUOB034199; Wed, 12 Aug 2015 13:10:30 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201508121310.t7CDAUOB034199@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Wed, 12 Aug 2015 13:10:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394019 - head/ftp/ocaml-ocurl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 13:10:30 -0000 Author: johans Date: Wed Aug 12 13:10:29 2015 New Revision: 394019 URL: https://svnweb.freebsd.org/changeset/ports/394019 Log: Update to ocurl 0.7.5 (bugfix release) Modified: head/ftp/ocaml-ocurl/Makefile head/ftp/ocaml-ocurl/distinfo Modified: head/ftp/ocaml-ocurl/Makefile ============================================================================== --- head/ftp/ocaml-ocurl/Makefile Wed Aug 12 12:43:32 2015 (r394018) +++ head/ftp/ocaml-ocurl/Makefile Wed Aug 12 13:10:29 2015 (r394019) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= ocurl -PORTVERSION= 0.7.4 +PORTVERSION= 0.7.5 CATEGORIES= ftp -MASTER_SITES= https://forge.ocamlcore.org/frs/download.php/1523/ \ +MASTER_SITES= https://forge.ocamlcore.org/frs/download.php/1537/ \ http://ygrek.org.ua/p/release/ocurl/ PKGNAMEPREFIX= ocaml- Modified: head/ftp/ocaml-ocurl/distinfo ============================================================================== --- head/ftp/ocaml-ocurl/distinfo Wed Aug 12 12:43:32 2015 (r394018) +++ head/ftp/ocaml-ocurl/distinfo Wed Aug 12 13:10:29 2015 (r394019) @@ -1,2 +1,2 @@ -SHA256 (ocurl-0.7.4.tar.gz) = 51af1d4fc38a7be15cac38a1367f4e2dcd8c2014d8d2e545d96d25c8d2f0135e -SIZE (ocurl-0.7.4.tar.gz) = 104716 +SHA256 (ocurl-0.7.5.tar.gz) = a6432a2f0109525b4128337ac9708b0192a97ee8f958a5f65b6c8f25435f6cff +SIZE (ocurl-0.7.5.tar.gz) = 103981 From owner-svn-ports-all@freebsd.org Wed Aug 12 13:19:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F19B099F515; Wed, 12 Aug 2015 13:19:44 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DFD0F775; Wed, 12 Aug 2015 13:19:44 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CDJitN038745; Wed, 12 Aug 2015 13:19:44 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CDJbWF038716; Wed, 12 Aug 2015 13:19:37 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201508121319.t7CDJbWF038716@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 12 Aug 2015 13:19:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394020 - in head/databases: mariadb100-client/files mariadb100-server mariadb100-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 13:19:45 -0000 Author: brnrd Date: Wed Aug 12 13:19:36 2015 New Revision: 394020 URL: https://svnweb.freebsd.org/changeset/ports/394020 Log: databases/mariadb100-server: Update to 10.0.21 - Update to 10.0.21 - Updates mariadb100-client as well (slave-port) - Silence portlint - Re-roll patches with makepatch [1] https://mariadb.atlassian.net/browse/MDEV-7398 [2] https://mariadb.atlassian.net/browse/MDEV-8128 Changes: https://mariadb.com/kb/en/mariadb/mariadb-10021-changelog/ Differential revision: https://reviews.freebsd.org/D2771 Reviewed by: koobs (mentor), vsevolod (mentor) Approved by: vsevolod (mentor) PR: 200097 Security: 36bd352d-299b-11e5-86ff-14dae9d210b8 MFH: 2015Q3 Added: head/databases/mariadb100-server/files/extra-patch-include_my__compare.h - copied unchanged from r394014, head/databases/mariadb100-server/files/extra-patch-include_my_compare.h head/databases/mariadb100-server/files/patch-cmake_jemalloc.cmake - copied, changed from r392421, head/databases/mariadb100-server/files/patch-cmake__jemalloc.cmake head/databases/mariadb100-server/files/patch-mysys_my__default.c - copied, changed from r392421, head/databases/mariadb100-server/files/patch-mysys_my_default.c head/databases/mariadb100-server/files/patch-scripts_mysql__config.sh - copied, changed from r392421, head/databases/mariadb100-server/files/patch-scripts_mysql_config.sh head/databases/mariadb100-server/files/patch-scripts_mysqld__safe.sh - copied, changed from r392421, head/databases/mariadb100-server/files/patch-scripts_mysqld_safe.sh head/databases/mariadb100-server/files/patch-sql_sql__trigger.cc - copied, changed from r392421, head/databases/mariadb100-server/files/patch-sql_sql_trigger.cc head/databases/mariadb100-server/files/patch-sql_sql__view.cc - copied, changed from r392421, head/databases/mariadb100-server/files/patch-sql_sql_view.cc head/databases/mariadb100-server/files/patch-sql_sys__vars.cc - copied, changed from r392421, head/databases/mariadb100-server/files/patch-sql_sys_vars.cc Deleted: head/databases/mariadb100-server/files/extra-patch-include_my_compare.h head/databases/mariadb100-server/files/patch-cmake__jemalloc.cmake head/databases/mariadb100-server/files/patch-mysys_my_default.c head/databases/mariadb100-server/files/patch-scripts_mysql_config.sh head/databases/mariadb100-server/files/patch-scripts_mysqld_safe.sh head/databases/mariadb100-server/files/patch-sql_sql_trigger.cc head/databases/mariadb100-server/files/patch-sql_sql_view.cc head/databases/mariadb100-server/files/patch-sql_sys_vars.cc Modified: head/databases/mariadb100-client/files/patch-CMakeLists.txt head/databases/mariadb100-server/Makefile head/databases/mariadb100-server/distinfo head/databases/mariadb100-server/files/patch-CMakeLists.txt head/databases/mariadb100-server/files/patch-client_CMakeLists.txt head/databases/mariadb100-server/files/patch-extra_CMakeLists.txt head/databases/mariadb100-server/files/patch-extra_yassl_taocrypt_src_integer.cpp head/databases/mariadb100-server/files/patch-include_CMakeLists.txt head/databases/mariadb100-server/files/patch-libmysql_CMakeLists.txt head/databases/mariadb100-server/files/patch-libservices_CMakeLists.txt head/databases/mariadb100-server/files/patch-man_CMakeLists.txt head/databases/mariadb100-server/files/patch-pcre_CMakeLists.txt head/databases/mariadb100-server/files/patch-scripts_CMakeLists.txt head/databases/mariadb100-server/files/patch-sql_CMakeLists.txt head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_cmake__modules_TokuFeatureDetection.cmake head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_portability_memory.cc head/databases/mariadb100-server/files/patch-support-files_CMakeLists.txt head/databases/mariadb100-server/pkg-plist Modified: head/databases/mariadb100-client/files/patch-CMakeLists.txt ============================================================================== --- head/databases/mariadb100-client/files/patch-CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-client/files/patch-CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,43 +1,25 @@ ---- CMakeLists.txt.orig 2014-09-25 00:29:47.000000000 +0200 -+++ CMakeLists.txt 2014-09-27 09:57:32.000000000 +0200 -@@ -430,28 +430,8 @@ +--- CMakeLists.txt.orig 2015-08-05 20:11:27.000000000 +0200 ++++ CMakeLists.txt 2015-08-07 12:05:52.895578945 +0200 +@@ -405,9 +405,9 @@ ADD_SUBDIRECTORY(client) ADD_SUBDIRECTORY(extra) ADD_SUBDIRECTORY(libservices) ADD_SUBDIRECTORY(scripts) -ADD_SUBDIRECTORY(sql/share) ADD_SUBDIRECTORY(support-files) --IF(NOT WITHOUT_SERVER) -- ADD_SUBDIRECTORY(tests) -- ADD_SUBDIRECTORY(sql) -- OPTION (WITH_EMBEDDED_SERVER "Compile MySQL with embedded server" OFF) -- IF(WITH_EMBEDDED_SERVER) -- ADD_SUBDIRECTORY(libmysqld) -- ADD_SUBDIRECTORY(libmysqld/examples) -- ENDIF(WITH_EMBEDDED_SERVER) -- -- ADD_SUBDIRECTORY(mysql-test) -- ADD_SUBDIRECTORY(mysql-test/lib/My/SafeProcess) -- ADD_SUBDIRECTORY(sql-bench) -- -- IF(EXISTS ${CMAKE_SOURCE_DIR}/internal/CMakeLists.txt) -- ADD_SUBDIRECTORY(internal) -- ENDIF() -- ADD_SUBDIRECTORY(packaging/rpm-oel) --ENDIF() -- - IF(UNIX) - ADD_SUBDIRECTORY(man) - ENDIF() -@@ -463,7 +443,6 @@ - ADD_SUBDIRECTORY(win/upgrade_wizard) - ADD_SUBDIRECTORY(win/packaging) ++IF(FALSE) + IF(NOT WITHOUT_SERVER) + ADD_SUBDIRECTORY(tests) + ADD_SUBDIRECTORY(sql) +@@ -425,6 +426,7 @@ IF(NOT WITHOUT_SERVER) + ADD_SUBDIRECTORY(internal) + ENDIF() ENDIF() --ADD_SUBDIRECTORY(packaging/solaris) ++ENDIF() - IF(NOT CMAKE_CROSSCOMPILING) - SET(EXPORTED comp_err comp_sql factorial) -@@ -506,6 +485,7 @@ + IF(UNIX) + ADD_SUBDIRECTORY(man) +@@ -480,6 +482,7 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) @@ -45,7 +27,7 @@ INSTALL_DOCUMENTATION(README CREDITS COPYING COPYING.LESSER EXCEPTIONS-CLIENT COMPONENT Readme) -@@ -516,6 +496,7 @@ +@@ -490,6 +493,7 @@ INSTALL_DOCUMENTATION(README CREDITS COP IF(UNIX) INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) ENDIF() Modified: head/databases/mariadb100-server/Makefile ============================================================================== --- head/databases/mariadb100-server/Makefile Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/Makefile Wed Aug 12 13:19:36 2015 (r394020) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.0.17 +PORTVERSION= 10.0.21 CATEGORIES= databases ipv6 MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ http://mirrors.supportex.net/${SITESDIR}/ \ @@ -13,7 +13,7 @@ MASTER_SITES= http://ftp.osuosl.org/pub/ http://mirror.switch.ch/mirror/${SITESDIR}/ PKGNAMESUFFIX?= 100-server -MAINTAINER= spil.oss@gmail.com +MAINTAINER= brnrd@FreeBSD.org COMMENT?= Multithreaded SQL database (server) LICENSE= GPLv2 @@ -21,13 +21,13 @@ LICENSE= GPLv2 SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message +UNIQUENAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} SLAVEDIRS= databases/mariadb100-client USES= bison:build cmake execinfo gmake shebangfix cpe +USE_LDCONFIG= ${PREFIX}/lib/mysql ${PREFIX}/lib/mysql/plugin SHEBANG_FILES= scripts/*.sh SITESDIR= mariadb/mariadb-${PORTVERSION}/source -BROKEN_armv6= Does not compile on arm - OPTIONS_DEFINE= FASTMTX OPTIONS_RADIO= SSL OPTIONS_RADIO_SSL= BUNDLED_SSL OPENSSL WITHOUT_SSL @@ -59,15 +59,16 @@ CMAKE_ARGS+= -DINSTALL_DOCDIR="share/doc -DEXECINFO_ROOT=${LOCALBASE} \ -DCOMPILATION_COMMENT="FreeBSD Ports" +DATADIR= ${PREFIX}/share/mysql + .ifdef USE_MYSQL -.error You have USE_MYSQL variable defined either in environment or in make(1) arguments. Please undefine and try again. +.error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. This leads to a circular dependency. Please undefine and try again. .endif -DATADIR= ${PREFIX}/share/mysql - .if !defined(CLIENT_ONLY) # MySQL-Server options USE_MYSQL= yes +USE_LDCONFIG+= ${PREFIX}/lib/mysql/plugin OPTIONS_DEFINE+= INNODB MAXKEY MROONGA OQGRAPH OPTIONS_DEFAULT+= MAXKEY OPTIONS_SUB= yes @@ -104,10 +105,11 @@ CMAKE_ARGS+= -DWITH_EMBEDDED_SERVER="ON" -DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 INNODB_CMAKE_OFF= -DWITHOUT_INNOBASE=1 -MAXKEY_EXTRA_PATCHES+= ${FILESDIR}/extra-patch-include_my_compare.h +MAXKEY_EXTRA_PATCHES+= ${FILESDIR}/extra-patch-include_my__compare.h MROONGA_CMAKE_OFF= -DWITHOUT_MROONGA=1 OQGRAPH_CMAKE_OFF= -DWITHOUT_OQGRAPH=1 -OQGRAPH_LIB_DEPENDS= libboost_system.so:${PORTSDIR}/devel/boost-libs +OQGRAPH_LIB_DEPENDS= libboost_system.so:${PORTSDIR}/devel/boost-libs \ + libJudy.so:${PORTSDIR}/devel/judy post-install: # Remove programs to avoid conflict with mariadb100-client @@ -132,6 +134,11 @@ CMAKE_ARGS+= -DWITH_JEMALLOC="no" USE_GCC= yes .endif +.if ${PORT_OPTIONS:MOQGRPAH} +IGNORE= currently MariaDB doesn't build correctly with OQGraph \ + See https://mariadb.atlassian.net/browse/MDEV-8128. +.endif + post-patch: @${REINPLACE_CMD} 's/*.1/${MAN1}/' ${WRKSRC}/man/CMakeLists.txt @${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/mysys/my_default.c Modified: head/databases/mariadb100-server/distinfo ============================================================================== --- head/databases/mariadb100-server/distinfo Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/distinfo Wed Aug 12 13:19:36 2015 (r394020) @@ -1,2 +1,2 @@ -SHA256 (mariadb-10.0.17.tar.gz) = 9cd394e99942c3700b13f2bf126895fe587e668bfcaffcfd81f0cd878fc19311 -SIZE (mariadb-10.0.17.tar.gz) = 55989700 +SHA256 (mariadb-10.0.21.tar.gz) = 4b9a32e15ceadefdb1057a02eb3e0addf702b75aef631a3c9194b832ecfa3545 +SIZE (mariadb-10.0.21.tar.gz) = 56216903 Copied: head/databases/mariadb100-server/files/extra-patch-include_my__compare.h (from r394014, head/databases/mariadb100-server/files/extra-patch-include_my_compare.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mariadb100-server/files/extra-patch-include_my__compare.h Wed Aug 12 13:19:36 2015 (r394020, copy of r394014, head/databases/mariadb100-server/files/extra-patch-include_my_compare.h) @@ -0,0 +1,11 @@ +--- include/my_compare.h.orig 2012-11-28 17:49:43.000000000 +0200 ++++ include/my_compare.h 2012-12-23 02:45:51.000000000 +0200 +@@ -40,7 +40,7 @@ + But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and HA_MAX_KEY_LENGTH. + */ + +-#define HA_MAX_KEY_LENGTH 1000 /* Max length in bytes */ ++#define HA_MAX_KEY_LENGTH 4000 /* Max length in bytes */ + #define HA_MAX_KEY_SEG 32 /* Max segments for key */ + + #define HA_MAX_POSSIBLE_KEY_BUFF (HA_MAX_KEY_LENGTH + 24+ 6+6) Modified: head/databases/mariadb100-server/files/patch-CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,22 +1,14 @@ ---- CMakeLists.txt.orig 2014-08-09 00:13:37.000000000 +0200 -+++ CMakeLists.txt 2014-09-05 18:22:34.646409575 +0200 -@@ -463,7 +463,6 @@ - ADD_SUBDIRECTORY(win/upgrade_wizard) - ADD_SUBDIRECTORY(win/packaging) - ENDIF() --ADD_SUBDIRECTORY(packaging/solaris) - - IF(NOT CMAKE_CROSSCOMPILING) - SET(EXPORTED comp_err comp_sql factorial gen_lex_hash) -@@ -503,6 +502,7 @@ +--- CMakeLists.txt.orig 2015-08-05 18:11:27 UTC ++++ CMakeLists.txt +@@ -480,6 +480,7 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) +IF(FALSE) INSTALL_DOCUMENTATION(README CREDITS COPYING COPYING.LESSER EXCEPTIONS-CLIENT COMPONENT Readme) - INSTALL_DOCUMENTATION(${CMAKE_BINARY_DIR}/Docs/INFO_SRC -@@ -511,6 +511,7 @@ + +@@ -490,6 +491,7 @@ INSTALL_DOCUMENTATION(README CREDITS COP IF(UNIX) INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) ENDIF() Modified: head/databases/mariadb100-server/files/patch-client_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-client_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-client_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- client/CMakeLists.txt.orig 2014-08-09 00:13:48.000000000 +0200 -+++ client/CMakeLists.txt 2014-09-07 21:19:33.000000000 +0200 -@@ -30,6 +30,7 @@ +--- client/CMakeLists.txt.orig 2015-06-17 14:54:11 UTC ++++ client/CMakeLists.txt +@@ -30,6 +30,7 @@ INCLUDE_DIRECTORIES( COPY_OPENSSL_DLLS(copy_openssl_client) ADD_DEFINITIONS(${SSL_DEFINES}) @@ -8,7 +8,7 @@ MYSQL_ADD_EXECUTABLE(mysql completion_hash.cc mysql.cc readline.cc ${CMAKE_SOURCE_DIR}/sql/sql_string.cc) TARGET_LINK_LIBRARIES(mysql mysqlclient) -@@ -37,6 +38,7 @@ +@@ -37,6 +38,7 @@ IF(UNIX) TARGET_LINK_LIBRARIES(mysql ${MY_READLINE_LIBRARY}) SET_TARGET_PROPERTIES(mysql PROPERTIES ENABLE_EXPORTS TRUE) ENDIF(UNIX) @@ -16,7 +16,7 @@ MYSQL_ADD_EXECUTABLE(mysqltest mysqltest.cc COMPONENT Test) SET_SOURCE_FILES_PROPERTIES(mysqltest.cc PROPERTIES COMPILE_FLAGS "-DTHREADS") -@@ -44,6 +46,7 @@ +@@ -44,6 +46,7 @@ TARGET_LINK_LIBRARIES(mysqltest mysqlcli SET_TARGET_PROPERTIES(mysqltest PROPERTIES ENABLE_EXPORTS TRUE) @@ -24,7 +24,7 @@ MYSQL_ADD_EXECUTABLE(mysqlcheck mysqlcheck.c) TARGET_LINK_LIBRARIES(mysqlcheck mysqlclient) -@@ -52,17 +55,21 @@ +@@ -52,17 +55,21 @@ TARGET_LINK_LIBRARIES(mysqldump mysqlcli MYSQL_ADD_EXECUTABLE(mysqlimport mysqlimport.c) TARGET_LINK_LIBRARIES(mysqlimport mysqlclient) @@ -46,7 +46,7 @@ MYSQL_ADD_EXECUTABLE(mysqlbinlog mysqlbinlog.cc) TARGET_LINK_LIBRARIES(mysqlbinlog mysqlclient) -@@ -72,17 +79,20 @@ +@@ -72,17 +79,20 @@ TARGET_LINK_LIBRARIES(mysqladmin mysqlcl MYSQL_ADD_EXECUTABLE(mysqlslap mysqlslap.c) SET_SOURCE_FILES_PROPERTIES(mysqlslap.c PROPERTIES COMPILE_FLAGS "-DTHREADS") TARGET_LINK_LIBRARIES(mysqlslap mysqlclient) Copied and modified: head/databases/mariadb100-server/files/patch-cmake_jemalloc.cmake (from r392421, head/databases/mariadb100-server/files/patch-cmake__jemalloc.cmake) ============================================================================== --- head/databases/mariadb100-server/files/patch-cmake__jemalloc.cmake Sat Jul 18 13:30:27 2015 (r392421, copy source) +++ head/databases/mariadb100-server/files/patch-cmake_jemalloc.cmake Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- cmake/jemalloc.cmake.orig 2014-09-25 00:29:47.000000000 +0200 -+++ cmake/jemalloc.cmake 2014-09-27 10:05:48.000000000 +0200 -@@ -24,12 +24,12 @@ +--- cmake/jemalloc.cmake.orig 2015-06-17 14:54:11 UTC ++++ cmake/jemalloc.cmake +@@ -24,12 +24,12 @@ MACRO (CHECK_JEMALLOC) SET(what system) ENDIF() Modified: head/databases/mariadb100-server/files/patch-extra_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-extra_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-extra_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- extra/CMakeLists.txt.orig 2014-08-09 00:13:40.000000000 +0200 -+++ extra/CMakeLists.txt 2014-09-05 18:32:20.555373233 +0200 -@@ -80,6 +80,8 @@ +--- extra/CMakeLists.txt.orig 2015-06-17 14:54:11 UTC ++++ extra/CMakeLists.txt +@@ -78,9 +78,11 @@ IF(UNIX) MYSQL_ADD_EXECUTABLE(resolve_stack_dump resolve_stack_dump.c) TARGET_LINK_LIBRARIES(resolve_stack_dump mysys) @@ -9,3 +9,6 @@ TARGET_LINK_LIBRARIES(mysql_waitpid mysys) ENDIF() +ENDIF() + + + # Add path to the InnoDB headers Modified: head/databases/mariadb100-server/files/patch-extra_yassl_taocrypt_src_integer.cpp ============================================================================== --- head/databases/mariadb100-server/files/patch-extra_yassl_taocrypt_src_integer.cpp Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-extra_yassl_taocrypt_src_integer.cpp Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- extra/yassl/taocrypt/src/integer.cpp.orig 2014-04-15 14:02:39.000000000 +0300 -+++ extra/yassl/taocrypt/src/integer.cpp 2014-05-16 17:00:15.000000000 +0300 -@@ -75,7 +75,7 @@ +--- extra/yassl/taocrypt/src/integer.cpp.orig 2015-06-17 14:54:11 UTC ++++ extra/yassl/taocrypt/src/integer.cpp +@@ -74,7 +74,7 @@ template CPP_TYPENAME AlignedAllocator::pointer AlignedAllocator::allocate( size_type n, const void *) { Modified: head/databases/mariadb100-server/files/patch-include_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-include_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-include_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- include/CMakeLists.txt.orig 2014-08-09 00:13:38.000000000 +0200 -+++ include/CMakeLists.txt 2014-09-05 18:38:18.461346954 +0200 -@@ -62,17 +62,21 @@ +--- include/CMakeLists.txt.orig 2015-06-17 14:54:11 UTC ++++ include/CMakeLists.txt +@@ -62,17 +62,21 @@ SET(HEADERS handler_ername.h ) Modified: head/databases/mariadb100-server/files/patch-libmysql_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-libmysql_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-libmysql_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- libmysql/CMakeLists.txt.orig 2014-08-09 00:13:37.000000000 +0200 -+++ libmysql/CMakeLists.txt 2014-09-05 18:46:34.420323119 +0200 -@@ -403,7 +403,7 @@ +--- libmysql/CMakeLists.txt.orig 2015-06-17 14:54:11 UTC ++++ libmysql/CMakeLists.txt +@@ -410,7 +410,7 @@ SET(LIBS clientlib dbug strings vio mysy # Merge several convenience libraries into one big mysqlclient # and link them together into shared library. @@ -9,7 +9,7 @@ # Visual Studio users need debug static library for debug projects IF(MSVC) -@@ -411,6 +411,7 @@ +@@ -418,6 +418,7 @@ IF(MSVC) INSTALL_DEBUG_TARGET(clientlib DESTINATION ${INSTALL_LIBDIR}/debug) ENDIF() @@ -17,7 +17,7 @@ IF(UNIX) MACRO(GET_VERSIONED_LIBNAME LIBNAME EXTENSION VERSION OUTNAME) SET(DOT_VERSION ".${VERSION}") -@@ -425,11 +426,13 @@ +@@ -432,11 +433,13 @@ IF(UNIX) ENDMACRO() INSTALL_SYMLINK(${CMAKE_STATIC_LIBRARY_PREFIX}mysqlclient_r.a mysqlclient ${INSTALL_LIBDIR} Development) ENDIF() @@ -32,7 +32,7 @@ IF(UNIX) # libtool compatability IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR APPLE) -@@ -477,3 +480,4 @@ +@@ -484,3 +487,4 @@ IF(NOT DISABLE_SHARED) ENDFOREACH() ENDIF() ENDIF() Modified: head/databases/mariadb100-server/files/patch-libservices_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-libservices_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-libservices_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- libservices/CMakeLists.txt.orig 2014-08-09 00:13:47.000000000 +0200 -+++ libservices/CMakeLists.txt 2014-09-05 18:48:40.074297131 +0200 -@@ -29,4 +29,6 @@ +--- libservices/CMakeLists.txt.orig 2015-06-17 14:54:11 UTC ++++ libservices/CMakeLists.txt +@@ -29,4 +29,6 @@ SET(MYSQLSERVICES_SOURCES logger_service.c) ADD_CONVENIENCE_LIBRARY(mysqlservices ${MYSQLSERVICES_SOURCES}) Modified: head/databases/mariadb100-server/files/patch-man_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-man_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-man_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- man/CMakeLists.txt.orig 2014-06-13 13:58:21.397251542 +0300 -+++ man/CMakeLists.txt 2014-06-13 14:00:24.132245109 +0300 -@@ -33,7 +33,8 @@ +--- man/CMakeLists.txt.orig 2015-06-17 14:54:11 UTC ++++ man/CMakeLists.txt +@@ -34,7 +34,8 @@ SET(MAN1_TEST mysql-stress-test.pl.1 mys INSTALL(FILES ${MAN1_SERVER} DESTINATION ${INSTALL_MANDIR}/man1 COMPONENT ManPagesServer) INSTALL(FILES ${MAN8_SERVER} DESTINATION ${INSTALL_MANDIR}/man8 COMPONENT ManPagesServer) Copied and modified: head/databases/mariadb100-server/files/patch-mysys_my__default.c (from r392421, head/databases/mariadb100-server/files/patch-mysys_my_default.c) ============================================================================== --- head/databases/mariadb100-server/files/patch-mysys_my_default.c Sat Jul 18 13:30:27 2015 (r392421, copy source) +++ head/databases/mariadb100-server/files/patch-mysys_my__default.c Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- mysys/my_default.c.orig 2014-08-09 00:13:39.000000000 +0200 -+++ mysys/my_default.c 2014-09-05 19:56:48.006019959 +0200 -@@ -90,7 +90,7 @@ +--- mysys/my_default.c.orig 2015-06-17 14:54:12 UTC ++++ mysys/my_default.c +@@ -90,7 +90,7 @@ static my_bool defaults_already_read= FA /* Which directories are searched for options (and in which order) */ @@ -9,7 +9,7 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -785,7 +785,7 @@ +@@ -785,7 +785,7 @@ static int search_default_file_with_ext( { MY_STAT stat_info; if (!my_stat(name,&stat_info,MYF(0))) @@ -18,7 +18,7 @@ /* Ignore world-writable regular files. This is mainly done to protect us to not read a file created by -@@ -803,6 +803,14 @@ +@@ -803,6 +803,14 @@ static int search_default_file_with_ext( if (!(fp= mysql_file_fopen(key_file_cnf, name, O_RDONLY, MYF(0)))) return 1; /* Ignore wrong files */ @@ -33,7 +33,7 @@ while (mysql_file_fgets(buff, sizeof(buff) - 1, fp)) { line++; -@@ -1067,7 +1075,8 @@ +@@ -1067,7 +1075,8 @@ void my_print_default_files(const char * if (name[0] == FN_HOMELIB) /* Add . to filenames in home */ *end++= '.'; strxmov(end, conf_file, *ext, " ", NullS); @@ -43,7 +43,7 @@ } } } -@@ -1223,13 +1232,10 @@ +@@ -1223,13 +1232,10 @@ static const char **init_default_directo #else Modified: head/databases/mariadb100-server/files/patch-pcre_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-pcre_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-pcre_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- pcre/CMakeLists.txt.orig 2014-08-09 00:13:36.000000000 +0200 -+++ pcre/CMakeLists.txt 2014-09-05 20:08:49.090972949 +0200 -@@ -513,6 +513,8 @@ +--- pcre/CMakeLists.txt.orig 2015-06-17 14:54:12 UTC ++++ pcre/CMakeLists.txt +@@ -513,6 +513,8 @@ IF(PCRE_SHOW_REPORT) MESSAGE(STATUS "") ENDIF(PCRE_SHOW_REPORT) Modified: head/databases/mariadb100-server/files/patch-scripts_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-scripts_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-scripts_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- scripts/CMakeLists.txt.orig 2014-08-09 00:13:37.000000000 +0200 -+++ scripts/CMakeLists.txt 2014-09-05 19:06:46.206250221 +0200 -@@ -281,6 +281,8 @@ +--- scripts/CMakeLists.txt.orig 2015-06-17 14:54:12 UTC ++++ scripts/CMakeLists.txt +@@ -269,6 +269,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var) STRING(REGEX REPLACE "^lib" "" lib "${lib}") SET(${var} "${${var}}-l${lib} " ) ENDIF() Copied and modified: head/databases/mariadb100-server/files/patch-scripts_mysql__config.sh (from r392421, head/databases/mariadb100-server/files/patch-scripts_mysql_config.sh) ============================================================================== --- head/databases/mariadb100-server/files/patch-scripts_mysql_config.sh Sat Jul 18 13:30:27 2015 (r392421, copy source) +++ head/databases/mariadb100-server/files/patch-scripts_mysql__config.sh Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- scripts/mysql_config.sh.orig 2014-04-15 14:02:39.000000000 +0300 -+++ scripts/mysql_config.sh 2014-05-16 19:08:41.000000000 +0300 -@@ -108,8 +108,11 @@ +--- scripts/mysql_config.sh.orig 2015-06-17 14:54:12 UTC ++++ scripts/mysql_config.sh +@@ -109,8 +109,11 @@ fi # We intentionally add a space to the beginning and end of lib strings, simplifies replace later libs=" $ldflags -L$pkglibdir @RPATH_OPTION@ -lmysqlclient @ZLIB_DEPS@ @NON_THREADED_LIBS@" libs="$libs @openssl_libs@ @STATIC_NSS_FLAGS@ " Copied and modified: head/databases/mariadb100-server/files/patch-scripts_mysqld__safe.sh (from r392421, head/databases/mariadb100-server/files/patch-scripts_mysqld_safe.sh) ============================================================================== --- head/databases/mariadb100-server/files/patch-scripts_mysqld_safe.sh Sat Jul 18 13:30:27 2015 (r392421, copy source) +++ head/databases/mariadb100-server/files/patch-scripts_mysqld__safe.sh Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- scripts/mysqld_safe.sh.orig 2007-10-08 10:39:23.000000000 +0200 -+++ scripts/mysqld_safe.sh 2007-10-08 10:40:52.000000000 +0200 -@@ -235,10 +235,10 @@ +--- scripts/mysqld_safe.sh.orig 2015-06-17 14:54:12 UTC ++++ scripts/mysqld_safe.sh +@@ -445,10 +445,10 @@ fi if test -z "$MYSQL_HOME" then @@ -13,7 +13,7 @@ $DATADIR/my.cnf IGNORING $DATADIR/my.cnf" -@@ -247,7 +247,7 @@ +@@ -457,7 +457,7 @@ IGNORING $DATADIR/my.cnf" then log_error "WARNING: Found $DATADIR/my.cnf The data directory is a deprecated location for my.cnf, please move it to Modified: head/databases/mariadb100-server/files/patch-sql_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-sql_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-sql_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- sql/CMakeLists.txt.orig 2013-05-22 01:09:51.000000000 +0300 -+++ sql/CMakeLists.txt 2013-06-08 14:13:06.000000000 +0300 -@@ -278,6 +278,7 @@ +--- sql/CMakeLists.txt.orig 2015-06-17 14:54:12 UTC ++++ sql/CMakeLists.txt +@@ -312,6 +312,7 @@ ADD_CUSTOM_TARGET(distclean VERBATIM ) @@ -8,7 +8,7 @@ IF(INSTALL_LAYOUT STREQUAL "STANDALONE") # Copy db.opt into data/test/ -@@ -321,6 +322,7 @@ +@@ -355,6 +356,7 @@ ELSE() INSTALL(FILES ${DUMMY_FILE} DESTINATION data/mysql COMPONENT DataFiles) ENDIF(WIN32 AND MYSQLD_EXECUTABLE) ENDIF(INSTALL_LAYOUT STREQUAL "STANDALONE") @@ -16,7 +16,7 @@ IF(WIN32) SET(my_bootstrap_sql ${CMAKE_CURRENT_BINARY_DIR}/my_bootstrap.sql) -@@ -363,8 +365,10 @@ +@@ -397,8 +399,10 @@ IF(WIN32) TARGET_LINK_LIBRARIES(mysql_upgrade_service mysys winservice) ENDIF(WIN32) Copied and modified: head/databases/mariadb100-server/files/patch-sql_sql__trigger.cc (from r392421, head/databases/mariadb100-server/files/patch-sql_sql_trigger.cc) ============================================================================== --- head/databases/mariadb100-server/files/patch-sql_sql_trigger.cc Sat Jul 18 13:30:27 2015 (r392421, copy source) +++ head/databases/mariadb100-server/files/patch-sql_sql__trigger.cc Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- sql/sql_trigger.cc.orig 2013-05-21 22:09:51.000000000 +0000 -+++ sql/sql_trigger.cc 2013-09-26 13:15:55.450195525 +0000 -@@ -192,32 +192,32 @@ +--- sql/sql_trigger.cc.orig 2015-06-17 14:54:12 UTC ++++ sql/sql_trigger.cc +@@ -192,32 +192,32 @@ static File_option triggers_file_paramet { { { C_STRING_WITH_LEN("triggers") }, @@ -39,7 +39,7 @@ FILE_OPTIONS_STRLIST }, { { 0, 0 }, 0, FILE_OPTIONS_STRING } -@@ -226,7 +226,7 @@ +@@ -226,7 +226,7 @@ static File_option triggers_file_paramet File_option sql_modes_parameters= { { C_STRING_WITH_LEN("sql_modes") }, Copied and modified: head/databases/mariadb100-server/files/patch-sql_sql__view.cc (from r392421, head/databases/mariadb100-server/files/patch-sql_sql_view.cc) ============================================================================== --- head/databases/mariadb100-server/files/patch-sql_sql_view.cc Sat Jul 18 13:30:27 2015 (r392421, copy source) +++ head/databases/mariadb100-server/files/patch-sql_sql__view.cc Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- sql/sql_view.cc.orig 2013-05-21 22:09:51.000000000 +0000 -+++ sql/sql_view.cc 2013-09-26 13:16:16.065195172 +0000 -@@ -742,46 +742,46 @@ +--- sql/sql_view.cc.orig 2015-06-17 14:54:12 UTC ++++ sql/sql_view.cc +@@ -716,46 +716,46 @@ static const int required_view_parameter */ static File_option view_parameters[]= {{{ C_STRING_WITH_LEN("query")}, @@ -59,5 +59,5 @@ - my_offsetof(TABLE_LIST, view_body_utf8), + static_cast(my_offsetof(TABLE_LIST, view_body_utf8)), FILE_OPTIONS_ESTRING}, - {{NullS, 0}, 0, - FILE_OPTIONS_STRING} + {{ C_STRING_WITH_LEN("mariadb-version")}, + my_offsetof(TABLE_LIST, mariadb_version), Copied and modified: head/databases/mariadb100-server/files/patch-sql_sys__vars.cc (from r392421, head/databases/mariadb100-server/files/patch-sql_sys_vars.cc) ============================================================================== --- head/databases/mariadb100-server/files/patch-sql_sys_vars.cc Sat Jul 18 13:30:27 2015 (r392421, copy source) +++ head/databases/mariadb100-server/files/patch-sql_sys__vars.cc Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- sql/sys_vars.cc.orig 2014-08-09 00:13:37.000000000 +0200 -+++ sql/sys_vars.cc 2014-09-05 19:30:55.609134039 +0200 -@@ -1012,7 +1012,7 @@ +--- sql/sys_vars.cc.orig 2015-06-17 14:54:13 UTC ++++ sql/sys_vars.cc +@@ -1012,7 +1012,7 @@ static Sys_var_ulong Sys_interactive_tim "connection before closing it", SESSION_VAR(net_interactive_timeout), CMD_LINE(REQUIRED_ARG), @@ -9,7 +9,7 @@ static Sys_var_ulonglong Sys_join_buffer_size( "join_buffer_size", -@@ -2044,7 +2044,7 @@ +@@ -2046,7 +2046,7 @@ static Sys_var_ulong Sys_net_read_timeou "Number of seconds to wait for more data from a connection before " "aborting the read", SESSION_VAR(net_read_timeout), CMD_LINE(REQUIRED_ARG), @@ -18,7 +18,7 @@ NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0), ON_UPDATE(fix_net_read_timeout)); -@@ -2059,7 +2059,7 @@ +@@ -2061,7 +2061,7 @@ static Sys_var_ulong Sys_net_write_timeo "Number of seconds to wait for a block to be written to a connection " "before aborting the write", SESSION_VAR(net_write_timeout), CMD_LINE(REQUIRED_ARG), @@ -27,7 +27,7 @@ NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0), ON_UPDATE(fix_net_write_timeout)); -@@ -3288,7 +3288,7 @@ +@@ -3291,7 +3291,7 @@ static Sys_var_ulong Sys_net_wait_timeou "The number of seconds the server waits for activity on a " "connection before closing it", SESSION_VAR(net_wait_timeout), CMD_LINE(REQUIRED_ARG), Modified: head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_cmake__modules_TokuFeatureDetection.cmake ============================================================================== --- head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_cmake__modules_TokuFeatureDetection.cmake Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_cmake__modules_TokuFeatureDetection.cmake Wed Aug 12 13:19:36 2015 (r394020) @@ -1,4 +1,4 @@ ---- storage/tokudb/ft-index/cmake_modules/TokuFeatureDetection.cmake.orig 2014-09-24 22:29:47 UTC +--- storage/tokudb/ft-index/cmake_modules/TokuFeatureDetection.cmake.orig 2015-06-17 14:54:13 UTC +++ storage/tokudb/ft-index/cmake_modules/TokuFeatureDetection.cmake @@ -87,13 +87,7 @@ if (NOT HAVE_DLSYM_WITHOUT_DL) endif () Modified: head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_portability_memory.cc ============================================================================== --- head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_portability_memory.cc Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-storage_tokudb_ft-index_portability_memory.cc Wed Aug 12 13:19:36 2015 (r394020) @@ -1,4 +1,4 @@ ---- storage/tokudb/ft-index/portability/memory.cc.orig 2014-09-24 22:29:47 UTC +--- storage/tokudb/ft-index/portability/memory.cc.orig 2015-06-17 14:54:13 UTC +++ storage/tokudb/ft-index/portability/memory.cc @@ -94,11 +94,6 @@ PATENT RIGHTS GRANT: #include Modified: head/databases/mariadb100-server/files/patch-support-files_CMakeLists.txt ============================================================================== --- head/databases/mariadb100-server/files/patch-support-files_CMakeLists.txt Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/files/patch-support-files_CMakeLists.txt Wed Aug 12 13:19:36 2015 (r394020) @@ -1,6 +1,6 @@ ---- support-files/CMakeLists.txt.orig 2012-11-28 17:49:47.000000000 +0200 -+++ support-files/CMakeLists.txt 2012-12-23 05:40:39.000000000 +0200 -@@ -66,10 +66,11 @@ +--- support-files/CMakeLists.txt.orig 2015-06-17 14:54:14 UTC ++++ support-files/CMakeLists.txt +@@ -67,10 +67,11 @@ IF(UNIX) ENDFOREACH() IF(INSTALL_SUPPORTFILESDIR) INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles) Modified: head/databases/mariadb100-server/pkg-plist ============================================================================== --- head/databases/mariadb100-server/pkg-plist Wed Aug 12 13:10:29 2015 (r394019) +++ head/databases/mariadb100-server/pkg-plist Wed Aug 12 13:19:36 2015 (r394020) @@ -1,4 +1,3 @@ -@stopdaemon mysql-server bin/aria_chk bin/aria_dump_log bin/aria_ftdump From owner-svn-ports-all@freebsd.org Wed Aug 12 13:27:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FF0A99F6F4; Wed, 12 Aug 2015 13:27:20 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CCFDBE7; Wed, 12 Aug 2015 13:27:20 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CDRKxH042824; Wed, 12 Aug 2015 13:27:20 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CDRKN7042822; Wed, 12 Aug 2015 13:27:20 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201508121327.t7CDRKN7042822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Wed, 12 Aug 2015 13:27:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394021 - head/lang/gcc6-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 13:27:20 -0000 Author: gerald Date: Wed Aug 12 13:27:19 2015 New Revision: 394021 URL: https://svnweb.freebsd.org/changeset/ports/394021 Log: Update to the 20150809 snapshot of GCC 6. Modified: head/lang/gcc6-devel/Makefile head/lang/gcc6-devel/distinfo Modified: head/lang/gcc6-devel/Makefile ============================================================================== --- head/lang/gcc6-devel/Makefile Wed Aug 12 13:19:36 2015 (r394020) +++ head/lang/gcc6-devel/Makefile Wed Aug 12 13:27:19 2015 (r394021) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 6.0.0.s20150802 +PORTVERSION= 6.0.0.s20150809 CATEGORIES= lang java MASTER_SITES= GCC/snapshots/${DISTVERSION} PKGNAMESUFFIX= ${SUFFIX} Modified: head/lang/gcc6-devel/distinfo ============================================================================== --- head/lang/gcc6-devel/distinfo Wed Aug 12 13:19:36 2015 (r394020) +++ head/lang/gcc6-devel/distinfo Wed Aug 12 13:27:19 2015 (r394021) @@ -1,2 +1,2 @@ -SHA256 (gcc-6-20150802.tar.bz2) = 106c10107a6563e4f1249003034dfe98dc128517e2a87a04089dde28c9dba8c0 -SIZE (gcc-6-20150802.tar.bz2) = 92108471 +SHA256 (gcc-6-20150809.tar.bz2) = a5f278781e10560d6cadf773b439cb192c96f979adb841f67223f3897b096e40 +SIZE (gcc-6-20150809.tar.bz2) = 92182231 From owner-svn-ports-all@freebsd.org Wed Aug 12 14:01:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3C479A0089 for ; Wed, 12 Aug 2015 14:01:41 +0000 (UTC) (envelope-from feld@feld.me) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C21F7E0A for ; Wed, 12 Aug 2015 14:01:41 +0000 (UTC) (envelope-from feld@feld.me) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 0F94221B25 for ; Wed, 12 Aug 2015 10:01:40 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute4.internal (MEProxy); Wed, 12 Aug 2015 10:01:41 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=feld.me; h= content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=UBPC5nzhLz6yk3VQSbNbMM0em8k=; b=HHm7WW uoDMV9n+KbAqTcLf1D061LI9cYD0X1nXmOC0osaQxKfGQk8ngarvEDBTpNWz+3OD 52/g6JHx0RJl9Ltf9U813t+df99clEZu7b85hndh/06BlUTcmPwM7LODAx/g7SEt 3YVRrN7bEFBRcBvDMYBz0sV/5FlmrUxapYaKs= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=UBPC5nzhLz6yk3V QSbNbMM0em8k=; b=EeU8y6PvQx8CdERXBK1tPwhp8rm/4wpWbMVoxyBA2aC59FF ftIkwURQTG6N4NsWgzIoOkGnqzLCAjHy/GmhtiWh8GxP+8HFsnycWWnMbl4FRY6o MYuZ/xo4+4a//WiN72mvLdEMVcYVphgtQwGmQQkHtB+hWTEm6QLduy8pRTUI= Received: by web3.nyi.internal (Postfix, from userid 99) id A8E87115466; Wed, 12 Aug 2015 10:01:40 -0400 (EDT) Message-Id: <1439388100.608633.354360737.36774BC8@webmail.messagingengine.com> X-Sasl-Enc: +NNy9UaXwdz8OMoVSXtm/IYDxU3zt7DfG+lp/h0IHdMt 1439388100 From: Mark Felder To: Jan Beich , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-eca00311 Subject: Re: svn commit: r393962 - head/security/vuxml Date: Wed, 12 Aug 2015 09:01:40 -0500 In-Reply-To: <201508111903.t7BJ3aD3086878@repo.freebsd.org> References: <201508111903.t7BJ3aD3086878@repo.freebsd.org> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 14:01:42 -0000 On Tue, Aug 11, 2015, at 14:03, Jan Beich wrote: > Author: jbeich > Date: Tue Aug 11 19:03:36 2015 > New Revision: 393962 > URL: https://svnweb.freebsd.org/changeset/ports/393962 > > Log: > Move libvpx vulnerability into its own entry > > Modified: > head/security/vuxml/vuln.xml > > Modified: head/security/vuxml/vuln.xml > ============================================================================== > --- head/security/vuxml/vuln.xml Tue Aug 11 18:51:57 2015 > (r393961) > +++ head/security/vuxml/vuln.xml Tue Aug 11 19:03:36 2015 > (r393962) > @@ -58,6 +58,38 @@ Notes: > > --> > > + > + libvpx -- multiple buffer overflows > + > + > + libvpx > + 1.5.0 > + > + This should probably be 1.4.0 as although their release process seems obvious, they could release 1.4.1 or we could backport security fixes to 1.4.0_1 if we can locate the commits and the fix is simple enough, but they haven't cut a formal release yet. I'll try to keep an eye on this too. From owner-svn-ports-all@freebsd.org Wed Aug 12 14:39:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 370CC9A0925; Wed, 12 Aug 2015 14:39:00 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B3716DE; Wed, 12 Aug 2015 14:39:00 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CEcxlE071696; Wed, 12 Aug 2015 14:38:59 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CEcxYU071693; Wed, 12 Aug 2015 14:38:59 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201508121438.t7CEcxYU071693@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Wed, 12 Aug 2015 14:38:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394022 - head/emulators/wine-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 14:39:00 -0000 Author: gerald Date: Wed Aug 12 14:38:58 2015 New Revision: 394022 URL: https://svnweb.freebsd.org/changeset/ports/394022 Log: Update to Wine 1.7.49. This includes the following changes: - DirectWrite is now good enough for rendering text in Steam. - A number of Direct2D improvements. - Some more OpenMP functions. - Support for namespaces in the IDL compiler. - Various bug fixes. Modified: head/emulators/wine-devel/Makefile head/emulators/wine-devel/distinfo head/emulators/wine-devel/pkg-plist Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Wed Aug 12 13:27:19 2015 (r394021) +++ head/emulators/wine-devel/Makefile Wed Aug 12 14:38:58 2015 (r394022) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 1.7.48 +DISTVERSION= 1.7.49 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Wed Aug 12 13:27:19 2015 (r394021) +++ head/emulators/wine-devel/distinfo Wed Aug 12 14:38:58 2015 (r394022) @@ -1,4 +1,4 @@ -SHA256 (wine-1.7.48.tar.bz2) = e3f55ce56e2092d49b317fea8802e314be2b2170fd434f5e45f7141773946c8e -SIZE (wine-1.7.48.tar.bz2) = 22444016 -SHA256 (v1.7.48.tar.gz) = 66d264eb75edc40d7b42f0f49681878c0cb510451b4e0da858881c4d71896d22 -SIZE (v1.7.48.tar.gz) = 9174465 +SHA256 (wine-1.7.49.tar.bz2) = c8a1589753493cb6b71b3772b730cdf90059fe0f29cbfb369fc9a2339766b789 +SIZE (wine-1.7.49.tar.bz2) = 22541586 +SHA256 (v1.7.49.tar.gz) = a5623e78c1032cef691018712d855215402e42f054028c89fcf78c336821ca9f +SIZE (v1.7.49.tar.gz) = 9228032 Modified: head/emulators/wine-devel/pkg-plist ============================================================================== --- head/emulators/wine-devel/pkg-plist Wed Aug 12 13:27:19 2015 (r394021) +++ head/emulators/wine-devel/pkg-plist Wed Aug 12 14:38:58 2015 (r394022) @@ -434,6 +434,8 @@ include/wine/windows/metahost.h include/wine/windows/metahost.idl include/wine/windows/mfapi.h include/wine/windows/mferror.h +include/wine/windows/mfobjects.h +include/wine/windows/mfobjects.idl include/wine/windows/midles.h include/wine/windows/mimeinfo.h include/wine/windows/mimeinfo.idl @@ -716,6 +718,7 @@ include/wine/windows/wbemdisp.h include/wine/windows/wbemdisp.idl include/wine/windows/wbemprov.h include/wine/windows/wbemprov.idl +include/wine/windows/wct.h include/wine/windows/webservices.h include/wine/windows/werapi.h include/wine/windows/wfext.h @@ -734,6 +737,8 @@ include/wine/windows/wincred.h include/wine/windows/wincrypt.h include/wine/windows/windef.h include/wine/windows/windns.h +include/wine/windows/windows.foundation.h +include/wine/windows/windows.foundation.idl include/wine/windows/windows.h include/wine/windows/windowsx.h include/wine/windows/winerror.h @@ -899,6 +904,21 @@ lib/wine/api-ms-win-core-winrt-error-l1- lib/wine/api-ms-win-core-winrt-l1-1-0.dll.so lib/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so lib/wine/api-ms-win-core-xstate-l2-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-conio-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-convert-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-environment-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-heap-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-locale-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-math-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-private-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-process-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-runtime-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-stdio-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-string-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-time-l1-1-0.dll.so +%%STAGING%%lib/wine/api-ms-win-crt-utility-l1-1-0.dll.so lib/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so lib/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so lib/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so @@ -1141,6 +1161,21 @@ lib/wine/fakedlls/api-ms-win-core-winrt- lib/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll +%%STAGING%%lib/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll lib/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll lib/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll @@ -1611,6 +1646,7 @@ lib/wine/fakedlls/traffic.dll %%WINE32%%lib/wine/fakedlls/twain.dll16 lib/wine/fakedlls/twain_32.dll %%WINE32%%lib/wine/fakedlls/typelib.dll16 +%%STAGING%%lib/wine/fakedlls/ucrtbase.dll lib/wine/fakedlls/unicows.dll lib/wine/fakedlls/uninstaller.exe lib/wine/fakedlls/unlodctr.exe @@ -1626,7 +1662,9 @@ lib/wine/fakedlls/uxtheme.dll lib/wine/fakedlls/vbscript.dll lib/wine/fakedlls/vcomp.dll lib/wine/fakedlls/vcomp100.dll +lib/wine/fakedlls/vcomp110.dll lib/wine/fakedlls/vcomp90.dll +%%STAGING%%lib/wine/fakedlls/vcruntime140.dll %%WINE32%%lib/wine/fakedlls/vdhcp.vxd lib/wine/fakedlls/vdmdbg.dll %%WINE32%%lib/wine/fakedlls/ver.dll16 @@ -1724,6 +1762,7 @@ lib/wine/fakedlls/xapofx1_3.dll lib/wine/fakedlls/xapofx1_4.dll lib/wine/fakedlls/xapofx1_5.dll lib/wine/fakedlls/xaudio2_7.dll +lib/wine/fakedlls/xaudio2_8.dll lib/wine/fakedlls/xcopy.exe lib/wine/fakedlls/xinput1_1.dll lib/wine/fakedlls/xinput1_2.dll @@ -1934,6 +1973,7 @@ lib/wine/libstrmbase.a lib/wine/libstrmiids.a lib/wine/libsxs.def lib/wine/libtapi32.def +%%STAGING%%lib/wine/libucrtbase.def lib/wine/libunicows.def lib/wine/liburl.def lib/wine/liburlmon.def @@ -1943,6 +1983,7 @@ lib/wine/libuserenv.def lib/wine/libusp10.def lib/wine/libuuid.a lib/wine/libuxtheme.def +%%STAGING%%lib/wine/libvcruntime140.def lib/wine/libvdmdbg.def lib/wine/libversion.def lib/wine/libwebservices.def @@ -2211,6 +2252,7 @@ lib/wine/traffic.dll.so %%WINE32%%lib/wine/twain.dll16.so lib/wine/twain_32.dll.so %%WINE32%%lib/wine/typelib.dll16.so +%%STAGING%%lib/wine/ucrtbase.dll.so lib/wine/unicows.dll.so lib/wine/uninstaller.exe.so lib/wine/unlodctr.exe.so @@ -2226,7 +2268,9 @@ lib/wine/uxtheme.dll.so lib/wine/vbscript.dll.so lib/wine/vcomp.dll.so lib/wine/vcomp100.dll.so +lib/wine/vcomp110.dll.so lib/wine/vcomp90.dll.so +%%STAGING%%lib/wine/vcruntime140.dll.so %%WINE32%%lib/wine/vdhcp.vxd.so lib/wine/vdmdbg.dll.so %%WINE32%%lib/wine/ver.dll16.so @@ -2324,6 +2368,7 @@ lib/wine/xapofx1_3.dll.so lib/wine/xapofx1_4.dll.so lib/wine/xapofx1_5.dll.so lib/wine/xaudio2_7.dll.so +lib/wine/xaudio2_8.dll.so lib/wine/xcopy.exe.so lib/wine/xinput1_1.dll.so lib/wine/xinput1_2.dll.so From owner-svn-ports-all@freebsd.org Wed Aug 12 16:10:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA7F39A04FB; Wed, 12 Aug 2015 16:10:40 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7528AA3; Wed, 12 Aug 2015 16:10:40 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CGAeYJ011154; Wed, 12 Aug 2015 16:10:40 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CGAUgS011117; Wed, 12 Aug 2015 16:10:30 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508121610.t7CGAUgS011117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 12 Aug 2015 16:10:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394023 - in head: . sysutils sysutils/moosefs-cgi sysutils/moosefs-cgiserv sysutils/moosefs-chunkserver sysutils/moosefs-chunkserver/files sysutils/moosefs-cli sysutils/moosefs-client ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 16:10:41 -0000 Author: feld Date: Wed Aug 12 16:10:30 2015 New Revision: 394023 URL: https://svnweb.freebsd.org/changeset/ports/394023 Log: sysutils/moosefs-* update to 2.0.72-1 The update to 2.0.72-1 includes splitting the sysutils/moosefs-master port into several new ports to achieve better modularization. This matches the approach upstream has taken with their own FreeBSD packages which they were distributing via their own pkgng repository. Further details are provided in the UPDATING entry. Upstream MooseFS team is now taking maintainership of these ports. PR: 199342 PR: 199343 PR: 199344 PR: 199345 PR: 199346 PR: 199347 PR: 199348 PR: 199349 Added: head/sysutils/moosefs-cgi/ head/sysutils/moosefs-cgi/Makefile (contents, props changed) head/sysutils/moosefs-cgi/pkg-descr (contents, props changed) head/sysutils/moosefs-cgi/pkg-plist (contents, props changed) head/sysutils/moosefs-cgiserv/ head/sysutils/moosefs-cgiserv/Makefile (contents, props changed) head/sysutils/moosefs-cgiserv/pkg-descr (contents, props changed) head/sysutils/moosefs-cgiserv/pkg-plist (contents, props changed) head/sysutils/moosefs-cli/ head/sysutils/moosefs-cli/Makefile (contents, props changed) head/sysutils/moosefs-cli/pkg-descr (contents, props changed) head/sysutils/moosefs-master/files/mfschunkserver.in (contents, props changed) head/sysutils/moosefs-master/files/pkg-message-cgiserv.in (contents, props changed) head/sysutils/moosefs-master/files/pkg-message-chunkserver.in (contents, props changed) head/sysutils/moosefs-master/files/pkg-message-master.in (contents, props changed) head/sysutils/moosefs-master/files/pkg-message-metalogger.in (contents, props changed) head/sysutils/moosefs-metalogger/ head/sysutils/moosefs-metalogger/Makefile (contents, props changed) head/sysutils/moosefs-metalogger/pkg-descr (contents, props changed) head/sysutils/moosefs-metalogger/pkg-plist (contents, props changed) head/sysutils/moosefs-netdump/ head/sysutils/moosefs-netdump/Makefile (contents, props changed) head/sysutils/moosefs-netdump/pkg-descr (contents, props changed) Deleted: head/sysutils/moosefs-chunkserver/distinfo head/sysutils/moosefs-chunkserver/files/ head/sysutils/moosefs-client/distinfo head/sysutils/moosefs-client/files/ head/sysutils/moosefs-master/files/pkg-message.in Modified: head/UPDATING head/sysutils/Makefile head/sysutils/moosefs-chunkserver/Makefile head/sysutils/moosefs-chunkserver/pkg-descr head/sysutils/moosefs-chunkserver/pkg-plist head/sysutils/moosefs-client/Makefile head/sysutils/moosefs-client/pkg-descr head/sysutils/moosefs-client/pkg-plist head/sysutils/moosefs-master/Makefile head/sysutils/moosefs-master/distinfo head/sysutils/moosefs-master/files/mfscgiserv.in head/sysutils/moosefs-master/files/mfsmaster.in head/sysutils/moosefs-master/files/mfsmetalogger.in head/sysutils/moosefs-master/files/patch-mfsdata_Makefile.in head/sysutils/moosefs-master/pkg-descr head/sysutils/moosefs-master/pkg-plist Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Aug 12 14:38:58 2015 (r394022) +++ head/UPDATING Wed Aug 12 16:10:30 2015 (r394023) @@ -5,6 +5,28 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20150812: + AFFECTS: users of sysutils/moosefs-master and other moosefs packages + AUTHOR: feld@FreeBSD.org + + MooseFS ports have been updated to 2.0.72-1. Upstream has been + providing a private package repository to distribute newer releases of + MooseFS. These changes have now made it into the ports tree. This has + resulted in splitting up the sysutils/moosefs-master port into several + new ports: + + sysutils/moosefs-cli + sysutils/moosefs-cgi + sysutils/moosefs-cgiserv + sysutils/moosefs-metalogger + sysutils/moosefs-netdump + + You may need to install these additional ports/packages to restore the + complete functionality of your MooseFS cluster. Please review the + upstream documentation. + + http://moosefs.com/documentation/moosefs-2-0.html + 20150809: AFFECTS: users of sysutils/xfce4-power-manager AUTHOR: olivierd@FreeBSD.org Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -551,8 +551,13 @@ SUBDIR += monitorix SUBDIR += mono-kmod SUBDIR += moosefs-chunkserver + SUBDIR += moosefs-cgi + SUBDIR += moosefs-cgiserv + SUBDIR += moosefs-cli SUBDIR += moosefs-client SUBDIR += moosefs-master + SUBDIR += moosefs-metalogger + SUBDIR += moosefs-netdump SUBDIR += moreutils SUBDIR += most SUBDIR += mount.app Added: head/sysutils/moosefs-cgi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cgi/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,14 @@ +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu +# $FreeBSD$ + +PKGNAMESUFFIX= -cgi + +COMMENT= MooseFS CGI interface + +LICENSE= GPLv2 + +MFS_COMPONENT= cgi + +MASTERDIR= ${.CURDIR}/../moosefs-master + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/moosefs-cgi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cgi/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,9 @@ +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. + +For standard file operations MooseFS acts like any other Unix-like file system. + +This port provides: MooseFS CGI monitor. + +WWW: https://moosefs.com/ Added: head/sysutils/moosefs-cgi/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cgi/pkg-plist Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,8 @@ +share/mfscgi/mfs.cgi +share/mfscgi/mfs.css +share/mfscgi/logomini.png +share/mfscgi/index.html +share/mfscgi/err.gif +share/mfscgi/chart.cgi +share/mfscgi/favicon.ico +share/mfscgi/acidtab.js Added: head/sysutils/moosefs-cgiserv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cgiserv/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,14 @@ +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu +# $FreeBSD$ + +PKGNAMESUFFIX= -cgiserv + +COMMENT= MooseFS CGI webserver + +LICENSE= GPLv2 + +MFS_COMPONENT= cgiserv + +MASTERDIR= ${.CURDIR}/../moosefs-master + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/moosefs-cgiserv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cgiserv/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,9 @@ +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. + +For standard file operations MooseFS acts like any other Unix-like file system. + +This port provides: Simple CGI-capable HTTP server to run MooseFS CGI monitor. + +WWW: https://moosefs.com/ Added: head/sysutils/moosefs-cgiserv/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cgiserv/pkg-plist Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,5 @@ +sbin/mfscgiserv +man/man8/mfscgiserv.8.gz +@owner mfs +@group mfs +@dir %%MFS_WORKDIR%%/mfs Modified: head/sysutils/moosefs-chunkserver/Makefile ============================================================================== --- head/sysutils/moosefs-chunkserver/Makefile Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-chunkserver/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -1,40 +1,14 @@ -# Created by: Chifeng Qu +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu # $FreeBSD$ -PORTNAME= moosefs -DISTVERSION= 1.6.27-5 -CATEGORIES= sysutils -MASTER_SITES= http://www.moosefs.org/tl_files/mfscode/ \ - http://ports.quxingwen.com/dist/mfs/ PKGNAMESUFFIX= -chunkserver -DISTNAME= mfs-${DISTVERSION} -MAINTAINER= ports@FreeBSD.org -COMMENT= Storing file data and synchronizing it among themselves +COMMENT= MooseFS data storage and synchronization component -LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE= GPLv2 -WRKSRC= ${WRKDIR}/mfs-1.6.27 -USERS= mfs -GROUPS= mfs -GNU_CONFIGURE= yes - -USE_RC_SUBR= mfschunkserver -SUB_FILES= pkg-message - -CONFIGURE_ARGS= --localstatedir=/var \ - --enable-mfschunkserver \ - --disable-mfsmaster \ - --disable-mfsmount \ - --disable-mfscgi \ - --disable-mfscgiserv \ - --bindir=${PREFIX}/sbin \ - --with-default-user=mfs \ - --with-default-group=mfs - -post-patch: - ${REINPLACE_CMD} -e 's;^general_mans;#general_mans;g' \ - ${WRKSRC}/doc/Makefile.am ${WRKSRC}/doc/Makefile.in +MFS_COMPONENT= chunkserver -.include +MASTERDIR= ${.CURDIR}/../moosefs-master + +.include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs-chunkserver/pkg-descr ============================================================================== --- head/sysutils/moosefs-chunkserver/pkg-descr Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-chunkserver/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -1,7 +1,9 @@ -MooseFS is a fault tolerant, network distributed file system. +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. -mfschunkserver is any number of commodity servers storing files -data and synchronizing it among themselves (if a certain file -is supposed to exist in more than one copy). +For standard file operations MooseFS acts like any other Unix-like file system. -WWW: http://www.moosefs.org/ +This port provides: MooseFS data server. + +WWW: https://moosefs.com/ Modified: head/sysutils/moosefs-chunkserver/pkg-plist ============================================================================== --- head/sysutils/moosefs-chunkserver/pkg-plist Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-chunkserver/pkg-plist Wed Aug 12 16:10:30 2015 (r394023) @@ -1,13 +1,10 @@ -@owner mfs -@group mfs @sample etc/mfs/mfschunkserver.cfg.sample @sample etc/mfs/mfshdd.cfg.sample -@owner -@group +sbin/mfschunkserver +sbin/mfschunktool man/man5/mfschunkserver.cfg.5.gz man/man5/mfshdd.cfg.5.gz man/man8/mfschunkserver.8.gz -sbin/mfschunkserver @owner mfs @group mfs -@unexec rmdir "/var/mfs" >/dev/null 2>&1 || : +@dir %%MFS_WORKDIR%%/mfs Added: head/sysutils/moosefs-cli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cli/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,16 @@ +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu +# $FreeBSD$ + +PKGNAMESUFFIX= -cli + +COMMENT= MooseFS command line interface + +LICENSE= GPLv2 + +MFS_COMPONENT= cli + +MASTERDIR= ${.CURDIR}/../moosefs-master + +PLIST_FILES= bin/mfscli + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/moosefs-cli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-cli/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,9 @@ +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. + +For standard file operations MooseFS acts like any other Unix-like file system. + +This port provides: MooseFS CLI utilities. + +WWW: https://moosefs.com/ Modified: head/sysutils/moosefs-client/Makefile ============================================================================== --- head/sysutils/moosefs-client/Makefile Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-client/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -1,33 +1,14 @@ -# Created by: Chifeng Qu +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu # $FreeBSD$ -PORTNAME= moosefs -DISTVERSION= 1.6.27-5 -CATEGORIES= sysutils -MASTER_SITES= http://www.moosefs.org/tl_files/mfscode/ \ - http://ports.quxingwen.com/dist/mfs/ PKGNAMESUFFIX= -client -DISTNAME= mfs-${DISTVERSION} -MAINTAINER= ports@FreeBSD.org -COMMENT= Moosefs client tools +COMMENT= MooseFS client tools -LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE= GPLv2 -WRKSRC= ${WRKDIR}/mfs-1.6.27 -GNU_CONFIGURE= yes +MFS_COMPONENT= client -USES= fuse pkgconfig +MASTERDIR= ${.CURDIR}/../moosefs-master -CONFIGURE_ARGS= --disable-mfsmaster \ - --disable-mfschunkserver \ - --disable-mfscgi \ - --disable-mfscgiserv \ - --enable-mfsmount - -post-patch: - ${REINPLACE_CMD} -e 's;^general_mans;#general_mans;g' \ - ${WRKSRC}/doc/Makefile.am ${WRKSRC}/doc/Makefile.in - -.include +.include "${MASTERDIR}/Makefile" Modified: head/sysutils/moosefs-client/pkg-descr ============================================================================== --- head/sysutils/moosefs-client/pkg-descr Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-client/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -1,8 +1,9 @@ -MooseFS is a fault tolerant, network distributed file system. +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. -moosefs client is any number of machines using mfsmount process -to communicate with the managing server (to receive and modify -file metadata) and with chunkservers (to exchange actual file -data). +For standard file operations MooseFS acts like any other Unix-like file system. -WWW: http://www.moosefs.org/ +This port provides: MooseFS clients: mfsmount and mfstools. + +WWW: https://moosefs.com/ Modified: head/sysutils/moosefs-client/pkg-plist ============================================================================== --- head/sysutils/moosefs-client/pkg-plist Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-client/pkg-plist Wed Aug 12 16:10:30 2015 (r394023) @@ -1,32 +1,39 @@ bin/mfsappendchunks bin/mfscheckfile -bin/mfsdeleattr bin/mfsdirinfo bin/mfsfileinfo bin/mfsfilerepair -bin/mfsgeteattr -bin/mfsgetgoal -bin/mfsgettrashtime bin/mfsmakesnapshot -bin/mfsmount +bin/mfsgetgoal +bin/mfssetgoal bin/mfsrgetgoal -bin/mfsrgettrashtime bin/mfsrsetgoal +bin/mfsgettrashtime +bin/mfssettrashtime +bin/mfsrgettrashtime bin/mfsrsettrashtime +bin/mfsgeteattr bin/mfsseteattr -bin/mfssetgoal -bin/mfssettrashtime +bin/mfsdeleattr +bin/mfsgetquota +bin/mfssetquota +bin/mfsdelquota +bin/mfsfilepaths bin/mfssnapshot +bin/mfsmount bin/mfstools @sample etc/mfs/mfsmount.cfg.sample man/man1/mfsappendchunks.1.gz man/man1/mfscheckfile.1.gz man/man1/mfsdeleattr.1.gz +man/man1/mfsdelquota.1.gz man/man1/mfsdirinfo.1.gz man/man1/mfsfileinfo.1.gz +man/man1/mfsfilepaths.1.gz man/man1/mfsfilerepair.1.gz man/man1/mfsgeteattr.1.gz man/man1/mfsgetgoal.1.gz +man/man1/mfsgetquota.1.gz man/man1/mfsgettrashtime.1.gz man/man1/mfsmakesnapshot.1.gz man/man1/mfsrgetgoal.1.gz @@ -35,6 +42,7 @@ man/man1/mfsrsetgoal.1.gz man/man1/mfsrsettrashtime.1.gz man/man1/mfsseteattr.1.gz man/man1/mfssetgoal.1.gz +man/man1/mfssetquota.1.gz man/man1/mfssettrashtime.1.gz man/man1/mfstools.1.gz man/man8/mfsmount.8.gz Modified: head/sysutils/moosefs-master/Makefile ============================================================================== --- head/sysutils/moosefs-master/Makefile Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -1,43 +1,107 @@ -# Created by: Chifeng Qu +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu # $FreeBSD$ -PORTNAME= moosefs -DISTVERSION= 1.6.27-5 -CATEGORIES= sysutils -MASTER_SITES= http://www.moosefs.org/tl_files/mfscode/ \ - http://ports.quxingwen.com/dist/mfs/ -PKGNAMESUFFIX= -master -DISTNAME= mfs-${DISTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Managing the whole filesystem and storing metadata - -LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING - -WRKSRC= ${WRKDIR}/mfs-1.6.27 -USERS= mfs -GROUPS= mfs -GNU_CONFIGURE= yes -USES= python - -USE_RC_SUBR= mfsmaster mfsmetalogger mfscgiserv -SUB_FILES= pkg-message -SUB_LIST= PYTHON_CMD=${PYTHON_CMD} - -CONFIGURE_ARGS= --localstatedir=/var \ - --enable-mfsmaster \ - --enable-mfscgiserv \ - --enable-mfscgi \ - --disable-mfschunkserver \ - --disable-mfsmount \ - --with-default-user=mfs \ - --with-default-group=mfs \ - --with-mfscgiserv-dir=${PREFIX}/sbin \ - --with-mfscgi-dir=${PREFIX}/share/mfscgi - -post-patch: - ${REINPLACE_CMD} -e 's|#\!/usr/bin/env python|#\!${PYTHON_CMD}|' \ - ${WRKSRC}/mfscgi/cgiserv.py.in +PORTNAME= moosefs +PORTVERSION= 2.0.72 +CATEGORIES= sysutils +MASTER_SITES= http://ppa.moosefs.com/src/ +PKGNAMESUFFIX?= -master +DISTNAME= ${PORTNAME}-${PORTVERSION}-1 + +MAINTAINER= freebsd@moosefs.com +COMMENT?= Fault-tolerant distributed filesystem + +LICENSE= GPLv2 + +USES= python:build +GNU_CONFIGURE= yes +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +PLIST= ${.CURDIR}/pkg-plist +DESCR= ${.CURDIR}/pkg-descr + +MFS_COMPONENT?= master +MFS_USER= mfs +MFS_GROUP= mfs +MFS_WORKDIR= /var + +USERS= ${MFS_USER} +GROUPS= ${MFS_GROUP} + +CONFIGURE_ARGS+= --localstatedir=${MFS_WORKDIR} \ + --with-default-user=${MFS_USER} \ + --with-default-group=${MFS_GROUP} \ + +.if ${MFS_COMPONENT} == cgi +MFS_CGIDIR= ${PREFIX}/share/mfscgi +USES= python:2.5+ +CONFIGURE_ARGS+= --enable-mfscgi \ + --with-mfscgi-dir=${MFS_CGIDIR} +.else +CONFIGURE_ARGS+= --disable-mfscgi +.endif + +.if ${MFS_COMPONENT} == cgiserv +MFS_CGISERVDIR= ${PREFIX}/sbin +USES= python:2.5+ +USE_RC_SUBR= mfscgiserv +SUB_FILES+= pkg-message-cgiserv +PKGMESSAGE= ${WRKDIR}/pkg-message-cgiserv +PLIST_SUB+= MFS_WORKDIR="${MFS_WORKDIR}" +CONFIGURE_ARGS+= --enable-mfscgiserv \ + --with-mfscgiserv-dir=${MFS_CGISERVDIR} +RUN_DEPENDS= moosefs-cgi>0:${PORTSDIR}/sysutils/moosefs-cgi +.else +CONFIGURE_ARGS+= --disable-mfscgiserv +.endif + +.if ${MFS_COMPONENT} == chunkserver +USE_RC_SUBR= mfschunkserver +SUB_FILES+= pkg-message-chunkserver +PKGMESSAGE= ${WRKDIR}/pkg-message-chunkserver +PLIST_SUB+= MFS_WORKDIR="${MFS_WORKDIR}" +CONFIGURE_ARGS+= --enable-mfschunkserver +.else +CONFIGURE_ARGS+= --disable-mfschunkserver +.endif + +.if ${MFS_COMPONENT} == cli +USES= python:2.5+ +CONFIGURE_ARGS+= --enable-mfscli +.else +CONFIGURE_ARGS+= --disable-mfscli +.endif + +.if ${MFS_COMPONENT} == client +USES= fuse pkgconfig +CONFIGURE_ARGS+= --enable-mfsmount +.else +CONFIGURE_ARGS+= --disable-mfsmount +.endif + +.if ${MFS_COMPONENT} == master +USE_RC_SUBR= mfsmaster +PLIST_SUB+= MFS_WORKDIR="${MFS_WORKDIR}" +SUB_FILES+= pkg-message-master +PKGMESSAGE= ${WRKDIR}/pkg-message-master +CONFIGURE_ARGS+= --enable-mfsmaster +.else +CONFIGURE_ARGS+= --disable-mfsmaster +.endif + +.if ${MFS_COMPONENT} == metalogger +USE_RC_SUBR= mfsmetalogger +SUB_FILES+= pkg-message-metalogger +PKGMESSAGE= ${WRKDIR}/pkg-message-metalogger +PLIST_SUB+= MFS_WORKDIR="${MFS_WORKDIR}" +CONFIGURE_ARGS+= --enable-mfsmetalogger +.else +CONFIGURE_ARGS+= --disable-mfsmetalogger +.endif + +.if ${MFS_COMPONENT} == netdump +CONFIGURE_ARGS+= --enable-mfsnetdump +.else +CONFIGURE_ARGS+= --disable-mfsnetdump +.endif .include Modified: head/sysutils/moosefs-master/distinfo ============================================================================== --- head/sysutils/moosefs-master/distinfo Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/distinfo Wed Aug 12 16:10:30 2015 (r394023) @@ -1,2 +1,2 @@ -SHA256 (mfs-1.6.27-5.tar.gz) = 5e6d7dd5dfe181ffb6beee44fd2be51b3faf56a71b90b460b2dc717462ff1eeb -SIZE (mfs-1.6.27-5.tar.gz) = 784507 +SHA256 (moosefs-2.0.72-1.tar.gz) = 70811a91d11c9a29b45f83a797acddb15573d7adecfc1ddc991b4e9fe8e97f7b +SIZE (moosefs-2.0.72-1.tar.gz) = 958217 Modified: head/sysutils/moosefs-master/files/mfscgiserv.in ============================================================================== --- head/sysutils/moosefs-master/files/mfscgiserv.in Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/files/mfscgiserv.in Wed Aug 12 16:10:30 2015 (r394023) @@ -1,19 +1,13 @@ #!/bin/sh -# # $FreeBSD$ -# # PROVIDE: mfscgiserv -# REQUIRE: LOGIN +# REQUIRE: DAEMON # KEYWORD: shutdown - # -# Add the following lines to /etc/rc.conf or /etc/rc.conf.local to enable mfscgiserv: +# Add the following lines to /etc/rc.conf to enable mfscgiserv: # -# mfscgiserv_enable (bool): Set to NO by default. -# Set it to YES to enable mfscgiserv. -# mfscgiserv_flags (str): Set to "" by default. -# Extra flags passed to mfscgiserv. +# mfscgiserv_enable="YES" # . /etc/rc.subr @@ -21,12 +15,16 @@ name=mfscgiserv rcvar=mfscgiserv_enable -load_rc_config $name -: ${mfscgiserv_enable=NO} +command=%%PREFIX%%/sbin/${name} +pid_file=%%MFS_WORKDIR%%/mfs/.${name}.lock +procname="python" + +stop_cmd="$command stop" +status_cmd="$command test" -mfscgiserv_user=mfs +load_rc_config $name -command_interpreter=%%PYTHON_CMD%% -command=%%PREFIX%%/sbin/mfscgiserv +# set defaults +: ${mfscgiserv_enable="NO"} run_rc_command "$1" Added: head/sysutils/moosefs-master/files/mfschunkserver.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-master/files/mfschunkserver.in Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,31 @@ +#!/bin/sh +# $FreeBSD$ + +# PROVIDE: mfschunkserver +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to enable mfschunkserver: +# +# mfschunkserver_enable="YES" +# + +. /etc/rc.subr + +name=mfschunkserver +rcvar=mfschunkserver_enable + +config_file=%%PREFIX%%/etc/mfs/${name}.cfg + +required_files=${config_file} + +command=%%PREFIX%%/sbin/${name} +pid_file=%%MFS_WORKDIR%%/mfs/.${name}.lock +command_args="-c $config_file" + +load_rc_config $name + +# set defaults +: ${mfschunkserver_enable="NO"} + +run_rc_command "$1" Modified: head/sysutils/moosefs-master/files/mfsmaster.in ============================================================================== --- head/sysutils/moosefs-master/files/mfsmaster.in Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/files/mfsmaster.in Wed Aug 12 16:10:30 2015 (r394023) @@ -1,21 +1,13 @@ #!/bin/sh -# # $FreeBSD$ -# # PROVIDE: mfsmaster -# REQUIRE: LOGIN -# KEYWORD: shutdown - +# REQUIRE: DAEMON +# KEYWORD: nostart shutdown # -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to enable mfsmaster: +# Add the following lines to /etc/rc.conf to enable mfsmaster: # -# mfsmaster_enable (bool): Set to NO by default. -# Set it to YES to enable mfsmaster. -# mfsmaster_config (path): Set to %%PREFIX%%/etc/mfs/mfsmaster.cfg -# by default. -# mfsmaster_flags (str): Set to "" by default. -# Extra flags passed to mfsmaster. +# mfsmaster_enable="YES" # . /etc/rc.subr @@ -23,13 +15,17 @@ name=mfsmaster rcvar=mfsmaster_enable -load_rc_config $name +config_file=%%PREFIX%%/etc/mfs/${name}.cfg -: ${mfsmaster_enable=NO} -: ${mfsmaster_config=%%PREFIX%%/etc/mfs/mfsmaster.cfg} +required_files=${config_file} -extra_commands=reload command=%%PREFIX%%/sbin/${name} -command_args="-c ${mfsmaster_config}" +pid_file=%%MFS_WORKDIR%%/mfs/.${name}.lock +command_args="-c $config_file" + +load_rc_config $name + +# set defaults +: ${mfsmaster_enable="NO"} run_rc_command "$1" Modified: head/sysutils/moosefs-master/files/mfsmetalogger.in ============================================================================== --- head/sysutils/moosefs-master/files/mfsmetalogger.in Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/files/mfsmetalogger.in Wed Aug 12 16:10:30 2015 (r394023) @@ -1,21 +1,13 @@ #!/bin/sh -# # $FreeBSD$ -# # PROVIDE: mfsmetalogger -# REQUIRE: LOGIN +# REQUIRE: DAEMON # KEYWORD: shutdown - # -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf to enable mfsmetalogger: +# Add the following lines to /etc/rc.conf to enable mfsmetalogger: # -# mfsmetalogger_enable (bool): Set to NO by default. -# Set it to YES to enable mfsmetalogger. -# mfsmetalogger_config (path): Set to %%PREFIX%%/etc/mfs/mfsmetalogger.cfg -# by default. -# mfsmetalogger_flags (str): Set to "" by default. -# Extra flags passed to mfsmetalogger. +# mfsmetalogger_enable="YES" # . /etc/rc.subr @@ -23,13 +15,17 @@ name=mfsmetalogger rcvar=mfsmetalogger_enable -load_rc_config $name +config_file=%%PREFIX%%/etc/mfs/${name}.cfg -: ${mfsmetalogger_enable=NO} -: ${mfsmetalogger_config=%%PREFIX%%/etc/mfs/mfsmetalogger.cfg} +required_files=${config_file} -extra_commands=reload command=%%PREFIX%%/sbin/${name} -command_args="-c ${mfsmetalogger_config}" +pid_file=%%MFS_WORKDIR%%/mfs/.${name}.lock +command_args="-c $config_file" + +load_rc_config $name + +# set defaults +: ${mfsmetalogger_enable="NO"} run_rc_command "$1" Modified: head/sysutils/moosefs-master/files/patch-mfsdata_Makefile.in ============================================================================== --- head/sysutils/moosefs-master/files/patch-mfsdata_Makefile.in Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/files/patch-mfsdata_Makefile.in Wed Aug 12 16:10:30 2015 (r394023) @@ -1,36 +1,30 @@ ---- mfsdata/Makefile.in.orig 2013-11-26 11:22:48.000000000 +0000 +--- mfsdata/Makefile.in.orig 2015-08-12 14:50:32 UTC +++ mfsdata/Makefile.in -@@ -470,26 +470,20 @@ install-data-hook: - if [ ! -d $(DESTDIR)$(sysconfdir)"/mfs" ]; then \ - $(MKDIR_P) $(DESTDIR)$(sysconfdir)"/mfs" ; \ - fi +@@ -504,11 +504,11 @@ install-data-hook: + @CREATE_DATA_DIR_TRUE@ fi ; \ + @CREATE_DATA_DIR_TRUE@ fi ; \ + @CREATE_DATA_DIR_TRUE@ fi -@BUILD_CHUNKSERVER_TRUE@ $(INSTALL_DATA) $(builddir)/mfschunkserver.cfg $(DESTDIR)$(sysconfdir)/mfs/mfschunkserver.cfg.dist -@BUILD_CHUNKSERVER_TRUE@ $(INSTALL_DATA) $(srcdir)/mfshdd.cfg $(DESTDIR)$(sysconfdir)/mfs/mfshdd.cfg.dist -+@BUILD_CHUNKSERVER_TRUE@ $(INSTALL_DATA) $(builddir)/mfschunkserver.cfg $(DESTDIR)$(sysconfdir)/mfs/mfschunkserver.cfg.sample -+@BUILD_CHUNKSERVER_TRUE@ $(INSTALL_DATA) $(srcdir)/mfshdd.cfg $(DESTDIR)$(sysconfdir)/mfs/mfshdd.cfg.sample - @BUILD_CHUNKSERVER_TRUE@ if [ ! -d $(DESTDIR)$(DATA_PATH) ]; then \ - @BUILD_CHUNKSERVER_TRUE@ $(MKDIR_P) $(DESTDIR)$(DATA_PATH) ; \ --@BUILD_CHUNKSERVER_TRUE@ if [ "`id -u`" = "0" ]; then \ --@BUILD_CHUNKSERVER_TRUE@ chown $(DEFAULT_USER):$(DEFAULT_GROUP) $(DESTDIR)$(DATA_PATH) ; \ --@BUILD_CHUNKSERVER_TRUE@ fi ; \ - @BUILD_CHUNKSERVER_TRUE@ fi --@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmetalogger.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmetalogger.cfg.dist -@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmaster.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmaster.cfg.dist -@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsexports.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsexports.cfg.dist -@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfstopology.cfg $(DESTDIR)$(sysconfdir)/mfs/mfstopology.cfg.dist -+@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmetalogger.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmetalogger.cfg.sample ++@BUILD_CHUNKSERVER_TRUE@ $(INSTALL_DATA) $(builddir)/mfschunkserver.cfg $(DESTDIR)$(sysconfdir)/mfs/mfschunkserver.cfg.sample ++@BUILD_CHUNKSERVER_TRUE@ $(INSTALL_DATA) $(srcdir)/mfshdd.cfg $(DESTDIR)$(sysconfdir)/mfs/mfshdd.cfg.sample +@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmaster.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmaster.cfg.sample +@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsexports.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsexports.cfg.sample +@BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(builddir)/mfstopology.cfg $(DESTDIR)$(sysconfdir)/mfs/mfstopology.cfg.sample - @BUILD_MASTER_TRUE@ if [ ! -d $(DESTDIR)$(DATA_PATH) ]; then \ - @BUILD_MASTER_TRUE@ $(MKDIR_P) $(DESTDIR)$(DATA_PATH) ; \ --@BUILD_MASTER_TRUE@ if [ "`id -u`" = "0" ]; then \ --@BUILD_MASTER_TRUE@ chown $(DEFAULT_USER):$(DEFAULT_GROUP) $(DESTDIR)$(DATA_PATH) ; \ --@BUILD_MASTER_TRUE@ fi ; \ - @BUILD_MASTER_TRUE@ fi @BUILD_MASTER_TRUE@ $(INSTALL_DATA) $(srcdir)/metadata.mfs $(DESTDIR)$(DATA_PATH)/metadata.mfs.empty + @BUILD_MASTER_TRUE@ if [ "`id -u`" = "0" ]; then \ + @BUILD_MASTER_TRUE@ if id -u $(DEFAULT_USER) 2> /dev/null > /dev/null ; then \ +@@ -517,8 +517,8 @@ install-data-hook: + @BUILD_MASTER_TRUE@ fi ; \ + @BUILD_MASTER_TRUE@ fi ; \ + @BUILD_MASTER_TRUE@ fi -@BUILD_MOUNT_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmount.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmount.cfg.dist +-@BUILD_METALOGGER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmetalogger.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmetalogger.cfg.dist +@BUILD_MOUNT_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmount.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmount.cfg.sample ++@BUILD_METALOGGER_TRUE@ $(INSTALL_DATA) $(builddir)/mfsmetalogger.cfg $(DESTDIR)$(sysconfdir)/mfs/mfsmetalogger.cfg.sample # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. Added: head/sysutils/moosefs-master/files/pkg-message-cgiserv.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-master/files/pkg-message-cgiserv.in Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,12 @@ +************************************************************************ + +A startup script has been installed as: + +%%PREFIX%%/etc/rc.d/mfscgiserv + +Use it to start/stop the mfscgiserv service after you have added +the following line to your rc.conf file: + +mfscgiserv_enable="YES" + +************************************************************************ Added: head/sysutils/moosefs-master/files/pkg-message-chunkserver.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-master/files/pkg-message-chunkserver.in Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,12 @@ +************************************************************************ + +A startup script has been installed as: + +%%PREFIX%%/etc/rc.d/mfschunkserver + +Use it to start/stop the mfschunkserver service after you have added +the following line to your rc.conf file: + +mfschunkserver_enable="YES" + +************************************************************************ Added: head/sysutils/moosefs-master/files/pkg-message-master.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-master/files/pkg-message-master.in Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,12 @@ +************************************************************************ + +A startup script has been installed as: + +%%PREFIX%%/etc/rc.d/mfsmaster + +Use it to start/stop the mfsmaster service after you have added +the following line to your rc.conf file: + +mfsmaster_enable="YES" + +************************************************************************ Added: head/sysutils/moosefs-master/files/pkg-message-metalogger.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-master/files/pkg-message-metalogger.in Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,12 @@ +************************************************************************ + +A startup script has been installed as: + +%%PREFIX%%/etc/rc.d/mfsmetalogger + +Use it to start/stop the mfsmetalogger service after you have added +the following line to your rc.conf file: + +mfsmetalogger_enable="YES" + +************************************************************************ Modified: head/sysutils/moosefs-master/pkg-descr ============================================================================== --- head/sysutils/moosefs-master/pkg-descr Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -1,9 +1,9 @@ -MooseFS is a fault tolerant, network distributed file system. +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. -mfsmaster is a single machine managing the whole filesystem, -storing metadata for every file (information on size, -attributes and file location(s), including all information -about non-regular files, i.e. directories, sockets, pipes and -devices). +For standard file operations MooseFS acts like any other Unix-like file system. -WWW: http://www.moosefs.org/ +This port provides: MooseFS master (metadata) server. + +WWW: https://moosefs.com/ Modified: head/sysutils/moosefs-master/pkg-plist ============================================================================== --- head/sysutils/moosefs-master/pkg-plist Wed Aug 12 14:38:58 2015 (r394022) +++ head/sysutils/moosefs-master/pkg-plist Wed Aug 12 16:10:30 2015 (r394023) @@ -1,34 +1,15 @@ -@owner mfs -@group mfs -@sample etc/mfs/mfsexports.cfg.sample @sample etc/mfs/mfsmaster.cfg.sample -@sample etc/mfs/mfsmetalogger.cfg.sample +@sample etc/mfs/mfsexports.cfg.sample @sample etc/mfs/mfstopology.cfg.sample -@owner -@group +sbin/mfsmaster +sbin/mfsmetadump +sbin/mfsmetarestore man/man5/mfsexports.cfg.5.gz man/man5/mfsmaster.cfg.5.gz -man/man5/mfsmetalogger.cfg.5.gz man/man5/mfstopology.cfg.5.gz -man/man7/mfs.7.gz -man/man7/moosefs.7.gz -man/man8/mfscgiserv.8.gz man/man8/mfsmaster.8.gz -man/man8/mfsmetalogger.8.gz man/man8/mfsmetarestore.8.gz -sbin/mfscgiserv -sbin/mfsmaster -sbin/mfsmetadump -sbin/mfsmetalogger -sbin/mfsmetarestore -share/mfscgi/chart.cgi -share/mfscgi/err.gif -share/mfscgi/favicon.ico -share/mfscgi/index.html -share/mfscgi/logomini.png -share/mfscgi/mfs.cgi -share/mfscgi/mfs.css @owner mfs @group mfs -/var/mfs/metadata.mfs.empty -@unexec rmdir "/var/mfs" >/dev/null 2>&1 || : +@dir %%MFS_WORKDIR%%/mfs +%%MFS_WORKDIR%%/mfs/metadata.mfs.empty Added: head/sysutils/moosefs-metalogger/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-metalogger/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,14 @@ +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu +# $FreeBSD$ + +PKGNAMESUFFIX= -metalogger + +COMMENT= MooseFS metadata backup server + +LICENSE= GPLv2 + +MFS_COMPONENT= metalogger + +MASTERDIR= ${.CURDIR}/../moosefs-master + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/moosefs-metalogger/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-metalogger/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,9 @@ +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. + +For standard file operations MooseFS acts like any other Unix-like file system. + +This port provides: MooseFS metalogger (metadata replication) server. + +WWW: https://moosefs.com/ Added: head/sysutils/moosefs-metalogger/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-metalogger/pkg-plist Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,7 @@ +@sample etc/mfs/mfsmetalogger.cfg.sample +sbin/mfsmetalogger +man/man5/mfsmetalogger.cfg.5.gz +man/man8/mfsmetalogger.8.gz +@owner mfs +@group mfs +@dir %%MFS_WORKDIR%%/mfs Added: head/sysutils/moosefs-netdump/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-netdump/Makefile Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,17 @@ +# Created by: Jakub Kruszona-Zawadzki ; Based on port created by: Chifeng Qu +# $FreeBSD$ + +PKGNAMESUFFIX= -netdump + +COMMENT= MooseFS network packet dump utility + +LICENSE= GPLv2 + +MFS_COMPONENT= netdump + +MASTERDIR= ${.CURDIR}/../moosefs-master + +PLIST_FILES= sbin/mfsnetdump \ + man/man8/mfsnetdump.8.gz + +.include "${MASTERDIR}/Makefile" Added: head/sysutils/moosefs-netdump/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moosefs-netdump/pkg-descr Wed Aug 12 16:10:30 2015 (r394023) @@ -0,0 +1,9 @@ +MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, +network distributed file system. It spreads data over several physical commodity +servers, which are visible to the user as one resource. + +For standard file operations MooseFS acts like any other Unix-like file system. + +This port provides: MooseFS network packet dump utility + +WWW: https://moosefs.com/ From owner-svn-ports-all@freebsd.org Wed Aug 12 17:00:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB17099F1B5 for ; Wed, 12 Aug 2015 17:00:48 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from mail-ig0-f182.google.com (mail-ig0-f182.google.com [209.85.213.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 93BD89D6 for ; Wed, 12 Aug 2015 17:00:48 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: by igui7 with SMTP id i7so65712044igu.1 for ; Wed, 12 Aug 2015 10:00:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=pFwXcPCLMW1zqtpvwrQa/Uwmb0D04l9T5I4WompuHHI=; b=ZZRCJxOBSImYNEg0PaIF3+UOGjMa1GNG14PKJB42nBvYbsrfp06PGm/Wy3VNgtCD7Y M16acgZiPLts9RFOusBxPIzcneDaRJ5a4RLjP1RdrrrdQ6cO77FxJTYDNoQcUKB+GCxg itgg69vVXSPsOHRM8qhzXkwW+dVWno/haDRL7nLgAo2fnzq87YiXjP9x9kJjkVb68imp bqEiYiV+TwzYqpgrQQWgAeYZQ65Xv0v2GCf+4U3ryJngPp/QHWypljLanOkh+fQRrrod D5qHmh6MpM3IHfUZOwK+Y7elgYAwVeZUyjUAX9hNd7ca8msFaJJSHK9jqICTBw9Q34H/ hBAQ== X-Gm-Message-State: ALoCoQkuFEcVkypFAXFQhGHsIbolnmg9GotFnvYOIxBB0BOVpHyx4+TrfqKGE2Z0+CSw/nMRwRDD X-Received: by 10.50.17.73 with SMTP id m9mr19357241igd.49.1439398841713; Wed, 12 Aug 2015 10:00:41 -0700 (PDT) MIME-Version: 1.0 Received: by 10.50.195.230 with HTTP; Wed, 12 Aug 2015 10:00:02 -0700 (PDT) X-Originating-IP: [71.246.253.67] In-Reply-To: <119E57656109CE822C0CCF8F@atuin.in.mat.cc> References: <201508120202.t7C22Fek062663@repo.freebsd.org> <119E57656109CE822C0CCF8F@atuin.in.mat.cc> From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 13:00:02 -0400 Message-ID: Subject: Re: svn commit: r394002 - head/net-p2p/zetacoin To: Mathieu Arnold Cc: "Philip M. Gollucci" , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 17:00:48 -0000 Sigh....... I'll get to it soonish. On Wed, Aug 12, 2015 at 5:12 AM, Mathieu Arnold wrote: > > > +--On 12 ao=C3=BBt 2015 02:02:15 +0000 "Philip M. Gollucci" > wrote: > | Author: pgollucci > | Date: Wed Aug 12 02:02:14 2015 > | New Revision: 394002 > | URL: https://svnweb.freebsd.org/changeset/ports/394002 > | > | Log: > | net-p2p/zetacoin: mark broken on armv6 > | > | Reported by: pkg-fallout > | > | Modified: > | head/net-p2p/zetacoin/Makefile > | > | Modified: head/net-p2p/zetacoin/Makefile > | =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > | =3D=3D=3D=3D=3D --- head/net-p2p/zetacoin/Makefile Wed Aug 12 01:5= 7:53 2015 > | (r394001) +++ head/net-p2p/zetacoin/Makefile Wed Aug 12 > 02:02:14 2015 > | (r394002) @@ -13,6 +13,8 @@ LICENSE=3D MIT > | BUILD_DEPENDS=3D pkg-config:${PORTSDIR}/devel/pkgconf > | LIB_DEPENDS=3D libboost_date_time.so:${PORTSDIR}/devel/boost-libs > | > | +BROKEN_armv6=3D #error Please implement AtomicPointer for this > platform. > > Trying to copy the error message verbatim is nice, but note that # starts= a > comment, so: > > $ make -V BROKEN_armv6 > > $ > > Also, note that setting BROKEN_arch will give the error message: > > =3D=3D=3D> zetacoin-0.9.2.4 is marked as broken on armv6: error Please i= mplement > AtomicPointer for this platform. > > A simpler and better message would be something like: > > BROKEN_armv6=3D AtomicPointer not implemented. > > Documenting the full error message in the commit is nice too. > > -- > Mathieu Arnold --=20 ---------------------------------------------------------------------------= ------ Curb: Your ride is here 4096R/D21D2752 ECDF B= 597 B54B 7F92 753E E0EA F699 A450 D21D 2752 Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. Director IT Operations, Curb What doesn't kill us can only make us stronger; Except it almost kills you. From owner-svn-ports-all@freebsd.org Wed Aug 12 17:22:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B5B1F99F9AF for ; Wed, 12 Aug 2015 17:22:55 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from mail-io0-f182.google.com (mail-io0-f182.google.com [209.85.223.182]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8519361A for ; Wed, 12 Aug 2015 17:22:54 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: by iodb91 with SMTP id b91so26864474iod.1 for ; Wed, 12 Aug 2015 10:22:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=60fcuXz6XWxRxF7gjNwJblt2LqFFvNLqVYs8qizP0yU=; b=QLLPOrA28eUeFlwmYL8PfUXxpdNVN6YN2FQeyQ2Ucyqt90DJtDxUDg+Y0EDzA9v7zz 5eaSS3iYBxelqhBR7YE7ayDKIHppQsxC2Kvphjam/b1QzZ/IuG5sFASCI2FCb4Sn/IUo uq58TtD5BJuO1XF31Y+OlGNa7p/1adzRGkUTbjGzeS/RvsGjxpYyunjXurzUILXDf4rz CYeh5CPPKyBg3kXT/orB1ZjBKqB6yCTmOjG95SMiGJN8Zat97judeK5Hftywo/RwQGkX VN2ZO1ViCyVcUmkBZqFUaV6O6y6RE2+v8kpqz3CpXbnDJqVMkWOp2Q8Adwso+be1Llt9 W6hA== X-Gm-Message-State: ALoCoQk9LEmSTjGRv9JWE247DrDS5fxXYXgf3dXd/1lpkzyXM9rjnevxGfkPZ73zwLJ0XqqfrL7b X-Received: by 10.107.148.7 with SMTP id w7mr10519268iod.82.1439398700169; Wed, 12 Aug 2015 09:58:20 -0700 (PDT) MIME-Version: 1.0 Received: by 10.50.195.230 with HTTP; Wed, 12 Aug 2015 09:57:40 -0700 (PDT) X-Originating-IP: [71.246.253.67] In-Reply-To: <20150812054434.GG10390@ivaldir.etoilebsd.net> References: <201507271932.t6RJW73v037092@repo.freebsd.org> <20150812054434.GG10390@ivaldir.etoilebsd.net> From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 12:57:40 -0400 Message-ID: Subject: Re: svn commit: r393026 - head/Mk/Uses To: Baptiste Daroussin Cc: Mathieu Arnold , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 17:22:55 -0000 Yes that wouldn't sit well with git. But, ASF allows this with a git branch. It is *doable*. On Wed, Aug 12, 2015 at 1:44 AM, Baptiste Daroussin wrote: > On Tue, Aug 11, 2015 at 10:58:25PM -0400, Philip M. Gollucci wrote: > > Instead of force commits, you could actually fix the commit msg. > > > And break the conversion to any other VCS, no the is a really bad idea > imho. > > Bapt > -- --------------------------------------------------------------------------------- Curb: Your ride is here 4096R/D21D2752 ECDF B597 B54B 7F92 753E E0EA F699 A450 D21D 2752 Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. Director IT Operations, Curb What doesn't kill us can only make us stronger; Except it almost kills you. From owner-svn-ports-all@freebsd.org Wed Aug 12 18:02:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E95A9A0301; Wed, 12 Aug 2015 18:02:37 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EBDC9F6D; Wed, 12 Aug 2015 18:02:36 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CI2adS058321; Wed, 12 Aug 2015 18:02:36 GMT (envelope-from jgh@FreeBSD.org) Received: (from jgh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CI2a3D058320; Wed, 12 Aug 2015 18:02:36 GMT (envelope-from jgh@FreeBSD.org) Message-Id: <201508121802.t7CI2a3D058320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jgh set sender to jgh@FreeBSD.org using -f From: Jason Helfman Date: Wed, 12 Aug 2015 18:02:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394024 - head/dns/py-namebench X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 18:02:37 -0000 Author: jgh Date: Wed Aug 12 18:02:36 2015 New Revision: 394024 URL: https://svnweb.freebsd.org/changeset/ports/394024 Log: - add benchmarks to CATEGORIES - add mirror Modified: head/dns/py-namebench/Makefile Modified: head/dns/py-namebench/Makefile ============================================================================== --- head/dns/py-namebench/Makefile Wed Aug 12 16:10:30 2015 (r394023) +++ head/dns/py-namebench/Makefile Wed Aug 12 18:02:36 2015 (r394024) @@ -4,8 +4,9 @@ PORTNAME= namebench PORTVERSION= 1.3.1 PORTREVISION= 1 -CATEGORIES= dns python -MASTER_SITES= GOOGLE_CODE +CATEGORIES= dns python benchmarks +MASTER_SITES= GOOGLE_CODE \ + LOCAL/jgh/dns/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${PORTNAME}-${PORTVERSION}-source EXTRACT_SUFX= .tgz From owner-svn-ports-all@freebsd.org Wed Aug 12 18:13:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9516B9A0609; Wed, 12 Aug 2015 18:13:25 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75B78908; Wed, 12 Aug 2015 18:13:25 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CIDPZn062619; Wed, 12 Aug 2015 18:13:25 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CIDOWN062613; Wed, 12 Aug 2015 18:13:24 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201508121813.t7CIDOWN062613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Wed, 12 Aug 2015 18:13:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394025 - in head/lang/pypy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 18:13:25 -0000 Author: dbn Date: Wed Aug 12 18:13:23 2015 New Revision: 394025 URL: https://svnweb.freebsd.org/changeset/ports/394025 Log: lang/pypy: support cffi, fix and simplify. * Mark as only for i386, amd64 and armv6 (JIT only supported on those archs) * Move PyPy dir to pypy26 (for consistency with llvm, et al) * Drop PYPY_ARCH (unused) * Use shell to detect ${BUILD_WRKSRC}/Makefile [1] * Enable CFFI for components that do not have external dependencies * Update regression-test to align with upstreams procedures * Complete changes for detecting cpu count via sysctl (upstreamed) * Properly detect arm (upstreamed) [2] * Update pkg-plist generation and regenerate [1] When make evaluates the dependency for pre-build the variable ${BUILD_WRKSRC} is not fully defined (i.e. ${WRKSRC}) so it does not get properly expanded causing make to never find the correct Makefile. PR: 202159 [2] Reviewed by: sbruno (prior version) Added: head/lang/pypy/files/patch-rpython_config_test_test__support.py (contents, props changed) head/lang/pypy/files/patch-rpython_jit_backend_detect__cpu.py (contents, props changed) Modified: head/lang/pypy/Makefile head/lang/pypy/pkg-plist Modified: head/lang/pypy/Makefile ============================================================================== --- head/lang/pypy/Makefile Wed Aug 12 18:02:36 2015 (r394024) +++ head/lang/pypy/Makefile Wed Aug 12 18:13:23 2015 (r394025) @@ -3,7 +3,7 @@ PORTNAME= pypy PORTVERSION= 2.6.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang python MASTER_SITES= https://bitbucket.org/pypy/pypy/get/ LOCAL/dbn/pypy DISTNAME= release-${DISTVERSION} @@ -18,6 +18,9 @@ LICENSE_COMB= multi LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 \ libffi.so:${PORTSDIR}/devel/libffi +ONLY_FOR_ARCHS= i386 amd64 armv6 +ONLY_FOR_ARCHS_REASON= PyPy JIT only supported on these architectures + PYTHON_DESC= Use Python-2.7 to translate (slowest) PYPY_DESC= Use PyPy to translate (fastest, highest memory usage) PYPY_MINMEM_DESC= Use PyPy to translate (lowest memory usage) @@ -34,74 +37,69 @@ CONFLICTS_INSTALL= pypy3-[0-9]* ALL_TARGET= pypy-c BUILD_WRKSRC= ${WRKDIR}/build/usession-release-${DISTVERSION}-0/testing_1 MAKE_ENV+= PYPY_LOCALBASE=${LOCALBASE} - USE_LDCONFIG= ${PREFIX}/${PYPY_DIR}/bin USES= compiler:c11 gettext-runtime tar:bzip2 WRKSRC= ${WRKDIR}/pypy-pypy-295ee98b6928 - -PYPY_DIR= pypy-${DISTVERSION:C|([0-9])\.([0-9]).*|\1.\2|} -PLIST_SUB+= PYPY_DIR=${PYPY_DIR} +PYPY_VER= ${DISTVERSION:C|([0-9])\.([0-9]).*|\1\2|} +PYPY_DIR= pypy${PYPY_VER +PLIST_SUB+= PYPY_VER=${PYPY_VER} PYPY_DIR=${PYPY_DIR} .include .if ${PORT_OPTIONS:MPYPY} || defined(PYTHON_CMD) PYTHON_CMD?= ${LOCALBASE}/bin/pypy .elif ${PORT_OPTIONS:MPYPY_MINMEM} -PYTHON_CMD?= "${SETENV} PYPY_GC_MAX_DELTA=200MB ${LOCALBASE}/bin/pypy --jit loop_longevity=300" -.else +PYTHON_CMD?= ${SETENV} PYPY_GC_MAX_DELTA=200MB ${LOCALBASE}/bin/pypy --jit loop_longevity=300 +.else # if ${PORT_OPTIONS:MPYTHON} USES+= python:2,build .endif -# Translate FreeBSD ARCH types to PyPy ARCH types -# Pypy officially only supports i386 and amd64, the other platforms are -# untested (and do not have jit support). -.if ${ARCH} == "i386" -PYPY_ARCH= x86_32 +.if ${ARCH} == "i386" || ${ARCH} == "armv6" PYPY_BITS= 32 .elif ${ARCH} == "amd64" -PYPY_ARCH= x86_64 -PYPY_BITS= 64 -.elif ${ARCH} == "powerpc" -PYPY_ARCH= ppc_32 -PYPY_BITS= 32 -.elif ${ARCH} == "powerpc64" -PYPY_ARCH= ppc_64 PYPY_BITS= 64 -.else -PYPY_ARCH= ${ARCH} -PYPY_BITS= 32 .endif -PLIST_SUB+= PYPY_ARCH="${PYPY_ARCH}" PLIST_SUB+= PYPY_BITS="${PYPY_BITS}" -pre-build: ${BUILD_WRKSRC}/Makefile - -${BUILD_WRKSRC}/Makefile: - ${RM} -r ${WRKDIR}/build - ${MKDIR} ${WRKDIR}/build - (cd ${WRKSRC}/pypy/goal; \ - ${SETENV} ${MAKE_ENV} TMPDIR=${WRKDIR}/build \ - ${PYTHON_CMD} ../../rpython/bin/rpython --source -Ojit targetpypystandalone.py) - ${REINPLACE_CMD} -e 's|^%.o: %.c$$|.c.o:|g' ${BUILD_WRKSRC}/Makefile +pre-build: + if [ ! -f ${BUILD_WRKSRC}/Makefile ]; then \ + ${RM} -r ${WRKDIR}/build; \ + ${MKDIR} ${WRKDIR}/build; \ + (cd ${WRKSRC}/pypy/goal; \ + ${SETENV} ${MAKE_ENV} TMPDIR=${WRKDIR}/build \ + ${PYTHON_CMD} ../../rpython/bin/rpython --source -Ojit targetpypystandalone.py); \ + ${REINPLACE_CMD} -e 's|^%.o: %.c$$|.c.o:|g' ${BUILD_WRKSRC}/Makefile; \ + fi post-build: ${CP} ${BUILD_WRKSRC}/pypy-c ${BUILD_WRKSRC}/libpypy-c.so ${WRKSRC}/pypy/goal/ do-install: ${SETENV} TMPDIR=${WRKDIR}/build \ - ${PYTHON_CMD} ${WRKSRC}/pypy/tool/release/package.py --without-cffi --builddir ${WRKDIR}/build --archive-name ${PYPY_DIR} + ${PYTHON_CMD} ${WRKSRC}/pypy/tool/release/package.py --builddir ${WRKDIR}/build --archive-name ${PYPY_DIR} \ + --without-gdbm --without-sqlite3 --without-tk ${EXTRACT_CMD} -C ${STAGEDIR}${PREFIX} -xf ${WRKDIR}/build/${PYPY_DIR}.tar.bz2 - ${LN} -s ../${PYPY_DIR}/bin/pypy ${STAGEDIR}${PREFIX}/bin/pypy + ${LN} -fs ../${PYPY_DIR}/bin/pypy ${STAGEDIR}${PREFIX}/bin/pypy regression-test: build + # See https://bitbucket.org/pypy/buildbot/src/default/bot2/pypybuildbot/builds.py?at=default#builds.py-386 + # add_translated_tests() + (cd ${WRKSRC}; \ + ${SETENV} ${MAKE_ENV} TMPDIR=${WRKDIR}/build PYTHONPATH=${WRKSRC} \ + ${WRKSRC}/pypy/goal/pypy-c testrunner/runner.py --root pypy --logfile=pytest-A.log \ + --parallel-runs ${MAKE_JOBS_NUMBER} \ + --config pypy/pytest-A.cfg --config pypy/pytest-A.py) +.for dir in lib-python pypy/module/pypyjit/test (cd ${WRKSRC}; \ - ${SETENV} ${MAKE_ENV} TMPDIR=${WRKDIR}/build \ - ${WRKSRC}/pypy/goal/pypy-c pypy/test_all.py --basetemp ${WRKDIR}/build pypy lib-python) + ${SETENV} ${MAKE_ENV} TMPDIR=${WRKDIR}/build PYTHONPATH=${WRKSRC} \ + ${WRKSRC}/pypy/goal/pypy-c pypy/test_all.py --basetemp ${WRKDIR}/build --pypy pypy/goal/pypy-c \ + ${dir} ) +.endfor pkg-plist: build ${TAR} -tf ${WRKDIR}/build/${PYPY_DIR}.tar.bz2 > ${WRKDIR}/.plist-files-gen ${REINPLACE_CMD} -e 's|^${PYPY_DIR}|%%PYPY_DIR%%|g' \ - -e 's|${PYPY_ARCH}|%%PYPY_ARCH%%|g' \ + -e 's|-${PYPY_VER}|-%%PYPY_VER%%|g' \ -e 's|_${PYPY_BITS}_|_%%PYPY_BITS%%_|g' \ -e '/\/$$/d' \ ${WRKDIR}/.plist-files-gen Added: head/lang/pypy/files/patch-rpython_config_test_test__support.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/pypy/files/patch-rpython_config_test_test__support.py Wed Aug 12 18:13:23 2015 (r394025) @@ -0,0 +1,44 @@ +--- rpython/config/test/test_support.py.orig 2015-05-31 07:19:51 UTC ++++ rpython/config/test/test_support.py +@@ -52,25 +52,30 @@ def test_cpuinfo_linux(): + finally: + os.environ = saved + +-def test_cpuinfo_darwin(): +- if sys.platform != 'darwin': +- py.test.skip('mac only') +- saved_func = support.darwin_get_cpu_count ++def test_cpuinfo_sysctl(): ++ if sys.platform != 'darwin' and not sys.platform.startswith('freebsd'): ++ py.test.skip('mac and bsd only') ++ saved_func = support.sysctl_get_cpu_count + saved = os.environ +- def count(): ++ def count(cmd): ++ if sys.platform == 'darwin': ++ assert cmd == '/usr/sbin/sysctl' ++ else: ++ assert cmd == '/sbin/sysctl' + return 42 + try: +- support.darwin_get_cpu_count = count ++ support.sysctl_get_cpu_count = count + os.environ = FakeEnviron(None) + assert support.detect_number_of_processors() == 42 + os.environ = FakeEnviron('-j2') + assert support.detect_number_of_processors() == 1 + finally: + os.environ = saved +- support.darwin_get_cpu_count = saved_func ++ support.sysctl_get_cpu_count = saved_func + +-def test_darwin_get_cpu_count(): +- if sys.platform != 'darwin': ++def test_sysctl_get_cpu_count(): ++ if sys.platform != 'darwin' and not sys.platform.startswith('freebsd'): + py.test.skip('mac only') +- assert support.darwin_get_cpu_count() > 0 # hopefully +- assert support.darwin_get_cpu_count("false") == 1 ++ cmd = '/usr/sbin/sysctl' if sys.platform != 'darwin' else '/sbin/sysctl' ++ assert support.sysctl_get_cpu_count(cmd) > 0 # hopefully ++ assert support.sysctl_get_cpu_count(cmd, "false") == 1 Added: head/lang/pypy/files/patch-rpython_jit_backend_detect__cpu.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/pypy/files/patch-rpython_jit_backend_detect__cpu.py Wed Aug 12 18:13:23 2015 (r394025) @@ -0,0 +1,10 @@ +--- rpython/jit/backend/detect_cpu.py.orig 2015-08-11 18:20:39 UTC ++++ rpython/jit/backend/detect_cpu.py +@@ -63,6 +63,7 @@ def detect_model_from_host_platform(): + 'AMD64': MODEL_X86, # win64 + 'armv7l': MODEL_ARM, + 'armv6l': MODEL_ARM, ++ 'arm': MODEL_ARM, # freebsd + }.get(mach) + + if result is None: Modified: head/lang/pypy/pkg-plist ============================================================================== --- head/lang/pypy/pkg-plist Wed Aug 12 18:02:36 2015 (r394024) +++ head/lang/pypy/pkg-plist Wed Aug 12 18:13:23 2015 (r394025) @@ -2040,6 +2040,7 @@ bin/pypy %%PYPY_DIR%%/lib-python/2.7/zipfile.py %%PYPY_DIR%%/lib_pypy/__init__.py %%PYPY_DIR%%/lib_pypy/_audioop_build.py +%%PYPY_DIR%%/lib_pypy/_audioop_cffi.pypy-%%PYPY_VER%%.so %%PYPY_DIR%%/lib_pypy/_codecs_cn.py %%PYPY_DIR%%/lib_pypy/_codecs_hk.py %%PYPY_DIR%%/lib_pypy/_codecs_iso2022.py @@ -2064,6 +2065,7 @@ bin/pypy %%PYPY_DIR%%/lib_pypy/_ctypes_test.py %%PYPY_DIR%%/lib_pypy/_curses.py %%PYPY_DIR%%/lib_pypy/_curses_build.py +%%PYPY_DIR%%/lib_pypy/_curses_cffi.pypy-%%PYPY_VER%%.so %%PYPY_DIR%%/lib_pypy/_curses_panel.py %%PYPY_DIR%%/lib_pypy/_elementtree.py %%PYPY_DIR%%/lib_pypy/_ffi.py @@ -2072,6 +2074,7 @@ bin/pypy %%PYPY_DIR%%/lib_pypy/_marshal.py %%PYPY_DIR%%/lib_pypy/_md5.py %%PYPY_DIR%%/lib_pypy/_pwdgrp_build.py +%%PYPY_DIR%%/lib_pypy/_pwdgrp_cffi.pypy-%%PYPY_VER%%.so %%PYPY_DIR%%/lib_pypy/_pypy_interact.py %%PYPY_DIR%%/lib_pypy/_pypy_irc_topic.py %%PYPY_DIR%%/lib_pypy/_pypy_testcapi.py @@ -2085,6 +2088,7 @@ bin/pypy %%PYPY_DIR%%/lib_pypy/_structseq.py %%PYPY_DIR%%/lib_pypy/_subprocess.py %%PYPY_DIR%%/lib_pypy/_syslog_build.py +%%PYPY_DIR%%/lib_pypy/_syslog_cffi.pypy-%%PYPY_VER%%.so %%PYPY_DIR%%/lib_pypy/_testcapi.py %%PYPY_DIR%%/lib_pypy/_testcapimodule.c %%PYPY_DIR%%/lib_pypy/_tkinter/__init__.py From owner-svn-ports-all@freebsd.org Wed Aug 12 18:15:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C13949A0692; Wed, 12 Aug 2015 18:15:50 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B20EAA5C; Wed, 12 Aug 2015 18:15:50 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CIFoni062909; Wed, 12 Aug 2015 18:15:50 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CIFnni062904; Wed, 12 Aug 2015 18:15:49 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201508121815.t7CIFnni062904@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Wed, 12 Aug 2015 18:15:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394026 - in head/print: . libpagemaker X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 18:15:51 -0000 Author: jkim Date: Wed Aug 12 18:15:48 2015 New Revision: 394026 URL: https://svnweb.freebsd.org/changeset/ports/394026 Log: Libpagemaker is a library that parses the file format of Aldus/Adobe PageMaker documents. WWW: https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker Added: head/print/libpagemaker/ head/print/libpagemaker/Makefile (contents, props changed) head/print/libpagemaker/distinfo (contents, props changed) head/print/libpagemaker/pkg-descr (contents, props changed) head/print/libpagemaker/pkg-plist (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Wed Aug 12 18:13:23 2015 (r394025) +++ head/print/Makefile Wed Aug 12 18:15:48 2015 (r394026) @@ -119,6 +119,7 @@ SUBDIR += libijs SUBDIR += libmspub01 SUBDIR += libotf + SUBDIR += libpagemaker SUBDIR += libpaper SUBDIR += libppd SUBDIR += libspectre Added: head/print/libpagemaker/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libpagemaker/Makefile Wed Aug 12 18:15:48 2015 (r394026) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= libpagemaker +PORTVERSION= 0.0.2 +CATEGORIES= print graphics devel +MASTER_SITES= LIBREOFFICE_DEV + +MAINTAINER= office@FreeBSD.org +COMMENT= Library and tools for parsing Aldus/Adobe PageMaker documents + +LICENSE= MPL + +BUILD_DEPENDS= ${LOCALBASE}/include/boost/format.hpp:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +USES= libtool pathfix pkgconfig tar:xz +INSTALL_TARGET= install-strip + +CONFIGURE_ARGS= --disable-werror --without-docs +CPPFLAGS+= -I${LOCALBASE}/include + +.include Added: head/print/libpagemaker/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libpagemaker/distinfo Wed Aug 12 18:15:48 2015 (r394026) @@ -0,0 +1,2 @@ +SHA256 (libpagemaker-0.0.2.tar.xz) = cdbdf86605773339caab6477ff694a95a90aaa4d45bb6cdb59e4a7f76c91ef17 +SIZE (libpagemaker-0.0.2.tar.xz) = 279396 Added: head/print/libpagemaker/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libpagemaker/pkg-descr Wed Aug 12 18:15:48 2015 (r394026) @@ -0,0 +1,4 @@ +Libpagemaker is a library that parses the file format of Aldus/Adobe +PageMaker documents. + +WWW: https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker Added: head/print/libpagemaker/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/libpagemaker/pkg-plist Wed Aug 12 18:15:48 2015 (r394026) @@ -0,0 +1,8 @@ +bin/pmd2raw +bin/pmd2svg +include/libpagemaker-0.0/libpagemaker/PMDocument.h +include/libpagemaker-0.0/libpagemaker/libpagemaker.h +lib/libpagemaker-0.0.so +lib/libpagemaker-0.0.so.0 +lib/libpagemaker-0.0.so.0.0.2 +libdata/pkgconfig/libpagemaker-0.0.pc From owner-svn-ports-all@freebsd.org Wed Aug 12 18:30:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54C3E9A0A08; Wed, 12 Aug 2015 18:30:18 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B8F968B; Wed, 12 Aug 2015 18:30:18 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CIUILt067993; Wed, 12 Aug 2015 18:30:18 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CIUHAM067989; Wed, 12 Aug 2015 18:30:17 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508121830.t7CIUHAM067989@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 18:30:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394027 - in head/devel: . R-cran-rstudioapi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 18:30:18 -0000 Author: tota Date: Wed Aug 12 18:30:16 2015 New Revision: 394027 URL: https://svnweb.freebsd.org/changeset/ports/394027 Log: - Add new port: devel/R-cran-rstudioapi Access the RStudio API (if available) and provide informative error messages when it's not. WWW: https://cran.r-project.org/web/packages/rstudioapi/ Added: head/devel/R-cran-rstudioapi/ head/devel/R-cran-rstudioapi/Makefile (contents, props changed) head/devel/R-cran-rstudioapi/distinfo (contents, props changed) head/devel/R-cran-rstudioapi/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Aug 12 18:15:48 2015 (r394026) +++ head/devel/Makefile Wed Aug 12 18:30:16 2015 (r394027) @@ -40,6 +40,7 @@ SUBDIR += R-cran-reshape SUBDIR += R-cran-reshape2 SUBDIR += R-cran-rngtools + SUBDIR += R-cran-rstudioapi SUBDIR += SpecTcl SUBDIR += aap SUBDIR += aarch64-binutils Added: head/devel/R-cran-rstudioapi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-rstudioapi/Makefile Wed Aug 12 18:30:16 2015 (r394027) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= rstudioapi +PORTVERSION= 0.3.1 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Safely Access the RStudio API + +LICENSE= MIT + +USES= cran:auto-plist + +.include Added: head/devel/R-cran-rstudioapi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-rstudioapi/distinfo Wed Aug 12 18:30:16 2015 (r394027) @@ -0,0 +1,2 @@ +SHA256 (rstudioapi_0.3.1.tar.gz) = 7a21a93490af13f2f73e954b6e4a556c1d90e8b9a9210db1c6df12915a38e660 +SIZE (rstudioapi_0.3.1.tar.gz) = 5843 Added: head/devel/R-cran-rstudioapi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-rstudioapi/pkg-descr Wed Aug 12 18:30:16 2015 (r394027) @@ -0,0 +1,4 @@ +Access the RStudio API (if available) and provide informative error +messages when it's not. + +WWW: https://cran.r-project.org/web/packages/rstudioapi/ From owner-svn-ports-all@freebsd.org Wed Aug 12 18:49:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54C199A0DBD; Wed, 12 Aug 2015 18:49:22 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B2263BF; Wed, 12 Aug 2015 18:49:22 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CInMq2075663; Wed, 12 Aug 2015 18:49:22 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CInLIh075659; Wed, 12 Aug 2015 18:49:21 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508121849.t7CInLIh075659@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 18:49:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394028 - in head/graphics: . R-cran-DiagrammeR X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 18:49:22 -0000 Author: tota Date: Wed Aug 12 18:49:20 2015 New Revision: 394028 URL: https://svnweb.freebsd.org/changeset/ports/394028 Log: - Add new port: graphics/R-cran-DiagrammeR Create graph diagrams and flowcharts using R. WWW: https://cran.r-project.org/web/packages/DiagrammeR/ Added: head/graphics/R-cran-DiagrammeR/ head/graphics/R-cran-DiagrammeR/Makefile (contents, props changed) head/graphics/R-cran-DiagrammeR/distinfo (contents, props changed) head/graphics/R-cran-DiagrammeR/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Wed Aug 12 18:30:16 2015 (r394027) +++ head/graphics/Makefile Wed Aug 12 18:49:20 2015 (r394028) @@ -15,6 +15,7 @@ SUBDIR += ImageMagick7-nox11 SUBDIR += O2-tools SUBDIR += OpenEXR + SUBDIR += R-cran-DiagrammeR SUBDIR += R-cran-GDD SUBDIR += R-cran-RColorBrewer SUBDIR += R-cran-colorspace Added: head/graphics/R-cran-DiagrammeR/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-DiagrammeR/Makefile Wed Aug 12 18:49:20 2015 (r394028) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= DiagrammeR +PORTVERSION= 0.7 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Create Diagrams and Flowcharts Using R + +LICENSE= MIT + +RUN_DEPENDS= R-cran-htmlwidgets>=0.3.2:${PORTSDIR}/www/R-cran-htmlwidgets \ + R-cran-rstudioapi>=0.2:${PORTSDIR}/devel/R-cran-rstudioapi \ + R-cran-stringr>=1.0.0:${PORTSDIR}/textproc/R-cran-stringr + +USES= cran:auto-plist + +.include Added: head/graphics/R-cran-DiagrammeR/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-DiagrammeR/distinfo Wed Aug 12 18:49:20 2015 (r394028) @@ -0,0 +1,2 @@ +SHA256 (DiagrammeR_0.7.tar.gz) = 59e469559ff75c5bd8a65cbb3564de697b6f1b784f60ddc3b57396457487dd31 +SIZE (DiagrammeR_0.7.tar.gz) = 3176412 Added: head/graphics/R-cran-DiagrammeR/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-DiagrammeR/pkg-descr Wed Aug 12 18:49:20 2015 (r394028) @@ -0,0 +1,3 @@ +Create graph diagrams and flowcharts using R. + +WWW: https://cran.r-project.org/web/packages/DiagrammeR/ From owner-svn-ports-all@freebsd.org Wed Aug 12 19:07:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B8C19A03A9; Wed, 12 Aug 2015 19:07:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7B7711FC; Wed, 12 Aug 2015 19:07:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CJ76e9084111; Wed, 12 Aug 2015 19:07:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CJ76cp084108; Wed, 12 Aug 2015 19:07:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508121907.t7CJ76cp084108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 12 Aug 2015 19:07:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394029 - in branches/2015Q3: Mk www/firefox www/firefox-esr X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 19:07:07 -0000 Author: jbeich Date: Wed Aug 12 19:07:05 2015 New Revision: 394029 URL: https://svnweb.freebsd.org/changeset/ports/394029 Log: MFH: r393984 Add OAuth keys for importing Google contacts into Loop Loop aka Firefox Hello is available since 34.0. https://bugzilla.mozilla.org/show_bug.cgi?id=1106854 Inspired by: ArchLinux Approved by: ports-secteam (delphij) Modified: branches/2015Q3/Mk/bsd.gecko.mk branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/Mk/bsd.gecko.mk ============================================================================== --- branches/2015Q3/Mk/bsd.gecko.mk Wed Aug 12 18:49:20 2015 (r394028) +++ branches/2015Q3/Mk/bsd.gecko.mk Wed Aug 12 19:07:05 2015 (r394029) @@ -256,8 +256,13 @@ MOZ_OPTIONS+= --with-system-zlib \ --disable-updater \ --disable-pedantic -# XXX stolen from www/chromium -MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 +# API keys from www/chromium +# http://www.chromium.org/developers/how-tos/api-keys +# Note: these are for FreeBSD use ONLY. For your own distribution, +# please get your own set of keys. +MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 \ + MOZ_GOOGLE_OAUTH_API_CLIENTID=996322985003.apps.googleusercontent.com \ + MOZ_GOOGLE_OAUTH_API_KEY=IR1za9-1VK0zZ0f_O8MVFicn .if ${PORT_OPTIONS:MGTK3} MOZ_TOOLKIT= cairo-gtk3 Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Wed Aug 12 18:49:20 2015 (r394028) +++ branches/2015Q3/www/firefox-esr/Makefile Wed Aug 12 19:07:05 2015 (r394029) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Wed Aug 12 18:49:20 2015 (r394028) +++ branches/2015Q3/www/firefox/Makefile Wed Aug 12 19:07:05 2015 (r394029) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ From owner-svn-ports-all@freebsd.org Wed Aug 12 19:09:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E4999A03E9; Wed, 12 Aug 2015 19:09:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6855130F; Wed, 12 Aug 2015 19:09:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CJ9322084406; Wed, 12 Aug 2015 19:09:03 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CJ92HI084399; Wed, 12 Aug 2015 19:09:02 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508121909.t7CJ92HI084399@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 12 Aug 2015 19:09:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394030 - in branches/2015Q3: mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 19:09:04 -0000 Author: jbeich Date: Wed Aug 12 19:09:01 2015 New Revision: 394030 URL: https://svnweb.freebsd.org/changeset/ports/394030 Log: MFH: r394012 Switch back to bundled libvpx per vulnerabilites in v1.4.0 Security: http://www.vuxml.org/freebsd/34e60332-2448-4ed6-93f0-12713749f250.html Approved by: ports-secteam (feld) Modified: branches/2015Q3/mail/thunderbird/Makefile branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox/Makefile branches/2015Q3/www/libxul/Makefile branches/2015Q3/www/seamonkey/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2015Q3/mail/thunderbird/Makefile Wed Aug 12 19:07:05 2015 (r394029) +++ branches/2015Q3/mail/thunderbird/Makefile Wed Aug 12 19:09:01 2015 (r394030) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -37,7 +37,7 @@ L_VERSION= 4.0.1 SSP_UNSAFE= yes USE_GECKO= gecko -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx USE_QT5= # empty QT_NONSTANDARD= yes Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Wed Aug 12 19:07:05 2015 (r394029) +++ branches/2015Q3/www/firefox-esr/Makefile Wed Aug 12 19:09:01 2015 (r394030) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -36,7 +36,7 @@ USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= firefox-4[0-4].* firefox-3[02-9].* firefox-2[0-35-9].* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx MOZILLA_NAME= Firefox USE_QT5= # empty Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Wed Aug 12 19:07:05 2015 (r394029) +++ branches/2015Q3/www/firefox/Makefile Wed Aug 12 19:09:01 2015 (r394030) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ @@ -20,13 +20,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -34,7 +34,7 @@ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/mult USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr-31.* firefox-esr-24.* firefox-esr-17.* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx MOZILLA_NAME= Firefox USE_QT5= # empty Modified: branches/2015Q3/www/libxul/Makefile ============================================================================== --- branches/2015Q3/www/libxul/Makefile Wed Aug 12 19:07:05 2015 (r394029) +++ branches/2015Q3/www/libxul/Makefile Wed Aug 12 19:09:01 2015 (r394030) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 38.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source @@ -19,13 +19,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -46,7 +46,7 @@ MOZ_OPTIONS?= --enable-application=xulru USE_GECKO= gecko CPE_PRODUCT= firefox_esr MOZILLA_EXEC_NAME=xulrunner -USE_MOZILLA= -opus +USE_MOZILLA= -opus -vpx MOZILLA_PLIST_DIRS= bin include lib share/idl libdata MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-js \ mozilla-plugin Modified: branches/2015Q3/www/seamonkey/Makefile ============================================================================== --- branches/2015Q3/www/seamonkey/Makefile Wed Aug 12 19:07:05 2015 (r394029) +++ branches/2015Q3/www/seamonkey/Makefile Wed Aug 12 19:09:01 2015 (r394030) @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.33.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.6:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ - libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.7.4:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip +# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -47,7 +47,7 @@ MOZ_EXTENSIONS= default MOZ_OPTIONS+= --program-transform-name='s/seamonkey/${MOZILLA}/' \ --enable-application=suite -USE_MOZILLA= # empty +USE_MOZILLA= -vpx MOZ_PKGCONFIG_FILES= NOT_FOR_ARCHS= ia64 From owner-svn-ports-all@freebsd.org Wed Aug 12 19:11:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81A699A04FE; Wed, 12 Aug 2015 19:11:17 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6635319B3; Wed, 12 Aug 2015 19:11:17 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CJBH88085437; Wed, 12 Aug 2015 19:11:17 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CJBGAL085432; Wed, 12 Aug 2015 19:11:16 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508121911.t7CJBGAL085432@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 19:11:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394031 - in head/www: . R-cran-selectr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 19:11:17 -0000 Author: tota Date: Wed Aug 12 19:11:15 2015 New Revision: 394031 URL: https://svnweb.freebsd.org/changeset/ports/394031 Log: - Add new port: www/R-cran-selectr Translates a CSS3 selector into an equivalent XPath expression. This allows us to use CSS selectors when working with the XML package as it can only evaluate XPath expressions. Also provided are convenience functions useful for using CSS selectors on XML nodes. This package is a port of the Python package "cssselect". WWW: https://cran.r-project.org/web/packages/selectr/ Added: head/www/R-cran-selectr/ head/www/R-cran-selectr/Makefile (contents, props changed) head/www/R-cran-selectr/distinfo (contents, props changed) head/www/R-cran-selectr/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Aug 12 19:09:01 2015 (r394030) +++ head/www/Makefile Wed Aug 12 19:11:15 2015 (r394031) @@ -10,6 +10,7 @@ SUBDIR += R-cran-httpuv SUBDIR += R-cran-httr SUBDIR += R-cran-scrapeR + SUBDIR += R-cran-selectr SUBDIR += R-cran-shiny SUBDIR += WebMagick SUBDIR += ach Added: head/www/R-cran-selectr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-selectr/Makefile Wed Aug 12 19:11:15 2015 (r394031) @@ -0,0 +1,19 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= selectr +DISTVERSION= 0.2-3 +CATEGORIES= www +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Translate CSS Selectors to XPath Expressions + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= R-cran-XML>0:${PORTSDIR}/textproc/R-cran-XML \ + R-cran-stringr>0:${PORTSDIR}/textproc/R-cran-stringr + +USES= cran:auto-plist + +.include Added: head/www/R-cran-selectr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-selectr/distinfo Wed Aug 12 19:11:15 2015 (r394031) @@ -0,0 +1,2 @@ +SHA256 (selectr_0.2-3.tar.gz) = e1aa471762462bc4b7acd37f221109a8856988959e291e45c28b3b5e8d0bf5de +SIZE (selectr_0.2-3.tar.gz) = 28227 Added: head/www/R-cran-selectr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-selectr/pkg-descr Wed Aug 12 19:11:15 2015 (r394031) @@ -0,0 +1,7 @@ +Translates a CSS3 selector into an equivalent XPath expression. +This allows us to use CSS selectors when working with the XML package +as it can only evaluate XPath expressions. Also provided are +convenience functions useful for using CSS selectors on XML nodes. +This package is a port of the Python package "cssselect". + +WWW: https://cran.r-project.org/web/packages/selectr/ From owner-svn-ports-all@freebsd.org Wed Aug 12 19:19:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E4679A08A7; Wed, 12 Aug 2015 19:19:34 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3565C3E6; Wed, 12 Aug 2015 19:19:34 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CJJYL4088967; Wed, 12 Aug 2015 19:19:34 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CJJXTI088960; Wed, 12 Aug 2015 19:19:33 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508121919.t7CJJXTI088960@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Wed, 12 Aug 2015 19:19:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394032 - in head/www: . R-cran-rvest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 19:19:34 -0000 Author: tota Date: Wed Aug 12 19:19:32 2015 New Revision: 394032 URL: https://svnweb.freebsd.org/changeset/ports/394032 Log: - Add new port: www/R-cran-rvest Wrappers around the XML and httr packages to make it easy to download, then manipulate, both html and xml. WWW: https://cran.r-project.org/web/packages/rvest/ Added: head/www/R-cran-rvest/ head/www/R-cran-rvest/Makefile (contents, props changed) head/www/R-cran-rvest/distinfo (contents, props changed) head/www/R-cran-rvest/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Aug 12 19:11:15 2015 (r394031) +++ head/www/Makefile Wed Aug 12 19:19:32 2015 (r394032) @@ -9,6 +9,7 @@ SUBDIR += R-cran-htmlwidgets SUBDIR += R-cran-httpuv SUBDIR += R-cran-httr + SUBDIR += R-cran-rvest SUBDIR += R-cran-scrapeR SUBDIR += R-cran-selectr SUBDIR += R-cran-shiny Added: head/www/R-cran-rvest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-rvest/Makefile Wed Aug 12 19:19:32 2015 (r394032) @@ -0,0 +1,21 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= rvest +PORTVERSION= 0.2.0 +CATEGORIES= www +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Easily Harvest (Scrape) Web Pages + +LICENSE= GPLv3 + +RUN_DEPENDS= R-cran-httr>=0.5:${PORTSDIR}/www/R-cran-httr \ + R-cran-XML>0:${PORTSDIR}/textproc/R-cran-XML \ + R-cran-selectr>0:${PORTSDIR}/www/R-cran-selectr \ + R-cran-magrittr>0:${PORTSDIR}/devel/R-cran-magrittr + +USES= cran:auto-plist + +.include Added: head/www/R-cran-rvest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-rvest/distinfo Wed Aug 12 19:19:32 2015 (r394032) @@ -0,0 +1,2 @@ +SHA256 (rvest_0.2.0.tar.gz) = 275a6e0aca14c4ac713a0051bd0bda5b4e3806361a51a66e3eba27f839a0e9ad +SIZE (rvest_0.2.0.tar.gz) = 5407840 Added: head/www/R-cran-rvest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/R-cran-rvest/pkg-descr Wed Aug 12 19:19:32 2015 (r394032) @@ -0,0 +1,4 @@ +Wrappers around the XML and httr packages to make it easy to download, +then manipulate, both html and xml. + +WWW: https://cran.r-project.org/web/packages/rvest/ From owner-svn-ports-all@freebsd.org Wed Aug 12 19:32:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 070949A0C64; Wed, 12 Aug 2015 19:32:27 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC28E135; Wed, 12 Aug 2015 19:32:26 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CJWQf9096929; Wed, 12 Aug 2015 19:32:26 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CJWQqN096928; Wed, 12 Aug 2015 19:32:26 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508121932.t7CJWQqN096928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 12 Aug 2015 19:32:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394033 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 19:32:27 -0000 Author: feld Date: Wed Aug 12 19:32:26 2015 New Revision: 394033 URL: https://svnweb.freebsd.org/changeset/ports/394033 Log: Document py-foolscap vulnerability Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Aug 12 19:19:32 2015 (r394032) +++ head/security/vuxml/vuln.xml Wed Aug 12 19:32:26 2015 (r394033) @@ -58,6 +58,38 @@ Notes: --> + + py-foolscap -- local file inclusion + + + py27-foolscap + py32-foolscap + py33-foolscap + py34-foolscap + 0.7.0 + + + + +

Brian Warner reports:

+
+

The "flappserver" feature was found to have a vulnerability in the + service-lookup code which, when combined with an attacker who has the ability + to write files to a location where the flappserver process could read them, + would allow that attacker to obtain control of the flappserver process.

+
+ +
+ + https://github.com/warner/foolscap/blob/a17218e18e01c05a9655863cd507b80561692c14/NEWS + http://foolscap.lothar.com/trac/ticket/226 + + + 2014-09-23 + 2015-08-12 + +
+ libvpx -- out-of-bounds write From owner-svn-ports-all@freebsd.org Wed Aug 12 19:33:10 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 049AA9A0CA6; Wed, 12 Aug 2015 19:33:10 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E94C022E; Wed, 12 Aug 2015 19:33:09 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CJX9rp097094; Wed, 12 Aug 2015 19:33:09 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CJX9Nd097092; Wed, 12 Aug 2015 19:33:09 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508121933.t7CJX9Nd097092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Wed, 12 Aug 2015 19:33:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394034 - head/ports-mgmt/freebsd-bugzilla-cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 19:33:10 -0000 Author: pgollucci Date: Wed Aug 12 19:33:08 2015 New Revision: 394034 URL: https://svnweb.freebsd.org/changeset/ports/394034 Log: ports-mgmt/freebsd-bugzilla-cli: update 0.10.6->0.10.8 Changes: change bz init to not overwrite an existing ~/.bugzrc [1] change bz init to cannonicalize spelling of FBSD->FreeBSD [2] fix bz init to protect ~/.bugzrc with a sane umask [3] fix bz close again and add some shortcut option helpers [4] Reported by: jbeich@ [1,2,3], feld@ [4] Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile head/ports-mgmt/freebsd-bugzilla-cli/distinfo Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/Makefile Wed Aug 12 19:32:26 2015 (r394033) +++ head/ports-mgmt/freebsd-bugzilla-cli/Makefile Wed Aug 12 19:33:08 2015 (r394034) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= freebsd-bugzilla-cli -PORTVERSION= 0.10.6 +PORTVERSION= 0.10.8 CATEGORIES= ports-mgmt MAINTAINER= pgollucci@FreeBSD.org Modified: head/ports-mgmt/freebsd-bugzilla-cli/distinfo ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/distinfo Wed Aug 12 19:32:26 2015 (r394033) +++ head/ports-mgmt/freebsd-bugzilla-cli/distinfo Wed Aug 12 19:33:08 2015 (r394034) @@ -1,2 +1,2 @@ -SHA256 (pgollucci-freebsd-bugzilla-cli-0.10.6_GH0.tar.gz) = 6c27a2649f035809964288ae0894646f0de761d7c4cbb6e33d4fd78bc47a0d0f -SIZE (pgollucci-freebsd-bugzilla-cli-0.10.6_GH0.tar.gz) = 13429 +SHA256 (pgollucci-freebsd-bugzilla-cli-0.10.8_GH0.tar.gz) = 6f6b9ab174e64c604157329226861d6de5a82665be843879a563740329b891a9 +SIZE (pgollucci-freebsd-bugzilla-cli-0.10.8_GH0.tar.gz) = 13610 From owner-svn-ports-all@freebsd.org Wed Aug 12 20:10:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FE979AB564; Wed, 12 Aug 2015 20:10:12 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 61021AE6; Wed, 12 Aug 2015 20:10:12 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CKACIw010828; Wed, 12 Aug 2015 20:10:12 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CKABr0010820; Wed, 12 Aug 2015 20:10:11 GMT (envelope-from db@FreeBSD.org) Message-Id: <201508122010.t7CKABr0010820@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Wed, 12 Aug 2015 20:10:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394035 - in head/comms: . kvasd kvasd/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 20:10:12 -0000 Author: db Date: Wed Aug 12 20:10:10 2015 New Revision: 394035 URL: https://svnweb.freebsd.org/changeset/ports/394035 Log: kvasd is a binary Linux common driver program used by wsjt and wsjtx Added: head/comms/kvasd/ head/comms/kvasd/Makefile (contents, props changed) head/comms/kvasd/distinfo (contents, props changed) head/comms/kvasd/files/ head/comms/kvasd/files/LICENSE.txt (contents, props changed) head/comms/kvasd/pkg-descr (contents, props changed) Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Wed Aug 12 19:33:08 2015 (r394034) +++ head/comms/Makefile Wed Aug 12 20:10:10 2015 (r394035) @@ -78,6 +78,7 @@ SUBDIR += kermit SUBDIR += klog SUBDIR += kremotecontrol + SUBDIR += kvasd SUBDIR += libconcord SUBDIR += libfec SUBDIR += libimobiledevice Added: head/comms/kvasd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/kvasd/Makefile Wed Aug 12 20:10:10 2015 (r394035) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= kvasd +PORTVERSION= 1.0 +CATEGORIES= comms hamradio +MASTER_SITES= https://svn.code.sf.net/p/wsjt/wsjt/trunk/kvasd-binary/Linux/ \ + LOCAL/db +DISTFILES= kvasd + +MAINTAINER= hamradio@FreeBSD.org +COMMENT= Helper program for wsjt and wsjtx + +LICENSE= K1JT +LICENSE_NAME= Joseph H Taylor, Jr, K1JT. +LICENSE_FILE= ${FILESDIR}/LICENSE.txt +LICENSE_PERMS= dist-mirror pkg-mirror auto-accept + +BUILD_DEPENDS= ${KVASD_DEPENDS} +RUN_DEPENDS= ${KVASD_DEPENDS} + +KVASD_DEPENDS= ${LINUXBASE}/usr/lib/libgfortran.so.3:${PORTSDIR}/devel/linux-c6-libgfortran +USE_LINUX= c6 +NO_BUILD= yes +PLIST_FILES= bin/kvasd + +do-extract: + +BINMODE= 0644 +do-install: + ${INSTALL_KLD} ${DISTDIR}/kvasd ${STAGEDIR}${PREFIX}/bin + ${BRANDELF} -t Linux ${STAGEDIR}${PREFIX}/bin/kvasd + +.include Added: head/comms/kvasd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/kvasd/distinfo Wed Aug 12 20:10:10 2015 (r394035) @@ -0,0 +1,2 @@ +SHA256 (kvasd) = 5da2b599abc61c38b420fdca2b2cedef5186eb5dea6ff88a8b37abd9b2d54df4 +SIZE (kvasd) = 50732 Added: head/comms/kvasd/files/LICENSE.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/kvasd/files/LICENSE.txt Wed Aug 12 20:10:10 2015 (r394035) @@ -0,0 +1,8 @@ +The driver is Copyright(C) 2005-2012 by Joseph H Taylor, Jr, K1JT. +The decoding algorithm is used under licence from CodeVector +Technologies, LLC, and is protected under US patent +6,634,007. + +KVASD may be used freely by anyone for the purpose of +facilitating communication by Amateur Radio. Any other +use is strictly prohibited. Added: head/comms/kvasd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/kvasd/pkg-descr Wed Aug 12 20:10:10 2015 (r394035) @@ -0,0 +1,12 @@ +KVASD is s soft-decision decoder for the Reed Solomon code +RS(63,12) over GF(64). The driver is Copyright(C) +2005-2012 by Joseph H Taylor, Jr, K1JT. The decoding +algorithm is used under licence from CodeVector +Technologies, LLC, and is protected under US patent +6,634,007. + +KVASD may be used freely by anyone for the purpose of +facilitating communication by Amateur Radio. Any other +use is strictly prohibited. + +WWW: http://physics.princeton.edu/pulsar/K1JT From owner-svn-ports-all@freebsd.org Wed Aug 12 20:41:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28F4D9ABC64; Wed, 12 Aug 2015 20:41:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19C33762; Wed, 12 Aug 2015 20:41:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CKfU9H024943; Wed, 12 Aug 2015 20:41:30 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CKfUBE024942; Wed, 12 Aug 2015 20:41:30 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508122041.t7CKfUBE024942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 12 Aug 2015 20:41:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394036 - head/devel/ocaml-pcre X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 20:41:31 -0000 Author: amdmi3 Date: Wed Aug 12 20:41:30 2015 New Revision: 394036 URL: https://svnweb.freebsd.org/changeset/ports/394036 Log: - Fix plist Approved by: portmgr blanket Modified: head/devel/ocaml-pcre/pkg-plist Modified: head/devel/ocaml-pcre/pkg-plist ============================================================================== --- head/devel/ocaml-pcre/pkg-plist Wed Aug 12 20:10:10 2015 (r394035) +++ head/devel/ocaml-pcre/pkg-plist Wed Aug 12 20:41:30 2015 (r394036) @@ -18,6 +18,7 @@ %%PORTDOCS%%%%DOCSDIR%%/api/index_class_types.html %%PORTDOCS%%%%DOCSDIR%%/api/index_classes.html %%PORTDOCS%%%%DOCSDIR%%/api/index_exceptions.html +%%PORTDOCS%%%%DOCSDIR%%/api/index_extensions.html %%PORTDOCS%%%%DOCSDIR%%/api/index_methods.html %%PORTDOCS%%%%DOCSDIR%%/api/index_module_types.html %%PORTDOCS%%%%DOCSDIR%%/api/index_modules.html From owner-svn-ports-all@freebsd.org Wed Aug 12 20:45:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E4ED9ABD73; Wed, 12 Aug 2015 20:45:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F55E926; Wed, 12 Aug 2015 20:45:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CKjNU0026361; Wed, 12 Aug 2015 20:45:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CKjNNc026360; Wed, 12 Aug 2015 20:45:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508122045.t7CKjNNc026360@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 12 Aug 2015 20:45:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394037 - head/devel/rubygem-drydock X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 20:45:23 -0000 Author: amdmi3 Date: Wed Aug 12 20:45:22 2015 New Revision: 394037 URL: https://svnweb.freebsd.org/changeset/ports/394037 Log: - Add LICENSE_FILE - Fix shebangs Approved by: portmgr blanket Modified: head/devel/rubygem-drydock/Makefile Modified: head/devel/rubygem-drydock/Makefile ============================================================================== --- head/devel/rubygem-drydock/Makefile Wed Aug 12 20:41:30 2015 (r394036) +++ head/devel/rubygem-drydock/Makefile Wed Aug 12 20:45:22 2015 (r394037) @@ -3,6 +3,7 @@ PORTNAME= drydock PORTVERSION= 0.6.9 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -10,10 +11,13 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Build seaworthy command-line apps with a powerful Ruby DSL LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes +USES= shebangfix RUBYGEM_AUTOPLIST= yes +SHEBANG_FILES= bin/example .include From owner-svn-ports-all@freebsd.org Wed Aug 12 21:01:10 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34CCB9ABFAA; Wed, 12 Aug 2015 21:01:10 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22260E9; Wed, 12 Aug 2015 21:01:10 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CL1A18034119; Wed, 12 Aug 2015 21:01:10 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CL17H3034109; Wed, 12 Aug 2015 21:01:07 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201508122101.t7CL17H3034109@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Wed, 12 Aug 2015 21:01:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394038 - in head: . net-mgmt/icinga net-mgmt/icinga-classicweb net-mgmt/icinga-classicweb/files net-mgmt/icinga-core net-mgmt/icinga-core/files net-mgmt/icinga/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 21:01:10 -0000 Author: lme Date: Wed Aug 12 21:01:07 2015 New Revision: 394038 URL: https://svnweb.freebsd.org/changeset/ports/394038 Log: - Split the Icinga port into two separate ports. One for the backend, one for the classic web interface. - Make the existing net-mgmt/icinga port a meta-port which installs the other two ports. - Add an UPDATING entry for above changes. - Bump PORTREVISION Reviewed by: bapt Added: head/net-mgmt/icinga-classicweb/ head/net-mgmt/icinga-classicweb/Makefile (contents, props changed) head/net-mgmt/icinga-classicweb/distinfo (contents, props changed) head/net-mgmt/icinga-classicweb/files/ head/net-mgmt/icinga-classicweb/files/patch-Makefile.in (contents, props changed) head/net-mgmt/icinga-classicweb/files/patch-include_config.h.in (contents, props changed) head/net-mgmt/icinga-classicweb/files/pkg-message.in (contents, props changed) head/net-mgmt/icinga-classicweb/pkg-descr (contents, props changed) head/net-mgmt/icinga-classicweb/pkg-plist (contents, props changed) head/net-mgmt/icinga-core/ - copied from r393289, head/net-mgmt/icinga/ head/net-mgmt/icinga-core/Makefile.common (contents, props changed) Deleted: head/net-mgmt/icinga/distinfo head/net-mgmt/icinga/files/ head/net-mgmt/icinga/pkg-plist Modified: head/UPDATING head/net-mgmt/icinga-core/Makefile head/net-mgmt/icinga-core/files/patch-Makefile.in head/net-mgmt/icinga-core/files/pkg-message.in head/net-mgmt/icinga-core/pkg-plist head/net-mgmt/icinga/Makefile head/net-mgmt/icinga/pkg-descr Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Aug 12 20:45:22 2015 (r394037) +++ head/UPDATING Wed Aug 12 21:01:07 2015 (r394038) @@ -6,6 +6,17 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20150812: + AFFECTS: users of net-mgmt/icinga and net-mgmt/icinga2 + AUTHOR: lme@FreeBSD.org + + The Icinga port has been split into two ports: net-mgmt/icinga-core + which contains the Icinga 1.x backend and net-mgmt/icinga-classicweb + which contains the Icinga classic web (CGI) interface. The latter can + be both used with Icinga 1.x and the Icinga 2 port (net-mgmt/icinga2). + A new meta-port net-mgmt/icinga was added which depends on both new + ports, so updating the Icinga port should be transparent. + +20150812: AFFECTS: users of sysutils/moosefs-master and other moosefs packages AUTHOR: feld@FreeBSD.org Added: head/net-mgmt/icinga-classicweb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icinga-classicweb/Makefile Wed Aug 12 21:01:07 2015 (r394038) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= icinga-classicweb +DISTNAME= icinga-${PORTVERSION} + +MAINTAINER= lme@FreeBSD.org +COMMENT= Classic web interface for Icinga 1 and 2 + +.include "${.CURDIR}/../icinga-core/Makefile.common" + +LIB_DEPENDS+= libgd.so:${PORTSDIR}/graphics/gd + +CONFIGURE_ARGS+=--disable-idoutils +CFLAGS+= -I${LOCALBASE}/include + +ALL_TARGET= classicui-standalone +INSTALL_TARGET= install-classicui-standalone install-classicui-standalone-conf + +post-patch: + @${REINPLACE_CMD} -e 's#775#755#g; s#664#644#g' \ + ${WRKSRC}/html/Makefile.in +# Use correct make(1) syntax to unbreak parallel builds + @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \ + -E 's#cd (.+) && (make|\$$\(MAKE\))#$$(MAKE) -C \1#' + +post-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/${ICINGAWWWDIR}/ssi + +.include Added: head/net-mgmt/icinga-classicweb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icinga-classicweb/distinfo Wed Aug 12 21:01:07 2015 (r394038) @@ -0,0 +1,2 @@ +SHA256 (icinga-1.13.3.tar.gz) = d6994bcc9e137f6639b781a78a55d29c51d74cdfce7f35c13c47e09f200acd84 +SIZE (icinga-1.13.3.tar.gz) = 18738204 Added: head/net-mgmt/icinga-classicweb/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icinga-classicweb/files/patch-Makefile.in Wed Aug 12 21:01:07 2015 (r394038) @@ -0,0 +1,13 @@ +--- Makefile.in.orig 2015-07-26 15:18:51 UTC ++++ Makefile.in +@@ -425,8 +425,8 @@ install-basic: + + install-cgiconf: + $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR) +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/cgi.cfg $(DESTDIR)$(CFGDIR)/cgi.cfg +- $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/cgiauth.cfg $(DESTDIR)$(CFGDIR)/cgiauth.cfg ++ $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/cgi.cfg $(DESTDIR)$(CFGDIR)/cgi.cfg.sample ++ $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/cgiauth.cfg $(DESTDIR)$(CFGDIR)/cgiauth.cfg.sample + + + install-config: install-cgiconf Added: head/net-mgmt/icinga-classicweb/files/patch-include_config.h.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icinga-classicweb/files/patch-include_config.h.in Wed Aug 12 21:01:07 2015 (r394038) @@ -0,0 +1,16 @@ +--- include/config.h.in.orig 2015-07-15 13:04:09.000000000 +0200 ++++ include/config.h.in 2015-07-25 16:05:16.168060000 +0200 +@@ -217,10 +217,13 @@ + #include + #endif + ++/* remove inclusion of sys/timeb.h to suppress a lot of warnings during build */ ++#if 0 + #undef HAVE_SYS_TIMEB_H + #if HAVE_SYS_TIMEB_H + #include + #endif ++#endif + + #undef HAVE_SYS_IPC_H + #ifdef HAVE_SYS_IPC_H Added: head/net-mgmt/icinga-classicweb/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icinga-classicweb/files/pkg-message.in Wed Aug 12 21:01:07 2015 (r394038) @@ -0,0 +1,11 @@ +************************************************************************* + Documentation is available in HTML form in + %%PREFIX%%/%%ICINGAWWWDIR%%/docs/. + + If you don't already have a web server running, you will need to + install and configure one to finish off your Icinga installation. + + A sample Apache 2.x configuration is installed as + %%PREFIX%%/%%EXAMPLESDIR%%/apache2/icinga.conf-sample + +************************************************************************* Added: head/net-mgmt/icinga-classicweb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icinga-classicweb/pkg-descr Wed Aug 12 21:01:07 2015 (r394038) @@ -0,0 +1,3 @@ +This is the classic CGI web interface for Icinga 1.x and 2.x. + +WWW: https://www.icinga.org/ Added: head/net-mgmt/icinga-classicweb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icinga-classicweb/pkg-plist Wed Aug 12 21:01:07 2015 (r394038) @@ -0,0 +1,2249 @@ +@sample %%ETCDIR%%/cgi.cfg.sample +@sample %%ETCDIR%%/cgiauth.cfg.sample +@mode 755 +%%ICINGAWWWDIR%%/cgi-bin/avail.cgi +%%ICINGAWWWDIR%%/cgi-bin/cmd.cgi +%%ICINGAWWWDIR%%/cgi-bin/config.cgi +%%ICINGAWWWDIR%%/cgi-bin/extinfo.cgi +%%ICINGAWWWDIR%%/cgi-bin/histogram.cgi +%%ICINGAWWWDIR%%/cgi-bin/history.cgi +%%ICINGAWWWDIR%%/cgi-bin/notifications.cgi +%%ICINGAWWWDIR%%/cgi-bin/outages.cgi +%%ICINGAWWWDIR%%/cgi-bin/showlog.cgi +%%ICINGAWWWDIR%%/cgi-bin/status.cgi +%%ICINGAWWWDIR%%/cgi-bin/statusmap.cgi +%%ICINGAWWWDIR%%/cgi-bin/summary.cgi +%%ICINGAWWWDIR%%/cgi-bin/tac.cgi +%%ICINGAWWWDIR%%/cgi-bin/trends.cgi +@mode +%%ICINGAWWWDIR%%/docs/de/about.html +%%ICINGAWWWDIR%%/docs/de/activechecks.html +%%ICINGAWWWDIR%%/docs/de/adaptive.html +%%ICINGAWWWDIR%%/docs/de/addons.html +%%ICINGAWWWDIR%%/docs/de/beginners.html +%%ICINGAWWWDIR%%/docs/de/cachedchecks.html +%%ICINGAWWWDIR%%/docs/de/cgiauth.html +%%ICINGAWWWDIR%%/docs/de/cgicmd.html +%%ICINGAWWWDIR%%/docs/de/cgiincludes.html +%%ICINGAWWWDIR%%/docs/de/cgiparams.html +%%ICINGAWWWDIR%%/docs/de/cgis.html +%%ICINGAWWWDIR%%/docs/de/cgisecurity.html +%%ICINGAWWWDIR%%/docs/de/ch01.html +%%ICINGAWWWDIR%%/docs/de/ch02.html +%%ICINGAWWWDIR%%/docs/de/ch03.html +%%ICINGAWWWDIR%%/docs/de/ch04.html +%%ICINGAWWWDIR%%/docs/de/ch05.html +%%ICINGAWWWDIR%%/docs/de/ch06.html +%%ICINGAWWWDIR%%/docs/de/ch07.html +%%ICINGAWWWDIR%%/docs/de/ch08.html +%%ICINGAWWWDIR%%/docs/de/ch09.html +%%ICINGAWWWDIR%%/docs/de/ch10.html +%%ICINGAWWWDIR%%/docs/de/ch11.html +%%ICINGAWWWDIR%%/docs/de/ch12.html +%%ICINGAWWWDIR%%/docs/de/ch13.html +%%ICINGAWWWDIR%%/docs/de/checkscheduling.html +%%ICINGAWWWDIR%%/docs/de/clusters.html +%%ICINGAWWWDIR%%/docs/de/components.html +%%ICINGAWWWDIR%%/docs/de/config.html +%%ICINGAWWWDIR%%/docs/de/configcgi.html +%%ICINGAWWWDIR%%/docs/de/configido.html +%%ICINGAWWWDIR%%/docs/de/configmain.html +%%ICINGAWWWDIR%%/docs/de/configobject.html +%%ICINGAWWWDIR%%/docs/de/customobjectvars.html +%%ICINGAWWWDIR%%/docs/de/db_changes.html +%%ICINGAWWWDIR%%/docs/de/db_intro.html +%%ICINGAWWWDIR%%/docs/de/db_model.html +%%ICINGAWWWDIR%%/docs/de/dependencies.html +%%ICINGAWWWDIR%%/docs/de/dependencychecks.html +%%ICINGAWWWDIR%%/docs/de/distributed.html +%%ICINGAWWWDIR%%/docs/de/downtime.html +%%ICINGAWWWDIR%%/docs/de/embeddedperl.html +%%ICINGAWWWDIR%%/docs/de/epnplugins.html +%%ICINGAWWWDIR%%/docs/de/escalation_condition.html +%%ICINGAWWWDIR%%/docs/de/escalations.html +%%ICINGAWWWDIR%%/docs/de/eventhandlers.html +%%ICINGAWWWDIR%%/docs/de/example-configs.html +%%ICINGAWWWDIR%%/docs/de/extcommands.html +%%ICINGAWWWDIR%%/docs/de/extcommands2.html +%%ICINGAWWWDIR%%/docs/de/faststartup.html +%%ICINGAWWWDIR%%/docs/de/flapping.html +%%ICINGAWWWDIR%%/docs/de/freshness.html +%%ICINGAWWWDIR%%/docs/de/hostchecks.html +%%ICINGAWWWDIR%%/docs/de/howtos.html +%%ICINGAWWWDIR%%/docs/de/icinga-api.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-api.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-config.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-intro.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-introduction.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-pnp.html +%%ICINGAWWWDIR%%/docs/de/icinga-web-scratch.html +%%ICINGAWWWDIR%%/docs/de/icinga-web.html +%%ICINGAWWWDIR%%/docs/de/icinga_packages.html +%%ICINGAWWWDIR%%/docs/de/icingastats.html +%%ICINGAWWWDIR%%/docs/de/index.html +%%ICINGAWWWDIR%%/docs/de/int-mklivestatus.html +%%ICINGAWWWDIR%%/docs/de/int-snmptrap.html +%%ICINGAWWWDIR%%/docs/de/int-tcpwrappers.html +%%ICINGAWWWDIR%%/docs/de/integration.html +%%ICINGAWWWDIR%%/docs/de/ix01.html +%%ICINGAWWWDIR%%/docs/de/largeinstalltweaks.html +%%ICINGAWWWDIR%%/docs/de/macrolist.html +%%ICINGAWWWDIR%%/docs/de/macros.html +%%ICINGAWWWDIR%%/docs/de/modified_attr.html +%%ICINGAWWWDIR%%/docs/de/monitoring-linux.html +%%ICINGAWWWDIR%%/docs/de/monitoring-netware.html +%%ICINGAWWWDIR%%/docs/de/monitoring-overview.html +%%ICINGAWWWDIR%%/docs/de/monitoring-printers.html +%%ICINGAWWWDIR%%/docs/de/monitoring-publicservices.html +%%ICINGAWWWDIR%%/docs/de/monitoring-routers.html +%%ICINGAWWWDIR%%/docs/de/monitoring-windows.html +%%ICINGAWWWDIR%%/docs/de/mrtggraphs.html +%%ICINGAWWWDIR%%/docs/de/networkreachability.html +%%ICINGAWWWDIR%%/docs/de/newbie.html +%%ICINGAWWWDIR%%/docs/de/notifications.html +%%ICINGAWWWDIR%%/docs/de/notifications2.html +%%ICINGAWWWDIR%%/docs/de/nrpe.html +%%ICINGAWWWDIR%%/docs/de/nsca.html +%%ICINGAWWWDIR%%/docs/de/objectdefinitions.html +%%ICINGAWWWDIR%%/docs/de/objectinheritance.html +%%ICINGAWWWDIR%%/docs/de/objecttricks.html +%%ICINGAWWWDIR%%/docs/de/oncallrotation.html +%%ICINGAWWWDIR%%/docs/de/passivechecks.html +%%ICINGAWWWDIR%%/docs/de/passivestatetranslation.html +%%ICINGAWWWDIR%%/docs/de/perfdata.html +%%ICINGAWWWDIR%%/docs/de/perfgraphs.html +%%ICINGAWWWDIR%%/docs/de/pluginapi.html +%%ICINGAWWWDIR%%/docs/de/plugins.html +%%ICINGAWWWDIR%%/docs/de/quickstart-icinga-freebsd.html +%%ICINGAWWWDIR%%/docs/de/quickstart-icinga.html +%%ICINGAWWWDIR%%/docs/de/quickstart-idoutils-freebsd.html +%%ICINGAWWWDIR%%/docs/de/quickstart-idoutils.html +%%ICINGAWWWDIR%%/docs/de/quickstart.html +%%ICINGAWWWDIR%%/docs/de/recurring_downtimes.html +%%ICINGAWWWDIR%%/docs/de/redundancy.html +%%ICINGAWWWDIR%%/docs/de/reporting.html +%%ICINGAWWWDIR%%/docs/de/sample-cgi.html +%%ICINGAWWWDIR%%/docs/de/sample-commands.html +%%ICINGAWWWDIR%%/docs/de/sample-config.html +%%ICINGAWWWDIR%%/docs/de/sample-contacts.html +%%ICINGAWWWDIR%%/docs/de/sample-httpd.html +%%ICINGAWWWDIR%%/docs/de/sample-icinga.html +%%ICINGAWWWDIR%%/docs/de/sample-localhost.html +%%ICINGAWWWDIR%%/docs/de/sample-notifications.html +%%ICINGAWWWDIR%%/docs/de/sample-printer.html +%%ICINGAWWWDIR%%/docs/de/sample-resource.html +%%ICINGAWWWDIR%%/docs/de/sample-switch.html +%%ICINGAWWWDIR%%/docs/de/sample-templates.html +%%ICINGAWWWDIR%%/docs/de/sample-timeperiods.html +%%ICINGAWWWDIR%%/docs/de/sample-windows.html +%%ICINGAWWWDIR%%/docs/de/security.html +%%ICINGAWWWDIR%%/docs/de/servicechecks.html +%%ICINGAWWWDIR%%/docs/de/stalking.html +%%ICINGAWWWDIR%%/docs/de/startstop.html +%%ICINGAWWWDIR%%/docs/de/statetypes.html +%%ICINGAWWWDIR%%/docs/de/temp_data.html +%%ICINGAWWWDIR%%/docs/de/timeperiods.html +%%ICINGAWWWDIR%%/docs/de/tuning.html +%%ICINGAWWWDIR%%/docs/de/upgrading.html +%%ICINGAWWWDIR%%/docs/de/upgrading_icingaweb.html +%%ICINGAWWWDIR%%/docs/de/upgrading_idoutils.html +%%ICINGAWWWDIR%%/docs/de/verifyconfig.html +%%ICINGAWWWDIR%%/docs/de/volatileservices.html +%%ICINGAWWWDIR%%/docs/de/whatsnew.html +%%ICINGAWWWDIR%%/docs/en/about.html +%%ICINGAWWWDIR%%/docs/en/activechecks.html +%%ICINGAWWWDIR%%/docs/en/adaptive.html +%%ICINGAWWWDIR%%/docs/en/addons.html +%%ICINGAWWWDIR%%/docs/en/beginners.html +%%ICINGAWWWDIR%%/docs/en/cachedchecks.html +%%ICINGAWWWDIR%%/docs/en/cgiauth.html +%%ICINGAWWWDIR%%/docs/en/cgicmd.html +%%ICINGAWWWDIR%%/docs/en/cgiincludes.html +%%ICINGAWWWDIR%%/docs/en/cgiparams.html +%%ICINGAWWWDIR%%/docs/en/cgis.html +%%ICINGAWWWDIR%%/docs/en/cgisecurity.html +%%ICINGAWWWDIR%%/docs/en/ch01.html +%%ICINGAWWWDIR%%/docs/en/ch010.html +%%ICINGAWWWDIR%%/docs/en/ch02.html +%%ICINGAWWWDIR%%/docs/en/ch03.html +%%ICINGAWWWDIR%%/docs/en/ch04.html +%%ICINGAWWWDIR%%/docs/en/ch05.html +%%ICINGAWWWDIR%%/docs/en/ch06.html +%%ICINGAWWWDIR%%/docs/en/ch07.html +%%ICINGAWWWDIR%%/docs/en/ch08.html +%%ICINGAWWWDIR%%/docs/en/ch09.html +%%ICINGAWWWDIR%%/docs/en/ch10.html +%%ICINGAWWWDIR%%/docs/en/ch11.html +%%ICINGAWWWDIR%%/docs/en/ch12.html +%%ICINGAWWWDIR%%/docs/en/ch13.html +%%ICINGAWWWDIR%%/docs/en/checkscheduling.html +%%ICINGAWWWDIR%%/docs/en/clusters.html +%%ICINGAWWWDIR%%/docs/en/config.html +%%ICINGAWWWDIR%%/docs/en/configcgi.html +%%ICINGAWWWDIR%%/docs/en/configido.html +%%ICINGAWWWDIR%%/docs/en/configmain.html +%%ICINGAWWWDIR%%/docs/en/configobject.html +%%ICINGAWWWDIR%%/docs/en/customobjectvars.html +%%ICINGAWWWDIR%%/docs/en/db_changes.html +%%ICINGAWWWDIR%%/docs/en/db_components.html +%%ICINGAWWWDIR%%/docs/en/db_example-configs.html +%%ICINGAWWWDIR%%/docs/en/db_intro.html +%%ICINGAWWWDIR%%/docs/en/db_model.html +%%ICINGAWWWDIR%%/docs/en/dependencies.html +%%ICINGAWWWDIR%%/docs/en/dependencychecks.html +%%ICINGAWWWDIR%%/docs/en/distributed.html +%%ICINGAWWWDIR%%/docs/en/downtime.html +%%ICINGAWWWDIR%%/docs/en/embeddedperl.html +%%ICINGAWWWDIR%%/docs/en/epnplugins.html +%%ICINGAWWWDIR%%/docs/en/escalation_condition.html +%%ICINGAWWWDIR%%/docs/en/escalations.html +%%ICINGAWWWDIR%%/docs/en/eventhandlers.html +%%ICINGAWWWDIR%%/docs/en/extcommands.html +%%ICINGAWWWDIR%%/docs/en/extcommands2.html +%%ICINGAWWWDIR%%/docs/en/faststartup.html +%%ICINGAWWWDIR%%/docs/en/flapping.html +%%ICINGAWWWDIR%%/docs/en/freshness.html +%%ICINGAWWWDIR%%/docs/en/hostchecks.html +%%ICINGAWWWDIR%%/docs/en/howtos.html +%%ICINGAWWWDIR%%/docs/en/icinga-api.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-api.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-config.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-intro.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-introduction.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-pnp.html +%%ICINGAWWWDIR%%/docs/en/icinga-web-scratch.html +%%ICINGAWWWDIR%%/docs/en/icinga-web.html +%%ICINGAWWWDIR%%/docs/en/icinga_packages.html +%%ICINGAWWWDIR%%/docs/en/icingastats.html +%%ICINGAWWWDIR%%/docs/en/index.html +%%ICINGAWWWDIR%%/docs/en/int-mklivestatus.html +%%ICINGAWWWDIR%%/docs/en/int-snmptrap.html +%%ICINGAWWWDIR%%/docs/en/int-tcpwrappers.html +%%ICINGAWWWDIR%%/docs/en/integration.html +%%ICINGAWWWDIR%%/docs/en/ix01.html +%%ICINGAWWWDIR%%/docs/en/largeinstalltweaks.html +%%ICINGAWWWDIR%%/docs/en/macrolist.html +%%ICINGAWWWDIR%%/docs/en/macros.html +%%ICINGAWWWDIR%%/docs/en/modified_attr.html +%%ICINGAWWWDIR%%/docs/en/monitoring-linux.html +%%ICINGAWWWDIR%%/docs/en/monitoring-netware.html +%%ICINGAWWWDIR%%/docs/en/monitoring-overview.html +%%ICINGAWWWDIR%%/docs/en/monitoring-printers.html +%%ICINGAWWWDIR%%/docs/en/monitoring-publicservices.html +%%ICINGAWWWDIR%%/docs/en/monitoring-routers.html +%%ICINGAWWWDIR%%/docs/en/monitoring-windows.html +%%ICINGAWWWDIR%%/docs/en/mrtggraphs.html +%%ICINGAWWWDIR%%/docs/en/networkreachability.html +%%ICINGAWWWDIR%%/docs/en/newbie.html +%%ICINGAWWWDIR%%/docs/en/notifications.html +%%ICINGAWWWDIR%%/docs/en/notifications2.html +%%ICINGAWWWDIR%%/docs/en/nrpe.html +%%ICINGAWWWDIR%%/docs/en/nsca.html +%%ICINGAWWWDIR%%/docs/en/objectdefinitions.html +%%ICINGAWWWDIR%%/docs/en/objectinheritance.html +%%ICINGAWWWDIR%%/docs/en/objecttricks.html +%%ICINGAWWWDIR%%/docs/en/oncallrotation.html +%%ICINGAWWWDIR%%/docs/en/passivechecks.html +%%ICINGAWWWDIR%%/docs/en/passivestatetranslation.html +%%ICINGAWWWDIR%%/docs/en/perfdata.html +%%ICINGAWWWDIR%%/docs/en/perfgraphs.html +%%ICINGAWWWDIR%%/docs/en/pluginapi.html +%%ICINGAWWWDIR%%/docs/en/plugins.html +%%ICINGAWWWDIR%%/docs/en/quickstart-icinga-freebsd.html +%%ICINGAWWWDIR%%/docs/en/quickstart-icinga.html +%%ICINGAWWWDIR%%/docs/en/quickstart-idoutils-freebsd.html +%%ICINGAWWWDIR%%/docs/en/quickstart-idoutils.html +%%ICINGAWWWDIR%%/docs/en/quickstart.html +%%ICINGAWWWDIR%%/docs/en/recurring_downtimes.html +%%ICINGAWWWDIR%%/docs/en/redundancy.html +%%ICINGAWWWDIR%%/docs/en/reporting.html +%%ICINGAWWWDIR%%/docs/en/sample-cgi.html +%%ICINGAWWWDIR%%/docs/en/sample-commands.html +%%ICINGAWWWDIR%%/docs/en/sample-config.html +%%ICINGAWWWDIR%%/docs/en/sample-contacts.html +%%ICINGAWWWDIR%%/docs/en/sample-httpd.html +%%ICINGAWWWDIR%%/docs/en/sample-icinga.html +%%ICINGAWWWDIR%%/docs/en/sample-localhost.html +%%ICINGAWWWDIR%%/docs/en/sample-notifications.html +%%ICINGAWWWDIR%%/docs/en/sample-printer.html +%%ICINGAWWWDIR%%/docs/en/sample-resource.html +%%ICINGAWWWDIR%%/docs/en/sample-switch.html +%%ICINGAWWWDIR%%/docs/en/sample-templates.html +%%ICINGAWWWDIR%%/docs/en/sample-timeperiods.html +%%ICINGAWWWDIR%%/docs/en/sample-windows.html +%%ICINGAWWWDIR%%/docs/en/security.html +%%ICINGAWWWDIR%%/docs/en/servicechecks.html +%%ICINGAWWWDIR%%/docs/en/stalking.html +%%ICINGAWWWDIR%%/docs/en/startstop.html +%%ICINGAWWWDIR%%/docs/en/statetypes.html +%%ICINGAWWWDIR%%/docs/en/temp_data.html +%%ICINGAWWWDIR%%/docs/en/timeperiods.html +%%ICINGAWWWDIR%%/docs/en/tuning.html +%%ICINGAWWWDIR%%/docs/en/upgrading.html +%%ICINGAWWWDIR%%/docs/en/upgrading_icingaweb.html +%%ICINGAWWWDIR%%/docs/en/upgrading_idoutils.html +%%ICINGAWWWDIR%%/docs/en/verifyconfig.html +%%ICINGAWWWDIR%%/docs/en/volatileservices.html +%%ICINGAWWWDIR%%/docs/en/whatsnew.html +%%ICINGAWWWDIR%%/docs/images/Architecture_1.5_800px.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_BusinessProcess-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_BusinessProcess.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Commands-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Commands.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_CronkBuilder-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_CronkBuilder.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Cronk_Configuration-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Cronk_Configuration.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Cronk_HostFiltered-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Downtimes-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Downtimes.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_HostStatus_Events-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_HostStatus_Events.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Host_filtered-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Host_filtered.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_LogViewer-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_LogViewer.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_OpenProblems-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_OpenProblems.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Portal2-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Portal2.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Reporting-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Reporting.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Search-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_Search.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_StatusMap-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_StatusMap.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_TacticalOverview-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_TacticalOverview.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_UserAdmin-150x150.png +%%ICINGAWWWDIR%%/docs/images/IcingaWeb_UserAdmin.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_CGIConfig-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_CGIConfig.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_Commands-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_Commands.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_DatePicker-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_DatePicker.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_Downtimes-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_Downtimes.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_HostGroup-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_HostGroup.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_PaginationLogs-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_PaginationLogs.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_ServiceStatus-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_ServiceStatus.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_TacticalOverview-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_TacticalOverview.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_Trending-150x150.png +%%ICINGAWWWDIR%%/docs/images/Icinga_Classic_Trending.png +%%ICINGAWWWDIR%%/docs/images/MyServiceStatus.png +%%ICINGAWWWDIR%%/docs/images/activechecks.png +%%ICINGAWWWDIR%%/docs/images/cachedcheckgraphs.png +%%ICINGAWWWDIR%%/docs/images/cachedchecks.png +%%ICINGAWWWDIR%%/docs/images/cachedchecks1.png +%%ICINGAWWWDIR%%/docs/images/caution.gif +%%ICINGAWWWDIR%%/docs/images/caution.png +%%ICINGAWWWDIR%%/docs/images/cgi-avail-a.png +%%ICINGAWWWDIR%%/docs/images/cgi-avail-b.png +%%ICINGAWWWDIR%%/docs/images/cgi-cmd.png +%%ICINGAWWWDIR%%/docs/images/cgi-commands.png +%%ICINGAWWWDIR%%/docs/images/cgi-config.png +%%ICINGAWWWDIR%%/docs/images/cgi-continue.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-a.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-b.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-c.png +%%ICINGAWWWDIR%%/docs/images/cgi-extinfo-d.png +%%ICINGAWWWDIR%%/docs/images/cgi-general.png +%%ICINGAWWWDIR%%/docs/images/cgi-histogram.png +%%ICINGAWWWDIR%%/docs/images/cgi-history.png +%%ICINGAWWWDIR%%/docs/images/cgi-notifications.png +%%ICINGAWWWDIR%%/docs/images/cgi-outages.png +%%ICINGAWWWDIR%%/docs/images/cgi-pause.png +%%ICINGAWWWDIR%%/docs/images/cgi-showlog.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-a.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-b.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-c.png +%%ICINGAWWWDIR%%/docs/images/cgi-status-d.png +%%ICINGAWWWDIR%%/docs/images/cgi-statusinfo.png +%%ICINGAWWWDIR%%/docs/images/cgi-statusmap.png +%%ICINGAWWWDIR%%/docs/images/cgi-statuswml.png +%%ICINGAWWWDIR%%/docs/images/cgi-statuswrl.png +%%ICINGAWWWDIR%%/docs/images/cgi-summary.png +%%ICINGAWWWDIR%%/docs/images/cgi-tac.png +%%ICINGAWWWDIR%%/docs/images/cgi-trends.png +%%ICINGAWWWDIR%%/docs/images/checkmark.png +%%ICINGAWWWDIR%%/docs/images/checktiming.png +%%ICINGAWWWDIR%%/docs/images/configoverview.png +%%ICINGAWWWDIR%%/docs/images/db_model_cf.png +%%ICINGAWWWDIR%%/docs/images/db_model_ct.png +%%ICINGAWWWDIR%%/docs/images/db_model_cu.png +%%ICINGAWWWDIR%%/docs/images/db_model_dt.png +%%ICINGAWWWDIR%%/docs/images/db_model_ht.png +%%ICINGAWWWDIR%%/docs/images/distributed.png +%%ICINGAWWWDIR%%/docs/images/downtime.png +%%ICINGAWWWDIR%%/docs/images/epn.png +%%ICINGAWWWDIR%%/docs/images/eventhandlers.png +%%ICINGAWWWDIR%%/docs/images/externalcommands.png +%%ICINGAWWWDIR%%/docs/images/fast-startup.png +%%ICINGAWWWDIR%%/docs/images/fast-startup1.png +%%ICINGAWWWDIR%%/docs/images/fast-startup2.png +%%ICINGAWWWDIR%%/docs/images/fig1.png +%%ICINGAWWWDIR%%/docs/images/fig10.png +%%ICINGAWWWDIR%%/docs/images/fig11.png +%%ICINGAWWWDIR%%/docs/images/fig12.png +%%ICINGAWWWDIR%%/docs/images/fig13.png +%%ICINGAWWWDIR%%/docs/images/fig2.png +%%ICINGAWWWDIR%%/docs/images/fig3.png +%%ICINGAWWWDIR%%/docs/images/fig4.png +%%ICINGAWWWDIR%%/docs/images/fig5.png +%%ICINGAWWWDIR%%/docs/images/fig6.png +%%ICINGAWWWDIR%%/docs/images/fig7.png +%%ICINGAWWWDIR%%/docs/images/fig8.png +%%ICINGAWWWDIR%%/docs/images/fig9.png +%%ICINGAWWWDIR%%/docs/images/flags/de.png +%%ICINGAWWWDIR%%/docs/images/flags/um_gb.png +%%ICINGAWWWDIR%%/docs/images/freshness.png +%%ICINGAWWWDIR%%/docs/images/host-dependencies.png +%%ICINGAWWWDIR%%/docs/images/icinga-reporting-datasource-ido-mysql_1.8.png +%%ICINGAWWWDIR%%/docs/images/icinga-reporting-datasource-ido_1.8.png +%%ICINGAWWWDIR%%/docs/images/icinga-reporting-overview_1.8.png +%%ICINGAWWWDIR%%/docs/images/icinga-reporting_1.6.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_groups1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_groups2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_logs1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_principals.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_tasks.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_users1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-admin_users2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-commands_hst.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-commands_svc.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks-settings.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks2a.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks3.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks4.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks5.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-cronks6.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-exp_1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-exp_2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-exp_3.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-exp_4.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-exp_5.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter3.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter4.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter5.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-filter6.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-host-obj.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-host-obj1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-host.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-hostgroup.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-instance-down.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-log.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-login.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-main_bar.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-mainscreen.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-open_problems.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-overview.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-search1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-settings.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-srv.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-srv_obj.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-statuscronk.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-tackle1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-tackle2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-tackle3.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-tackle4.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-topmenu1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-topmenu2.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-topmenuadmin1.png +%%ICINGAWWWDIR%%/docs/images/icinga-web-user-prefs-logout.png +%%ICINGAWWWDIR%%/docs/images/idoutils.png +%%ICINGAWWWDIR%%/docs/images/important.gif +%%ICINGAWWWDIR%%/docs/images/important.png +%%ICINGAWWWDIR%%/docs/images/integrationoverview.png +%%ICINGAWWWDIR%%/docs/images/interleaved1.png +%%ICINGAWWWDIR%%/docs/images/interleaved2.png +%%ICINGAWWWDIR%%/docs/images/interleaved3.png +%%ICINGAWWWDIR%%/docs/images/logofullsize.png +%%ICINGAWWWDIR%%/docs/images/monitoring-printers.png +%%ICINGAWWWDIR%%/docs/images/monitoring-routers.png +%%ICINGAWWWDIR%%/docs/images/monitoring-windows.png +%%ICINGAWWWDIR%%/docs/images/multiple-templates1.png +%%ICINGAWWWDIR%%/docs/images/multiple-templates2.png +%%ICINGAWWWDIR%%/docs/images/nagios.jpg +%%ICINGAWWWDIR%%/docs/images/ndoutils.png +%%ICINGAWWWDIR%%/docs/images/network-outage1.png +%%ICINGAWWWDIR%%/docs/images/network-outage2.png +%%ICINGAWWWDIR%%/docs/images/noninterleaved1.png +%%ICINGAWWWDIR%%/docs/images/noninterleaved2.png +%%ICINGAWWWDIR%%/docs/images/note.gif +%%ICINGAWWWDIR%%/docs/images/note.png +%%ICINGAWWWDIR%%/docs/images/nrpe.png +%%ICINGAWWWDIR%%/docs/images/nrpe_remote.png +%%ICINGAWWWDIR%%/docs/images/nsca.png +%%ICINGAWWWDIR%%/docs/images/nscpp.png +%%ICINGAWWWDIR%%/docs/images/objects-commands.png +%%ICINGAWWWDIR%%/docs/images/objects-contacts.png +%%ICINGAWWWDIR%%/docs/images/objects-hosts.png +%%ICINGAWWWDIR%%/docs/images/objects-services.png +%%ICINGAWWWDIR%%/docs/images/objects-timeperiods.png +%%ICINGAWWWDIR%%/docs/images/passivechecks.png +%%ICINGAWWWDIR%%/docs/images/passivehosttranslation.png +%%ICINGAWWWDIR%%/docs/images/perfdata_cached.png +%%ICINGAWWWDIR%%/docs/images/perfdata_cached2.png +%%ICINGAWWWDIR%%/docs/images/perfdata_cmdbuf.png +%%ICINGAWWWDIR%%/docs/images/perfdata_exec.png +%%ICINGAWWWDIR%%/docs/images/perfdata_extcmd.png +%%ICINGAWWWDIR%%/docs/images/perfdata_host.png +%%ICINGAWWWDIR%%/docs/images/perfdata_lat.png +%%ICINGAWWWDIR%%/docs/images/perfdata_state_chg.png +%%ICINGAWWWDIR%%/docs/images/perfdata_svc.png +%%ICINGAWWWDIR%%/docs/images/plugins.png +%%ICINGAWWWDIR%%/docs/images/predictive-dependency-checks.png +%%ICINGAWWWDIR%%/docs/images/printer.png +%%ICINGAWWWDIR%%/docs/images/reachability1.png +%%ICINGAWWWDIR%%/docs/images/reachability2.png +%%ICINGAWWWDIR%%/docs/images/reachability3.png +%%ICINGAWWWDIR%%/docs/images/reachability4.png +%%ICINGAWWWDIR%%/docs/images/redundancy.png +%%ICINGAWWWDIR%%/docs/images/rep_avail.png +%%ICINGAWWWDIR%%/docs/images/reptop10.png +%%ICINGAWWWDIR%%/docs/images/security.png +%%ICINGAWWWDIR%%/docs/images/security1.png +%%ICINGAWWWDIR%%/docs/images/security2.png +%%ICINGAWWWDIR%%/docs/images/security3.png +%%ICINGAWWWDIR%%/docs/images/seealso.gif +%%ICINGAWWWDIR%%/docs/images/service-dependencies.png +%%ICINGAWWWDIR%%/docs/images/statetransitions.png +%%ICINGAWWWDIR%%/docs/images/statetransitions2.png +%%ICINGAWWWDIR%%/docs/images/stoprestart.png +%%ICINGAWWWDIR%%/docs/images/switch.png +%%ICINGAWWWDIR%%/docs/images/tac_header2.png +%%ICINGAWWWDIR%%/docs/images/tcpwrappers.png +%%ICINGAWWWDIR%%/docs/images/tip.gif +%%ICINGAWWWDIR%%/docs/images/tip.png +%%ICINGAWWWDIR%%/docs/images/tuning.png +%%ICINGAWWWDIR%%/docs/images/upto.gif +%%ICINGAWWWDIR%%/docs/index.html +%%ICINGAWWWDIR%%/docs/js/icinga-docs.js +%%ICINGAWWWDIR%%/docs/js/jquery-min.js +%%ICINGAWWWDIR%%/docs/js/jquery-1.8.2.js +%%ICINGAWWWDIR%%/docs/robots.txt +%%ICINGAWWWDIR%%/docs/stylesheets/icinga-docs.css +%%ICINGAWWWDIR%%/images/Icinga_Header_Webinterface.jpg +%%ICINGAWWWDIR%%/images/Icinga_Header_Webinterface_Pixel.jpg +%%ICINGAWWWDIR%%/images/Icinga_TAC_Header_Webinterface.jpg +%%ICINGAWWWDIR%%/images/ack.gif +%%ICINGAWWWDIR%%/images/action.gif +%%ICINGAWWWDIR%%/images/activeonly.gif +%%ICINGAWWWDIR%%/images/application-monitor.png +%%ICINGAWWWDIR%%/images/cmd_shadow.gif +%%ICINGAWWWDIR%%/images/cmd_stop.png +%%ICINGAWWWDIR%%/images/command.png +%%ICINGAWWWDIR%%/images/comment.gif +%%ICINGAWWWDIR%%/images/contexthelp.gif +%%ICINGAWWWDIR%%/images/critical.png +%%ICINGAWWWDIR%%/images/database.gif +%%ICINGAWWWDIR%%/images/dd_arrow.gif +%%ICINGAWWWDIR%%/images/delay.gif +%%ICINGAWWWDIR%%/images/delete.gif +%%ICINGAWWWDIR%%/images/detail.gif +%%ICINGAWWWDIR%%/images/disabled.gif +%%ICINGAWWWDIR%%/images/down.gif +%%ICINGAWWWDIR%%/images/downtime.gif +%%ICINGAWWWDIR%%/images/empty.gif +%%ICINGAWWWDIR%%/images/enabled.gif +%%ICINGAWWWDIR%%/images/eventhandlingdisabled.gif +%%ICINGAWWWDIR%%/images/export_csv.png +%%ICINGAWWWDIR%%/images/export_json.png +%%ICINGAWWWDIR%%/images/export_link.png +%%ICINGAWWWDIR%%/images/export_xml.png +%%ICINGAWWWDIR%%/images/favicon.ico +%%ICINGAWWWDIR%%/images/flapping.gif +%%ICINGAWWWDIR%%/images/histogram.png +%%ICINGAWWWDIR%%/images/history.gif +%%ICINGAWWWDIR%%/images/hostevent.gif +%%ICINGAWWWDIR%%/images/hourglass-arrow.png +%%ICINGAWWWDIR%%/images/hourglass-exclamation.png +%%ICINGAWWWDIR%%/images/icon_collapse.gif +%%ICINGAWWWDIR%%/images/icon_expand.gif +%%ICINGAWWWDIR%%/images/icon_first_active.gif +%%ICINGAWWWDIR%%/images/icon_first_inactive.gif +%%ICINGAWWWDIR%%/images/icon_last_active.gif +%%ICINGAWWWDIR%%/images/icon_last_inactive.gif +%%ICINGAWWWDIR%%/images/icon_next_active.gif +%%ICINGAWWWDIR%%/images/icon_next_inactive.gif +%%ICINGAWWWDIR%%/images/icon_previous_active.gif +%%ICINGAWWWDIR%%/images/icon_previous_inactive.gif +%%ICINGAWWWDIR%%/images/icon_reload.png +%%ICINGAWWWDIR%%/images/info.png +%%ICINGAWWWDIR%%/images/left.gif +%%ICINGAWWWDIR%%/images/logofullsize.png +%%ICINGAWWWDIR%%/images/logos/Stats1.gif +%%ICINGAWWWDIR%%/images/logos/Stats2.png +%%ICINGAWWWDIR%%/images/logos/equipment/Nuvem.gif +%%ICINGAWWWDIR%%/images/logos/equipment/Nuvem.jpg +%%ICINGAWWWDIR%%/images/logos/equipment/Nuvem.png +%%ICINGAWWWDIR%%/images/logos/equipment/Nuvemp.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/Nuvemp.gif +%%ICINGAWWWDIR%%/images/logos/equipment/Nuvemp.jpg +%%ICINGAWWWDIR%%/images/logos/equipment/Nuvemp.png +%%ICINGAWWWDIR%%/images/logos/equipment/accounting_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/accounting_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/accounting_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/antivirus.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/antivirus.gif +%%ICINGAWWWDIR%%/images/logos/equipment/antivirus.png +%%ICINGAWWWDIR%%/images/logos/equipment/atm.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/atm.gif +%%ICINGAWWWDIR%%/images/logos/equipment/atm.png +%%ICINGAWWWDIR%%/images/logos/equipment/backup.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/backup.gif +%%ICINGAWWWDIR%%/images/logos/equipment/backup.png +%%ICINGAWWWDIR%%/images/logos/equipment/backup2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/backup2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/backup2.png +%%ICINGAWWWDIR%%/images/logos/equipment/blackbox.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/blackbox.gif +%%ICINGAWWWDIR%%/images/logos/equipment/blackbox.png +%%ICINGAWWWDIR%%/images/logos/equipment/cable_modem.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/cable_modem.gif +%%ICINGAWWWDIR%%/images/logos/equipment/cable_modem.png +%%ICINGAWWWDIR%%/images/logos/equipment/cd_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/cd_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/cd_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/cd_server2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/cd_server2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/cd_server2.png +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server2.png +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/chat_server3.png +%%ICINGAWWWDIR%%/images/logos/equipment/cluster.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/cluster.gif +%%ICINGAWWWDIR%%/images/logos/equipment/cluster.png +%%ICINGAWWWDIR%%/images/logos/equipment/cluster2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/cluster2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/cluster2.png +%%ICINGAWWWDIR%%/images/logos/equipment/computer.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/computer.gif +%%ICINGAWWWDIR%%/images/logos/equipment/computer.png +%%ICINGAWWWDIR%%/images/logos/equipment/computer2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/computer2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/computer2.png +%%ICINGAWWWDIR%%/images/logos/equipment/computer3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/computer3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/computer3.png +%%ICINGAWWWDIR%%/images/logos/equipment/computer4.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/computer4.gif +%%ICINGAWWWDIR%%/images/logos/equipment/computer4.png +%%ICINGAWWWDIR%%/images/logos/equipment/computer5.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/computer5.gif +%%ICINGAWWWDIR%%/images/logos/equipment/computer5.png +%%ICINGAWWWDIR%%/images/logos/equipment/computer6.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/computer6.gif +%%ICINGAWWWDIR%%/images/logos/equipment/computer6.png +%%ICINGAWWWDIR%%/images/logos/equipment/concentrator.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/concentrator.gif +%%ICINGAWWWDIR%%/images/logos/equipment/concentrator.png +%%ICINGAWWWDIR%%/images/logos/equipment/data_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/data_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/data_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/data_server2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/data_server2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/data_server2.png +%%ICINGAWWWDIR%%/images/logos/equipment/database.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/database.gif +%%ICINGAWWWDIR%%/images/logos/equipment/desktop-server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/desktop-server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/dial-in.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/dial-in.gif +%%ICINGAWWWDIR%%/images/logos/equipment/dial-in.png +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services.gif +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services.png +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services2.png +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/directory_services3.png +%%ICINGAWWWDIR%%/images/logos/equipment/disable_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/disable_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/disable_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/distributed_database.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/distributed_database.gif +%%ICINGAWWWDIR%%/images/logos/equipment/distributed_database.png +%%ICINGAWWWDIR%%/images/logos/equipment/dmz_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/dmz_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/dmz_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/document_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/document_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/document_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/download_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/download_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/download_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/dumbterminal.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/dumbterminal.gif +%%ICINGAWWWDIR%%/images/logos/equipment/dumbterminal.png +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop.gif +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop.png +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop2.png +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/e-shop3.png +%%ICINGAWWWDIR%%/images/logos/equipment/email_antivirus.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/email_antivirus.gif +%%ICINGAWWWDIR%%/images/logos/equipment/email_antivirus.png +%%ICINGAWWWDIR%%/images/logos/equipment/email_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/email_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/email_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/email_server2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/email_server2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/email_server2.png +%%ICINGAWWWDIR%%/images/logos/equipment/email_server3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/email_server3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/email_server3.png +%%ICINGAWWWDIR%%/images/logos/equipment/enable_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/enable_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/enable_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/ethernet_card.png +%%ICINGAWWWDIR%%/images/logos/equipment/fax.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/fax.gif +%%ICINGAWWWDIR%%/images/logos/equipment/firewall.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/firewall.gif +%%ICINGAWWWDIR%%/images/logos/equipment/firewall.png +%%ICINGAWWWDIR%%/images/logos/equipment/firewall2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/firewall2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/firewall2.png +%%ICINGAWWWDIR%%/images/logos/equipment/firewall3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/firewall3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/firewall3.png +%%ICINGAWWWDIR%%/images/logos/equipment/firewall4.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/firewall4.gif +%%ICINGAWWWDIR%%/images/logos/equipment/firewall_station.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/firewall_station.gif +%%ICINGAWWWDIR%%/images/logos/equipment/firewall_station.png +%%ICINGAWWWDIR%%/images/logos/equipment/game_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/game_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/game_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/game_server2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/game_server2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/game_server2.png +%%ICINGAWWWDIR%%/images/logos/equipment/game_server3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/game_server3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/game_server3.png +%%ICINGAWWWDIR%%/images/logos/equipment/game_server4.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/game_server4.gif +%%ICINGAWWWDIR%%/images/logos/equipment/game_server4.png +%%ICINGAWWWDIR%%/images/logos/equipment/hub.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/hub.gif +%%ICINGAWWWDIR%%/images/logos/equipment/hub.png +%%ICINGAWWWDIR%%/images/logos/equipment/hub2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/hub2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/information_cluster.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/information_cluster.gif +%%ICINGAWWWDIR%%/images/logos/equipment/information_cluster.png +%%ICINGAWWWDIR%%/images/logos/equipment/integrated_office_system.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/integrated_office_system.gif +%%ICINGAWWWDIR%%/images/logos/equipment/integrated_office_system.png +%%ICINGAWWWDIR%%/images/logos/equipment/internet_device.png +%%ICINGAWWWDIR%%/images/logos/equipment/ip-pbx.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/ip-pbx.gif +%%ICINGAWWWDIR%%/images/logos/equipment/irc.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/irc.gif +%%ICINGAWWWDIR%%/images/logos/equipment/irc.png +%%ICINGAWWWDIR%%/images/logos/equipment/laptop.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/laptop.gif +%%ICINGAWWWDIR%%/images/logos/equipment/laptop.png +%%ICINGAWWWDIR%%/images/logos/equipment/laptop2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/laptop2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/laptop2.png +%%ICINGAWWWDIR%%/images/logos/equipment/laptop3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/laptop3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/laptop3.png +%%ICINGAWWWDIR%%/images/logos/equipment/laptop4.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/laptop4.gif +%%ICINGAWWWDIR%%/images/logos/equipment/laptop4.png +%%ICINGAWWWDIR%%/images/logos/equipment/laptop5.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/laptop5.gif +%%ICINGAWWWDIR%%/images/logos/equipment/laptop5.png +%%ICINGAWWWDIR%%/images/logos/equipment/loadbalancer.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/loadbalancer.gif +%%ICINGAWWWDIR%%/images/logos/equipment/loadbalancer.png +%%ICINGAWWWDIR%%/images/logos/equipment/loadbalancer2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/loadbalancer2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/loadbalancer2.png +%%ICINGAWWWDIR%%/images/logos/equipment/mainframe.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/mainframe.gif +%%ICINGAWWWDIR%%/images/logos/equipment/modem.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/modem.gif +%%ICINGAWWWDIR%%/images/logos/equipment/modem.png +%%ICINGAWWWDIR%%/images/logos/equipment/modem2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/modem2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/modem2.png +%%ICINGAWWWDIR%%/images/logos/equipment/modem3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/modem3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/modem3.png +%%ICINGAWWWDIR%%/images/logos/equipment/modem4.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/modem4.gif +%%ICINGAWWWDIR%%/images/logos/equipment/modem4.png +%%ICINGAWWWDIR%%/images/logos/equipment/modem5.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/modem5.gif +%%ICINGAWWWDIR%%/images/logos/equipment/modem5.png +%%ICINGAWWWDIR%%/images/logos/equipment/modem6.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/modem6.gif +%%ICINGAWWWDIR%%/images/logos/equipment/modem6.png +%%ICINGAWWWDIR%%/images/logos/equipment/monitor.png +%%ICINGAWWWDIR%%/images/logos/equipment/monitoring.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/monitoring.gif +%%ICINGAWWWDIR%%/images/logos/equipment/monitoring.png +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia.gif +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia.png +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia2.png +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/multimedia3.png +%%ICINGAWWWDIR%%/images/logos/equipment/mysql.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/mysql.gif +%%ICINGAWWWDIR%%/images/logos/equipment/mysql.png +%%ICINGAWWWDIR%%/images/logos/equipment/mysql2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/mysql2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/mysql2.png +%%ICINGAWWWDIR%%/images/logos/equipment/nas.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/nas.gif +%%ICINGAWWWDIR%%/images/logos/equipment/nas.png +%%ICINGAWWWDIR%%/images/logos/equipment/nas2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/nas2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/nas2.png +%%ICINGAWWWDIR%%/images/logos/equipment/nas3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/nas3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/nas3.png +%%ICINGAWWWDIR%%/images/logos/equipment/nas4.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/nas4.gif +%%ICINGAWWWDIR%%/images/logos/equipment/nas4.png +%%ICINGAWWWDIR%%/images/logos/equipment/nas_secured.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/nas_secured.gif +%%ICINGAWWWDIR%%/images/logos/equipment/nas_secured.png +%%ICINGAWWWDIR%%/images/logos/equipment/network_node.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/network_node.gif +%%ICINGAWWWDIR%%/images/logos/equipment/network_node.png +%%ICINGAWWWDIR%%/images/logos/equipment/news.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/news.gif +%%ICINGAWWWDIR%%/images/logos/equipment/news.png +%%ICINGAWWWDIR%%/images/logos/equipment/news2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/news2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/news2.png +%%ICINGAWWWDIR%%/images/logos/equipment/notebook.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/notebook.gif +%%ICINGAWWWDIR%%/images/logos/equipment/office_app_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/office_app_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/office_app_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/outlook_remote.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/outlook_remote.gif +%%ICINGAWWWDIR%%/images/logos/equipment/outlook_remote.png +%%ICINGAWWWDIR%%/images/logos/equipment/phone.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/phone.gif +%%ICINGAWWWDIR%%/images/logos/equipment/phone.png +%%ICINGAWWWDIR%%/images/logos/equipment/phone2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/phone2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/phone2.png +%%ICINGAWWWDIR%%/images/logos/equipment/print_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/print_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/print_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/printer.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/printer.gif +%%ICINGAWWWDIR%%/images/logos/equipment/printer.png +%%ICINGAWWWDIR%%/images/logos/equipment/printer2.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/printer2.gif +%%ICINGAWWWDIR%%/images/logos/equipment/printer2.png +%%ICINGAWWWDIR%%/images/logos/equipment/printer3.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/printer3.gif +%%ICINGAWWWDIR%%/images/logos/equipment/printer3.png +%%ICINGAWWWDIR%%/images/logos/equipment/printer4.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/printer4.gif +%%ICINGAWWWDIR%%/images/logos/equipment/proxy_server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/proxy_server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/proxy_server.png +%%ICINGAWWWDIR%%/images/logos/equipment/rack-server.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/rack-server.gif +%%ICINGAWWWDIR%%/images/logos/equipment/rack1.gd2 +%%ICINGAWWWDIR%%/images/logos/equipment/rack1.gif +%%ICINGAWWWDIR%%/images/logos/equipment/rack1.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Wed Aug 12 21:06:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3567099F0D0; Wed, 12 Aug 2015 21:06:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 266E53D7; Wed, 12 Aug 2015 21:06:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CL6Qop035082; Wed, 12 Aug 2015 21:06:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CL6QAK035081; Wed, 12 Aug 2015 21:06:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508122106.t7CL6QAK035081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 12 Aug 2015 21:06:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394039 - head/audio/ncmpcpp/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 21:06:26 -0000 Author: amdmi3 Date: Wed Aug 12 21:06:25 2015 New Revision: 394039 URL: https://svnweb.freebsd.org/changeset/ports/394039 Log: - Fix build on armv6 Approved by: portmgr blanket Added: head/audio/ncmpcpp/files/patch-src_bindings.cpp (contents, props changed) Added: head/audio/ncmpcpp/files/patch-src_bindings.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/ncmpcpp/files/patch-src_bindings.cpp Wed Aug 12 21:06:25 2015 (r394039) @@ -0,0 +1,11 @@ +--- src/bindings.cpp.orig 2015-07-05 02:18:34 UTC ++++ src/bindings.cpp +@@ -108,7 +108,7 @@ Actions::BaseAction *parseActionLine(con + // push single character into input queue + std::string arg = getEnclosedString(line, '"', '"', 0); + Key k = stringToSpecialKey(arg); +- auto queue = std::vector{ k.getChar() }; ++ auto queue = std::vector{ (int)k.getChar() }; + if (k != Key::noOp) + result = new Actions::PushCharacters(&Global::wFooter, std::move(queue)); + else From owner-svn-ports-all@freebsd.org Wed Aug 12 21:13:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 813D699F2B7; Wed, 12 Aug 2015 21:13:28 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6ECC4BB3; Wed, 12 Aug 2015 21:13:28 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CLDSHl039195; Wed, 12 Aug 2015 21:13:28 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CLDS1l039194; Wed, 12 Aug 2015 21:13:28 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201508122113.t7CLDS1l039194@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Wed, 12 Aug 2015 21:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394040 - head/net-mgmt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 21:13:28 -0000 Author: lme Date: Wed Aug 12 21:13:27 2015 New Revision: 394040 URL: https://svnweb.freebsd.org/changeset/ports/394040 Log: Add icinga-classicweb and icinga-core to the build Noticed by: antoine Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Wed Aug 12 21:06:25 2015 (r394039) +++ head/net-mgmt/Makefile Wed Aug 12 21:13:27 2015 (r394040) @@ -72,6 +72,8 @@ SUBDIR += hastmon SUBDIR += hawk SUBDIR += icinga + SUBDIR += icinga-classicweb + SUBDIR += icinga-core SUBDIR += icinga2 SUBDIR += icli SUBDIR += icmpmonitor From owner-svn-ports-all@freebsd.org Wed Aug 12 22:16:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33F1F99FC20; Wed, 12 Aug 2015 22:16:53 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0AB8D8E6; Wed, 12 Aug 2015 22:16:53 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CMGqv6064229; Wed, 12 Aug 2015 22:16:52 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CMGq6S064228; Wed, 12 Aug 2015 22:16:52 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201508122216.t7CMGq6S064228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 12 Aug 2015 22:16:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394041 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 22:16:53 -0000 Author: matthew Date: Wed Aug 12 22:16:52 2015 New Revision: 394041 URL: https://svnweb.freebsd.org/changeset/ports/394041 Log: Document two XSS vulnerabilities in rt40, rt42. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Aug 12 21:13:27 2015 (r394040) +++ head/security/vuxml/vuln.xml Wed Aug 12 22:16:52 2015 (r394041) @@ -58,6 +58,46 @@ Notes: --> + + RT -- two XSS vulnerabilities + + + rt42 + 4.2.04.2.12 + + + rt40 + 4.0.04.0.24 + + + + +

Best Practical reports:

+
+

RT 4.0.0 and above are vulnerable to a cross-site + scripting (XSS) attack via the user and group rights + management pages. This vulnerability is assigned + CVE-2015-5475. It was discovered and reported by Marcin + Kopec at Data Reliance Shared Service Center.

+

RT 4.2.0 and above are vulnerable to a cross-site + scripting (XSS) attack via the cryptography interface. + This vulnerability could allow an attacker with a + carefully-crafted key to inject JavaScript into RT's user + interface. Installations which use neither GnuPG nor + S/MIME are unaffected.

+
+ +
+ + CVE-2015-5475 + http://blog.bestpractical.com/2015/08/security-vulnerabilities-in-rt.html + + + 2015-08-12 + 2015-08-12 + +
+ py-foolscap -- local file inclusion From owner-svn-ports-all@freebsd.org Wed Aug 12 22:18:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41D9C99FC64; Wed, 12 Aug 2015 22:18:22 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32AAD9CE; Wed, 12 Aug 2015 22:18:22 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CMIM43064430; Wed, 12 Aug 2015 22:18:22 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CMILbc064426; Wed, 12 Aug 2015 22:18:21 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201508122218.t7CMILbc064426@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 12 Aug 2015 22:18:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394042 - head/www/rt40 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 22:18:22 -0000 Author: matthew Date: Wed Aug 12 22:18:21 2015 New Revision: 394042 URL: https://svnweb.freebsd.org/changeset/ports/394042 Log: Security update to 4.0.24 http://blog.bestpractical.com/2015/08/security-vulnerabilities-in-rt.html MFH: 2015Q3 Security: 83b38a2c-413e-11e5-bfcf-6805ca0b3d42 Modified: head/www/rt40/Makefile head/www/rt40/distinfo Modified: head/www/rt40/Makefile ============================================================================== --- head/www/rt40/Makefile Wed Aug 12 22:16:52 2015 (r394041) +++ head/www/rt40/Makefile Wed Aug 12 22:18:21 2015 (r394042) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rt -PORTVERSION= 4.0.23 +PORTVERSION= 4.0.24 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 40 Modified: head/www/rt40/distinfo ============================================================================== --- head/www/rt40/distinfo Wed Aug 12 22:16:52 2015 (r394041) +++ head/www/rt40/distinfo Wed Aug 12 22:18:21 2015 (r394042) @@ -1,2 +1,2 @@ -SHA256 (rt-4.0.23.tar.gz) = 39e1d161a183d3d97188c87493465331d59332ff878fa328c7642bc4f75df9c9 -SIZE (rt-4.0.23.tar.gz) = 6939622 +SHA256 (rt-4.0.24.tar.gz) = 5940ac6c49341cc45de91705025ebec9a764b519415cc133375c6b0d91b84967 +SIZE (rt-4.0.24.tar.gz) = 6841891 From owner-svn-ports-all@freebsd.org Wed Aug 12 22:19:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C53AE99FCB7; Wed, 12 Aug 2015 22:19:23 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5F62AE7; Wed, 12 Aug 2015 22:19:23 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CMJNBi064620; Wed, 12 Aug 2015 22:19:23 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CMJNMQ064618; Wed, 12 Aug 2015 22:19:23 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201508122219.t7CMJNMQ064618@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 12 Aug 2015 22:19:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394043 - head/www/rt42 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 22:19:23 -0000 Author: matthew Date: Wed Aug 12 22:19:22 2015 New Revision: 394043 URL: https://svnweb.freebsd.org/changeset/ports/394043 Log: Security update to 4.0.12 MFH: 2015Q3 Security: 83b38a2c-413e-11e5-bfcf-6805ca0b3d42 Modified: head/www/rt42/Makefile head/www/rt42/distinfo Modified: head/www/rt42/Makefile ============================================================================== --- head/www/rt42/Makefile Wed Aug 12 22:18:21 2015 (r394042) +++ head/www/rt42/Makefile Wed Aug 12 22:19:22 2015 (r394043) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rt -DISTVERSION= 4.2.11 +DISTVERSION= 4.2.12 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 42 Modified: head/www/rt42/distinfo ============================================================================== --- head/www/rt42/distinfo Wed Aug 12 22:18:21 2015 (r394042) +++ head/www/rt42/distinfo Wed Aug 12 22:19:22 2015 (r394043) @@ -1,2 +1,2 @@ -SHA256 (rt-4.2.11.tar.gz) = dc07f32dd04a50bd9d0ff86a1f9fe3cd1a128f01cbbd018e5fa23a41ddfb87e6 -SIZE (rt-4.2.11.tar.gz) = 7537515 +SHA256 (rt-4.2.12.tar.gz) = e21220c609706dc9977a13309d78a4d9171455ae823cf549311342cedd837264 +SIZE (rt-4.2.12.tar.gz) = 7537620 From owner-svn-ports-all@freebsd.org Wed Aug 12 22:22:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B05199FFED; Wed, 12 Aug 2015 22:22:16 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.infracaninophile.co.uk", Issuer "infracaninophile.co.uk" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 82888FB; Wed, 12 Aug 2015 22:22:15 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from liminal.local (liminal.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3636:3bff:fed4:b0d6]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.15.2/8.15.2) with ESMTPSA id t7CMM73A050003 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Wed, 12 Aug 2015 23:22:08 +0100 (BST) (envelope-from matthew@FreeBSD.org) Authentication-Results: smtp.infracaninophile.co.uk; dmarc=none header.from=FreeBSD.org DKIM-Filter: OpenDKIM Filter v2.9.2 smtp.infracaninophile.co.uk t7CMM73A050003 Authentication-Results: smtp.infracaninophile.co.uk/t7CMM73A050003; dkim=none reason="no signature"; dkim-adsp=none; dkim-atps=neutral X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host liminal.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3636:3bff:fed4:b0d6] claimed to be liminal.local Subject: Re: svn commit: r394043 - head/www/rt42 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201508122219.t7CMJNMQ064618@repo.freebsd.org> From: Matthew Seaman Message-ID: <55CBC704.3000107@FreeBSD.org> Date: Wed, 12 Aug 2015 23:21:56 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: <201508122219.t7CMJNMQ064618@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="WReT4hhTnlaQ4rIUh8KfpJvphRPMOc9G3" X-Virus-Scanned: clamav-milter 0.98.7 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 22:22:16 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --WReT4hhTnlaQ4rIUh8KfpJvphRPMOc9G3 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 12/08/2015 23:19, Matthew Seaman wrote: > Security update to 4.0.12 That's should read 4.2.12. Matthew --WReT4hhTnlaQ4rIUh8KfpJvphRPMOc9G3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) iQJ8BAEBCgBmBQJVy8cKXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATdWwQAIsmz0U8tQtRuNoTAiHPCHEp fg89mDeryfd0bA3TKl5CPhYCmJ21ktQjuhrWeQr+952jFIiNr+pmRfsncu9Q1GJz sDExw0S3hulE+pu8EX0SOjdNHCgIs/zf9sN2Pf29XzkbxgtnuPGFfZG0IKZT3zbo OSvSGTiFoM+WZUAmCpuJpk0nWGtSbjGkRJz1Xcuer5jVp2g+RN2q/T8TIZ7gxiBh wggH4CcrMz0Kz/MpLYMsiMdR4bzcAe9Xs0RRM9mRXgEFRP7gCUNP7JE2D8XutTeQ eB2M+nUtdJhWKTuwPAqKhWNFP1zUgO8saOhl+EJfipAgDAdOz8SA9JlOME/HXLcM pIM9Oy/slNP2CVW0PR+6FGUGdYQiJjT+Knjd6Z9jTioTCtbkL6SGKSt2S23DlRCQ dpXn6IyopjdrjU8xfEWj0/te3r86KT+zPU+HhzdtuaRw+fSaGNztWIVbCBpDeupa uNi2WbPCTjNl93j6aT/DuGuaEe1NJoR5o6U/xTQcktzKqH2rLXRL/3DoKsdurZ8O nNy51wMmC+lVgAYyH1Gy6eQd0BN15DgHG6pdKO3ub9NC6rhDx8uFieHgWsyR8YVL t3mUrzofynaFm3Jxiu07o1kvyXijXHuBr/VbFBlk91nNdbnLPSinMAjv9w3T+3pQ 3TMgfPqJNoUgKCT5lVET =LTnF -----END PGP SIGNATURE----- --WReT4hhTnlaQ4rIUh8KfpJvphRPMOc9G3-- From owner-svn-ports-all@freebsd.org Wed Aug 12 22:37:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DEFC99A0217; Wed, 12 Aug 2015 22:37:45 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B63C1A37; Wed, 12 Aug 2015 22:37:45 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CMbjTE072960; Wed, 12 Aug 2015 22:37:45 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CMbjK3072959; Wed, 12 Aug 2015 22:37:45 GMT (envelope-from db@FreeBSD.org) Message-Id: <201508122237.t7CMbjK3072959@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Wed, 12 Aug 2015 22:37:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394044 - head/comms/kvasd/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 22:37:46 -0000 Author: db Date: Wed Aug 12 22:37:45 2015 New Revision: 394044 URL: https://svnweb.freebsd.org/changeset/ports/394044 Log: kvasd should have been in LINUXBASE not LOCALBASE Modified: Directory Properties: head/comms/kvasd/files/LICENSE.txt (props changed) From owner-svn-ports-all@freebsd.org Wed Aug 12 22:49:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A93959A0492; Wed, 12 Aug 2015 22:49:23 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 989191FC; Wed, 12 Aug 2015 22:49:23 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7CMnNp6077530; Wed, 12 Aug 2015 22:49:23 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7CMnMAN077525; Wed, 12 Aug 2015 22:49:22 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508122249.t7CMnMAN077525@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 12 Aug 2015 22:49:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394045 - in head: mail/thunderbird/files www/firefox-esr/files www/firefox/files www/libxul/files www/seamonkey/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Aug 2015 22:49:23 -0000 Author: jbeich Date: Wed Aug 12 22:49:21 2015 New Revision: 394045 URL: https://svnweb.freebsd.org/changeset/ports/394045 Log: Move graphite2 buildfix to where it belongs Deleted: head/mail/thunderbird/files/patch-gfx-thebes-moz.build head/www/firefox-esr/files/patch-gfx-thebes-moz.build head/www/firefox/files/patch-gfx-thebes-moz.build head/www/libxul/files/patch-gfx-thebes-moz.build head/www/seamonkey/files/patch-gfx-thebes-moz.build Modified: head/mail/thunderbird/files/patch-bug847568 head/www/firefox-esr/files/patch-bug847568 head/www/firefox/files/patch-bug847568 head/www/libxul/files/patch-bug847568 head/www/seamonkey/files/patch-bug847568 Modified: head/mail/thunderbird/files/patch-bug847568 ============================================================================== --- head/mail/thunderbird/files/patch-bug847568 Wed Aug 12 22:37:45 2015 (r394044) +++ head/mail/thunderbird/files/patch-bug847568 Wed Aug 12 22:49:21 2015 (r394045) @@ -188,19 +188,21 @@ diff --git gfx/thebes/moz.build gfx/theb index d5852fa..aeeab25 100644 --- mozilla/gfx/thebes/moz.build +++ mozilla/gfx/thebes/moz.build -@@ -278,6 +278,12 @@ CXXFLAGS += CONFIG['TK_CFLAGS'] - CFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] - CFLAGS += CONFIG['TK_CFLAGS'] +@@ -294,7 +294,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'andr + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] +-DEFINES['GRAPHITE2_STATIC'] = True +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + +if CONFIG['MOZ_NATIVE_GRAPHITE2']: + CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS'] -+ - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'gonk', 'qt'): - CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] ++else: ++ DEFINES['GRAPHITE2_STATIC'] = True + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build index d736943..41a931f 100644 --- mozilla/intl/unicharutil/util/moz.build Modified: head/www/firefox-esr/files/patch-bug847568 ============================================================================== --- head/www/firefox-esr/files/patch-bug847568 Wed Aug 12 22:37:45 2015 (r394044) +++ head/www/firefox-esr/files/patch-bug847568 Wed Aug 12 22:49:21 2015 (r394045) @@ -188,19 +188,21 @@ diff --git gfx/thebes/moz.build gfx/theb index d5852fa..aeeab25 100644 --- gfx/thebes/moz.build +++ gfx/thebes/moz.build -@@ -278,6 +278,12 @@ CXXFLAGS += CONFIG['TK_CFLAGS'] - CFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] - CFLAGS += CONFIG['TK_CFLAGS'] +@@ -294,7 +294,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'andr + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] +-DEFINES['GRAPHITE2_STATIC'] = True +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + +if CONFIG['MOZ_NATIVE_GRAPHITE2']: + CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS'] -+ - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'gonk', 'qt'): - CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] ++else: ++ DEFINES['GRAPHITE2_STATIC'] = True + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build index d736943..41a931f 100644 --- intl/unicharutil/util/moz.build Modified: head/www/firefox/files/patch-bug847568 ============================================================================== --- head/www/firefox/files/patch-bug847568 Wed Aug 12 22:37:45 2015 (r394044) +++ head/www/firefox/files/patch-bug847568 Wed Aug 12 22:49:21 2015 (r394045) @@ -188,19 +188,21 @@ diff --git gfx/thebes/moz.build gfx/theb index d5852fa..aeeab25 100644 --- gfx/thebes/moz.build +++ gfx/thebes/moz.build -@@ -278,6 +278,12 @@ CXXFLAGS += CONFIG['TK_CFLAGS'] - CFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] - CFLAGS += CONFIG['TK_CFLAGS'] +@@ -294,7 +294,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'andr + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] +-DEFINES['GRAPHITE2_STATIC'] = True +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + +if CONFIG['MOZ_NATIVE_GRAPHITE2']: + CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS'] -+ - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'gonk', 'qt'): - CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] ++else: ++ DEFINES['GRAPHITE2_STATIC'] = True + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build index d736943..41a931f 100644 --- intl/unicharutil/util/moz.build Modified: head/www/libxul/files/patch-bug847568 ============================================================================== --- head/www/libxul/files/patch-bug847568 Wed Aug 12 22:37:45 2015 (r394044) +++ head/www/libxul/files/patch-bug847568 Wed Aug 12 22:49:21 2015 (r394045) @@ -188,19 +188,21 @@ diff --git gfx/thebes/moz.build gfx/theb index d5852fa..aeeab25 100644 --- gfx/thebes/moz.build +++ gfx/thebes/moz.build -@@ -278,6 +278,12 @@ CXXFLAGS += CONFIG['TK_CFLAGS'] - CFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] - CFLAGS += CONFIG['TK_CFLAGS'] +@@ -294,7 +294,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'andr + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] +-DEFINES['GRAPHITE2_STATIC'] = True +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + +if CONFIG['MOZ_NATIVE_GRAPHITE2']: + CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS'] -+ - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'gonk', 'qt'): - CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] ++else: ++ DEFINES['GRAPHITE2_STATIC'] = True + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build index d736943..41a931f 100644 --- intl/unicharutil/util/moz.build Modified: head/www/seamonkey/files/patch-bug847568 ============================================================================== --- head/www/seamonkey/files/patch-bug847568 Wed Aug 12 22:37:45 2015 (r394044) +++ head/www/seamonkey/files/patch-bug847568 Wed Aug 12 22:49:21 2015 (r394045) @@ -188,19 +188,21 @@ diff --git gfx/thebes/moz.build gfx/theb index d5852fa..aeeab25 100644 --- mozilla/gfx/thebes/moz.build +++ mozilla/gfx/thebes/moz.build -@@ -278,6 +278,12 @@ CXXFLAGS += CONFIG['TK_CFLAGS'] - CFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] - CFLAGS += CONFIG['TK_CFLAGS'] +@@ -294,7 +294,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'andr + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'qt'): + CXXFLAGS += CONFIG['MOZ_PANGO_CFLAGS'] +-DEFINES['GRAPHITE2_STATIC'] = True +if CONFIG['MOZ_NATIVE_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + +if CONFIG['MOZ_NATIVE_GRAPHITE2']: + CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS'] -+ - if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('android', 'gonk', 'qt'): - CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] ++else: ++ DEFINES['GRAPHITE2_STATIC'] = True + if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + DEFINES['OTS_DLL'] = True diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build index d736943..41a931f 100644 --- mozilla/intl/unicharutil/util/moz.build From owner-svn-ports-all@freebsd.org Thu Aug 13 00:04:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB4419B732F; Thu, 13 Aug 2015 00:04:34 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C25ADB05; Thu, 13 Aug 2015 00:04:34 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D04YKv010666; Thu, 13 Aug 2015 00:04:34 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D04YbM010664; Thu, 13 Aug 2015 00:04:34 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201508130004.t7D04YbM010664@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 13 Aug 2015 00:04:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394046 - head/math/p5-Math-GMP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 00:04:35 -0000 Author: wen Date: Thu Aug 13 00:04:33 2015 New Revision: 394046 URL: https://svnweb.freebsd.org/changeset/ports/394046 Log: - Update to 2.10 Changes: http://cpansearch.perl.org/src/SHLOMIF/Math-GMP-2.10/Changes Modified: head/math/p5-Math-GMP/Makefile head/math/p5-Math-GMP/distinfo Modified: head/math/p5-Math-GMP/Makefile ============================================================================== --- head/math/p5-Math-GMP/Makefile Wed Aug 12 22:49:21 2015 (r394045) +++ head/math/p5-Math-GMP/Makefile Thu Aug 13 00:04:33 2015 (r394046) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Math-GMP -PORTVERSION= 2.09 +PORTVERSION= 2.10 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/math/p5-Math-GMP/distinfo ============================================================================== --- head/math/p5-Math-GMP/distinfo Wed Aug 12 22:49:21 2015 (r394045) +++ head/math/p5-Math-GMP/distinfo Thu Aug 13 00:04:33 2015 (r394046) @@ -1,2 +1,2 @@ -SHA256 (Math-GMP-2.09.tar.gz) = b3b753392ab45c2bcf06563274686aa7dcf3ab2d1204c0371f153a8a6c5f1e03 -SIZE (Math-GMP-2.09.tar.gz) = 28335 +SHA256 (Math-GMP-2.10.tar.gz) = 40bc8895ac6ba4c3f26f6c26da7af72c3ffc3400811e267bc6b57a477d6f2749 +SIZE (Math-GMP-2.10.tar.gz) = 30226 From owner-svn-ports-all@freebsd.org Thu Aug 13 00:58:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0D999B7CF3; Thu, 13 Aug 2015 00:58:38 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4BCA77A; Thu, 13 Aug 2015 00:58:38 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D0wcco031473; Thu, 13 Aug 2015 00:58:38 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D0wbEm031469; Thu, 13 Aug 2015 00:58:37 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201508130058.t7D0wbEm031469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Thu, 13 Aug 2015 00:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394047 - in head/www: nginx nginx-devel nginx-devel/files nginx/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 00:58:39 -0000 Author: osa Date: Thu Aug 13 00:58:37 2015 New Revision: 394047 URL: https://svnweb.freebsd.org/changeset/ports/394047 Log: Upgrade third-party clojure module from 0.4.0 to 0.4.1. Deleted: head/www/nginx-devel/files/extra-patch-nginx-clojure-src-c-config head/www/nginx/files/extra-patch-nginx-clojure-src-c-config Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/distinfo head/www/nginx/Makefile head/www/nginx/distinfo Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Thu Aug 13 00:04:33 2015 (r394046) +++ head/www/nginx-devel/Makefile Thu Aug 13 00:58:37 2015 (r394047) @@ -366,12 +366,12 @@ JAVA_VERSION= 1.8 JAVA_VENDOR= openjdk JAVA_BUILD= yes JAVA_RUN= yes -NGINX_CLOJURE_VERSION= 0.4.0 +NGINX_CLOJURE_VERSION= 0.4.1 GH_ACCOUNT+= nginx-clojure:clojure GH_PROJECT+= nginx-clojure:clojure GH_TAGNAME+= v${NGINX_CLOJURE_VERSION}:clojure +CONFIGURE_ENV+= "JNI_INCS=-I${LOCALBASE}/openjdk8/include -I${LOCALBASE}/openjdk8/include/freebsd" CONFIGURE_ARGS+=--add-module=${WRKSRC_clojure}/src/c -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-nginx-clojure-src-c-config .endif .if ${PORT_OPTIONS:MECHO} @@ -965,7 +965,7 @@ post-patch: .endif .if ${PORT_OPTIONS:MCLOJURE} @${REINPLACE_CMD} \ - 's!%%JAVA_HOME%%!${JAVA_HOME}!g' \ + '45,47d' \ ${WRKSRC_clojure}/src/c/config .endif .if ${PORT_OPTIONS:MDRIZZLE} Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Thu Aug 13 00:04:33 2015 (r394046) +++ head/www/nginx-devel/distinfo Thu Aug 13 00:58:37 2015 (r394047) @@ -44,8 +44,8 @@ SHA256 (stnoonan-spnego-http-auth-nginx- SIZE (stnoonan-spnego-http-auth-nginx-module-f76d5d9_GH0.tar.gz) = 18152 SHA256 (yaoweibin-nginx_ajp_module-bf6cd93_GH0.tar.gz) = 9e3f78ea73e2d606a95ee64fd3affa4c249f9b342e66b6b11b63061791f28316 SIZE (yaoweibin-nginx_ajp_module-bf6cd93_GH0.tar.gz) = 109704 -SHA256 (nginx-clojure-nginx-clojure-v0.4.0_GH0.tar.gz) = 1611fb0e82c82a26c2c6c751a597111443705fa4557331296aa0dafae86c5915 -SIZE (nginx-clojure-nginx-clojure-v0.4.0_GH0.tar.gz) = 537138 +SHA256 (nginx-clojure-nginx-clojure-v0.4.1_GH0.tar.gz) = 5d751a2e09c928a2e17f365912fc99fef00bcee4da58c9b7af54700d44668741 +SIZE (nginx-clojure-nginx-clojure-v0.4.1_GH0.tar.gz) = 557736 SHA256 (openresty-echo-nginx-module-v0.57_GH0.tar.gz) = 8467237ca0fae74ca7a32fbd34fc6044df307098415d48068214c9c235695a07 SIZE (openresty-echo-nginx-module-v0.57_GH0.tar.gz) = 65073 SHA256 (openresty-headers-more-nginx-module-v0.261_GH0.tar.gz) = 03d1f5fbecba8565f247d87a38f5e4b6440b0a56d752bdd2b29af2f1c4aea480 Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Thu Aug 13 00:04:33 2015 (r394046) +++ head/www/nginx/Makefile Thu Aug 13 00:58:37 2015 (r394047) @@ -359,12 +359,12 @@ JAVA_VERSION= 1.8 JAVA_VENDOR= openjdk JAVA_BUILD= yes JAVA_RUN= yes -NGINX_CLOJURE_VERSION= 0.4.0 +NGINX_CLOJURE_VERSION= 0.4.1 GH_ACCOUNT+= nginx-clojure:clojure GH_PROJECT+= nginx-clojure:clojure GH_TAGNAME+= v${NGINX_CLOJURE_VERSION}:clojure +CONFIGURE_ENV+= "JNI_INCS=-I${LOCALBASE}/openjdk8/include -I${LOCALBASE}/openjdk8/include/freebsd" CONFIGURE_ARGS+=--add-module=${WRKSRC_clojure}/src/c -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-nginx-clojure-src-c-config .endif .if ${PORT_OPTIONS:MECHO} @@ -924,7 +924,7 @@ post-patch: .endif .if ${PORT_OPTIONS:MCLOJURE} @${REINPLACE_CMD} \ - 's!%%JAVA_HOME%%!${JAVA_HOME}!g' \ + '45,47d' \ ${WRKSRC_clojure}/src/c/config .endif .if ${PORT_OPTIONS:MDRIZZLE} Modified: head/www/nginx/distinfo ============================================================================== --- head/www/nginx/distinfo Thu Aug 13 00:04:33 2015 (r394046) +++ head/www/nginx/distinfo Thu Aug 13 00:58:37 2015 (r394047) @@ -44,8 +44,8 @@ SHA256 (stnoonan-spnego-http-auth-nginx- SIZE (stnoonan-spnego-http-auth-nginx-module-f76d5d9_GH0.tar.gz) = 18152 SHA256 (yaoweibin-nginx_ajp_module-bf6cd93_GH0.tar.gz) = 9e3f78ea73e2d606a95ee64fd3affa4c249f9b342e66b6b11b63061791f28316 SIZE (yaoweibin-nginx_ajp_module-bf6cd93_GH0.tar.gz) = 109704 -SHA256 (nginx-clojure-nginx-clojure-v0.4.0_GH0.tar.gz) = 1611fb0e82c82a26c2c6c751a597111443705fa4557331296aa0dafae86c5915 -SIZE (nginx-clojure-nginx-clojure-v0.4.0_GH0.tar.gz) = 537138 +SHA256 (nginx-clojure-nginx-clojure-v0.4.1_GH0.tar.gz) = 5d751a2e09c928a2e17f365912fc99fef00bcee4da58c9b7af54700d44668741 +SIZE (nginx-clojure-nginx-clojure-v0.4.1_GH0.tar.gz) = 557736 SHA256 (openresty-echo-nginx-module-v0.57_GH0.tar.gz) = 8467237ca0fae74ca7a32fbd34fc6044df307098415d48068214c9c235695a07 SIZE (openresty-echo-nginx-module-v0.57_GH0.tar.gz) = 65073 SHA256 (openresty-headers-more-nginx-module-v0.261_GH0.tar.gz) = 03d1f5fbecba8565f247d87a38f5e4b6440b0a56d752bdd2b29af2f1c4aea480 From owner-svn-ports-all@freebsd.org Thu Aug 13 01:55:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E704A99F4BF; Thu, 13 Aug 2015 01:55:08 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7584EA6; Thu, 13 Aug 2015 01:55:08 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D1t8c8055628; Thu, 13 Aug 2015 01:55:08 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D1t8wW055627; Thu, 13 Aug 2015 01:55:08 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508130155.t7D1t8wW055627@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 13 Aug 2015 01:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394048 - head/audio/cd2mp3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 01:55:09 -0000 Author: junovitch Date: Thu Aug 13 01:55:08 2015 New Revision: 394048 URL: https://svnweb.freebsd.org/changeset/ports/394048 Log: audio/cd2mp3: pass maintainer to submitter, add additional MASTER_SITE PR: 200137 Submitted by: Chris Hutchinson Approved by: Mark Foster (outgoing maintainer), delphij (mentor) Modified: head/audio/cd2mp3/Makefile Modified: head/audio/cd2mp3/Makefile ============================================================================== --- head/audio/cd2mp3/Makefile Thu Aug 13 00:58:37 2015 (r394047) +++ head/audio/cd2mp3/Makefile Thu Aug 13 01:55:08 2015 (r394048) @@ -7,10 +7,10 @@ PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= audio MASTER_SITES= http://mark.foster.cc/pub/freebsd/ports/distfiles/ \ + http://BSDforge.com/projects/source/audio/cd2mp3/ \ LOCAL/feld -MASTER_SITES= LOCAL/feld -MAINTAINER= mark@foster.cc +MAINTAINER= portmaster@BSDforge.com COMMENT= Easy to use CD Ripping and MP3 Encoding tool RUN_DEPENDS= lame:${PORTSDIR}/audio/lame \ From owner-svn-ports-all@freebsd.org Thu Aug 13 02:07:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1AF0B99F6ED; Thu, 13 Aug 2015 02:07:34 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5773305; Thu, 13 Aug 2015 02:07:33 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D27XFP059864; Thu, 13 Aug 2015 02:07:33 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D27Xgp059863; Thu, 13 Aug 2015 02:07:33 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508130207.t7D27Xgp059863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Thu, 13 Aug 2015 02:07:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394049 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 02:07:34 -0000 Author: junovitch Date: Thu Aug 13 02:07:33 2015 New Revision: 394049 URL: https://svnweb.freebsd.org/changeset/ports/394049 Log: Document Froxlor database password information disclosure vulnerability PR: 202262 Security: CVE-2015-5959 Security: 9ee72858-4159-11e5-93ad-002590263bf5 Approved by: feld (mentor) Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Aug 13 01:55:08 2015 (r394048) +++ head/security/vuxml/vuln.xml Thu Aug 13 02:07:33 2015 (r394049) @@ -58,6 +58,46 @@ Notes: --> + + froxlor -- database password information leak + + + froxlor + 0.9.33.2 + + + + +

oss-security-list@demlak.de reports:

+
+

An unauthenticated remote attacker is able to get the database + password via webaccess due to wrong file permissions of the /logs/ + folder in froxlor version 0.9.33.1 and earlier. The plain SQL + password and username may be stored in the /logs/sql-error.log file. + This directory is publicly reachable under the default + configuration/setup.

+
+

Note that froxlor 0.9.33.2 prevents future logging of passwords but + does not retroactively remove passwords already logged. Michael + Kaufmann, the Froxlor lead developer reports:

+
+

Removing all .log files from the directory should do the job, + alternatively just use the class.ConfigIO.php from Github

+
+ +
+ + CVE-2015-5959 + ports/202262 + http://seclists.org/oss-sec/2015/q3/238 + https://forum.froxlor.org/index.php/topic/13054-important-bugfix-release-09332/ + + + 2015-07-29 + 2015-08-13 + +
+ RT -- two XSS vulnerabilities From owner-svn-ports-all@freebsd.org Thu Aug 13 03:07:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D1CD9A01DD; Thu, 13 Aug 2015 03:07:48 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7DE9E160A; Thu, 13 Aug 2015 03:07:48 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D37m9n085365; Thu, 13 Aug 2015 03:07:48 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D37mT8085363; Thu, 13 Aug 2015 03:07:48 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201508130307.t7D37mT8085363@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Thu, 13 Aug 2015 03:07:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394050 - head/dns/dnsdist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 03:07:48 -0000 Author: vanilla Date: Thu Aug 13 03:07:47 2015 New Revision: 394050 URL: https://svnweb.freebsd.org/changeset/ports/394050 Log: Upgrade to 0.0.210g4f0fae7 PR: 202279 Submitted by: maintainer Modified: head/dns/dnsdist/Makefile head/dns/dnsdist/distinfo Modified: head/dns/dnsdist/Makefile ============================================================================== --- head/dns/dnsdist/Makefile Thu Aug 13 02:07:33 2015 (r394049) +++ head/dns/dnsdist/Makefile Thu Aug 13 03:07:47 2015 (r394050) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dnsdist -DISTVERSION= 0.0.209g4fd8aed +DISTVERSION= 0.0.210g4f0fae7 CATEGORIES= dns net MASTER_SITES= http://builder.powerdns.com/files/dnsdist/dist/ @@ -20,7 +20,7 @@ CXXFLAGS+= -D_GLIBCXX_USE_C99 LDFLAGS+= -L${LOCALBASE}/lib -latomic GNU_CONFIGURE= yes USE_GCC= 4.8+ -USES= bison cpe gmake libtool lua:52 pkgconfig readline tar:bz2 +USES= bison cpe gmake libtool lua:52 pkgconfig readline tar:bz2 INSTALL_TARGET= install-strip PLIST_FILES= bin/dnsdist \ Modified: head/dns/dnsdist/distinfo ============================================================================== --- head/dns/dnsdist/distinfo Thu Aug 13 02:07:33 2015 (r394049) +++ head/dns/dnsdist/distinfo Thu Aug 13 03:07:47 2015 (r394050) @@ -1,2 +1,2 @@ -SHA256 (dnsdist-0.0.209g4fd8aed.tar.bz2) = e317da546f3f4a7faf1604fb426a817473b23b573c9e92af0b2d663fb8771481 -SIZE (dnsdist-0.0.209g4fd8aed.tar.bz2) = 539607 +SHA256 (dnsdist-0.0.210g4f0fae7.tar.bz2) = e5ddd3f878f2c6396682ebe0d18500d48d09d46fe343c9d6d2d5246d8283be05 +SIZE (dnsdist-0.0.210g4f0fae7.tar.bz2) = 539692 From owner-svn-ports-all@freebsd.org Thu Aug 13 03:10:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6E639A02FB; Thu, 13 Aug 2015 03:10:07 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id BB2BD18C4; Thu, 13 Aug 2015 03:10:07 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id BA07E1A05; Thu, 13 Aug 2015 03:10:07 +0000 (UTC) Date: Thu, 13 Aug 2015 03:10:07 +0000 From: Alexey Dokuchaev To: Diane Bruce Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r394035 - in head/comms: . kvasd kvasd/files Message-ID: <20150813031007.GA4877@FreeBSD.org> References: <201508122010.t7CKABr0010820@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201508122010.t7CKABr0010820@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 03:10:07 -0000 On Wed, Aug 12, 2015 at 08:10:11PM +0000, Diane Bruce wrote: > New Revision: 394035 > URL: https://svnweb.freebsd.org/changeset/ports/394035 > > Log: > kvasd is a binary Linux common driver program used by wsjt and wsjtx > > Added: > head/comms/kvasd/ For Linux binaries, it's common to prepend `linux-' to the port name and directory. Not that it tells users about its nature and consistent with other linux-packages, it can save you the trouble of renaming things if author ever decides (or would be convinced) to open source their software. ./danfe From owner-svn-ports-all@freebsd.org Thu Aug 13 06:05:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8058D9A037B; Thu, 13 Aug 2015 06:05:23 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 711E87AF; Thu, 13 Aug 2015 06:05:23 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D65NcA058320; Thu, 13 Aug 2015 06:05:23 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D65N3D058318; Thu, 13 Aug 2015 06:05:23 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201508130605.t7D65N3D058318@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 13 Aug 2015 06:05:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394051 - branches/2015Q3/www/rt40 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 06:05:23 -0000 Author: matthew Date: Thu Aug 13 06:05:22 2015 New Revision: 394051 URL: https://svnweb.freebsd.org/changeset/ports/394051 Log: MFH: r394042 Security update to 4.0.24 http://blog.bestpractical.com/2015/08/security-vulnerabilities-in-rt.html Security: 83b38a2c-413e-11e5-bfcf-6805ca0b3d42 Approved by: ports-secteam (delphij) Modified: branches/2015Q3/www/rt40/Makefile branches/2015Q3/www/rt40/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/rt40/Makefile ============================================================================== --- branches/2015Q3/www/rt40/Makefile Thu Aug 13 03:07:47 2015 (r394050) +++ branches/2015Q3/www/rt40/Makefile Thu Aug 13 06:05:22 2015 (r394051) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rt -PORTVERSION= 4.0.23 +PORTVERSION= 4.0.24 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 40 Modified: branches/2015Q3/www/rt40/distinfo ============================================================================== --- branches/2015Q3/www/rt40/distinfo Thu Aug 13 03:07:47 2015 (r394050) +++ branches/2015Q3/www/rt40/distinfo Thu Aug 13 06:05:22 2015 (r394051) @@ -1,2 +1,2 @@ -SHA256 (rt-4.0.23.tar.gz) = 39e1d161a183d3d97188c87493465331d59332ff878fa328c7642bc4f75df9c9 -SIZE (rt-4.0.23.tar.gz) = 6939622 +SHA256 (rt-4.0.24.tar.gz) = 5940ac6c49341cc45de91705025ebec9a764b519415cc133375c6b0d91b84967 +SIZE (rt-4.0.24.tar.gz) = 6841891 From owner-svn-ports-all@freebsd.org Thu Aug 13 06:06:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 485A79A03B2; Thu, 13 Aug 2015 06:06:57 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 392628B8; Thu, 13 Aug 2015 06:06:57 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D66vaM058545; Thu, 13 Aug 2015 06:06:57 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D66uV2058543; Thu, 13 Aug 2015 06:06:56 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201508130606.t7D66uV2058543@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Thu, 13 Aug 2015 06:06:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394052 - branches/2015Q3/www/rt42 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 06:06:57 -0000 Author: matthew Date: Thu Aug 13 06:06:56 2015 New Revision: 394052 URL: https://svnweb.freebsd.org/changeset/ports/394052 Log: MFH: r394043 Security update to 4.2.12 Security: 83b38a2c-413e-11e5-bfcf-6805ca0b3d42 Approved by: ports-secteam (delphij) Modified: branches/2015Q3/www/rt42/Makefile branches/2015Q3/www/rt42/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/rt42/Makefile ============================================================================== --- branches/2015Q3/www/rt42/Makefile Thu Aug 13 06:05:22 2015 (r394051) +++ branches/2015Q3/www/rt42/Makefile Thu Aug 13 06:06:56 2015 (r394052) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rt -DISTVERSION= 4.2.11 +DISTVERSION= 4.2.12 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 42 Modified: branches/2015Q3/www/rt42/distinfo ============================================================================== --- branches/2015Q3/www/rt42/distinfo Thu Aug 13 06:05:22 2015 (r394051) +++ branches/2015Q3/www/rt42/distinfo Thu Aug 13 06:06:56 2015 (r394052) @@ -1,2 +1,2 @@ -SHA256 (rt-4.2.11.tar.gz) = dc07f32dd04a50bd9d0ff86a1f9fe3cd1a128f01cbbd018e5fa23a41ddfb87e6 -SIZE (rt-4.2.11.tar.gz) = 7537515 +SHA256 (rt-4.2.12.tar.gz) = e21220c609706dc9977a13309d78a4d9171455ae823cf549311342cedd837264 +SIZE (rt-4.2.12.tar.gz) = 7537620 From owner-svn-ports-all@freebsd.org Thu Aug 13 06:33:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A51E9A09E6; Thu, 13 Aug 2015 06:33:32 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 025F93B3; Thu, 13 Aug 2015 06:33:32 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D6XVl8070729; Thu, 13 Aug 2015 06:33:31 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D6XUNh070720; Thu, 13 Aug 2015 06:33:30 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201508130633.t7D6XUNh070720@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Thu, 13 Aug 2015 06:33:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394053 - in head/sysutils/synergy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 06:33:32 -0000 Author: kevlo Date: Thu Aug 13 06:33:29 2015 New Revision: 394053 URL: https://svnweb.freebsd.org/changeset/ports/394053 Log: Update to 1.7.4 Added: head/sysutils/synergy/files/patch-src_test_CMakeLists.txt (contents, props changed) Modified: head/sysutils/synergy/Makefile head/sysutils/synergy/distinfo head/sysutils/synergy/files/patch-CMakeLists.txt head/sysutils/synergy/files/patch-src_CMakeLists.txt head/sysutils/synergy/files/patch-src_lib_arch_CMakeLists.txt Modified: head/sysutils/synergy/Makefile ============================================================================== --- head/sysutils/synergy/Makefile Thu Aug 13 06:06:56 2015 (r394052) +++ head/sysutils/synergy/Makefile Thu Aug 13 06:33:29 2015 (r394053) @@ -1,14 +1,14 @@ # $FreeBSD$ PORTNAME= synergy -PORTVERSION= 1.7.3 +PORTVERSION= 1.7.4 CATEGORIES= sysutils MAINTAINER= kevlo@FreeBSD.org COMMENT= Mouse and keyboard sharing utility LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake cpe CPE_VENDOR= synergy-foss @@ -31,12 +31,6 @@ PORTEXAMPLES= synergy.conf.example syner OPTIONS_DEFINE= EXAMPLES -post-extract: - cp ${WRKSRC}/LICENSE ${WRKSRC}/COPYING - ${MKDIR} -p ${WRKSRC}/ext/gmock-1.6.0 ${WRKSRC}/ext/gtest-1.6.0 - (cd ${WRKSRC}/ext/gmock-1.6.0 && ${TAR} xfz ../gmock-1.6.0.zip) - (cd ${WRKSRC}/ext/gtest-1.6.0 && ${TAR} xfz ../gtest-1.6.0.zip) - do-install: .for f in synergyc synergyd synergys ${INSTALL_PROGRAM} ${WRKSRC}/bin/${f} ${STAGEDIR}${PREFIX}/bin Modified: head/sysutils/synergy/distinfo ============================================================================== --- head/sysutils/synergy/distinfo Thu Aug 13 06:06:56 2015 (r394052) +++ head/sysutils/synergy/distinfo Thu Aug 13 06:33:29 2015 (r394053) @@ -1,2 +1,2 @@ -SHA256 (synergy-synergy-v1.7.3-stable_GH0.tar.gz) = a4effc3ddb0ef6de95f83fa62b5290e2909f8b76729b1bde89c5061e5d381e25 -SIZE (synergy-synergy-v1.7.3-stable_GH0.tar.gz) = 13661943 +SHA256 (synergy-synergy-v1.7.4-stable_GH0.tar.gz) = 215dc3918b9f3ddfb57cc963f8df6751e5e834fd90c0a8b2767091589b012bdf +SIZE (synergy-synergy-v1.7.4-stable_GH0.tar.gz) = 13665193 Modified: head/sysutils/synergy/files/patch-CMakeLists.txt ============================================================================== --- head/sysutils/synergy/files/patch-CMakeLists.txt Thu Aug 13 06:06:56 2015 (r394052) +++ head/sysutils/synergy/files/patch-CMakeLists.txt Thu Aug 13 06:33:29 2015 (r394053) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2015-05-26 15:56:21 UTC -+++ CMakeLists.txt -@@ -74,10 +74,6 @@ endif() +--- CMakeLists.txt.orig 2015-05-26 23:56:21.000000000 +0800 ++++ CMakeLists.txt 2015-08-03 14:02:26.524577000 +0800 +@@ -74,10 +74,6 @@ # Depending on the platform, pass in the required defines. if (UNIX) Modified: head/sysutils/synergy/files/patch-src_CMakeLists.txt ============================================================================== --- head/sysutils/synergy/files/patch-src_CMakeLists.txt Thu Aug 13 06:06:56 2015 (r394052) +++ head/sysutils/synergy/files/patch-src_CMakeLists.txt Thu Aug 13 06:33:29 2015 (r394053) @@ -1,11 +1,10 @@ ---- src/CMakeLists.txt.orig 2015-05-26 15:56:21 UTC -+++ src/CMakeLists.txt -@@ -18,6 +18,7 @@ add_subdirectory(lib) +--- src/CMakeLists.txt.orig 2015-08-13 10:21:27.325279000 +0800 ++++ src/CMakeLists.txt 2015-08-13 10:21:43.969252000 +0800 +@@ -17,7 +17,3 @@ + add_subdirectory(lib) add_subdirectory(cmd) add_subdirectory(micro) - +- -if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "IRIX") -+if (NOT ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD" -+ AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "IRIX") - add_subdirectory(test) - endif() +- add_subdirectory(test) +-endif() Modified: head/sysutils/synergy/files/patch-src_lib_arch_CMakeLists.txt ============================================================================== --- head/sysutils/synergy/files/patch-src_lib_arch_CMakeLists.txt Thu Aug 13 06:06:56 2015 (r394052) +++ head/sysutils/synergy/files/patch-src_lib_arch_CMakeLists.txt Thu Aug 13 06:33:29 2015 (r394053) @@ -1,10 +1,9 @@ ---- src/lib/arch/CMakeLists.txt.orig 2015-05-26 15:56:21 UTC -+++ src/lib/arch/CMakeLists.txt -@@ -49,6 +49,6 @@ endif() - +--- src/lib/arch/CMakeLists.txt.orig 2015-08-03 10:52:29.431081000 +0800 ++++ src/lib/arch/CMakeLists.txt 2015-08-03 10:52:45.330309000 +0800 +@@ -50,5 +50,5 @@ add_library(arch STATIC ${sources}) --if (UNIX) -+if (UNIX AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") - target_link_libraries(arch dl ${libs}) + if (UNIX) +- target_link_libraries(arch dl ${libs}) ++ target_link_libraries(arch ${libs}) endif() Added: head/sysutils/synergy/files/patch-src_test_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/synergy/files/patch-src_test_CMakeLists.txt Thu Aug 13 06:33:29 2015 (r394053) @@ -0,0 +1,36 @@ +--- src/test/CMakeLists.txt.orig 2015-05-26 23:56:21.000000000 +0800 ++++ src/test/CMakeLists.txt 2015-08-03 10:48:57.642889000 +0800 +@@ -1,33 +0,0 @@ +-# synergy -- mouse and keyboard sharing utility +-# Copyright (C) 2012 Synergy Si Ltd. +-# Copyright (C) 2011 Nick Bolton +-# +-# This package is free software; you can redistribute it and/or +-# modify it under the terms of the GNU General Public License +-# found in the file LICENSE that should have accompanied this file. +-# +-# This package is distributed in the hope that it will be useful, +-# but WITHOUT ANY WARRANTY; without even the implied warranty of +-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-# GNU General Public License for more details. +-# +-# You should have received a copy of the GNU General Public License +-# along with this program. If not, see . +- +-include_directories( +- ../../ext/gtest-1.6.0 +- ../../ext/gtest-1.6.0/include +- ../../ext/gmock-1.6.0 +- ../../ext/gmock-1.6.0/include) +- +-add_library(gtest STATIC ../../ext/gtest-1.6.0/src/gtest-all.cc) +-add_library(gmock STATIC ../../ext/gmock-1.6.0/src/gmock-all.cc) +- +-if (UNIX) +- # ignore warnings in gtest and gmock +- set_target_properties(gtest PROPERTIES COMPILE_FLAGS "-w") +- set_target_properties(gmock PROPERTIES COMPILE_FLAGS "-w") +-endif() +- +-add_subdirectory(integtests) +-add_subdirectory(unittests) From owner-svn-ports-all@freebsd.org Thu Aug 13 07:03:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABF2C99F1E6; Thu, 13 Aug 2015 07:03:08 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C6BA6A4; Thu, 13 Aug 2015 07:03:08 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D738RO083294; Thu, 13 Aug 2015 07:03:08 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D73898083293; Thu, 13 Aug 2015 07:03:08 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201508130703.t7D73898083293@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 13 Aug 2015 07:03:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394054 - head/textproc/p5-Perl-Lint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 07:03:08 -0000 Author: wen Date: Thu Aug 13 07:03:07 2015 New Revision: 394054 URL: https://svnweb.freebsd.org/changeset/ports/394054 Log: - Set p5-Module-Pluggable as RUN_DEPENDS instead of TEST_DEPENDS PR: 201534 Submitted by: cgull+l-freebsd-bugzilla@glup.org Modified: head/textproc/p5-Perl-Lint/Makefile Modified: head/textproc/p5-Perl-Lint/Makefile ============================================================================== --- head/textproc/p5-Perl-Lint/Makefile Thu Aug 13 06:33:29 2015 (r394053) +++ head/textproc/p5-Perl-Lint/Makefile Thu Aug 13 07:03:07 2015 (r394054) @@ -3,6 +3,7 @@ PORTNAME= Perl-Lint PORTVERSION= 0.23 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MOZNION @@ -33,7 +34,8 @@ USE_PERL5= modbuildtiny .include .if ${PERL_LEVEL} >= 502000 -TEST_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable +BUILD_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable +RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable .endif .include From owner-svn-ports-all@freebsd.org Thu Aug 13 08:50:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7E3A9B7D07; Thu, 13 Aug 2015 08:50:12 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D83749FB; Thu, 13 Aug 2015 08:50:12 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D8oC2F024399; Thu, 13 Aug 2015 08:50:12 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D8oCLP024397; Thu, 13 Aug 2015 08:50:12 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508130850.t7D8oCLP024397@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 13 Aug 2015 08:50:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394055 - head/misc/iso-codes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 08:50:13 -0000 Author: kwm Date: Thu Aug 13 08:50:11 2015 New Revision: 394055 URL: https://svnweb.freebsd.org/changeset/ports/394055 Log: Update iso-codes to 3.60. Modified: head/misc/iso-codes/Makefile head/misc/iso-codes/distinfo Modified: head/misc/iso-codes/Makefile ============================================================================== --- head/misc/iso-codes/Makefile Thu Aug 13 07:03:07 2015 (r394054) +++ head/misc/iso-codes/Makefile Thu Aug 13 08:50:11 2015 (r394055) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= iso-codes -PORTVERSION= 3.59 +PORTVERSION= 3.60 CATEGORIES= misc MASTER_SITES= http://pkg-isocodes.alioth.debian.org/downloads/ Modified: head/misc/iso-codes/distinfo ============================================================================== --- head/misc/iso-codes/distinfo Thu Aug 13 07:03:07 2015 (r394054) +++ head/misc/iso-codes/distinfo Thu Aug 13 08:50:11 2015 (r394055) @@ -1,2 +1,2 @@ -SHA256 (iso-codes-3.59.tar.xz) = 63d5ef035a96223f1fc8f36b711082f806e1666852dfc4149eeca8fd435d76ed -SIZE (iso-codes-3.59.tar.xz) = 3771916 +SHA256 (iso-codes-3.60.tar.xz) = 231b6da93a0649905c048fb210b4b4567a09bd2458910426a6a37f05358a2da9 +SIZE (iso-codes-3.60.tar.xz) = 3770612 From owner-svn-ports-all@freebsd.org Thu Aug 13 08:57:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A58159B7ECB; Thu, 13 Aug 2015 08:57:11 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C217D34; Thu, 13 Aug 2015 08:57:11 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7D8vBZr028418; Thu, 13 Aug 2015 08:57:11 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7D8vAwR028415; Thu, 13 Aug 2015 08:57:10 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508130857.t7D8vAwR028415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 13 Aug 2015 08:57:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394056 - in head/print/harfbuzz: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 08:57:11 -0000 Author: kwm Date: Thu Aug 13 08:57:10 2015 New Revision: 394056 URL: https://svnweb.freebsd.org/changeset/ports/394056 Log: Update harfbuzz to 1.0.1. [1] Fix build on mips. [2] PR: 202176 [1], 201681 [2] Submitted by: olivierd@ [1], Carlos J Puga Medina [2] Added: head/print/harfbuzz/files/patch-src_hb-atomic-private.hh (contents, props changed) Modified: head/print/harfbuzz/Makefile head/print/harfbuzz/distinfo Modified: head/print/harfbuzz/Makefile ============================================================================== --- head/print/harfbuzz/Makefile Thu Aug 13 08:50:11 2015 (r394055) +++ head/print/harfbuzz/Makefile Thu Aug 13 08:57:10 2015 (r394056) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 0.9.41 +PORTVERSION= 1.0.1 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -20,7 +20,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-graphite2 INSTALL_TARGET= install-strip -PLIST_SUB+= LIBVER=0.941.0 +PLIST_SUB+= LIBVER=0.10000.1 .include Modified: head/print/harfbuzz/distinfo ============================================================================== --- head/print/harfbuzz/distinfo Thu Aug 13 08:50:11 2015 (r394055) +++ head/print/harfbuzz/distinfo Thu Aug 13 08:57:10 2015 (r394056) @@ -1,2 +1,2 @@ -SHA256 (harfbuzz-0.9.41.tar.bz2) = d81aa53d0c02b437beeaac159d7fc16394d676bbce0860fb6f6a10b587dc057c -SIZE (harfbuzz-0.9.41.tar.bz2) = 1188176 +SHA256 (harfbuzz-1.0.1.tar.bz2) = 32a1a7ad584a2f2cfba5c1d234d046c0521e86e7a21d403e15e89aa509ef0ea8 +SIZE (harfbuzz-1.0.1.tar.bz2) = 1211877 Added: head/print/harfbuzz/files/patch-src_hb-atomic-private.hh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/harfbuzz/files/patch-src_hb-atomic-private.hh Thu Aug 13 08:57:10 2015 (r394056) @@ -0,0 +1,16 @@ +--- src/hb-atomic-private.hh.orig 2015-04-10 02:16:57 UTC ++++ src/hb-atomic-private.hh +@@ -103,8 +103,12 @@ typedef int hb_atomic_int_impl_t; + #define hb_atomic_int_impl_add(AI, V) __sync_fetch_and_add (&(AI), (V)) + + #define hb_atomic_ptr_impl_get(P) (void *) (__sync_synchronize (), *(P)) ++#if defined(__FreeBSD__) && defined(__mips__) ++#include ++#define hb_atomic_ptr_impl_cmpexch(P,O,N) atomic_cmpset_rel_32 ((uint32_t *)(P), (uint32_t)(O), (uint32_t)(N)) ++#else + #define hb_atomic_ptr_impl_cmpexch(P,O,N) __sync_bool_compare_and_swap ((P), (O), (N)) +- ++#endif + + #elif !defined(HB_NO_MT) && defined(HAVE_SOLARIS_ATOMIC_OPS) + From owner-svn-ports-all@freebsd.org Thu Aug 13 10:35:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEDB19B7AA8; Thu, 13 Aug 2015 10:35:20 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from vps.amdmi3.ru (vps.amdmi3.ru [109.234.38.216]) by mx1.freebsd.org (Postfix) with ESMTP id 95FE73E2; Thu, 13 Aug 2015 10:35:20 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id B1506B05F9; Thu, 13 Aug 2015 13:35:12 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id BEE9C3A2; Thu, 13 Aug 2015 13:32:43 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 91273B9E88; Thu, 13 Aug 2015 13:31:28 +0300 (MSK) Date: Thu, 13 Aug 2015 13:31:28 +0300 From: Dmitry Marakasov To: Kurt Jaeger , cpm@fbsd.es Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393421 - in head/deskutils: . ladon Message-ID: <20150813103128.GG42382@hades.panopticon> References: <201508020845.t728jtxv031369@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201508020845.t728jtxv031369@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 10:35:20 -0000 * Kurt Jaeger (pi@FreeBSD.org) wrote: > Author: pi > Date: Sun Aug 2 08:45:55 2015 > New Revision: 393421 > URL: https://svnweb.freebsd.org/changeset/ports/393421 > > Log: > New port: deskutils/ladon > > Process many files in parallel. It is meant for people comfortable > with using a terminal but strives to be as easy to use as humanly > possible. > > Ladon is named after the multiheaded serpent dragon from Greek mythology, > slain by Heracles and thrust into the sky as the constellation Draco. His > many heads allow you to efficiently work on many files at once. > > WWW: https://github.com/danielgtaylor/ladon > > PR: 201906 > Submitted by: Carlos Jacobo Puga Medina This does not build: http://beefy6.nyi.freebsd.org/data/101amd64-default/394047/logs/ladon-1.0.6.log Why was this not tested? -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://amdmi3.ru From owner-svn-ports-all@freebsd.org Thu Aug 13 11:02:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E40669B7FC7; Thu, 13 Aug 2015 11:02:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B160FE7; Thu, 13 Aug 2015 11:02:50 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DB2oNR080844; Thu, 13 Aug 2015 11:02:50 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DB2oDu080842; Thu, 13 Aug 2015 11:02:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131102.t7DB2oDu080842@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 11:02:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394057 - head/sysutils/py-ranger X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 11:02:51 -0000 Author: amdmi3 Date: Thu Aug 13 11:02:49 2015 New Revision: 394057 URL: https://svnweb.freebsd.org/changeset/ports/394057 Log: - Update to 1.7.1 - Switch to autoplist - Add NO_ARCH, LICENSE and fix shebangs PR: 201034 Submitted by: linpct@gmail.com (maintainer) Deleted: head/sysutils/py-ranger/pkg-plist Modified: head/sysutils/py-ranger/Makefile head/sysutils/py-ranger/distinfo Modified: head/sysutils/py-ranger/Makefile ============================================================================== --- head/sysutils/py-ranger/Makefile Thu Aug 13 08:57:10 2015 (r394056) +++ head/sysutils/py-ranger/Makefile Thu Aug 13 11:02:49 2015 (r394057) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ranger -PORTVERSION= 1.6.1 -PORTREVISION= 2 +PORTVERSION= 1.7.1 CATEGORIES= sysutils python MASTER_SITES= http://ranger.nongnu.org/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,8 +10,13 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= linpct@gmail.com COMMENT= Ranger is a file manager with VI key bindings -USES= python -USE_PYTHON= distutils +LICENSE= GPLv3 + +USES= python shebangfix +SHEBANG_FILES= doc/tools/convert_papermode_to_metadata.py +python_OLD_CMD= /bin/python +USE_PYTHON= autoplist distutils +NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e 's|setuptools|distutils.core|; s|share/man/man|man/man|;s|share/doc|doc|' ${WRKSRC}/${PYSETUP} Modified: head/sysutils/py-ranger/distinfo ============================================================================== --- head/sysutils/py-ranger/distinfo Thu Aug 13 08:57:10 2015 (r394056) +++ head/sysutils/py-ranger/distinfo Thu Aug 13 11:02:49 2015 (r394057) @@ -1,2 +1,2 @@ -SHA256 (ranger-1.6.1.tar.gz) = ccb230a5d2d71ca11612b5af1ca515f9d490b51b1546678828e306252677db5e -SIZE (ranger-1.6.1.tar.gz) = 168967 +SHA256 (ranger-1.7.1.tar.gz) = f8b06135165142508ae7ec22ab2c95f6e51b4018c645d11226086d4c45b7df86 +SIZE (ranger-1.7.1.tar.gz) = 266089 From owner-svn-ports-all@freebsd.org Thu Aug 13 11:09:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE7509B8136; Thu, 13 Aug 2015 11:09:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF44732C; Thu, 13 Aug 2015 11:09:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DB9XR6081195; Thu, 13 Aug 2015 11:09:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DB9XNh081194; Thu, 13 Aug 2015 11:09:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131109.t7DB9XNh081194@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 11:09:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394058 - head/x11-toolkits/fpc-gtk2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 11:09:34 -0000 Author: amdmi3 Date: Thu Aug 13 11:09:33 2015 New Revision: 394058 URL: https://svnweb.freebsd.org/changeset/ports/394058 Log: - Fix build by adding missing dependency Approved by: portmgr blanket Modified: head/x11-toolkits/fpc-gtk2/Makefile Modified: head/x11-toolkits/fpc-gtk2/Makefile ============================================================================== --- head/x11-toolkits/fpc-gtk2/Makefile Thu Aug 13 11:02:49 2015 (r394057) +++ head/x11-toolkits/fpc-gtk2/Makefile Thu Aug 13 11:09:33 2015 (r394058) @@ -8,7 +8,7 @@ PKGNAMESUFFIX= -gtk2 MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal interface to the GTK2 libraries -USE_FPC= cairo x11 +USE_FPC= cairo x11 fcl-image MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Thu Aug 13 11:11:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F04619B8235; Thu, 13 Aug 2015 11:11:09 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from fc.opsec.eu (fc.opsec.eu [IPv6:2001:14f8:200:4::4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EBB8818; Thu, 13 Aug 2015 11:11:09 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from pi by fc.opsec.eu with local (Exim 4.86 (FreeBSD)) (envelope-from ) id 1ZPqPP-000OVF-Qf; Thu, 13 Aug 2015 13:10:55 +0200 Date: Thu, 13 Aug 2015 13:10:55 +0200 From: Kurt Jaeger To: Dmitry Marakasov Cc: Kurt Jaeger , cpm@fbsd.es, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393421 - in head/deskutils: . ladon Message-ID: <20150813111055.GY80162@fc.opsec.eu> References: <201508020845.t728jtxv031369@repo.freebsd.org> <20150813103128.GG42382@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150813103128.GG42382@hades.panopticon> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 11:11:10 -0000 Hi! > * Kurt Jaeger (pi@FreeBSD.org) wrote: [...] > > New port: deskutils/ladon [...] > This does not build: > > http://beefy6.nyi.freebsd.org/data/101amd64-default/394047/logs/ladon-1.0.6.log > > Why was this not tested? It was build-tested, both in poudriere and outside, but the submitter mentioned in PR201906 that it does not build in poudriere due to a bug described in PR178881. I test-built in poudriere and could reproduce the build problem, but it builds on the plattforms I tested it on. So I committed the port. -- pi@FreeBSD.org +49 171 3101372 5 years to go ! From owner-svn-ports-all@freebsd.org Thu Aug 13 11:14:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 72DBF9B8272; Thu, 13 Aug 2015 11:14:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6388D9B8; Thu, 13 Aug 2015 11:14:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DBEd0M085098; Thu, 13 Aug 2015 11:14:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DBEdQQ085097; Thu, 13 Aug 2015 11:14:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131114.t7DBEdQQ085097@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 11:14:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394059 - head/devel/fpc-fcl-web X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 11:14:39 -0000 Author: amdmi3 Date: Thu Aug 13 11:14:38 2015 New Revision: 394059 URL: https://svnweb.freebsd.org/changeset/ports/394059 Log: - Fix build by adding missing dependency Approved by: portmgr blanket Modified: head/devel/fpc-fcl-web/Makefile Modified: head/devel/fpc-fcl-web/Makefile ============================================================================== --- head/devel/fpc-fcl-web/Makefile Thu Aug 13 11:09:33 2015 (r394058) +++ head/devel/fpc-fcl-web/Makefile Thu Aug 13 11:14:38 2015 (r394059) @@ -10,7 +10,7 @@ COMMENT= Free Pascal Component Library USE_FPC= fastcgi fcl-async fcl-base fcl-db fcl-json fcl-net fcl-process \ fcl-xml hash httpd22 httpd24 ibase mysql odbc oracle paszlib postgres \ - pthreads sqlite + pthreads sqlite fpmkunit MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Thu Aug 13 11:29:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9DC6C9B84F9; Thu, 13 Aug 2015 11:29:49 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from vps.amdmi3.ru (vps.amdmi3.ru [109.234.38.216]) by mx1.freebsd.org (Postfix) with ESMTP id 67041EE6; Thu, 13 Aug 2015 11:29:48 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id EE3B8B05F9; Thu, 13 Aug 2015 14:29:46 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 07EDB3EC; Thu, 13 Aug 2015 14:27:18 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id E1AFA1EAB0; Thu, 13 Aug 2015 14:26:02 +0300 (MSK) Date: Thu, 13 Aug 2015 14:26:02 +0300 From: Dmitry Marakasov To: Kurt Jaeger Cc: cpm@fbsd.es, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393421 - in head/deskutils: . ladon Message-ID: <20150813112602.GI42382@hades.panopticon> References: <201508020845.t728jtxv031369@repo.freebsd.org> <20150813103128.GG42382@hades.panopticon> <20150813111055.GY80162@fc.opsec.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20150813111055.GY80162@fc.opsec.eu> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 11:29:49 -0000 * Kurt Jaeger (pi@FreeBSD.org) wrote: > > * Kurt Jaeger (pi@FreeBSD.org) wrote: > [...] > > > New port: deskutils/ladon > [...] > > This does not build: > > > > http://beefy6.nyi.freebsd.org/data/101amd64-default/394047/logs/ladon-1.0.6.log > > > > Why was this not tested? > > It was build-tested, both in poudriere and outside, but the submitter > mentioned in PR201906 that it does not build in poudriere due to a > bug described in PR178881. > > I test-built in poudriere and could reproduce the build problem, > but it builds on the plattforms I tested it on. So I committed > the port. It currently doesn't build in poudriere with the same error as on cluster. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://amdmi3.ru From owner-svn-ports-all@freebsd.org Thu Aug 13 11:38:47 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C9EF9B86D6; Thu, 13 Aug 2015 11:38:47 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from fc.opsec.eu (fc.opsec.eu [IPv6:2001:14f8:200:4::4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9732A650; Thu, 13 Aug 2015 11:38:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from pi by fc.opsec.eu with local (Exim 4.86 (FreeBSD)) (envelope-from ) id 1ZPqqD-00059W-7T; Thu, 13 Aug 2015 13:38:37 +0200 Date: Thu, 13 Aug 2015 13:38:37 +0200 From: Kurt Jaeger To: Dmitry Marakasov Cc: Kurt Jaeger , cpm@fbsd.es, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393421 - in head/deskutils: . ladon Message-ID: <20150813113837.GZ80162@fc.opsec.eu> References: <201508020845.t728jtxv031369@repo.freebsd.org> <20150813103128.GG42382@hades.panopticon> <20150813111055.GY80162@fc.opsec.eu> <20150813112602.GI42382@hades.panopticon> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150813112602.GI42382@hades.panopticon> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 11:38:47 -0000 Hi! > It currently doesn't build in poudriere with the same error as on > cluster. I'll ask Carlos to find a way to build it without triggering the problem, maybe he finds a solution. -- pi@FreeBSD.org +49 171 3101372 5 years to go ! From owner-svn-ports-all@freebsd.org Thu Aug 13 11:48:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BB739B8838; Thu, 13 Aug 2015 11:48:13 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from vps.amdmi3.ru (vps.amdmi3.ru [109.234.38.216]) by mx1.freebsd.org (Postfix) with ESMTP id C8989A21; Thu, 13 Aug 2015 11:48:12 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from hive.panopticon (unknown [78.153.152.119]) by vps.amdmi3.ru (Postfix) with ESMTPS id 91613B059C; Thu, 13 Aug 2015 14:48:10 +0300 (MSK) Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 8E8FB436; Thu, 13 Aug 2015 14:45:41 +0300 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 5DADA2BEDC; Thu, 13 Aug 2015 14:44:25 +0300 (MSK) Date: Thu, 13 Aug 2015 14:44:25 +0300 From: Dmitry Marakasov To: Kurt Jaeger Cc: cpm@fbsd.es, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393421 - in head/deskutils: . ladon Message-ID: <20150813114425.GJ42382@hades.panopticon> References: <201508020845.t728jtxv031369@repo.freebsd.org> <20150813103128.GG42382@hades.panopticon> <20150813111055.GY80162@fc.opsec.eu> <20150813112602.GI42382@hades.panopticon> <20150813113837.GZ80162@fc.opsec.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20150813113837.GZ80162@fc.opsec.eu> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 11:48:13 -0000 * Kurt Jaeger (pi@FreeBSD.org) wrote: > > It currently doesn't build in poudriere with the same error as on > > cluster. > > I'll ask Carlos to find a way to build it without triggering > the problem, maybe he finds a solution. Thank you! -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://amdmi3.ru From owner-svn-ports-all@freebsd.org Thu Aug 13 13:18:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67D9E9A0DC4; Thu, 13 Aug 2015 13:18:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 58757924; Thu, 13 Aug 2015 13:18:28 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DDISTD033877; Thu, 13 Aug 2015 13:18:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DDISqW033876; Thu, 13 Aug 2015 13:18:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131318.t7DDISqW033876@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 13:18:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394060 - head/security/razorback-yaraNugget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 13:18:28 -0000 Author: amdmi3 Date: Thu Aug 13 13:18:27 2015 New Revision: 394060 URL: https://svnweb.freebsd.org/changeset/ports/394060 Log: - Switch to USES=autoreconf Modified: head/security/razorback-yaraNugget/Makefile Modified: head/security/razorback-yaraNugget/Makefile ============================================================================== --- head/security/razorback-yaraNugget/Makefile Thu Aug 13 11:14:38 2015 (r394059) +++ head/security/razorback-yaraNugget/Makefile Thu Aug 13 13:18:27 2015 (r394060) @@ -23,8 +23,7 @@ RUN_DEPENDS= razorback-masterNugget>=0.5 RB_LIBDIR?= ${PREFIX}/lib/razorback GNU_CONFIGURE= yes -USES= libtool pkgconfig -USE_AUTOTOOLS= autoconf +USES= autoreconf libtool pkgconfig USE_LDCONFIG= ${RB_LIBDIR} OPTIONS_DEFINE= DEBUG ASSERT @@ -34,7 +33,7 @@ ASSERT_CONFIGURE_ENABLE= assert DEBUG_CONFIGURE_ENABLE= debug post-patch: - @${REINPLACE_CMD} '/CWARNINGS/ s|-Werror||' ${WRKSRC}/configure + @${REINPLACE_CMD} 's|-Werror||' ${WRKSRC}/libyara/configure.ac post-install: ${LN} -sf ${RB_LIBDIR}/yaraNugget.so.2 \ From owner-svn-ports-all@freebsd.org Thu Aug 13 13:32:10 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4FE39B7312; Thu, 13 Aug 2015 13:32:10 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A1D0A78D; Thu, 13 Aug 2015 13:32:10 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DDWAc3041949; Thu, 13 Aug 2015 13:32:10 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DDWArK041946; Thu, 13 Aug 2015 13:32:10 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201508131332.t7DDWArK041946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Thu, 13 Aug 2015 13:32:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394061 - head/sysutils/rubygem-smart_proxy_salt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 13:32:10 -0000 Author: mmoll Date: Thu Aug 13 13:32:09 2015 New Revision: 394061 URL: https://svnweb.freebsd.org/changeset/ports/394061 Log: sysutils/rubygem-smart_proxy_salt: update to 2.1.4 Modified: head/sysutils/rubygem-smart_proxy_salt/Makefile head/sysutils/rubygem-smart_proxy_salt/distinfo Modified: head/sysutils/rubygem-smart_proxy_salt/Makefile ============================================================================== --- head/sysutils/rubygem-smart_proxy_salt/Makefile Thu Aug 13 13:18:27 2015 (r394060) +++ head/sysutils/rubygem-smart_proxy_salt/Makefile Thu Aug 13 13:32:09 2015 (r394061) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= smart_proxy_salt -PORTVERSION= 2.1.3 +PORTVERSION= 2.1.4 CATEGORIES= sysutils ruby MASTER_SITES= RG Modified: head/sysutils/rubygem-smart_proxy_salt/distinfo ============================================================================== --- head/sysutils/rubygem-smart_proxy_salt/distinfo Thu Aug 13 13:18:27 2015 (r394060) +++ head/sysutils/rubygem-smart_proxy_salt/distinfo Thu Aug 13 13:32:09 2015 (r394061) @@ -1,2 +1,2 @@ -SHA256 (rubygem/smart_proxy_salt-2.1.3.gem) = a94a62679feeb8e32679822150acdf9963969559e336c7e33f0ae9e24d681b81 -SIZE (rubygem/smart_proxy_salt-2.1.3.gem) = 23040 +SHA256 (rubygem/smart_proxy_salt-2.1.4.gem) = 62d0ed29b557a7342d2efa84e529f480a7d8b02082ce23b716eb93e9265ac3d3 +SIZE (rubygem/smart_proxy_salt-2.1.4.gem) = 23040 From owner-svn-ports-all@freebsd.org Thu Aug 13 13:51:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F21A9B75FE; Thu, 13 Aug 2015 13:51:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 12E4C1F4; Thu, 13 Aug 2015 13:51:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DDpNpY050195; Thu, 13 Aug 2015 13:51:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DDpNDu050192; Thu, 13 Aug 2015 13:51:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131351.t7DDpNDu050192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 13:51:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394062 - head/graphics/osg-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 13:51:24 -0000 Author: amdmi3 Date: Thu Aug 13 13:51:22 2015 New Revision: 394062 URL: https://svnweb.freebsd.org/changeset/ports/394062 Log: - Update to 3.3.9 Modified: head/graphics/osg-devel/Makefile head/graphics/osg-devel/distinfo head/graphics/osg-devel/pkg-plist Modified: head/graphics/osg-devel/Makefile ============================================================================== --- head/graphics/osg-devel/Makefile Thu Aug 13 13:32:09 2015 (r394061) +++ head/graphics/osg-devel/Makefile Thu Aug 13 13:51:22 2015 (r394062) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= osg -PORTVERSION= 3.3.8 -PORTREVISION= 1 +PORTVERSION= 3.3.9 CATEGORIES= graphics MASTER_SITES= http://trac.openscenegraph.org/downloads/developer_releases/ \ http://mirror.amdmi3.ru/distfiles/ Modified: head/graphics/osg-devel/distinfo ============================================================================== --- head/graphics/osg-devel/distinfo Thu Aug 13 13:32:09 2015 (r394061) +++ head/graphics/osg-devel/distinfo Thu Aug 13 13:51:22 2015 (r394062) @@ -1,2 +1,2 @@ -SHA256 (OpenSceneGraph-3.3.8.zip) = 192b538e1693c9a6ffd0374f8ea7def425a66b0f233869c489f072f568ef10c2 -SIZE (OpenSceneGraph-3.3.8.zip) = 8330001 +SHA256 (OpenSceneGraph-3.3.9.zip) = 4e9cb3a30a9ee3ac43693f7afabb9c4a5417bd9e83d501cbb6643f75c3b7bfd3 +SIZE (OpenSceneGraph-3.3.9.zip) = 8335153 Modified: head/graphics/osg-devel/pkg-plist ============================================================================== --- head/graphics/osg-devel/pkg-plist Thu Aug 13 13:32:09 2015 (r394061) +++ head/graphics/osg-devel/pkg-plist Thu Aug 13 13:51:22 2015 (r394062) @@ -42,6 +42,7 @@ include/osg/CameraView include/osg/Capability include/osg/ClampColor include/osg/ClearNode +include/osg/ClipControl include/osg/ClipNode include/osg/ClipPlane include/osg/ClusterCullingCallback @@ -426,6 +427,7 @@ include/osgPresentation/Timeout %%QT4%%include/osgQt/QGraphicsViewAdapter %%QT4%%include/osgQt/QWebViewImage %%QT4%%include/osgQt/QWidgetImage +%%QT4%%include/osgQt/Version include/osgShadow/ConvexPolyhedron include/osgShadow/DebugShadowMap include/osgShadow/Export From owner-svn-ports-all@freebsd.org Thu Aug 13 13:53:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8BED9B7657; Thu, 13 Aug 2015 13:53:03 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 990D46C6; Thu, 13 Aug 2015 13:53:03 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DDr3nN050371; Thu, 13 Aug 2015 13:53:03 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DDr3nF050369; Thu, 13 Aug 2015 13:53:03 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201508131353.t7DDr3nF050369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Thu, 13 Aug 2015 13:53:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394063 - head/sysutils/iocage-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 13:53:03 -0000 Author: kmoore Date: Thu Aug 13 13:53:02 2015 New Revision: 394063 URL: https://svnweb.freebsd.org/changeset/ports/394063 Log: - Since upstream isn't sure what version number to assign to -devel let's just make it a timestamp. - Update to 20150811 Modified: head/sysutils/iocage-devel/Makefile head/sysutils/iocage-devel/distinfo Modified: head/sysutils/iocage-devel/Makefile ============================================================================== --- head/sysutils/iocage-devel/Makefile Thu Aug 13 13:51:22 2015 (r394062) +++ head/sysutils/iocage-devel/Makefile Thu Aug 13 13:53:02 2015 (r394063) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= iocage -PORTVERSION= 1.7.2 +PORTVERSION= 20150811 CATEGORIES= sysutils PKGNAMESUFFIX= -devel @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= iocage -GH_TAGNAME= 4dccc0 +GH_TAGNAME= 27608c .include Modified: head/sysutils/iocage-devel/distinfo ============================================================================== --- head/sysutils/iocage-devel/distinfo Thu Aug 13 13:51:22 2015 (r394062) +++ head/sysutils/iocage-devel/distinfo Thu Aug 13 13:53:02 2015 (r394063) @@ -1,2 +1,2 @@ -SHA256 (iocage-iocage-1.7.2-4dccc0_GH0.tar.gz) = e549576c6a762348547ab3c0b6ecbb54e47e43c641798ab6fcf9a161fb5e22a8 -SIZE (iocage-iocage-1.7.2-4dccc0_GH0.tar.gz) = 293924 +SHA256 (iocage-iocage-20150811-27608c_GH0.tar.gz) = 7c4a5199c56654a180135bf70209a68a971bd65fe9b3898f5cae91dcd69b02b1 +SIZE (iocage-iocage-20150811-27608c_GH0.tar.gz) = 294088 From owner-svn-ports-all@freebsd.org Thu Aug 13 14:03:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEA239B7B45 for ; Thu, 13 Aug 2015 14:03:16 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from vfemail.net (ninezero.vfemail.net [96.30.253.190]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62D27C79 for ; Thu, 13 Aug 2015 14:03:15 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: (qmail 14668 invoked by uid 89); 13 Aug 2015 14:03:03 -0000 Received: from localhost (HELO freequeue.vfemail.net) (127.0.0.1) by localhost with (DHE-RSA-AES256-SHA encrypted) SMTP; 13 Aug 2015 14:03:01 -0000 Received: (qmail 79442 invoked by uid 89); 12 Aug 2015 18:46:30 -0000 Received: by simscan 1.3.1 ppid: 79434, pid: 79438, t: 0.0043s scanners:none Received: from unknown (HELO smtp102-2.vfemail.net) (172.16.100.62) by FreeQueue with SMTP; 12 Aug 2015 18:46:30 -0000 Received: (qmail 28290 invoked by uid 89); 12 Aug 2015 18:46:30 -0000 Received: by simscan 1.4.0 ppid: 28187, pid: 28213, t: 15.8875s scanners:none Received: from unknown (HELO nil) (amJlaWNoQHZmZW1haWwubmV0@172.16.100.27) by 172.16.100.62 with ESMTPA; 12 Aug 2015 18:46:14 -0000 From: Jan Beich To: Mark Felder Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393962 - head/security/vuxml References: <201508111903.t7BJ3aD3086878@repo.freebsd.org> <1439388100.608633.354360737.36774BC8@webmail.messagingengine.com> Date: Wed, 12 Aug 2015 20:46:00 +0200 In-Reply-To: <1439388100.608633.354360737.36774BC8@webmail.messagingengine.com> (Mark Felder's message of "Wed, 12 Aug 2015 09:01:40 -0500") Message-ID: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 14:03:16 -0000 --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Mark Felder writes: > On Tue, Aug 11, 2015, at 14:03, Jan Beich wrote: >> Author: jbeich >> Date: Tue Aug 11 19:03:36 2015 >> New Revision: 393962 >> URL: https://svnweb.freebsd.org/changeset/ports/393962 >>=20 >> Log: >> Move libvpx vulnerability into its own entry [...] >> >> + >> + libvpx -- multiple buffer overflows >> + >> + >> + libvpx >> + 1.5.0 >> + >> + > > This should probably be 1.4.0 as although would be deceptive. The package is vulnerable. Whether there's a known fix is less important. Current range is just a rough guess and can be updated as the affected port is fixed. On the downside maintainers may not be aware of a vulnerability. It'd be nice if there were periodic mails about (still) vulnerable ports similar to porstscout. For one, multimedia/ffmpeg0 haven't been updated yet despite how trivial it should be -> too few users to notice? > their release process seems obvious, they could release 1.4.1 or we > could backport security fixes to 1.4.0_1 Depending on PORTREVISION in advance is unreliable as it can be bumped for an unrelated reason. Upstream doesn't have a good track record for patch releases. For one, CVE-2014-1578 was never fixed in 1.3.x and Debian still carries around the patch for it in their package. > I'll try to keep an eye on this too. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202270 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQF8BAEBCgBmBQJVy5RpXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXREQjQ0MzY3NEM3RDIzNTc4NkUxNDkyQ0VF NEM3Nzg4MzQ3OURCRERCAAoJEOTHeINHnb3blyEIAI9jeC0nQsntrcEBYxS0oOS6 LYasOpAw54M+idkfgkqFtF6YyP3Y3JfAPQux0fPpuqDAKKzU09lnPNdQV07kAh4o DzdJHeK6HB7XgKYL5lqks+UUAV/vepBwhkmnoCwFeSuAlNLC2w2KB6hp6X2A1DsU mguzvTKbOj+1CWJRbtP+4Fc5o78g0zXGY9oV4XIN0+qRGB854ZNL1k04ausspcR8 VPSV+iZ1rNG3APDf0mOosvbRBGuorPKgKOof3sLkFyU90VjcdxwXNStgNtufCVbM y3tXusM+wF185khTwJvrtp3Uy4I5NVbeDmQ2cJrd9hZR85TFDxuXJbZziUgSTyE= =sIbh -----END PGP SIGNATURE----- --=-=-=-- From owner-svn-ports-all@freebsd.org Thu Aug 13 14:12:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1307B9B7C80; Thu, 13 Aug 2015 14:12:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F246FA3; Thu, 13 Aug 2015 14:12:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DECB2M058491; Thu, 13 Aug 2015 14:12:11 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DECBEY058490; Thu, 13 Aug 2015 14:12:11 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131412.t7DECBEY058490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 14:12:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394064 - head/textproc/rubygem-diff-lcs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 14:12:12 -0000 Author: amdmi3 Date: Thu Aug 13 14:12:11 2015 New Revision: 394064 URL: https://svnweb.freebsd.org/changeset/ports/394064 Log: - Fix shebangs Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/textproc/rubygem-diff-lcs/Makefile Modified: head/textproc/rubygem-diff-lcs/Makefile ============================================================================== --- head/textproc/rubygem-diff-lcs/Makefile Thu Aug 13 13:53:02 2015 (r394063) +++ head/textproc/rubygem-diff-lcs/Makefile Thu Aug 13 14:12:11 2015 (r394064) @@ -3,6 +3,7 @@ PORTNAME= diff-lcs PORTVERSION= 1.2.5 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -14,6 +15,9 @@ LICENSE_COMB= dual NO_ARCH= yes +USES= shebangfix +ruby_OLD_CMD= ruby +SHEBANG_FILES= bin/htmldiff bin/ldiff USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Thu Aug 13 14:24:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A14019B7E28 for ; Thu, 13 Aug 2015 14:24:44 +0000 (UTC) (envelope-from feld@feld.me) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DFC57AB for ; Thu, 13 Aug 2015 14:24:44 +0000 (UTC) (envelope-from feld@feld.me) Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id 7F1A022C5A for ; Thu, 13 Aug 2015 10:24:36 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute2.internal (MEProxy); Thu, 13 Aug 2015 10:24:37 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=feld.me; h=cc :content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=lejeN0Ey+PdeaPCglgL1B9BC78o=; b=hJap88 ubK0olYbE1DMO3LyjZHjEBh0EfG4QgXH/9iq+cy3H3o41V6FXWjyB6/nKzwj6HU4 kiiNFEUVXZD3iNafTHi5FNDqdz6D7qPFQ52dETiqDBmoVXdWfj0aoFLCIxHyR2+e vPEIu/DIO4zLnUrOnMB0B5C6f0oU0TP6Qn/6Y= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=lejeN0Ey+PdeaPC glgL1B9BC78o=; b=d+0a/l5jg+se9Gs/oalCLgASToqLn+E0kr2vcyrW0XDHG4T B3TiPus2yi0btQ1l3FyQ1iTsbd4mVnPKRjlZv3+6fSp1KJTAuK3tM1IRGUhw+eI0 aJqcRRWelBmhznmDJkkdxJTKeELYcJKE5SLDN88CPor3rx0mK3UX2zBs1m/c= Received: by web3.nyi.internal (Postfix, from userid 99) id 74E85103673; Thu, 13 Aug 2015 10:24:36 -0400 (EDT) Message-Id: <1439475876.1691528.355344625.7BD76BF3@webmail.messagingengine.com> X-Sasl-Enc: fMxtenG5LdImM0RRFSSFQB70no6DK1TZiJe/gF4TcNFI 1439475876 From: Mark Felder To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-4fee8ba5 Subject: Re: svn commit: r393962 - head/security/vuxml Date: Thu, 13 Aug 2015 09:24:36 -0500 In-Reply-To: References: <201508111903.t7BJ3aD3086878@repo.freebsd.org> <1439388100.608633.354360737.36774BC8@webmail.messagingengine.com> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 14:24:44 -0000 On Wed, Aug 12, 2015, at 13:46, Jan Beich wrote: > Mark Felder writes: > > > On Tue, Aug 11, 2015, at 14:03, Jan Beich wrote: > >> Author: jbeich > >> Date: Tue Aug 11 19:03:36 2015 > >> New Revision: 393962 > >> URL: https://svnweb.freebsd.org/changeset/ports/393962 > >> > >> Log: > >> Move libvpx vulnerability into its own entry > [...] > >> > >> + > >> + libvpx -- multiple buffer overflows > >> + > >> + > >> + libvpx > >> + 1.5.0 > >> + > >> + > > > > This should probably be 1.4.0 as although > > would be deceptive. The package is vulnerable. Whether there's a > known fix is less important. Current range is just a rough guess and can > be updated as the affected port is fixed. > I don't understand how it's deceptive; it's accurate. What happens if your range was wrong and nobody remembers to fix the entry? Maintainer commits 1.4.1 to ports to fix it and now users won't be able to install the fix without ports tree/pkg screaming at them about it being a vulnerable package. Updating the vuxml entry is going to take 24 hours to work through most users systems unless the user knows they can force an update with pkg audit -F. > On the downside maintainers may not be aware of a vulnerability. It'd be > nice if there were periodic mails about (still) vulnerable ports similar > to porstscout. For one, multimedia/ffmpeg0 haven't been updated yet > despite how trivial it should be -> too few users to notice? > I strongly agree here. I try to get vuxml entries in when I have time, but don't always have time to address the port. I email maintainers when possible, but sometimes I forget to come back around and check on vulnerable ports whose entry I added. > > their release process seems obvious, they could release 1.4.1 or we > > could backport security fixes to 1.4.0_1 > > Depending on PORTREVISION in advance is unreliable as it can be > bumped for an unrelated reason. > No different than a PORTEPOCH bump invalidating your vuxml entries. If you add the entry to vuxml you should try to watch it until the official fix has landed. It definitely takes a team effort to make sure mistakes are not made. I guess we'll just have to agree to disagree on the approach here. > Upstream doesn't have a good track record for patch releases. For one, > CVE-2014-1578 was never fixed in 1.3.x and Debian still carries around > the patch for it in their package. > That's really unfortunate. :-( > > I'll try to keep an eye on this too. > From owner-svn-ports-all@freebsd.org Thu Aug 13 14:47:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F91B9A02E6; Thu, 13 Aug 2015 14:47:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 10504367; Thu, 13 Aug 2015 14:47:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DEl39C071078; Thu, 13 Aug 2015 14:47:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DEl3Rp071077; Thu, 13 Aug 2015 14:47:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131447.t7DEl3Rp071077@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 14:47:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394065 - branches/2015Q3/textproc/rubygem-diff-lcs X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 14:47:04 -0000 Author: amdmi3 Date: Thu Aug 13 14:47:03 2015 New Revision: 394065 URL: https://svnweb.freebsd.org/changeset/ports/394065 Log: MFH: r394064 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/textproc/rubygem-diff-lcs/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/textproc/rubygem-diff-lcs/Makefile ============================================================================== --- branches/2015Q3/textproc/rubygem-diff-lcs/Makefile Thu Aug 13 14:12:11 2015 (r394064) +++ branches/2015Q3/textproc/rubygem-diff-lcs/Makefile Thu Aug 13 14:47:03 2015 (r394065) @@ -3,6 +3,7 @@ PORTNAME= diff-lcs PORTVERSION= 1.2.5 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -12,6 +13,9 @@ COMMENT= LCS-based diff library for ruby LICENSE= ART20 GPLv2 GPLv3 MIT LICENSE_COMB= dual +USES= shebangfix +ruby_OLD_CMD= ruby +SHEBANG_FILES= bin/htmldiff bin/ldiff USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Thu Aug 13 15:00:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 113249A055B; Thu, 13 Aug 2015 15:00:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 021EFE37; Thu, 13 Aug 2015 15:00:31 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DF0UEk078464; Thu, 13 Aug 2015 15:00:30 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DF0Uj8078463; Thu, 13 Aug 2015 15:00:30 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131500.t7DF0Uj8078463@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 15:00:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394066 - head/x11/kde4-workspace X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 15:00:31 -0000 Author: amdmi3 Date: Thu Aug 13 15:00:30 2015 New Revision: 394066 URL: https://svnweb.freebsd.org/changeset/ports/394066 Log: - Fix shebangs Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/x11/kde4-workspace/Makefile Modified: head/x11/kde4-workspace/Makefile ============================================================================== --- head/x11/kde4-workspace/Makefile Thu Aug 13 14:47:03 2015 (r394065) +++ head/x11/kde4-workspace/Makefile Thu Aug 13 15:00:30 2015 (r394066) @@ -2,7 +2,7 @@ PORTNAME= kde-workspace PORTVERSION= ${KDE4_WORKSPACE_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 kde MASTER_SITES= KDE/${KDE4_BRANCH}/${KDE4_VERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} @@ -45,12 +45,13 @@ USE_GNOME= glib20 USE_KDE4= kactivities kdelibs kdeprefix nepomuk-core oxygen \ pimlibs akonadi automoc4 ontologies qimageblitz soprano strigi USES= cmake:outsource compiler:c++11-lib gettext gmake iconv jpeg \ - pkgconfig tar:xz + pkgconfig shebangfix tar:xz USE_QT4= corelib dbus declarative designer_build gui network \ opengl phonon qtestlib script sql webkit xml \ moc_build qmake_build rcc_build uic_build USE_XORG= kbproto x11 xau xcomposite xcursor xdamage xdmcp xfixes \ xft xi xinerama xkbfile xrandr xrender xres xscrnsaver xtst +SHEBANG_FILES= kwin/clients/oxygen/data/update_oxygen.pl USE_LDCONFIG= yes CMAKE_ARGS= -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" \ From owner-svn-ports-all@freebsd.org Thu Aug 13 15:02:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DACBF9A064A; Thu, 13 Aug 2015 15:02:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA77E17B; Thu, 13 Aug 2015 15:02:38 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DF2ckE080027; Thu, 13 Aug 2015 15:02:38 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DF2crv080026; Thu, 13 Aug 2015 15:02:38 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508131502.t7DF2crv080026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 13 Aug 2015 15:02:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394067 - branches/2015Q3/x11/kde4-workspace X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 15:02:39 -0000 Author: amdmi3 Date: Thu Aug 13 15:02:37 2015 New Revision: 394067 URL: https://svnweb.freebsd.org/changeset/ports/394067 Log: MFH: r394066 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/x11/kde4-workspace/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/x11/kde4-workspace/Makefile ============================================================================== --- branches/2015Q3/x11/kde4-workspace/Makefile Thu Aug 13 15:00:30 2015 (r394066) +++ branches/2015Q3/x11/kde4-workspace/Makefile Thu Aug 13 15:02:37 2015 (r394067) @@ -2,7 +2,7 @@ PORTNAME= kde-workspace PORTVERSION= ${KDE4_WORKSPACE_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 kde MASTER_SITES= KDE/${KDE4_BRANCH}/${KDE4_VERSION}/src DIST_SUBDIR= KDE/${PORTVERSION} @@ -45,12 +45,13 @@ USE_GNOME= glib20 USE_KDE4= kactivities kdelibs kdeprefix nepomuk-core oxygen \ pimlibs akonadi automoc4 ontologies qimageblitz soprano strigi USES= cmake:outsource compiler:c++11-lib gettext gmake iconv jpeg \ - pkgconfig tar:xz + pkgconfig shebangfix tar:xz USE_QT4= corelib dbus declarative designer_build gui network \ opengl phonon qtestlib script sql webkit xml \ moc_build qmake_build rcc_build uic_build USE_XORG= kbproto x11 xau xcomposite xcursor xdamage xdmcp xfixes \ xft xi xinerama xkbfile xrandr xrender xres xscrnsaver xtst +SHEBANG_FILES= kwin/clients/oxygen/data/update_oxygen.pl USE_LDCONFIG= yes CMAKE_ARGS= -DCMAKE_REQUIRED_FLAGS:STRING="-L${LOCALBASE}/lib" \ From owner-svn-ports-all@freebsd.org Thu Aug 13 15:07:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 563FF9A06A6; Thu, 13 Aug 2015 15:07:13 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37FFD2D9; Thu, 13 Aug 2015 15:07:13 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DF7Dkt080604; Thu, 13 Aug 2015 15:07:13 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DF7CO0080602; Thu, 13 Aug 2015 15:07:12 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201508131507.t7DF7CO0080602@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Thu, 13 Aug 2015 15:07:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394068 - head/multimedia/mkvtoolnix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 15:07:13 -0000 Author: ehaupt Date: Thu Aug 13 15:07:12 2015 New Revision: 394068 URL: https://svnweb.freebsd.org/changeset/ports/394068 Log: Introduce an option to build the new Qt5 based GUI. The Qt5 version will replace the now deprecated WXGTK version in the future. If you're currently launching 'mmg' (the WXGTK GUI) you will get the following notification: Please note that this program (mkvmerge GUI) is deprecated and will be removed within one or two releases. It has been superseded by the new MKVToolNix GUI which should also be included in the same package. Don't enable this option by default to give current users a notice that future updates will pull in the Qt5 dependency chain by default. However, users are encouraged to try the Qt5 version and report bugs. This new option does not change the current default build of the port and therefore no PORTREVISION bump is required. Modified: head/multimedia/mkvtoolnix/Makefile head/multimedia/mkvtoolnix/pkg-plist Modified: head/multimedia/mkvtoolnix/Makefile ============================================================================== --- head/multimedia/mkvtoolnix/Makefile Thu Aug 13 15:02:37 2015 (r394067) +++ head/multimedia/mkvtoolnix/Makefile Thu Aug 13 15:07:12 2015 (r394068) @@ -26,14 +26,12 @@ RUBY_NO_RUN_DEPENDS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV+= ac_cv_path_PO4A=no ZLIB_CFLAGS=-I/usr/include ZLIB_LIBS=-lz -CONFIGURE_ARGS= --disable-qt \ - --with-boost=${LOCALBASE} \ +CONFIGURE_ARGS= --with-boost=${LOCALBASE} \ --with-boost-filesystem=boost_filesystem \ --with-boost-system=boost_system \ - --with-boost-regex=boost_regex \ - --without-curl + --with-boost-regex=boost_regex -OPTIONS_DEFINE= WXGTK FLAC +OPTIONS_DEFINE= WXGTK FLAC QT5 OPTIONS_DEFAULT=WXGTK FLAC BROKEN_sparc64= Does not install on sparc64 @@ -58,6 +56,14 @@ MAKE_ENV+= V=1 INSTALLS_ICONS= yes .endif +.if ${PORT_OPTIONS:MQT5} +USE_QT5= buildtools core widgets quick +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl +CONFIGURE_ARGS+= --enable-qt --with-curl +.else +CONFIGURE_ARGS+= --disable-qt --without-curl +.endif + .if ${OSVERSION} < 1000000 post-patch: @${REINPLACE_CMD} -e 's|std::llround|llround|g' \ Modified: head/multimedia/mkvtoolnix/pkg-plist ============================================================================== --- head/multimedia/mkvtoolnix/pkg-plist Thu Aug 13 15:02:37 2015 (r394067) +++ head/multimedia/mkvtoolnix/pkg-plist Thu Aug 13 15:07:12 2015 (r394068) @@ -1,3 +1,12 @@ +%%QT5%%bin/mkvtoolnix-gui +%%QT5%%man/de/man1/mkvtoolnix-gui.1.gz +%%QT5%%man/es/man1/mkvtoolnix-gui.1.gz +%%QT5%%man/ja/man1/mkvtoolnix-gui.1.gz +%%QT5%%man/man1/mkvtoolnix-gui.1.gz +%%QT5%%man/nl/man1/mkvtoolnix-gui.1.gz +%%QT5%%man/uk/man1/mkvtoolnix-gui.1.gz +%%QT5%%man/zh_CN/man1/mkvtoolnix-gui.1.gz +%%QT5%%share/applications/mkvtoolnix-gui.desktop %%WXGTK%%%%DOCSDIR%%/guide/en/images/addingremovingattachments.gif %%WXGTK%%%%DOCSDIR%%/guide/en/images/addremovefiles.gif %%WXGTK%%%%DOCSDIR%%/guide/en/images/attachmentoptions.gif From owner-svn-ports-all@freebsd.org Thu Aug 13 15:39:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7701E9A0D8D; Thu, 13 Aug 2015 15:39:06 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D91EB8F; Thu, 13 Aug 2015 15:39:06 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DFd6pJ093264; Thu, 13 Aug 2015 15:39:06 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DFd5h6093261; Thu, 13 Aug 2015 15:39:05 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201508131539.t7DFd5h6093261@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Thu, 13 Aug 2015 15:39:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394069 - head/net/wireshark X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 15:39:06 -0000 Author: marcus Date: Thu Aug 13 15:39:04 2015 New Revision: 394069 URL: https://svnweb.freebsd.org/changeset/ports/394069 Log: Update to 1.12.7. See https://www.wireshark.org/docs/relnotes/wireshark-1.12.7.html for a list of changes in this release. Modified: head/net/wireshark/Makefile head/net/wireshark/distinfo head/net/wireshark/pkg-plist Modified: head/net/wireshark/Makefile ============================================================================== --- head/net/wireshark/Makefile Thu Aug 13 15:07:12 2015 (r394068) +++ head/net/wireshark/Makefile Thu Aug 13 15:39:04 2015 (r394069) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= wireshark -PORTVERSION= 1.12.6 +PORTVERSION= 1.12.7 CATEGORIES= net ipv6 MASTER_SITES= http://www.wireshark.org/download/src/ \ http://ftp.uni-kl.de/pub/wireshark/src/ \ Modified: head/net/wireshark/distinfo ============================================================================== --- head/net/wireshark/distinfo Thu Aug 13 15:07:12 2015 (r394068) +++ head/net/wireshark/distinfo Thu Aug 13 15:39:04 2015 (r394069) @@ -1,2 +1,2 @@ -SHA256 (wireshark-1.12.6.tar.bz2) = 22ac0cc872f12cef9bb2cacfe0720eed8533dc5cea102d21de511620606cb3b6 -SIZE (wireshark-1.12.6.tar.bz2) = 29166493 +SHA256 (wireshark-1.12.7.tar.bz2) = c74a1c14e72ce0f198a93d832e71742c7f312cbbe719e5def9ecef176860f92c +SIZE (wireshark-1.12.7.tar.bz2) = 29202490 Modified: head/net/wireshark/pkg-plist ============================================================================== --- head/net/wireshark/pkg-plist Thu Aug 13 15:07:12 2015 (r394068) +++ head/net/wireshark/pkg-plist Thu Aug 13 15:39:04 2015 (r394069) @@ -16,13 +16,13 @@ bin/tshark %%TEXT2PCAP%% lib/libfiletap.so lib/libfiletap.so.0 -lib/libfiletap.so.0.0.6 +lib/libfiletap.so.0.0.7 lib/libwireshark.so lib/libwireshark.so.5 -lib/libwireshark.so.5.0.6 +lib/libwireshark.so.5.0.7 lib/libwiretap.so lib/libwiretap.so.4 -lib/libwiretap.so.4.0.6 +lib/libwiretap.so.4.0.7 lib/libwsutil.so lib/libwsutil.so.4 lib/libwsutil.so.4.1.0 From owner-svn-ports-all@freebsd.org Thu Aug 13 15:53:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E13DA9B819C for ; Thu, 13 Aug 2015 15:53:41 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-oi0-f46.google.com (mail-oi0-f46.google.com [209.85.218.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ACCAB222 for ; Thu, 13 Aug 2015 15:53:41 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: by oiev193 with SMTP id v193so28577461oie.3 for ; Thu, 13 Aug 2015 08:53:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=0m8oJXVV6EZvCT4ATlG/WCw3SjIRRKjQYJi34zOFxDI=; b=ZfEHWELkPOW0hBbzv0AIhtNOER4h6e5qn5EcjPnPUQthIw3Pamj39F8pRj9fOC+D7+ b0vVX7rBZSccmNbh9rxQqpj84X+PD3mcUmF4SSO8f83yt0Dnhd0FfjpJ5S8a0gKkDv5L HoLlbiKN+pTbNyVt8A/seLDNjZ38dsXBbxxHJVRUBIYGGjFyyV9DsK6SFSSMUM+99qO2 bW+QmIcPV5AtkXfZoRpIoIomdMsRX5mhQg1XDuO2Tc7qu2McDrzz22GfdWellRWTg4ux 79bV02fXj53wJLOyjjhkGTPKori7zbdmQcIwnsAU+CpdNkdGF0WfchsEscEb/8cwccit IkQw== X-Gm-Message-State: ALoCoQnEbIrMfyL9JA4CIg8G1nDp8ei0HufbHMi8CuNC9bFy2vb9zttU6J9NoXvtG6WoB3bY0x27 X-Received: by 10.202.197.86 with SMTP id v83mr12997934oif.88.1439481215137; Thu, 13 Aug 2015 08:53:35 -0700 (PDT) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.202.218.2 with HTTP; Thu, 13 Aug 2015 08:52:55 -0700 (PDT) In-Reply-To: <201508100030.t7A0U0vC020262@repo.freebsd.org> References: <201508100030.t7A0U0vC020262@repo.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 23:52:55 +0800 X-Google-Sender-Auth: 1-B-7fUL0USS2AzWmo3VGbRpls4 Message-ID: Subject: Re: svn commit: r393836 - head/net/netatalk3 To: Joe Marcus Clarke Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 15:53:42 -0000 On Mon, Aug 10, 2015 at 8:30 AM, Joe Marcus Clarke wrote: > Author: marcus > Date: Mon Aug 10 00:29:59 2015 > New Revision: 393836 > URL: https://svnweb.freebsd.org/changeset/ports/393836 > > Log: > Fix the py-dbus dependency. > > PR: 202003 > > Modified: > head/net/netatalk3/Makefile > > Modified: head/net/netatalk3/Makefile > > ============================================================================== > --- head/net/netatalk3/Makefile Sun Aug 9 23:42:35 2015 (r393835) > +++ head/net/netatalk3/Makefile Mon Aug 10 00:29:59 2015 (r393836) > @@ -3,7 +3,7 @@ > > PORTNAME= netatalk > PORTVERSION= 3.1.7 > -PORTREVISION= 1 > +PORTREVISION= 2 > PORTEPOCH= 1 > CATEGORIES= net > MASTER_SITES= SF > @@ -112,8 +112,9 @@ CONFIGURE_ARGS+= --disable-sendfile > .endif > > .if ${PORT_OPTIONS:MDBUS} || > exists(${LOCALBASE}/libdata/pkgconfig/dbus-glib-1.pc) > +USES+= python > Hello, Please use USES+=python:2 to indicate that python 2 is required (for py-dbus). Otherwise it fails to build if default python is 3.x (e.g. DEFAULT_VERSIONS=python=3.4). Thanks. Regards, sunpoet > LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib > -RUN_DEPENDS+= > ${LOCALBASE}/libdata/pkgconfig/dbus-python.pc:${PORTSDIR}/devel/pydbus-common > +RUN_DEPENDS+= > ${PYTHON_SITELIBDIR}/dbus/_dbus.py:${PORTSDIR}/devel/py-dbus > PLIST_SUB+= DBUS="" > .else > PLIST_SUB+= DBUS="@comment " > _______________________________________________ > svn-ports-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-svn-ports-all@freebsd.org Thu Aug 13 15:55:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D52E29B81C3; Thu, 13 Aug 2015 15:55:38 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C203037D; Thu, 13 Aug 2015 15:55:38 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DFtcB7002462; Thu, 13 Aug 2015 15:55:38 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DFtcnO002461; Thu, 13 Aug 2015 15:55:38 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201508131555.t7DFtcnO002461@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Thu, 13 Aug 2015 15:55:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394070 - head/net/netatalk3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 15:55:38 -0000 Author: marcus Date: Thu Aug 13 15:55:37 2015 New Revision: 394070 URL: https://svnweb.freebsd.org/changeset/ports/394070 Log: Use python:2 as py-dbus is only available for Python 2.x. Submitted by: sunpoet Modified: head/net/netatalk3/Makefile Modified: head/net/netatalk3/Makefile ============================================================================== --- head/net/netatalk3/Makefile Thu Aug 13 15:39:04 2015 (r394069) +++ head/net/netatalk3/Makefile Thu Aug 13 15:55:37 2015 (r394070) @@ -112,7 +112,7 @@ CONFIGURE_ARGS+= --disable-sendfile .endif .if ${PORT_OPTIONS:MDBUS} || exists(${LOCALBASE}/libdata/pkgconfig/dbus-glib-1.pc) -USES+= python +USES+= python:2 LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/dbus/_dbus.py:${PORTSDIR}/devel/py-dbus PLIST_SUB+= DBUS="" From owner-svn-ports-all@freebsd.org Thu Aug 13 16:22:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2298D9B85AA; Thu, 13 Aug 2015 16:22:57 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 071C91D4; Thu, 13 Aug 2015 16:22:57 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DGMuRm015523; Thu, 13 Aug 2015 16:22:56 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DGMtAu015511; Thu, 13 Aug 2015 16:22:55 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201508131622.t7DGMtAu015511@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Thu, 13 Aug 2015 16:22:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394071 - in head/sysutils: . puppet puppet37 rubygem-hiera rubygem-hiera-file rubygem-hiera1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 16:22:57 -0000 Author: mmoll Date: Thu Aug 13 16:22:54 2015 New Revision: 394071 URL: https://svnweb.freebsd.org/changeset/ports/394071 Log: sysutils/rubygem-hiera: update to 3.0.1 - this is paving the way for a Puppet 4.x port - preserve 1.3.4 as sysutils/rubygem-hiera1 - use sysutils/rubygem-hiera1 in dependent ports - change maintainer to ruby@ Approved by: robak (maintainer) Differential Revision: https://reviews.freebsd.org/D3359 Added: head/sysutils/rubygem-hiera1/ - copied from r394060, head/sysutils/rubygem-hiera/ Modified: head/sysutils/Makefile head/sysutils/puppet/Makefile head/sysutils/puppet37/Makefile head/sysutils/rubygem-hiera-file/Makefile head/sysutils/rubygem-hiera/Makefile head/sysutils/rubygem-hiera/distinfo head/sysutils/rubygem-hiera1/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Aug 13 15:55:37 2015 (r394070) +++ head/sysutils/Makefile Thu Aug 13 16:22:54 2015 (r394071) @@ -864,6 +864,7 @@ SUBDIR += rubygem-hammer_cli_foreman_salt SUBDIR += rubygem-hammer_cli_foreman_ssh SUBDIR += rubygem-hiera + SUBDIR += rubygem-hiera1 SUBDIR += rubygem-hiera-file SUBDIR += rubygem-librarian-puppet SUBDIR += rubygem-log4r Modified: head/sysutils/puppet/Makefile ============================================================================== --- head/sysutils/puppet/Makefile Thu Aug 13 15:55:37 2015 (r394070) +++ head/sysutils/puppet/Makefile Thu Aug 13 16:22:54 2015 (r394071) @@ -3,6 +3,7 @@ PORTNAME= puppet PORTVERSION= 3.8.2 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://downloads.puppetlabs.com/puppet/ @@ -12,10 +13,10 @@ COMMENT= Configuration management framew LICENSE= APACHE20 BUILD_DEPENDS= rubygem-facter>=0:${PORTSDIR}/sysutils/rubygem-facter \ - rubygem-hiera>=0:${PORTSDIR}/sysutils/rubygem-hiera + rubygem-hiera1>=0:${PORTSDIR}/sysutils/rubygem-hiera1 RUN_DEPENDS= rubygem-facter>=0:${PORTSDIR}/sysutils/rubygem-facter \ rubygem-ruby-augeas>=0:${PORTSDIR}/textproc/rubygem-ruby-augeas \ - rubygem-hiera>=0:${PORTSDIR}/sysutils/rubygem-hiera + rubygem-hiera1>=0:${PORTSDIR}/sysutils/rubygem-hiera1 USES= cpe CPE_VENDOR= puppetlabs Modified: head/sysutils/puppet37/Makefile ============================================================================== --- head/sysutils/puppet37/Makefile Thu Aug 13 15:55:37 2015 (r394070) +++ head/sysutils/puppet37/Makefile Thu Aug 13 16:22:54 2015 (r394071) @@ -3,6 +3,7 @@ PORTNAME= puppet PORTVERSION= 3.7.5 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://downloads.puppetlabs.com/puppet/ PKGNAMESUFFIX= 37 @@ -13,10 +14,10 @@ COMMENT= Configuration management framew LICENSE= APACHE20 BUILD_DEPENDS= rubygem-facter>=0:${PORTSDIR}/sysutils/rubygem-facter \ - rubygem-hiera>=0:${PORTSDIR}/sysutils/rubygem-hiera + rubygem-hiera1>=0:${PORTSDIR}/sysutils/rubygem-hiera1 RUN_DEPENDS= rubygem-facter>=0:${PORTSDIR}/sysutils/rubygem-facter \ rubygem-ruby-augeas>=0:${PORTSDIR}/textproc/rubygem-ruby-augeas \ - rubygem-hiera>=0:${PORTSDIR}/sysutils/rubygem-hiera + rubygem-hiera1>=0:${PORTSDIR}/sysutils/rubygem-hiera1 USES= cpe CPE_VENDOR= puppetlabs Modified: head/sysutils/rubygem-hiera-file/Makefile ============================================================================== --- head/sysutils/rubygem-hiera-file/Makefile Thu Aug 13 15:55:37 2015 (r394070) +++ head/sysutils/rubygem-hiera-file/Makefile Thu Aug 13 16:22:54 2015 (r394071) @@ -3,6 +3,7 @@ PORTNAME= hiera-file PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG @@ -15,6 +16,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -RUN_DEPENDS= ${PKGNAMEPREFIX}hiera>=0:${PORTSDIR}/sysutils/rubygem-hiera +RUN_DEPENDS= ${PKGNAMEPREFIX}hiera1>=0:${PORTSDIR}/sysutils/rubygem-hiera1 .include Modified: head/sysutils/rubygem-hiera/Makefile ============================================================================== --- head/sysutils/rubygem-hiera/Makefile Thu Aug 13 15:55:37 2015 (r394070) +++ head/sysutils/rubygem-hiera/Makefile Thu Aug 13 16:22:54 2015 (r394071) @@ -2,17 +2,19 @@ # $FreeBSD$ PORTNAME= hiera -PORTVERSION= 1.3.4 +PORTVERSION= 3.0.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG -MAINTAINER= robak@FreeBSD.org +MAINTAINER= ruby@FreeBSD.org COMMENT= Pluggable data store for hierarchical data LICENSE= APACHE20 RUN_DEPENDS= ${PKGNAMEPREFIX}json_pure>=0:${PORTSDIR}/devel/rubygem-json_pure +CONFLICTS_INSTALL= rubygem-hiera1-* + NO_ARCH= yes USE_RUBY= yes @@ -23,13 +25,12 @@ PLIST_FILES= bin/hiera PLIST_DIRS= ${HIERA_DBDIR} post-install: - @${REINPLACE_CMD} "s!/etc/hiera.yaml!${STAGEDIR}${PREFIX}/etc/hiera.yaml!" \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/bin/hiera \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera.rb \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/hiera_spec.rb - @${REINPLACE_CMD} "s!/var/lib/hiera!${HIERA_DBDIR}!" \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/backend.rb \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/backend_spec.rb + @${REINPLACE_CMD} "s!/etc/puppetlabs/code/environments/%{environment}/hieradata!${HIERA_DBDIR}!" \ + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/util.rb \ + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/util_spec.rb + @${REINPLACE_CMD} "s!/etc/puppetlabs/code!${PREFIX}/etc!" \ + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/util.rb \ + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/util_spec.rb @${FIND} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -name \*.bak -delete @${MKDIR} ${STAGEDIR}${HIERA_DBDIR} Modified: head/sysutils/rubygem-hiera/distinfo ============================================================================== --- head/sysutils/rubygem-hiera/distinfo Thu Aug 13 15:55:37 2015 (r394070) +++ head/sysutils/rubygem-hiera/distinfo Thu Aug 13 16:22:54 2015 (r394071) @@ -1,2 +1,2 @@ -SHA256 (rubygem/hiera-1.3.4.gem) = a3c85385ddda64916d453efeeb965151dc2454428d88f04f40d539559af27020 -SIZE (rubygem/hiera-1.3.4.gem) = 30208 +SHA256 (rubygem/hiera-3.0.1.gem) = 8e0c8f1f9fc2200c7a5d4a5d70c7b1524f071d41cb1b0667f4398a0601954acc +SIZE (rubygem/hiera-3.0.1.gem) = 35328 Modified: head/sysutils/rubygem-hiera1/Makefile ============================================================================== --- head/sysutils/rubygem-hiera/Makefile Thu Aug 13 13:18:27 2015 (r394060) +++ head/sysutils/rubygem-hiera1/Makefile Thu Aug 13 16:22:54 2015 (r394071) @@ -3,8 +3,10 @@ PORTNAME= hiera PORTVERSION= 1.3.4 +PORTREVISION= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG +PKGNAMESUFFIX= 1 MAINTAINER= robak@FreeBSD.org COMMENT= Pluggable data store for hierarchical data @@ -13,6 +15,8 @@ LICENSE= APACHE20 RUN_DEPENDS= ${PKGNAMEPREFIX}json_pure>=0:${PORTSDIR}/devel/rubygem-json_pure +CONFLICTS_INSTALL= rubygem-hiera-* + NO_ARCH= yes USE_RUBY= yes @@ -23,13 +27,13 @@ PLIST_FILES= bin/hiera PLIST_DIRS= ${HIERA_DBDIR} post-install: - @${REINPLACE_CMD} "s!/etc/hiera.yaml!${STAGEDIR}${PREFIX}/etc/hiera.yaml!" \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/bin/hiera \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera.rb \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/hiera_spec.rb + @${REINPLACE_CMD} "s!/etc!${PREFIX}/etc!" \ + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/util.rb \ + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/util_spec.rb @${REINPLACE_CMD} "s!/var/lib/hiera!${HIERA_DBDIR}!" \ ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/backend.rb \ - ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/backend_spec.rb + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/util.rb \ + ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/util_spec.rb @${FIND} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -name \*.bak -delete @${MKDIR} ${STAGEDIR}${HIERA_DBDIR} From owner-svn-ports-all@freebsd.org Thu Aug 13 16:24:51 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8B179B85D3 for ; Thu, 13 Aug 2015 16:24:51 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-oi0-f41.google.com (mail-oi0-f41.google.com [209.85.218.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B20CC327 for ; Thu, 13 Aug 2015 16:24:51 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: by oiev193 with SMTP id v193so29122850oie.3 for ; Thu, 13 Aug 2015 09:24:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=awmjdu83CdhoYz19ymGXduny0uRfalIy+dSJb55JBfE=; b=Ez0xjo4nHIR0uLIbBFlSSAdNbmnLT3ldRfjyGpl9LkXG5tcyMOa7DlsXfrfuMWnjpD zVQ80x+5X4VFwlys0IMhK8OgdDu4MpGDFgbvEPf2Rz/9CiJf/R0WoIc5insjSV+B2l5t BsgkI0ft6b6/i6OpSDysreEJJriORBZUQNXkaUfCxGWS5IHPgUmO2/syUtE7Kbkn0VMI nsHVVHqxWoZwowgzl2g1XAi2vtQdJKMv3gbxGD0jXeMaQHj24814WOuISFz9f4AZ5U0f U/9RnlTtPHH+1zrRhEnr/TjT5YA34pDR8fuhncuCK8zgk8Bp7h4PB2zeQmj3MnXi+0rN d7Kg== X-Gm-Message-State: ALoCoQkodeRhVViv8SYLSng8wEJ7eB1KWcEHM8RC58Z5fQPN/4OLrn9RyC5PhAW0EpQluOpnc+x0 X-Received: by 10.202.67.67 with SMTP id q64mr34587810oia.124.1439483085427; Thu, 13 Aug 2015 09:24:45 -0700 (PDT) MIME-Version: 1.0 Sender: sunpoet@sunpoet.net Received: by 10.202.218.2 with HTTP; Thu, 13 Aug 2015 09:24:06 -0700 (PDT) In-Reply-To: <201508131555.t7DFtcnO002461@repo.freebsd.org> References: <201508131555.t7DFtcnO002461@repo.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Fri, 14 Aug 2015 00:24:06 +0800 X-Google-Sender-Auth: d_4tWV8-ZVrbt_PCq8q8N36vSnc Message-ID: Subject: Re: svn commit: r394070 - head/net/netatalk3 To: Joe Marcus Clarke Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 16:24:52 -0000 On Thu, Aug 13, 2015 at 11:55 PM, Joe Marcus Clarke wrote: > Author: marcus > Date: Thu Aug 13 15:55:37 2015 > New Revision: 394070 > URL: https://svnweb.freebsd.org/changeset/ports/394070 > > Log: > Use python:2 as py-dbus is only available for Python 2.x. > > Submitted by: sunpoet > > Modified: > head/net/netatalk3/Makefile > > Modified: head/net/netatalk3/Makefile > > ============================================================================== > --- head/net/netatalk3/Makefile Thu Aug 13 15:39:04 2015 (r394069) > +++ head/net/netatalk3/Makefile Thu Aug 13 15:55:37 2015 (r394070) > @@ -112,7 +112,7 @@ CONFIGURE_ARGS+= --disable-sendfile > .endif > > .if ${PORT_OPTIONS:MDBUS} || > exists(${LOCALBASE}/libdata/pkgconfig/dbus-glib-1.pc) > -USES+= python > +USES+= python:2 > LIB_DEPENDS+= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib > RUN_DEPENDS+= > ${PYTHON_SITELIBDIR}/dbus/_dbus.py:${PORTSDIR}/devel/py-dbus > PLIST_SUB+= DBUS="" > > Thanks! Regards, sunpoet From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA6AE9B8040; Thu, 13 Aug 2015 17:31:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0DB293D; Thu, 13 Aug 2015 17:31:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHV1Db042731; Thu, 13 Aug 2015 17:31:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHV1sL042729; Thu, 13 Aug 2015 17:31:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHV1sL042729@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394072 - head/misc/pciids X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:02 -0000 Author: sunpoet Date: Thu Aug 13 17:31:00 2015 New Revision: 394072 URL: https://svnweb.freebsd.org/changeset/ports/394072 Log: - Update to 20150731 Changes: http://people.FreeBSD.org/~sunpoet/pciids-20150731.diff Modified: head/misc/pciids/Makefile head/misc/pciids/distinfo Modified: head/misc/pciids/Makefile ============================================================================== --- head/misc/pciids/Makefile Thu Aug 13 16:22:54 2015 (r394071) +++ head/misc/pciids/Makefile Thu Aug 13 17:31:00 2015 (r394072) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pciids -PORTVERSION= 20150722 +PORTVERSION= 20150731 CATEGORIES= misc MASTER_SITES= LOCAL/sunpoet Modified: head/misc/pciids/distinfo ============================================================================== --- head/misc/pciids/distinfo Thu Aug 13 16:22:54 2015 (r394071) +++ head/misc/pciids/distinfo Thu Aug 13 17:31:00 2015 (r394072) @@ -1,2 +1,2 @@ -SHA256 (pciids-20150722.tar.xz) = b143c5126d3ab186f8244cc1433c49c746f9d3bd586e838d49d8f56c5722a065 -SIZE (pciids-20150722.tar.xz) = 178536 +SHA256 (pciids-20150731.tar.xz) = 177b99c5f6235b63a398cd80959ceed7fe6024091592c473a85cce1a565fc6b4 +SIZE (pciids-20150731.tar.xz) = 178564 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C7109B805F; Thu, 13 Aug 2015 17:31:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D4DCA1E; Thu, 13 Aug 2015 17:31:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHV6PX042972; Thu, 13 Aug 2015 17:31:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHV5JK042846; Thu, 13 Aug 2015 17:31:05 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHV5JK042846@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394073 - head/misc/usbids X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:06 -0000 Author: sunpoet Date: Thu Aug 13 17:31:05 2015 New Revision: 394073 URL: https://svnweb.freebsd.org/changeset/ports/394073 Log: - Update to 20150727 Changes: http://people.FreeBSD.org/~sunpoet/usbids-20150727.diff Modified: head/misc/usbids/Makefile head/misc/usbids/distinfo Modified: head/misc/usbids/Makefile ============================================================================== --- head/misc/usbids/Makefile Thu Aug 13 17:31:00 2015 (r394072) +++ head/misc/usbids/Makefile Thu Aug 13 17:31:05 2015 (r394073) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= usbids -PORTVERSION= 20150622 +PORTVERSION= 20150727 CATEGORIES= misc MASTER_SITES= LOCAL/sunpoet Modified: head/misc/usbids/distinfo ============================================================================== --- head/misc/usbids/distinfo Thu Aug 13 17:31:00 2015 (r394072) +++ head/misc/usbids/distinfo Thu Aug 13 17:31:05 2015 (r394073) @@ -1,2 +1,2 @@ -SHA256 (usbids-20150622.tar.xz) = ebd63ebab96a121fbe67255124f055df31fda27a2da14840a7e5f08d543c97de -SIZE (usbids-20150622.tar.xz) = 153600 +SHA256 (usbids-20150727.tar.xz) = 1686320fd5c9c68aeba4cdb945d61d8143068e75072bd5adbe65cd15a11eb510 +SIZE (usbids-20150727.tar.xz) = 153656 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0648F9B8080; Thu, 13 Aug 2015 17:31:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB5C4B07; Thu, 13 Aug 2015 17:31:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVAX0043628; Thu, 13 Aug 2015 17:31:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVAcG043626; Thu, 13 Aug 2015 17:31:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVAcG043626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394074 - head/editors/vim X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:11 -0000 Author: sunpoet Date: Thu Aug 13 17:31:09 2015 New Revision: 394074 URL: https://svnweb.freebsd.org/changeset/ports/394074 Log: - Update to 7.4.817 Changes: https://github.com/vim/vim/commits/master Modified: head/editors/vim/Makefile head/editors/vim/distinfo Modified: head/editors/vim/Makefile ============================================================================== --- head/editors/vim/Makefile Thu Aug 13 17:31:05 2015 (r394073) +++ head/editors/vim/Makefile Thu Aug 13 17:31:09 2015 (r394074) @@ -3,7 +3,7 @@ PORTNAME= vim DISTVERSIONPREFIX= v -DISTVERSION= 7-4-796 +DISTVERSION= 7-4-817 CATEGORIES?= editors MAINTAINER?= sunpoet@FreeBSD.org Modified: head/editors/vim/distinfo ============================================================================== --- head/editors/vim/distinfo Thu Aug 13 17:31:05 2015 (r394073) +++ head/editors/vim/distinfo Thu Aug 13 17:31:09 2015 (r394074) @@ -1,2 +1,2 @@ -SHA256 (vim-vim-v7-4-796_GH0.tar.bz2) = 302b0fa6ff002bb194276b42a9a8a89b88a8b67fb231c9305badf09576b895b7 -SIZE (vim-vim-v7-4-796_GH0.tar.bz2) = 12201382 +SHA256 (vim-vim-v7-4-817_GH0.tar.bz2) = 5b36a4abe8abf507f0c091a7eb0919670767251fa59e235ef566817f02a3b0c5 +SIZE (vim-vim-v7-4-817_GH0.tar.bz2) = 12203127 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97A889B80A8; Thu, 13 Aug 2015 17:31:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72605C5F; Thu, 13 Aug 2015 17:31:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVGwf043761; Thu, 13 Aug 2015 17:31:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVFb0043757; Thu, 13 Aug 2015 17:31:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVFb0043757@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394075 - head/www/nghttp2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:16 -0000 Author: sunpoet Date: Thu Aug 13 17:31:14 2015 New Revision: 394075 URL: https://svnweb.freebsd.org/changeset/ports/394075 Log: - Update to 1.2.0 Changes: https://github.com/tatsuhiro-t/nghttp2/releases Modified: head/www/nghttp2/Makefile head/www/nghttp2/distinfo head/www/nghttp2/pkg-plist Modified: head/www/nghttp2/Makefile ============================================================================== --- head/www/nghttp2/Makefile Thu Aug 13 17:31:09 2015 (r394074) +++ head/www/nghttp2/Makefile Thu Aug 13 17:31:14 2015 (r394075) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 1.1.2 +PORTVERSION= 1.2.0 CATEGORIES= www net MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \ LOCAL/sunpoet Modified: head/www/nghttp2/distinfo ============================================================================== --- head/www/nghttp2/distinfo Thu Aug 13 17:31:09 2015 (r394074) +++ head/www/nghttp2/distinfo Thu Aug 13 17:31:14 2015 (r394075) @@ -1,2 +1,2 @@ -SHA256 (nghttp2-1.1.2.tar.xz) = 8bd4a1dde16bf82fbacfe26ba48f22f6758c2d38202e7a956e0d070372699237 -SIZE (nghttp2-1.1.2.tar.xz) = 918148 +SHA256 (nghttp2-1.2.0.tar.xz) = 9e4a419c835b6cfa08ff9743f823638d32d8516aa3abfc86598272d173bc558f +SIZE (nghttp2-1.2.0.tar.xz) = 937040 Modified: head/www/nghttp2/pkg-plist ============================================================================== --- head/www/nghttp2/pkg-plist Thu Aug 13 17:31:09 2015 (r394074) +++ head/www/nghttp2/pkg-plist Thu Aug 13 17:31:14 2015 (r394075) @@ -12,7 +12,7 @@ include/nghttp2/nghttp2ver.h lib/libnghttp2.a lib/libnghttp2.so lib/libnghttp2.so.14 -lib/libnghttp2.so.14.0.6 +lib/libnghttp2.so.14.0.7 %%ASIO%%lib/libnghttp2_asio.a %%ASIO%%lib/libnghttp2_asio.so %%ASIO%%lib/libnghttp2_asio.so.1 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF2369B80CC; Thu, 13 Aug 2015 17:31:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8E0DD5F; Thu, 13 Aug 2015 17:31:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVLgY043891; Thu, 13 Aug 2015 17:31:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVK5n043888; Thu, 13 Aug 2015 17:31:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVK5n043888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394076 - head/www/npm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:22 -0000 Author: sunpoet Date: Thu Aug 13 17:31:20 2015 New Revision: 394076 URL: https://svnweb.freebsd.org/changeset/ports/394076 Log: - Update to 2.13.4 Changes: https://github.com/npm/npm/releases Modified: head/www/npm/Makefile head/www/npm/distinfo head/www/npm/pkg-plist Modified: head/www/npm/Makefile ============================================================================== --- head/www/npm/Makefile Thu Aug 13 17:31:14 2015 (r394075) +++ head/www/npm/Makefile Thu Aug 13 17:31:20 2015 (r394076) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= npm -PORTVERSION= 2.13.2 -PORTREVISION= 1 +PORTVERSION= 2.13.4 CATEGORIES= www MASTER_SITES= LOCAL/sunpoet Modified: head/www/npm/distinfo ============================================================================== --- head/www/npm/distinfo Thu Aug 13 17:31:14 2015 (r394075) +++ head/www/npm/distinfo Thu Aug 13 17:31:20 2015 (r394076) @@ -1,2 +1,2 @@ -SHA256 (npm-2.13.2.tar.xz) = a576e116dedf3d6796fe4741523e671de671f73b5b12c267de03fe58e5832343 -SIZE (npm-2.13.2.tar.xz) = 2480304 +SHA256 (npm-2.13.4.tar.xz) = c98e9ae5404ef0b7b24a65bb4a97694be523fdbe4f15f4b35620981bf972360c +SIZE (npm-2.13.4.tar.xz) = 2485796 Modified: head/www/npm/pkg-plist ============================================================================== --- head/www/npm/pkg-plist Thu Aug 13 17:31:14 2015 (r394075) +++ head/www/npm/pkg-plist Thu Aug 13 17:31:20 2015 (r394076) @@ -1229,6 +1229,28 @@ lib/node_modules/npm/node_modules/node-g lib/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/test.js lib/node_modules/npm/node_modules/node-gyp/node_modules/path-array/package.json lib/node_modules/npm/node_modules/node-gyp/node_modules/path-array/test/test.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/.npmignore +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/.travis.yml +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/LICENSE +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/Makefile +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/README.md +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/bin/semver +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/foot.js.txt +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/head.js.txt +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/package.json +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/semver.browser.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/semver.browser.js.gz +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/semver.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/semver.min.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/semver.min.js.gz +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/amd.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/big-numbers.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/clean.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/gtr.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/index.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/ltr.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/major-minor-patch.js +lib/node_modules/npm/node_modules/node-gyp/node_modules/semver/test/no-module.js lib/node_modules/npm/node_modules/node-gyp/node_modules/tar/.npmignore lib/node_modules/npm/node_modules/node-gyp/node_modules/tar/.travis.yml lib/node_modules/npm/node_modules/node-gyp/node_modules/tar/LICENCE @@ -1788,8 +1810,12 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/bl/README.md lib/node_modules/npm/node_modules/request/node_modules/bl/bl.js lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/.npmignore +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/.travis.yml +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/.zuul.yml lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/LICENSE lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/README.md +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/doc/stream.markdown +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/duplex.js lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_duplex.js lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js @@ -1806,11 +1832,22 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/component.json lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/index.js lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/package.json +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/.travis.yml +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/index.js +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/package.json +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/readme.md +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/process-nextick-args/test.js lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/.npmignore lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/LICENSE lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/README.md lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/index.js lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/package.json +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/util-deprecate/History.md +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/util-deprecate/LICENSE +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/util-deprecate/README.md +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/util-deprecate/browser.js +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/util-deprecate/node.js +lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/util-deprecate/package.json lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/package.json lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/passthrough.js lib/node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/readable.js @@ -1820,6 +1857,7 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/bl/test/basic-test.js lib/node_modules/npm/node_modules/request/node_modules/bl/test/sauce.js lib/node_modules/npm/node_modules/request/node_modules/bl/test/test.js +lib/node_modules/npm/node_modules/request/node_modules/caseless/LICENSE lib/node_modules/npm/node_modules/request/node_modules/caseless/README.md lib/node_modules/npm/node_modules/request/node_modules/caseless/index.js lib/node_modules/npm/node_modules/request/node_modules/caseless/package.json @@ -1849,24 +1887,15 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/forever-agent/package.json lib/node_modules/npm/node_modules/request/node_modules/form-data/License lib/node_modules/npm/node_modules/request/node_modules/form-data/Readme.md +lib/node_modules/npm/node_modules/request/node_modules/form-data/lib/browser.js lib/node_modules/npm/node_modules/request/node_modules/form-data/lib/form_data.js +lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/.jscsrc lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/CHANGELOG.md lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/LICENSE lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/README.md lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/lib/async.js lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/package.json lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async/support/sync-package-managers.js -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/HISTORY.md -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/LICENSE -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/README.md -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/index.js -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/node_modules/mime-db/HISTORY.md -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/node_modules/mime-db/LICENSE -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/node_modules/mime-db/README.md -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/node_modules/mime-db/db.json -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/node_modules/mime-db/index.js -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/node_modules/mime-db/package.json -lib/node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime-types/package.json lib/node_modules/npm/node_modules/request/node_modules/form-data/package.json lib/node_modules/npm/node_modules/request/node_modules/har-validator/LICENSE lib/node_modules/npm/node_modules/request/node_modules/har-validator/README.md @@ -2056,14 +2085,12 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/hawk/.npmignore lib/node_modules/npm/node_modules/request/node_modules/hawk/.travis.yml lib/node_modules/npm/node_modules/request/node_modules/hawk/LICENSE -lib/node_modules/npm/node_modules/request/node_modules/hawk/Makefile lib/node_modules/npm/node_modules/request/node_modules/hawk/README.md lib/node_modules/npm/node_modules/request/node_modules/hawk/bower.json lib/node_modules/npm/node_modules/request/node_modules/hawk/component.json lib/node_modules/npm/node_modules/request/node_modules/hawk/example/usage.js lib/node_modules/npm/node_modules/request/node_modules/hawk/images/hawk.png lib/node_modules/npm/node_modules/request/node_modules/hawk/images/logo.png -lib/node_modules/npm/node_modules/request/node_modules/hawk/index.js lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/browser.js lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/client.js lib/node_modules/npm/node_modules/request/node_modules/hawk/lib/crypto.js @@ -2121,7 +2148,6 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/hawk/test/client.js lib/node_modules/npm/node_modules/request/node_modules/hawk/test/crypto.js lib/node_modules/npm/node_modules/request/node_modules/hawk/test/index.js -lib/node_modules/npm/node_modules/request/node_modules/hawk/test/message.js lib/node_modules/npm/node_modules/request/node_modules/hawk/test/readme.js lib/node_modules/npm/node_modules/request/node_modules/hawk/test/server.js lib/node_modules/npm/node_modules/request/node_modules/hawk/test/uri.js @@ -2213,16 +2239,13 @@ lib/node_modules/npm/node_modules/reques lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/package.json lib/node_modules/npm/node_modules/request/node_modules/oauth-sign/test.js lib/node_modules/npm/node_modules/request/node_modules/qs/.eslintignore -lib/node_modules/npm/node_modules/request/node_modules/qs/.jshintignore lib/node_modules/npm/node_modules/request/node_modules/qs/.npmignore lib/node_modules/npm/node_modules/request/node_modules/qs/.travis.yml lib/node_modules/npm/node_modules/request/node_modules/qs/CHANGELOG.md lib/node_modules/npm/node_modules/request/node_modules/qs/CONTRIBUTING.md lib/node_modules/npm/node_modules/request/node_modules/qs/LICENSE -lib/node_modules/npm/node_modules/request/node_modules/qs/Makefile lib/node_modules/npm/node_modules/request/node_modules/qs/Readme.md lib/node_modules/npm/node_modules/request/node_modules/qs/bower.json -lib/node_modules/npm/node_modules/request/node_modules/qs/index.js lib/node_modules/npm/node_modules/request/node_modules/qs/lib/index.js lib/node_modules/npm/node_modules/request/node_modules/qs/lib/parse.js lib/node_modules/npm/node_modules/request/node_modules/qs/lib/stringify.js @@ -2292,36 +2315,21 @@ lib/node_modules/npm/node_modules/retry/ lib/node_modules/npm/node_modules/rimraf/LICENSE lib/node_modules/npm/node_modules/rimraf/README.md lib/node_modules/npm/node_modules/rimraf/bin.js -lib/node_modules/npm/node_modules/rimraf/node_modules/glob/LICENSE -lib/node_modules/npm/node_modules/rimraf/node_modules/glob/README.md -lib/node_modules/npm/node_modules/rimraf/node_modules/glob/common.js -lib/node_modules/npm/node_modules/rimraf/node_modules/glob/glob.js -lib/node_modules/npm/node_modules/rimraf/node_modules/glob/package.json -lib/node_modules/npm/node_modules/rimraf/node_modules/glob/sync.js lib/node_modules/npm/node_modules/rimraf/package.json lib/node_modules/npm/node_modules/rimraf/rimraf.js lib/node_modules/npm/node_modules/semver/.npmignore lib/node_modules/npm/node_modules/semver/.travis.yml lib/node_modules/npm/node_modules/semver/LICENSE -lib/node_modules/npm/node_modules/semver/Makefile lib/node_modules/npm/node_modules/semver/README.md lib/node_modules/npm/node_modules/semver/bin/semver -lib/node_modules/npm/node_modules/semver/foot.js.txt -lib/node_modules/npm/node_modules/semver/head.js.txt lib/node_modules/npm/node_modules/semver/package.json -lib/node_modules/npm/node_modules/semver/semver.browser.js -lib/node_modules/npm/node_modules/semver/semver.browser.js.gz lib/node_modules/npm/node_modules/semver/semver.js -lib/node_modules/npm/node_modules/semver/semver.min.js -lib/node_modules/npm/node_modules/semver/semver.min.js.gz -lib/node_modules/npm/node_modules/semver/test/amd.js lib/node_modules/npm/node_modules/semver/test/big-numbers.js lib/node_modules/npm/node_modules/semver/test/clean.js lib/node_modules/npm/node_modules/semver/test/gtr.js lib/node_modules/npm/node_modules/semver/test/index.js lib/node_modules/npm/node_modules/semver/test/ltr.js lib/node_modules/npm/node_modules/semver/test/major-minor-patch.js -lib/node_modules/npm/node_modules/semver/test/no-module.js lib/node_modules/npm/node_modules/sha/.npmignore lib/node_modules/npm/node_modules/sha/LICENSE lib/node_modules/npm/node_modules/sha/README.md From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C09A9B80E5; Thu, 13 Aug 2015 17:31:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 54185DD7; Thu, 13 Aug 2015 17:31:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVRXc044024; Thu, 13 Aug 2015 17:31:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVQJ7044021; Thu, 13 Aug 2015 17:31:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVQJ7044021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394077 - in head/devel/libcheck: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:27 -0000 Author: sunpoet Date: Thu Aug 13 17:31:25 2015 New Revision: 394077 URL: https://svnweb.freebsd.org/changeset/ports/394077 Log: - Update to 0.10.0 - Regenerate patch file with makepatch: Changes: http://sourceforge.net/p/check/code/HEAD/tree/trunk/NEWS Modified: head/devel/libcheck/Makefile head/devel/libcheck/distinfo head/devel/libcheck/files/patch-check.m4 Modified: head/devel/libcheck/Makefile ============================================================================== --- head/devel/libcheck/Makefile Thu Aug 13 17:31:20 2015 (r394076) +++ head/devel/libcheck/Makefile Thu Aug 13 17:31:25 2015 (r394077) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libcheck -PORTVERSION= 0.9.14 -PORTREVISION= 1 +PORTVERSION= 0.10.0 CATEGORIES= devel MASTER_SITES= SF/check/check/${PORTVERSION} DISTNAME= check-${PORTVERSION} Modified: head/devel/libcheck/distinfo ============================================================================== --- head/devel/libcheck/distinfo Thu Aug 13 17:31:20 2015 (r394076) +++ head/devel/libcheck/distinfo Thu Aug 13 17:31:25 2015 (r394077) @@ -1,2 +1,2 @@ -SHA256 (check-0.9.14.tar.gz) = c272624645b1b738cf57fd5d81a3e4d9b722b99d6133ee3f3c4007d4d279840a -SIZE (check-0.9.14.tar.gz) = 758197 +SHA256 (check-0.10.0.tar.gz) = f5f50766aa6f8fe5a2df752666ca01a950add45079aa06416b83765b1cf71052 +SIZE (check-0.10.0.tar.gz) = 769119 Modified: head/devel/libcheck/files/patch-check.m4 ============================================================================== --- head/devel/libcheck/files/patch-check.m4 Thu Aug 13 17:31:20 2015 (r394076) +++ head/devel/libcheck/files/patch-check.m4 Thu Aug 13 17:31:25 2015 (r394077) @@ -1,6 +1,6 @@ ---- check.m4.orig 2008-12-29 21:48:46.000000000 +0800 -+++ check.m4 2009-01-07 09:02:41.452952376 +0800 -@@ -21,8 +21,20 @@ +--- check.m4.orig 2015-08-02 19:31:25 UTC ++++ check.m4 +@@ -21,8 +21,20 @@ AC_DEFUN([AM_PATH_CHECK], CHECK_CFLAGS="-I$with_check/include" CHECK_LIBS="-L$with_check/lib -lcheck" else From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E44D09B8121; Thu, 13 Aug 2015 17:31:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D486DF88; Thu, 13 Aug 2015 17:31:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVaEf044258; Thu, 13 Aug 2015 17:31:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVa2n044256; Thu, 13 Aug 2015 17:31:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVa2n044256@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394079 - head/mail/py-spf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:37 -0000 Author: sunpoet Date: Thu Aug 13 17:31:35 2015 New Revision: 394079 URL: https://svnweb.freebsd.org/changeset/ports/394079 Log: - Update to 2.0.12 - Add NO_ARCH Changes: http://sourceforge.net/projects/pymilter/files/pyspf/pyspf-2.0.12/README.txt/view Modified: head/mail/py-spf/Makefile head/mail/py-spf/distinfo Modified: head/mail/py-spf/Makefile ============================================================================== --- head/mail/py-spf/Makefile Thu Aug 13 17:31:30 2015 (r394078) +++ head/mail/py-spf/Makefile Thu Aug 13 17:31:35 2015 (r394079) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= spf -PORTVERSION= 2.0.11 +PORTVERSION= 2.0.12 CATEGORIES= mail python MASTER_SITES= SF/pymilter/py${PORTNAME}/py${PORTNAME}-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +13,7 @@ COMMENT= Python implementation of the RF LICENSE= PSFL +NO_ARCH= yes USE_PYTHON= autoplist distutils USES= python shebangfix Modified: head/mail/py-spf/distinfo ============================================================================== --- head/mail/py-spf/distinfo Thu Aug 13 17:31:30 2015 (r394078) +++ head/mail/py-spf/distinfo Thu Aug 13 17:31:35 2015 (r394079) @@ -1,2 +1,2 @@ -SHA256 (pyspf-2.0.11.tar.gz) = bfd44b4c3e874e41eca904019591a164d68651c3b9353ef5476788348f18ab1b -SIZE (pyspf-2.0.11.tar.gz) = 65313 +SHA256 (pyspf-2.0.12.tar.gz) = 8aa21ba0e3aff8a4e8ad8f586c500a5d1f9c4c902c3f11bcc107465857cd41a2 +SIZE (pyspf-2.0.12.tar.gz) = 67189 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6901F9B8100; Thu, 13 Aug 2015 17:31:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F022ED6; Thu, 13 Aug 2015 17:31:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVV0D044141; Thu, 13 Aug 2015 17:31:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVVGk044139; Thu, 13 Aug 2015 17:31:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVVGk044139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394078 - head/misc/pecl-timezonedb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:32 -0000 Author: sunpoet Date: Thu Aug 13 17:31:30 2015 New Revision: 394078 URL: https://svnweb.freebsd.org/changeset/ports/394078 Log: - Update to 2015.6 Changes: https://pecl.php.net/package-changelog.php?package=timezonedb Modified: head/misc/pecl-timezonedb/Makefile head/misc/pecl-timezonedb/distinfo Modified: head/misc/pecl-timezonedb/Makefile ============================================================================== --- head/misc/pecl-timezonedb/Makefile Thu Aug 13 17:31:25 2015 (r394077) +++ head/misc/pecl-timezonedb/Makefile Thu Aug 13 17:31:30 2015 (r394078) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= timezonedb -PORTVERSION= 2015.5 +PORTVERSION= 2015.6 CATEGORIES= misc MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/misc/pecl-timezonedb/distinfo ============================================================================== --- head/misc/pecl-timezonedb/distinfo Thu Aug 13 17:31:25 2015 (r394077) +++ head/misc/pecl-timezonedb/distinfo Thu Aug 13 17:31:30 2015 (r394078) @@ -1,2 +1,2 @@ -SHA256 (PECL/timezonedb-2015.5.tgz) = a251d404057825e673f40d8106b863bcfc78cdab66cf269c48dbb8bdcebabb4f -SIZE (PECL/timezonedb-2015.5.tgz) = 439615 +SHA256 (PECL/timezonedb-2015.6.tgz) = 6afe1bc1162c3f96d38df0128376cc68639e6792d17f08a99dfb0b05736890ee +SIZE (PECL/timezonedb-2015.6.tgz) = 415826 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31B349B814D; Thu, 13 Aug 2015 17:31:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D86C10A4; Thu, 13 Aug 2015 17:31:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVfKX044375; Thu, 13 Aug 2015 17:31:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVfvL044372; Thu, 13 Aug 2015 17:31:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVfvL044372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394080 - head/devel/swig30 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:42 -0000 Author: sunpoet Date: Thu Aug 13 17:31:40 2015 New Revision: 394080 URL: https://svnweb.freebsd.org/changeset/ports/394080 Log: - Update to 3.0.7 Changes: http://swig.org/release.html Modified: head/devel/swig30/Makefile head/devel/swig30/distinfo Modified: head/devel/swig30/Makefile ============================================================================== --- head/devel/swig30/Makefile Thu Aug 13 17:31:35 2015 (r394079) +++ head/devel/swig30/Makefile Thu Aug 13 17:31:40 2015 (r394080) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= swig -PORTVERSION= 3.0.6 +PORTVERSION= 3.0.7 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} PKGNAMESUFFIX= 30 Modified: head/devel/swig30/distinfo ============================================================================== --- head/devel/swig30/distinfo Thu Aug 13 17:31:35 2015 (r394079) +++ head/devel/swig30/distinfo Thu Aug 13 17:31:40 2015 (r394080) @@ -1,2 +1,2 @@ -SHA256 (swig-3.0.6.tar.gz) = c67f63ea11956106e4cda66416d5020330dc4ce2ee45057d39a9494ce33eca05 -SIZE (swig-3.0.6.tar.gz) = 5911929 +SHA256 (swig-3.0.7.tar.gz) = 06dc8816a225667ce1eee545af3caf87e1bbaa379c32838d4cea53152514348d +SIZE (swig-3.0.7.tar.gz) = 5923046 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3ADFA9B8175; Thu, 13 Aug 2015 17:31:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BAA01153; Thu, 13 Aug 2015 17:31:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVka9044475; Thu, 13 Aug 2015 17:31:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVk4C044474; Thu, 13 Aug 2015 17:31:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVk4C044474@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394081 - head/archivers/p5-Compress-Raw-Bzip2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:46 -0000 Author: sunpoet Date: Thu Aug 13 17:31:45 2015 New Revision: 394081 URL: https://svnweb.freebsd.org/changeset/ports/394081 Log: - Remove MASTER_SITE_SUBDIR Modified: head/archivers/p5-Compress-Raw-Bzip2/Makefile Modified: head/archivers/p5-Compress-Raw-Bzip2/Makefile ============================================================================== --- head/archivers/p5-Compress-Raw-Bzip2/Makefile Thu Aug 13 17:31:40 2015 (r394080) +++ head/archivers/p5-Compress-Raw-Bzip2/Makefile Thu Aug 13 17:31:45 2015 (r394081) @@ -6,7 +6,6 @@ PORTVERSION= 2.068 PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMQS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7658B9B819D; Thu, 13 Aug 2015 17:31:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 670221247; Thu, 13 Aug 2015 17:31:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVop5044578; Thu, 13 Aug 2015 17:31:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVoB9044577; Thu, 13 Aug 2015 17:31:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVoB9044577@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394082 - head/archivers/p5-Compress-Raw-Lzma X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:50 -0000 Author: sunpoet Date: Thu Aug 13 17:31:49 2015 New Revision: 394082 URL: https://svnweb.freebsd.org/changeset/ports/394082 Log: - Remove MASTER_SITE_SUBDIR Modified: head/archivers/p5-Compress-Raw-Lzma/Makefile Modified: head/archivers/p5-Compress-Raw-Lzma/Makefile ============================================================================== --- head/archivers/p5-Compress-Raw-Lzma/Makefile Thu Aug 13 17:31:45 2015 (r394081) +++ head/archivers/p5-Compress-Raw-Lzma/Makefile Thu Aug 13 17:31:49 2015 (r394082) @@ -6,7 +6,6 @@ PORTVERSION= 2.068 PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMQS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A53D29B81C3; Thu, 13 Aug 2015 17:31:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 95E54132E; Thu, 13 Aug 2015 17:31:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVs7V044971; Thu, 13 Aug 2015 17:31:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVsHq044958; Thu, 13 Aug 2015 17:31:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVsHq044958@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394083 - head/archivers/p5-Compress-Raw-Zlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:54 -0000 Author: sunpoet Date: Thu Aug 13 17:31:53 2015 New Revision: 394083 URL: https://svnweb.freebsd.org/changeset/ports/394083 Log: - Remove MASTER_SITE_SUBDIR Modified: head/archivers/p5-Compress-Raw-Zlib/Makefile Modified: head/archivers/p5-Compress-Raw-Zlib/Makefile ============================================================================== --- head/archivers/p5-Compress-Raw-Zlib/Makefile Thu Aug 13 17:31:49 2015 (r394082) +++ head/archivers/p5-Compress-Raw-Zlib/Makefile Thu Aug 13 17:31:53 2015 (r394083) @@ -6,7 +6,6 @@ PORTVERSION= 2.068 PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMQS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:31:59 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1255F9B8299; Thu, 13 Aug 2015 17:31:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B9BEF1458; Thu, 13 Aug 2015 17:31:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHVwEZ045280; Thu, 13 Aug 2015 17:31:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHVwus045279; Thu, 13 Aug 2015 17:31:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131731.t7DHVwus045279@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:31:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394084 - head/archivers/p5-IO-Compress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:31:59 -0000 Author: sunpoet Date: Thu Aug 13 17:31:57 2015 New Revision: 394084 URL: https://svnweb.freebsd.org/changeset/ports/394084 Log: - Remove MASTER_SITE_SUBDIR Modified: head/archivers/p5-IO-Compress/Makefile Modified: head/archivers/p5-IO-Compress/Makefile ============================================================================== --- head/archivers/p5-IO-Compress/Makefile Thu Aug 13 17:31:53 2015 (r394083) +++ head/archivers/p5-IO-Compress/Makefile Thu Aug 13 17:31:57 2015 (r394084) @@ -5,7 +5,6 @@ PORTNAME= IO-Compress PORTVERSION= 2.068 CATEGORIES= archivers perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMQS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 154819B82BA; Thu, 13 Aug 2015 17:32:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 060E01656; Thu, 13 Aug 2015 17:32:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHW2Gl045387; Thu, 13 Aug 2015 17:32:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHW2sG045386; Thu, 13 Aug 2015 17:32:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHW2sG045386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394085 - head/archivers/p5-IO-Compress-Lzf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:03 -0000 Author: sunpoet Date: Thu Aug 13 17:32:02 2015 New Revision: 394085 URL: https://svnweb.freebsd.org/changeset/ports/394085 Log: - Remove MASTER_SITE_SUBDIR Modified: head/archivers/p5-IO-Compress-Lzf/Makefile Modified: head/archivers/p5-IO-Compress-Lzf/Makefile ============================================================================== --- head/archivers/p5-IO-Compress-Lzf/Makefile Thu Aug 13 17:31:57 2015 (r394084) +++ head/archivers/p5-IO-Compress-Lzf/Makefile Thu Aug 13 17:32:02 2015 (r394085) @@ -5,7 +5,6 @@ PORTNAME= IO-Compress-Lzf PORTVERSION= 2.068 CATEGORIES= archivers perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMQS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FD119B82CE; Thu, 13 Aug 2015 17:32:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 308471733; Thu, 13 Aug 2015 17:32:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHW7ig045489; Thu, 13 Aug 2015 17:32:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHW7si045488; Thu, 13 Aug 2015 17:32:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHW7si045488@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394086 - head/archivers/p5-IO-Compress-Lzma X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:07 -0000 Author: sunpoet Date: Thu Aug 13 17:32:06 2015 New Revision: 394086 URL: https://svnweb.freebsd.org/changeset/ports/394086 Log: - Remove MASTER_SITE_SUBDIR Modified: head/archivers/p5-IO-Compress-Lzma/Makefile Modified: head/archivers/p5-IO-Compress-Lzma/Makefile ============================================================================== --- head/archivers/p5-IO-Compress-Lzma/Makefile Thu Aug 13 17:32:02 2015 (r394085) +++ head/archivers/p5-IO-Compress-Lzma/Makefile Thu Aug 13 17:32:06 2015 (r394086) @@ -5,7 +5,6 @@ PORTNAME= IO-Compress-Lzma PORTVERSION= 2.068 CATEGORIES= archivers perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMQS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 959B59B82F9; Thu, 13 Aug 2015 17:32:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 863A31818; Thu, 13 Aug 2015 17:32:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWBV4045590; Thu, 13 Aug 2015 17:32:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWBkS045589; Thu, 13 Aug 2015 17:32:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWBkS045589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394087 - head/archivers/p5-IO-Compress-Lzop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:11 -0000 Author: sunpoet Date: Thu Aug 13 17:32:10 2015 New Revision: 394087 URL: https://svnweb.freebsd.org/changeset/ports/394087 Log: - Remove MASTER_SITE_SUBDIR Modified: head/archivers/p5-IO-Compress-Lzop/Makefile Modified: head/archivers/p5-IO-Compress-Lzop/Makefile ============================================================================== --- head/archivers/p5-IO-Compress-Lzop/Makefile Thu Aug 13 17:32:06 2015 (r394086) +++ head/archivers/p5-IO-Compress-Lzop/Makefile Thu Aug 13 17:32:10 2015 (r394087) @@ -5,7 +5,6 @@ PORTNAME= IO-Compress-Lzop PORTVERSION= 2.068 CATEGORIES= archivers perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMQS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D15C39B8310; Thu, 13 Aug 2015 17:32:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97BC5194B; Thu, 13 Aug 2015 17:32:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWGO6045707; Thu, 13 Aug 2015 17:32:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWGdx045705; Thu, 13 Aug 2015 17:32:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWGdx045705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394088 - head/devel/p5-Daemon-Control X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:16 -0000 Author: sunpoet Date: Thu Aug 13 17:32:15 2015 New Revision: 394088 URL: https://svnweb.freebsd.org/changeset/ports/394088 Log: - Update to 0.001008 Changes: http://search.cpan.org/dist/Daemon-Control/Changes Modified: head/devel/p5-Daemon-Control/Makefile head/devel/p5-Daemon-Control/distinfo Modified: head/devel/p5-Daemon-Control/Makefile ============================================================================== --- head/devel/p5-Daemon-Control/Makefile Thu Aug 13 17:32:10 2015 (r394087) +++ head/devel/p5-Daemon-Control/Makefile Thu Aug 13 17:32:15 2015 (r394088) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Daemon-Control -PORTVERSION= 0.001007 +PORTVERSION= 0.001008 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Daemon-Control/distinfo ============================================================================== --- head/devel/p5-Daemon-Control/distinfo Thu Aug 13 17:32:10 2015 (r394087) +++ head/devel/p5-Daemon-Control/distinfo Thu Aug 13 17:32:15 2015 (r394088) @@ -1,2 +1,2 @@ -SHA256 (Daemon-Control-0.001007.tar.gz) = 89b352840181c108dd27a42ac2c0b77a4c4ea881920093a7e13fc9dcebe38af4 -SIZE (Daemon-Control-0.001007.tar.gz) = 33831 +SHA256 (Daemon-Control-0.001008.tar.gz) = d192df90818e0dc9b2a635ec17b06a8218b7695f8089c7b51434485091212892 +SIZE (Daemon-Control-0.001008.tar.gz) = 34891 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABF039B832B; Thu, 13 Aug 2015 17:32:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C7E019D6; Thu, 13 Aug 2015 17:32:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWLtn045824; Thu, 13 Aug 2015 17:32:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWLwV045822; Thu, 13 Aug 2015 17:32:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWLwV045822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394089 - head/devel/p5-Devel-OverloadInfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:21 -0000 Author: sunpoet Date: Thu Aug 13 17:32:20 2015 New Revision: 394089 URL: https://svnweb.freebsd.org/changeset/ports/394089 Log: - Update to 0.003 - Add TEST_DEPENDS - Add NO_ARCH Changes: http://search.cpan.org/dist/Devel-OverloadInfo/Changes Modified: head/devel/p5-Devel-OverloadInfo/Makefile head/devel/p5-Devel-OverloadInfo/distinfo Modified: head/devel/p5-Devel-OverloadInfo/Makefile ============================================================================== --- head/devel/p5-Devel-OverloadInfo/Makefile Thu Aug 13 17:32:15 2015 (r394088) +++ head/devel/p5-Devel-OverloadInfo/Makefile Thu Aug 13 17:32:20 2015 (r394089) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Devel-OverloadInfo -PORTVERSION= 0.002 +PORTVERSION= 0.003 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -17,7 +17,9 @@ BUILD_DEPENDS= p5-MRO-Compat>=0:${PORTSD p5-Package-Stash>=0.14:${PORTSDIR}/devel/p5-Package-Stash \ p5-Sub-Identify>=0:${PORTSDIR}/devel/p5-Sub-Identify RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal +NO_ARCH= yes USE_PERL5= configure USES= perl5 Modified: head/devel/p5-Devel-OverloadInfo/distinfo ============================================================================== --- head/devel/p5-Devel-OverloadInfo/distinfo Thu Aug 13 17:32:15 2015 (r394088) +++ head/devel/p5-Devel-OverloadInfo/distinfo Thu Aug 13 17:32:20 2015 (r394089) @@ -1,2 +1,2 @@ -SHA256 (Devel-OverloadInfo-0.002.tar.gz) = de6383f6aff1972897993eccd7fcb73a19ebb028c148fc35b8f87a883595ff91 -SIZE (Devel-OverloadInfo-0.002.tar.gz) = 10966 +SHA256 (Devel-OverloadInfo-0.003.tar.gz) = bc79613ff8948dfc9be508c49276698bc42d6b92da4e33c8e961c42b765dfe01 +SIZE (Devel-OverloadInfo-0.003.tar.gz) = 11485 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3F7B9B834F; Thu, 13 Aug 2015 17:32:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4A0F1AB5; Thu, 13 Aug 2015 17:32:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWQK1045941; Thu, 13 Aug 2015 17:32:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWQPo045939; Thu, 13 Aug 2015 17:32:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWQPo045939@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394090 - head/devel/p5-Text-Levenshtein X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:27 -0000 Author: sunpoet Date: Thu Aug 13 17:32:25 2015 New Revision: 394090 URL: https://svnweb.freebsd.org/changeset/ports/394090 Log: - Update to 0.13 - Add NO_ARCH Changes: http://search.cpan.org/dist/Text-Levenshtein/Changes Modified: head/devel/p5-Text-Levenshtein/Makefile head/devel/p5-Text-Levenshtein/distinfo Modified: head/devel/p5-Text-Levenshtein/Makefile ============================================================================== --- head/devel/p5-Text-Levenshtein/Makefile Thu Aug 13 17:32:20 2015 (r394089) +++ head/devel/p5-Text-Levenshtein/Makefile Thu Aug 13 17:32:25 2015 (r394090) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Text-Levenshtein -PORTVERSION= 0.12 -PORTREVISION= 1 +PORTVERSION= 0.13 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,6 +13,7 @@ COMMENT= Implementation of the Levenshte LICENSE= ART10 GPLv1 LICENSE_COMB= dual +NO_ARCH= yes USE_PERL5= configure USES= perl5 Modified: head/devel/p5-Text-Levenshtein/distinfo ============================================================================== --- head/devel/p5-Text-Levenshtein/distinfo Thu Aug 13 17:32:20 2015 (r394089) +++ head/devel/p5-Text-Levenshtein/distinfo Thu Aug 13 17:32:25 2015 (r394090) @@ -1,2 +1,2 @@ -SHA256 (Text-Levenshtein-0.12.tar.gz) = abd786ca711547d5d8072e7d29ea406b5164f48c7ace7977bc29a3ed704339f0 -SIZE (Text-Levenshtein-0.12.tar.gz) = 14891 +SHA256 (Text-Levenshtein-0.13.tar.gz) = 3a7cbf0bb79fca33d92618f6d8c2ae4b5e2ee5b43729142a9b8ad9d8a678d11f +SIZE (Text-Levenshtein-0.13.tar.gz) = 15429 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 160AD9B8382; Thu, 13 Aug 2015 17:32:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 03D481BB1; Thu, 13 Aug 2015 17:32:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWUN0046041; Thu, 13 Aug 2015 17:32:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWUup046040; Thu, 13 Aug 2015 17:32:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWUup046040@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394091 - head/dns/p5-Net-DNS-TestNS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:31 -0000 Author: sunpoet Date: Thu Aug 13 17:32:30 2015 New Revision: 394091 URL: https://svnweb.freebsd.org/changeset/ports/394091 Log: - Remove MASTER_SITE_SUBDIR Modified: head/dns/p5-Net-DNS-TestNS/Makefile Modified: head/dns/p5-Net-DNS-TestNS/Makefile ============================================================================== --- head/dns/p5-Net-DNS-TestNS/Makefile Thu Aug 13 17:32:25 2015 (r394090) +++ head/dns/p5-Net-DNS-TestNS/Makefile Thu Aug 13 17:32:30 2015 (r394091) @@ -6,7 +6,6 @@ PORTVERSION= 1.10 PORTREVISION= 2 CATEGORIES= dns perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:OLAF PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A3609B8399; Thu, 13 Aug 2015 17:32:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AF241C8E; Thu, 13 Aug 2015 17:32:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWZuK046144; Thu, 13 Aug 2015 17:32:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWZgk046143; Thu, 13 Aug 2015 17:32:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWZgk046143@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394092 - head/misc/p5-Geo-Coder-Geocoder-US X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:35 -0000 Author: sunpoet Date: Thu Aug 13 17:32:34 2015 New Revision: 394092 URL: https://svnweb.freebsd.org/changeset/ports/394092 Log: - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Modified: head/misc/p5-Geo-Coder-Geocoder-US/Makefile Modified: head/misc/p5-Geo-Coder-Geocoder-US/Makefile ============================================================================== --- head/misc/p5-Geo-Coder-Geocoder-US/Makefile Thu Aug 13 17:32:30 2015 (r394091) +++ head/misc/p5-Geo-Coder-Geocoder-US/Makefile Thu Aug 13 17:32:34 2015 (r394092) @@ -5,7 +5,6 @@ PORTNAME= Geo-Coder-Geocoder-US PORTVERSION= 0.005 CATEGORIES= misc geography perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:WYANT PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org @@ -21,6 +20,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} PORTSCOUT= limit:^[0-9\.]*$$ +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 276849B83CF; Thu, 13 Aug 2015 17:32:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17DD41D5B; Thu, 13 Aug 2015 17:32:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWdJ1046261; Thu, 13 Aug 2015 17:32:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWdvi046259; Thu, 13 Aug 2015 17:32:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWdvi046259@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394093 - head/misc/p5-Geo-Coder-Google X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:40 -0000 Author: sunpoet Date: Thu Aug 13 17:32:38 2015 New Revision: 394093 URL: https://svnweb.freebsd.org/changeset/ports/394093 Log: - Update to 0.16 - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Changes: http://search.cpan.org/dist/Geo-Coder-Google/Changes Modified: head/misc/p5-Geo-Coder-Google/Makefile head/misc/p5-Geo-Coder-Google/distinfo Modified: head/misc/p5-Geo-Coder-Google/Makefile ============================================================================== --- head/misc/p5-Geo-Coder-Google/Makefile Thu Aug 13 17:32:34 2015 (r394092) +++ head/misc/p5-Geo-Coder-Google/Makefile Thu Aug 13 17:32:38 2015 (r394093) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= Geo-Coder-Google -PORTVERSION= 0.15 +PORTVERSION= 0.16 CATEGORIES= misc geography perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:ARCANEZ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org @@ -24,6 +23,7 @@ TEST_DEPENDS= p5-Test-Number-Delta>=0:${ PORTSCOUT= limit:^[0-9\.]*$$ +NO_ARCH= yes USE_PERL5= configure USES= perl5 Modified: head/misc/p5-Geo-Coder-Google/distinfo ============================================================================== --- head/misc/p5-Geo-Coder-Google/distinfo Thu Aug 13 17:32:34 2015 (r394092) +++ head/misc/p5-Geo-Coder-Google/distinfo Thu Aug 13 17:32:38 2015 (r394093) @@ -1,2 +1,2 @@ -SHA256 (Geo-Coder-Google-0.15.tar.gz) = d26323ebff1fa116af8d2cb796887db1b669ba35751b92185289ec338ab4cd50 -SIZE (Geo-Coder-Google-0.15.tar.gz) = 8364 +SHA256 (Geo-Coder-Google-0.16.tar.gz) = 535f93f3652af2c7507392531a36d8cf018ae1e983232b5184a5e883c7fff8f9 +SIZE (Geo-Coder-Google-0.16.tar.gz) = 8559 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCC499B83F2; Thu, 13 Aug 2015 17:32:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C6661E5B; Thu, 13 Aug 2015 17:32:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWiom046362; Thu, 13 Aug 2015 17:32:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWiJv046361; Thu, 13 Aug 2015 17:32:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWiJv046361@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394094 - head/misc/p5-Geo-Coder-OpenCage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:44 -0000 Author: sunpoet Date: Thu Aug 13 17:32:43 2015 New Revision: 394094 URL: https://svnweb.freebsd.org/changeset/ports/394094 Log: - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Modified: head/misc/p5-Geo-Coder-OpenCage/Makefile Modified: head/misc/p5-Geo-Coder-OpenCage/Makefile ============================================================================== --- head/misc/p5-Geo-Coder-OpenCage/Makefile Thu Aug 13 17:32:38 2015 (r394093) +++ head/misc/p5-Geo-Coder-OpenCage/Makefile Thu Aug 13 17:32:43 2015 (r394094) @@ -6,7 +6,6 @@ PORTVERSION= 0.05 PORTREVISION= 1 CATEGORIES= misc geography perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:KAORU PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org @@ -21,6 +20,7 @@ BUILD_DEPENDS= p5-JSON>=2.53:${PORTSDIR} RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0.32:${PORTSDIR}/devel/p5-Test-Exception +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DA7C59B8414; Thu, 13 Aug 2015 17:32:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CADAD1F14; Thu, 13 Aug 2015 17:32:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWmj4046464; Thu, 13 Aug 2015 17:32:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWmVK046463; Thu, 13 Aug 2015 17:32:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWmVK046463@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394095 - head/net/p5-Net-Dict X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:49 -0000 Author: sunpoet Date: Thu Aug 13 17:32:47 2015 New Revision: 394095 URL: https://svnweb.freebsd.org/changeset/ports/394095 Log: - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Modified: head/net/p5-Net-Dict/Makefile Modified: head/net/p5-Net-Dict/Makefile ============================================================================== --- head/net/p5-Net-Dict/Makefile Thu Aug 13 17:32:43 2015 (r394094) +++ head/net/p5-Net-Dict/Makefile Thu Aug 13 17:32:47 2015 (r394095) @@ -5,7 +5,6 @@ PORTNAME= Net-Dict PORTVERSION= 2.19 CATEGORIES= net perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:NEILB PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org @@ -16,6 +15,7 @@ LICENSE_COMB= dual TEST_DEPENDS= p5-Test-Differences>=0.620:${PORTSDIR}/devel/p5-Test-Differences +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF44A9B843C; Thu, 13 Aug 2015 17:32:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DFDC51FE1; Thu, 13 Aug 2015 17:32:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWqqv046567; Thu, 13 Aug 2015 17:32:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWqcA046566; Thu, 13 Aug 2015 17:32:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWqcA046566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394096 - head/security/p5-IO-Async-SSL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:53 -0000 Author: sunpoet Date: Thu Aug 13 17:32:52 2015 New Revision: 394096 URL: https://svnweb.freebsd.org/changeset/ports/394096 Log: - Remove MASTER_SITE_SUBDIR Modified: head/security/p5-IO-Async-SSL/Makefile Modified: head/security/p5-IO-Async-SSL/Makefile ============================================================================== --- head/security/p5-IO-Async-SSL/Makefile Thu Aug 13 17:32:47 2015 (r394095) +++ head/security/p5-IO-Async-SSL/Makefile Thu Aug 13 17:32:52 2015 (r394096) @@ -5,7 +5,6 @@ PORTNAME= IO-Async-SSL PORTVERSION= 0.18 CATEGORIES= security perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PEVANS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Aug 13 17:32:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B3E579B846A; Thu, 13 Aug 2015 17:32:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A47FB133; Thu, 13 Aug 2015 17:32:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHWvJb046684; Thu, 13 Aug 2015 17:32:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHWv6u046682; Thu, 13 Aug 2015 17:32:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131732.t7DHWv6u046682@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:32:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394097 - head/textproc/p5-Excel-Writer-XLSX X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:32:57 -0000 Author: sunpoet Date: Thu Aug 13 17:32:56 2015 New Revision: 394097 URL: https://svnweb.freebsd.org/changeset/ports/394097 Log: - Update to 0.85 - Add NO_ARCH Changes: http://search.cpan.org/dist/Excel-Writer-XLSX/Changes Modified: head/textproc/p5-Excel-Writer-XLSX/Makefile head/textproc/p5-Excel-Writer-XLSX/distinfo Modified: head/textproc/p5-Excel-Writer-XLSX/Makefile ============================================================================== --- head/textproc/p5-Excel-Writer-XLSX/Makefile Thu Aug 13 17:32:52 2015 (r394096) +++ head/textproc/p5-Excel-Writer-XLSX/Makefile Thu Aug 13 17:32:56 2015 (r394097) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Excel-Writer-XLSX -PORTVERSION= 0.84 +PORTVERSION= 0.85 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JMCNAMARA @@ -19,6 +19,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Date-Calc>=0:${PORTSDIR}/devel/p5-Date-Calc \ p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip +NO_ARCH= yes USE_PERL5= configure USES= perl5 Modified: head/textproc/p5-Excel-Writer-XLSX/distinfo ============================================================================== --- head/textproc/p5-Excel-Writer-XLSX/distinfo Thu Aug 13 17:32:52 2015 (r394096) +++ head/textproc/p5-Excel-Writer-XLSX/distinfo Thu Aug 13 17:32:56 2015 (r394097) @@ -1,2 +1,2 @@ -SHA256 (Excel-Writer-XLSX-0.84.tar.gz) = 943a420fb9a26d2aeeaf5f05a7e34f1405a9bf0183bef09d4b326d680280aa1c -SIZE (Excel-Writer-XLSX-0.84.tar.gz) = 1871309 +SHA256 (Excel-Writer-XLSX-0.85.tar.gz) = 196f576072d36a1cceb1248f5efda5aafd6447390adf512d1e65945b08c9be23 +SIZE (Excel-Writer-XLSX-0.85.tar.gz) = 1872237 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 462599B8484; Thu, 13 Aug 2015 17:33:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 372681FF; Thu, 13 Aug 2015 17:33:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHX2rh046809; Thu, 13 Aug 2015 17:33:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHX2su046808; Thu, 13 Aug 2015 17:33:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHX2su046808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394098 - head/www/p5-HTTP-Tiny X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:02 -0000 Author: sunpoet Date: Thu Aug 13 17:33:01 2015 New Revision: 394098 URL: https://svnweb.freebsd.org/changeset/ports/394098 Log: - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Modified: head/www/p5-HTTP-Tiny/Makefile Modified: head/www/p5-HTTP-Tiny/Makefile ============================================================================== --- head/www/p5-HTTP-Tiny/Makefile Thu Aug 13 17:32:56 2015 (r394097) +++ head/www/p5-HTTP-Tiny/Makefile Thu Aug 13 17:33:01 2015 (r394098) @@ -5,7 +5,6 @@ PORTNAME= HTTP-Tiny PORTVERSION= 0.056 CATEGORIES= www perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:DAGOLDEN PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org @@ -20,6 +19,7 @@ IO_SOCKET_IP_DESC= Use IO::Socket:IP ins PORTSCOUT= limit:^[0-9\.]*$$ +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96CFD9B8497; Thu, 13 Aug 2015 17:33:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87B9A2FC; Thu, 13 Aug 2015 17:33:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHX62A046912; Thu, 13 Aug 2015 17:33:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHX6gc046911; Thu, 13 Aug 2015 17:33:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHX6gc046911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394099 - head/www/p5-Net-Plurk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:06 -0000 Author: sunpoet Date: Thu Aug 13 17:33:05 2015 New Revision: 394099 URL: https://svnweb.freebsd.org/changeset/ports/394099 Log: - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Modified: head/www/p5-Net-Plurk/Makefile Modified: head/www/p5-Net-Plurk/Makefile ============================================================================== --- head/www/p5-Net-Plurk/Makefile Thu Aug 13 17:33:01 2015 (r394098) +++ head/www/p5-Net-Plurk/Makefile Thu Aug 13 17:33:05 2015 (r394099) @@ -6,7 +6,6 @@ PORTVERSION= 0.11 PORTREVISION= 1 CATEGORIES= www net perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:CLSUNG PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org @@ -28,6 +27,7 @@ BUILD_DEPENDS= p5-AnyEvent-HTTP>=0:${POR p5-namespace-autoclean>=0:${PORTSDIR}/devel/p5-namespace-autoclean RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B215A9B84D7; Thu, 13 Aug 2015 17:33:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C7E4660; Thu, 13 Aug 2015 17:33:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXB9r047029; Thu, 13 Aug 2015 17:33:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXBBt047027; Thu, 13 Aug 2015 17:33:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXBBt047027@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394100 - head/devel/rubygem-celluloid-supervision X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:11 -0000 Author: sunpoet Date: Thu Aug 13 17:33:10 2015 New Revision: 394100 URL: https://svnweb.freebsd.org/changeset/ports/394100 Log: - Update to 0.20.1 Changes: https://github.com/celluloid/celluloid-supervision/blob/master/CHANGES.md Modified: head/devel/rubygem-celluloid-supervision/Makefile head/devel/rubygem-celluloid-supervision/distinfo Modified: head/devel/rubygem-celluloid-supervision/Makefile ============================================================================== --- head/devel/rubygem-celluloid-supervision/Makefile Thu Aug 13 17:33:05 2015 (r394099) +++ head/devel/rubygem-celluloid-supervision/Makefile Thu Aug 13 17:33:10 2015 (r394100) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= celluloid-supervision -PORTVERSION= 0.20.0 +PORTVERSION= 0.20.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-celluloid-supervision/distinfo ============================================================================== --- head/devel/rubygem-celluloid-supervision/distinfo Thu Aug 13 17:33:05 2015 (r394099) +++ head/devel/rubygem-celluloid-supervision/distinfo Thu Aug 13 17:33:10 2015 (r394100) @@ -1,2 +1,2 @@ -SHA256 (rubygem/celluloid-supervision-0.20.0.gem) = 3ba4f4a0e71adcd8cf772d926bd2d252f27b22cad8771cf26c289e880443e2a0 -SIZE (rubygem/celluloid-supervision-0.20.0.gem) = 14336 +SHA256 (rubygem/celluloid-supervision-0.20.1.gem) = e3a55e50eeb1dc7fee7c0874c8f313158dedeafe959b14dd05a9c45e3779e829 +SIZE (rubygem/celluloid-supervision-0.20.1.gem) = 15360 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8A5F9B84FA; Thu, 13 Aug 2015 17:33:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E9E5765; Thu, 13 Aug 2015 17:33:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXG1x047148; Thu, 13 Aug 2015 17:33:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXGvJ047146; Thu, 13 Aug 2015 17:33:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXGvJ047146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394101 - head/devel/rubygem-celluloid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:16 -0000 Author: sunpoet Date: Thu Aug 13 17:33:15 2015 New Revision: 394101 URL: https://svnweb.freebsd.org/changeset/ports/394101 Log: - Update to 0.17.1.1 Changes: https://github.com/celluloid/celluloid/blob/master/CHANGES.md Modified: head/devel/rubygem-celluloid/Makefile head/devel/rubygem-celluloid/distinfo Modified: head/devel/rubygem-celluloid/Makefile ============================================================================== --- head/devel/rubygem-celluloid/Makefile Thu Aug 13 17:33:10 2015 (r394100) +++ head/devel/rubygem-celluloid/Makefile Thu Aug 13 17:33:15 2015 (r394101) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= celluloid -PORTVERSION= 0.16.0 +PORTVERSION= 0.17.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -11,7 +11,16 @@ COMMENT= Build concurrent programs out o LICENSE= MIT -RUN_DEPENDS= rubygem-timers>=4.0.0:${PORTSDIR}/devel/rubygem-timers +RUN_DEPENDS= rubygem-bundler>=0:${PORTSDIR}/sysutils/rubygem-bundler \ + rubygem-celluloid-essentials>=0:${PORTSDIR}/devel/rubygem-celluloid-essentials \ + rubygem-celluloid-extras>=0:${PORTSDIR}/devel/rubygem-celluloid-extras \ + rubygem-celluloid-fsm>=0:${PORTSDIR}/devel/rubygem-celluloid-fsm \ + rubygem-celluloid-pool>=0:${PORTSDIR}/devel/rubygem-celluloid-pool \ + rubygem-celluloid-supervision>=0:${PORTSDIR}/devel/rubygem-celluloid-supervision \ + rubygem-dotenv>=0:${PORTSDIR}/misc/rubygem-dotenv \ + rubygem-nenv>=0:${PORTSDIR}/devel/rubygem-nenv \ + rubygem-rspec-logsplit>=0.1.2:${PORTSDIR}/devel/rubygem-rspec-logsplit \ + rubygem-timers>=4.0.0:${PORTSDIR}/devel/rubygem-timers NO_ARCH= yes USE_RUBY= yes Modified: head/devel/rubygem-celluloid/distinfo ============================================================================== --- head/devel/rubygem-celluloid/distinfo Thu Aug 13 17:33:10 2015 (r394100) +++ head/devel/rubygem-celluloid/distinfo Thu Aug 13 17:33:15 2015 (r394101) @@ -1,2 +1,2 @@ -SHA256 (rubygem/celluloid-0.16.0.gem) = 63779982ab200d9a67562998f52dcaff685372919faeb3bf53b287783c989d10 -SIZE (rubygem/celluloid-0.16.0.gem) = 52736 +SHA256 (rubygem/celluloid-0.17.1.1.gem) = dbafb8f1cb67e52159d945e9b2769549e5399ab0674366f40431f8809b665918 +SIZE (rubygem/celluloid-0.17.1.1.gem) = 60928 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37D4D9B851E; Thu, 13 Aug 2015 17:33:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E8CC833; Thu, 13 Aug 2015 17:33:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXLnY047277; Thu, 13 Aug 2015 17:33:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXLwN047273; Thu, 13 Aug 2015 17:33:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXLwN047273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394102 - head/devel/rubygem-celluloid-io X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:22 -0000 Author: sunpoet Date: Thu Aug 13 17:33:20 2015 New Revision: 394102 URL: https://svnweb.freebsd.org/changeset/ports/394102 Log: - Update to 0.17.0 - Remove RG link Changes: https://github.com/celluloid/celluloid-io/blob/master/CHANGES.md Modified: head/devel/rubygem-celluloid-io/Makefile head/devel/rubygem-celluloid-io/distinfo head/devel/rubygem-celluloid-io/pkg-descr Modified: head/devel/rubygem-celluloid-io/Makefile ============================================================================== --- head/devel/rubygem-celluloid-io/Makefile Thu Aug 13 17:33:15 2015 (r394101) +++ head/devel/rubygem-celluloid-io/Makefile Thu Aug 13 17:33:20 2015 (r394102) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= celluloid-io -PORTVERSION= 0.16.2 +PORTVERSION= 0.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -11,8 +11,13 @@ COMMENT= Evented IO for Celluloid actors LICENSE= MIT -RUN_DEPENDS= rubygem-celluloid>=0.16.0:${PORTSDIR}/devel/rubygem-celluloid \ - rubygem-nio4r>=1.1.0:${PORTSDIR}/devel/rubygem-nio4r +RUN_DEPENDS= rubygem-celluloid>=0.17:${PORTSDIR}/devel/rubygem-celluloid \ + rubygem-bundler>=0:${PORTSDIR}/sysutils/rubygem-bundler \ + rubygem-dotenv>=0:${PORTSDIR}/misc/rubygem-dotenv \ + rubygem-nenv>=0:${PORTSDIR}/devel/rubygem-nenv \ + rubygem-nio4r>=1.1:${PORTSDIR}/devel/rubygem-nio4r \ + rubygem-rspec-logsplit>=0.1.2:${PORTSDIR}/devel/rubygem-rspec-logsplit \ + rubygem-timers>=4.0.0:${PORTSDIR}/devel/rubygem-timers NO_ARCH= yes USE_RUBY= yes Modified: head/devel/rubygem-celluloid-io/distinfo ============================================================================== --- head/devel/rubygem-celluloid-io/distinfo Thu Aug 13 17:33:15 2015 (r394101) +++ head/devel/rubygem-celluloid-io/distinfo Thu Aug 13 17:33:20 2015 (r394102) @@ -1,2 +1,2 @@ -SHA256 (rubygem/celluloid-io-0.16.2.gem) = dde6646f220d5de23defca047d6f9963456e156d5dedccfdd4bb28d5cc053dd0 -SIZE (rubygem/celluloid-io-0.16.2.gem) = 53248 +SHA256 (rubygem/celluloid-io-0.17.0.gem) = a0ed91bc847c4d02f2d481fa8e3c8ff5e3a2928ab4468c500e496d1e93d9ef21 +SIZE (rubygem/celluloid-io-0.17.0.gem) = 54784 Modified: head/devel/rubygem-celluloid-io/pkg-descr ============================================================================== --- head/devel/rubygem-celluloid-io/pkg-descr Thu Aug 13 17:33:15 2015 (r394101) +++ head/devel/rubygem-celluloid-io/pkg-descr Thu Aug 13 17:33:20 2015 (r394102) @@ -21,4 +21,3 @@ just to take advantage of Celluloid::IO' between evented and blocking IO even over the lifetime of a single connection. WWW: https://github.com/celluloid/celluloid-io -RG: https://rubygems.org/gems/celluloid-io From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CABBE9B8542; Thu, 13 Aug 2015 17:33:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ACE2B960; Thu, 13 Aug 2015 17:33:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXRNU047407; Thu, 13 Aug 2015 17:33:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXQnl047404; Thu, 13 Aug 2015 17:33:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXQnl047404@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394103 - head/devel/rubygem-fog-core X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:27 -0000 Author: sunpoet Date: Thu Aug 13 17:33:26 2015 New Revision: 394103 URL: https://svnweb.freebsd.org/changeset/ports/394103 Log: - Update to 1.32.1 - Remove RG link Changes: https://github.com/fog/fog-core/blob/master/changelog.md Modified: head/devel/rubygem-fog-core/Makefile head/devel/rubygem-fog-core/distinfo head/devel/rubygem-fog-core/pkg-descr Modified: head/devel/rubygem-fog-core/Makefile ============================================================================== --- head/devel/rubygem-fog-core/Makefile Thu Aug 13 17:33:20 2015 (r394102) +++ head/devel/rubygem-fog-core/Makefile Thu Aug 13 17:33:26 2015 (r394103) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fog-core -PORTVERSION= 1.32.0 +PORTVERSION= 1.32.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-fog-core/distinfo ============================================================================== --- head/devel/rubygem-fog-core/distinfo Thu Aug 13 17:33:20 2015 (r394102) +++ head/devel/rubygem-fog-core/distinfo Thu Aug 13 17:33:26 2015 (r394103) @@ -1,2 +1,2 @@ -SHA256 (rubygem/fog-core-1.32.0.gem) = fdb0e194d01342cc030b25dfd7609e1be6ae02c8215d5b55b7101950e42dfa4e -SIZE (rubygem/fog-core-1.32.0.gem) = 46592 +SHA256 (rubygem/fog-core-1.32.1.gem) = 75a0eec81ada33c19247dc308411d8affd8d1070e7be2d61ed5028f8e81bd55e +SIZE (rubygem/fog-core-1.32.1.gem) = 46592 Modified: head/devel/rubygem-fog-core/pkg-descr ============================================================================== --- head/devel/rubygem-fog-core/pkg-descr Thu Aug 13 17:33:20 2015 (r394102) +++ head/devel/rubygem-fog-core/pkg-descr Thu Aug 13 17:33:26 2015 (r394103) @@ -2,4 +2,3 @@ rubygem-fog-core (Fog::Core) provides sh and services. WWW: https://github.com/fog/fog-core -RG: https://rubygems.org/gems/fog-core From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7ECF39B8565; Thu, 13 Aug 2015 17:33:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A80FA33; Thu, 13 Aug 2015 17:33:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXWDO047553; Thu, 13 Aug 2015 17:33:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXW2S047550; Thu, 13 Aug 2015 17:33:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXW2S047550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394104 - in head/devel/rubygem-listen2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:33 -0000 Author: sunpoet Date: Thu Aug 13 17:33:31 2015 New Revision: 394104 URL: https://svnweb.freebsd.org/changeset/ports/394104 Log: - Fix gemspec for rubygem-celluloid 0.17.1.1 update - Bump PORTREVISION for package change Added: head/devel/rubygem-listen2/files/ head/devel/rubygem-listen2/files/patch-gemspec (contents, props changed) Modified: head/devel/rubygem-listen2/Makefile head/devel/rubygem-listen2/pkg-descr Modified: head/devel/rubygem-listen2/Makefile ============================================================================== --- head/devel/rubygem-listen2/Makefile Thu Aug 13 17:33:26 2015 (r394103) +++ head/devel/rubygem-listen2/Makefile Thu Aug 13 17:33:31 2015 (r394104) @@ -3,6 +3,7 @@ PORTNAME= listen PORTVERSION= 2.10.1 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 Added: head/devel/rubygem-listen2/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-listen2/files/patch-gemspec Thu Aug 13 17:33:31 2015 (r394104) @@ -0,0 +1,11 @@ +--- listen.gemspec.orig 2015-08-11 17:19:41 UTC ++++ listen.gemspec +@@ -23,7 +23,7 @@ Gem::Specification.new do |s| + s.specification_version = 4 + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then +- s.add_runtime_dependency(%q, ["~> 0.16.0"]) ++ s.add_runtime_dependency(%q, [">= 0.16.0"]) + s.add_runtime_dependency(%q, [">= 0.9.3"]) + s.add_runtime_dependency(%q, [">= 0.9"]) + s.add_development_dependency(%q, [">= 1.3.5"]) Modified: head/devel/rubygem-listen2/pkg-descr ============================================================================== --- head/devel/rubygem-listen2/pkg-descr Thu Aug 13 17:33:26 2015 (r394103) +++ head/devel/rubygem-listen2/pkg-descr Thu Aug 13 17:33:31 2015 (r394104) @@ -12,4 +12,3 @@ Features: - Tested on all Ruby environments via travis-ci. WWW: https://github.com/guard/listen -RG: https://rubygems.org/gems/listen From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A5C79B8586; Thu, 13 Aug 2015 17:33:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2ADD8AF5; Thu, 13 Aug 2015 17:33:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXb8Q047685; Thu, 13 Aug 2015 17:33:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXbgL047683; Thu, 13 Aug 2015 17:33:37 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXbgL047683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394105 - in head/devel/rubygem-sidekiq: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:38 -0000 Author: sunpoet Date: Thu Aug 13 17:33:37 2015 New Revision: 394105 URL: https://svnweb.freebsd.org/changeset/ports/394105 Log: - Fix gemspec for rubygem-celluloid 0.17.1.1 update - Bump PORTREVISION for package change Added: head/devel/rubygem-sidekiq/files/ head/devel/rubygem-sidekiq/files/patch-gemspec (contents, props changed) Modified: head/devel/rubygem-sidekiq/Makefile Modified: head/devel/rubygem-sidekiq/Makefile ============================================================================== --- head/devel/rubygem-sidekiq/Makefile Thu Aug 13 17:33:31 2015 (r394104) +++ head/devel/rubygem-sidekiq/Makefile Thu Aug 13 17:33:37 2015 (r394105) @@ -3,6 +3,7 @@ PORTNAME= sidekiq PORTVERSION= 3.4.2 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG Added: head/devel/rubygem-sidekiq/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-sidekiq/files/patch-gemspec Thu Aug 13 17:33:37 2015 (r394105) @@ -0,0 +1,11 @@ +--- sidekiq.gemspec.orig 2015-08-11 17:12:59 UTC ++++ sidekiq.gemspec +@@ -26,7 +26,7 @@ Gem::Specification.new do |s| + s.add_runtime_dependency(%q, [">= 3.2.1", "~> 3.2"]) + s.add_runtime_dependency(%q, [">= 1.5.2", "~> 1.5"]) + s.add_runtime_dependency(%q, [">= 2.2.0", "~> 2.2"]) +- s.add_runtime_dependency(%q, ["~> 0.16.0"]) ++ s.add_runtime_dependency(%q, [">= 0.16.0"]) + s.add_runtime_dependency(%q, ["~> 1.0"]) + s.add_development_dependency(%q, [">= 1.4.6", "~> 1.4"]) + s.add_development_dependency(%q, [">= 5.7.0", "~> 5.7"]) From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A8859B85AB; Thu, 13 Aug 2015 17:33:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34910BE6; Thu, 13 Aug 2015 17:33:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXg84047816; Thu, 13 Aug 2015 17:33:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXgoR047813; Thu, 13 Aug 2015 17:33:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXgoR047813@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394106 - head/sysutils/rubygem-guard-rspec X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:43 -0000 Author: sunpoet Date: Thu Aug 13 17:33:41 2015 New Revision: 394106 URL: https://svnweb.freebsd.org/changeset/ports/394106 Log: - Update to 4.6.4 - Remove RG link Changes: https://github.com/guard/guard-rspec/releases Modified: head/sysutils/rubygem-guard-rspec/Makefile head/sysutils/rubygem-guard-rspec/distinfo head/sysutils/rubygem-guard-rspec/pkg-descr Modified: head/sysutils/rubygem-guard-rspec/Makefile ============================================================================== --- head/sysutils/rubygem-guard-rspec/Makefile Thu Aug 13 17:33:37 2015 (r394105) +++ head/sysutils/rubygem-guard-rspec/Makefile Thu Aug 13 17:33:41 2015 (r394106) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= guard-rspec -PORTVERSION= 4.6.3 +PORTVERSION= 4.6.4 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-guard-rspec/distinfo ============================================================================== --- head/sysutils/rubygem-guard-rspec/distinfo Thu Aug 13 17:33:37 2015 (r394105) +++ head/sysutils/rubygem-guard-rspec/distinfo Thu Aug 13 17:33:41 2015 (r394106) @@ -1,2 +1,2 @@ -SHA256 (rubygem/guard-rspec-4.6.3.gem) = 6a5af1df4ebe034a750b9af8c6a162417c1d1c1f9f99fd0c58b846822148d019 -SIZE (rubygem/guard-rspec-4.6.3.gem) = 29184 +SHA256 (rubygem/guard-rspec-4.6.4.gem) = 6b36d25a3933ef0e0017e5f02a71aadd2b1b84414969bfff501711744b7d7d88 +SIZE (rubygem/guard-rspec-4.6.4.gem) = 29184 Modified: head/sysutils/rubygem-guard-rspec/pkg-descr ============================================================================== --- head/sysutils/rubygem-guard-rspec/pkg-descr Thu Aug 13 17:33:37 2015 (r394105) +++ head/sysutils/rubygem-guard-rspec/pkg-descr Thu Aug 13 17:33:41 2015 (r394106) @@ -1,4 +1,3 @@ Guard::RSpec automatically run your specs (much like autotest). WWW: https://github.com/guard/guard-rspec -RG: https://rubygems.org/gems/guard-rspec From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22EF09B85CF; Thu, 13 Aug 2015 17:33:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0EADCCB7; Thu, 13 Aug 2015 17:33:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXltw047933; Thu, 13 Aug 2015 17:33:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXlau047931; Thu, 13 Aug 2015 17:33:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXlau047931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394107 - head/databases/p5-DBI X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:48 -0000 Author: sunpoet Date: Thu Aug 13 17:33:46 2015 New Revision: 394107 URL: https://svnweb.freebsd.org/changeset/ports/394107 Log: - Update to 1.634 Changes: http://search.cpan.org/dist/DBI/Changes Modified: head/databases/p5-DBI/Makefile head/databases/p5-DBI/distinfo Modified: head/databases/p5-DBI/Makefile ============================================================================== --- head/databases/p5-DBI/Makefile Thu Aug 13 17:33:41 2015 (r394106) +++ head/databases/p5-DBI/Makefile Thu Aug 13 17:33:46 2015 (r394107) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= DBI -PORTVERSION= 1.633 -PORTREVISION= 1 +PORTVERSION= 1.634 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/databases/p5-DBI/distinfo ============================================================================== --- head/databases/p5-DBI/distinfo Thu Aug 13 17:33:41 2015 (r394106) +++ head/databases/p5-DBI/distinfo Thu Aug 13 17:33:46 2015 (r394107) @@ -1,2 +1,2 @@ -SHA256 (DBI-1.633.tar.gz) = e2c1badcc9f672bf31630b36ecd230f7eb04dbf055e6daf7edeed0e9ebcf5ee7 -SIZE (DBI-1.633.tar.gz) = 592307 +SHA256 (DBI-1.634.tar.gz) = 250712f385864818abfba409420d16d9ee61f1cc73ac85159d054a5ee86d1450 +SIZE (DBI-1.634.tar.gz) = 595020 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A63CA9B85F1; Thu, 13 Aug 2015 17:33:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96A96D6C; Thu, 13 Aug 2015 17:33:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXqg4048053; Thu, 13 Aug 2015 17:33:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXqZK048051; Thu, 13 Aug 2015 17:33:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXqZK048051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394108 - head/databases/p5-DBIx-Class-Candy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:52 -0000 Author: sunpoet Date: Thu Aug 13 17:33:51 2015 New Revision: 394108 URL: https://svnweb.freebsd.org/changeset/ports/394108 Log: - Update to 0.005000 Changes: http://search.cpan.org/dist/DBIx-Class-Candy/Changes Modified: head/databases/p5-DBIx-Class-Candy/Makefile head/databases/p5-DBIx-Class-Candy/distinfo Modified: head/databases/p5-DBIx-Class-Candy/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-Candy/Makefile Thu Aug 13 17:33:46 2015 (r394107) +++ head/databases/p5-DBIx-Class-Candy/Makefile Thu Aug 13 17:33:51 2015 (r394108) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DBIx-Class-Candy -PORTVERSION= 0.004001 +PORTVERSION= 0.005000 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/databases/p5-DBIx-Class-Candy/distinfo ============================================================================== --- head/databases/p5-DBIx-Class-Candy/distinfo Thu Aug 13 17:33:46 2015 (r394107) +++ head/databases/p5-DBIx-Class-Candy/distinfo Thu Aug 13 17:33:51 2015 (r394108) @@ -1,2 +1,2 @@ -SHA256 (DBIx-Class-Candy-0.004001.tar.gz) = ebcefa5a16ca2111c7d2c59d3f0dc97464f4b66583ae18a81b25ea531580a605 -SIZE (DBIx-Class-Candy-0.004001.tar.gz) = 23036 +SHA256 (DBIx-Class-Candy-0.005000.tar.gz) = 7c3b36cbf09c2a578900dbb48094397c19b0d02f60106f4e4f8c27c83c42ccbe +SIZE (DBIx-Class-Candy-0.005000.tar.gz) = 20949 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:33:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AE579B8615; Thu, 13 Aug 2015 17:33:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B74BE3A; Thu, 13 Aug 2015 17:33:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHXvs9048170; Thu, 13 Aug 2015 17:33:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHXuf5048168; Thu, 13 Aug 2015 17:33:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131733.t7DHXuf5048168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:33:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394109 - head/databases/p5-DBIx-XHTML_Table X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:33:57 -0000 Author: sunpoet Date: Thu Aug 13 17:33:56 2015 New Revision: 394109 URL: https://svnweb.freebsd.org/changeset/ports/394109 Log: - Update to 1.46 - Add LICENSE - Add NO_ARCH Changes: http://search.cpan.org/dist/DBIx-XHTML_Table/Changes Modified: head/databases/p5-DBIx-XHTML_Table/Makefile head/databases/p5-DBIx-XHTML_Table/distinfo Modified: head/databases/p5-DBIx-XHTML_Table/Makefile ============================================================================== --- head/databases/p5-DBIx-XHTML_Table/Makefile Thu Aug 13 17:33:51 2015 (r394108) +++ head/databases/p5-DBIx-XHTML_Table/Makefile Thu Aug 13 17:33:56 2015 (r394109) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DBIx-XHTML_Table -PORTVERSION= 1.45 +PORTVERSION= 1.46 CATEGORIES= databases www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,9 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Create XHTML tables from SQL queries +LICENSE= ART20 + BUILD_DEPENDS= p5-DBI>=0:${PORTSDIR}/databases/p5-DBI RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/databases/p5-DBIx-XHTML_Table/distinfo ============================================================================== --- head/databases/p5-DBIx-XHTML_Table/distinfo Thu Aug 13 17:33:51 2015 (r394108) +++ head/databases/p5-DBIx-XHTML_Table/distinfo Thu Aug 13 17:33:56 2015 (r394109) @@ -1,2 +1,2 @@ -SHA256 (DBIx-XHTML_Table-1.45.tar.gz) = 6ce072921949ad4cf68fc2e93c4a29b0b5c7e9001224fcc5b9b61f4c1ae126f2 -SIZE (DBIx-XHTML_Table-1.45.tar.gz) = 26533 +SHA256 (DBIx-XHTML_Table-1.46.tar.gz) = b489d405e31c0f26353a2eea4771270cbc976053f1db348bc3acf0310973a229 +SIZE (DBIx-XHTML_Table-1.46.tar.gz) = 26886 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79DA89B8635; Thu, 13 Aug 2015 17:34:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51E8AF0A; Thu, 13 Aug 2015 17:34:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHY2uV048307; Thu, 13 Aug 2015 17:34:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHY1gr048304; Thu, 13 Aug 2015 17:34:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHY1gr048304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394110 - head/databases/p5-Mango X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:02 -0000 Author: sunpoet Date: Thu Aug 13 17:34:00 2015 New Revision: 394110 URL: https://svnweb.freebsd.org/changeset/ports/394110 Log: - Update to 1.20 - Add NO_ARCH Changes: http://search.cpan.org/dist/Mango/Changes Modified: head/databases/p5-Mango/Makefile head/databases/p5-Mango/distinfo head/databases/p5-Mango/pkg-plist Modified: head/databases/p5-Mango/Makefile ============================================================================== --- head/databases/p5-Mango/Makefile Thu Aug 13 17:33:56 2015 (r394109) +++ head/databases/p5-Mango/Makefile Thu Aug 13 17:34:00 2015 (r394110) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mango -PORTVERSION= 1.18 +PORTVERSION= 1.20 CATEGORIES= databases perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ODC Modified: head/databases/p5-Mango/distinfo ============================================================================== --- head/databases/p5-Mango/distinfo Thu Aug 13 17:33:56 2015 (r394109) +++ head/databases/p5-Mango/distinfo Thu Aug 13 17:34:00 2015 (r394110) @@ -1,2 +1,2 @@ -SHA256 (Mango-1.18.tar.gz) = 7d9f13f3845ec0e951c98a9f02b466f5599e2bdc8c5149a00d9058a5dac0e696 -SIZE (Mango-1.18.tar.gz) = 45776 +SHA256 (Mango-1.20.tar.gz) = c7c6c934397f2bdb5b05bf63a7cb76043ba91822a9d5832d98fc6c2719f96e6e +SIZE (Mango-1.20.tar.gz) = 46595 Modified: head/databases/p5-Mango/pkg-plist ============================================================================== --- head/databases/p5-Mango/pkg-plist Thu Aug 13 17:33:56 2015 (r394109) +++ head/databases/p5-Mango/pkg-plist Thu Aug 13 17:34:00 2015 (r394110) @@ -1,4 +1,6 @@ %%SITE_PERL%%/Mango.pm +%%SITE_PERL%%/Mango/Auth.pm +%%SITE_PERL%%/Mango/Auth/SCRAM.pm %%SITE_PERL%%/Mango/BSON.pm %%SITE_PERL%%/Mango/BSON/Binary.pm %%SITE_PERL%%/Mango/BSON/Code.pm @@ -16,6 +18,8 @@ %%SITE_PERL%%/Mango/GridFS/Writer.pm %%SITE_PERL%%/Mango/Protocol.pm %%PERL5_MAN3%%/Mango.3.gz +%%PERL5_MAN3%%/Mango::Auth.3.gz +%%PERL5_MAN3%%/Mango::Auth::SCRAM.3.gz %%PERL5_MAN3%%/Mango::BSON.3.gz %%PERL5_MAN3%%/Mango::BSON::Binary.3.gz %%PERL5_MAN3%%/Mango::BSON::Code.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39F839B865D; Thu, 13 Aug 2015 17:34:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AB36FE3; Thu, 13 Aug 2015 17:34:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHY72b048424; Thu, 13 Aug 2015 17:34:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHY6RF048422; Thu, 13 Aug 2015 17:34:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHY6RF048422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394111 - head/databases/p5-MongoDB X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:07 -0000 Author: sunpoet Date: Thu Aug 13 17:34:06 2015 New Revision: 394111 URL: https://svnweb.freebsd.org/changeset/ports/394111 Log: - Update to 0.708.4.0 Changes: http://search.cpan.org/dist/MongoDB/Changes Modified: head/databases/p5-MongoDB/Makefile head/databases/p5-MongoDB/distinfo Modified: head/databases/p5-MongoDB/Makefile ============================================================================== --- head/databases/p5-MongoDB/Makefile Thu Aug 13 17:34:00 2015 (r394110) +++ head/databases/p5-MongoDB/Makefile Thu Aug 13 17:34:06 2015 (r394111) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MongoDB -PORTVERSION= 0.708.3.0 +PORTVERSION= 0.708.4.0 DISTVERSIONPREFIX= v CATEGORIES= databases perl5 MASTER_SITES= CPAN Modified: head/databases/p5-MongoDB/distinfo ============================================================================== --- head/databases/p5-MongoDB/distinfo Thu Aug 13 17:34:00 2015 (r394110) +++ head/databases/p5-MongoDB/distinfo Thu Aug 13 17:34:06 2015 (r394111) @@ -1,2 +1,2 @@ -SHA256 (MongoDB-v0.708.3.0.tar.gz) = 03c4b885f327de7a8c0d9f449306d849d43e7fea4a6331da8a970710934378f0 -SIZE (MongoDB-v0.708.3.0.tar.gz) = 1627550 +SHA256 (MongoDB-v0.708.4.0.tar.gz) = a85ea78fd27e5f9675160c7465d1b727a08fa2c357b7ef46825c1b29135dff9c +SIZE (MongoDB-v0.708.4.0.tar.gz) = 1628510 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E9699B866F; Thu, 13 Aug 2015 17:34:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F05610C1; Thu, 13 Aug 2015 17:34:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYCGA048555; Thu, 13 Aug 2015 17:34:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYBYK048551; Thu, 13 Aug 2015 17:34:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYBYK048551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394112 - head/devel/p5-Data-Object X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:12 -0000 Author: sunpoet Date: Thu Aug 13 17:34:11 2015 New Revision: 394112 URL: https://svnweb.freebsd.org/changeset/ports/394112 Log: - Update to 0.37 Changes: http://search.cpan.org/dist/Data-Object/CHANGES Modified: head/devel/p5-Data-Object/Makefile head/devel/p5-Data-Object/distinfo head/devel/p5-Data-Object/pkg-plist Modified: head/devel/p5-Data-Object/Makefile ============================================================================== --- head/devel/p5-Data-Object/Makefile Thu Aug 13 17:34:06 2015 (r394111) +++ head/devel/p5-Data-Object/Makefile Thu Aug 13 17:34:11 2015 (r394112) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Data-Object -PORTVERSION= 0.24 +PORTVERSION= 0.37 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Data-Object/distinfo ============================================================================== --- head/devel/p5-Data-Object/distinfo Thu Aug 13 17:34:06 2015 (r394111) +++ head/devel/p5-Data-Object/distinfo Thu Aug 13 17:34:11 2015 (r394112) @@ -1,2 +1,2 @@ -SHA256 (Data-Object-0.24.tar.gz) = 2dc5ebc28fac5ecd46d3b0fa4e304d6bfc4a430b91dd6162cf0a231d14fe3a53 -SIZE (Data-Object-0.24.tar.gz) = 59617 +SHA256 (Data-Object-0.37.tar.gz) = 7555d0aa7b355471fe432b1f941f3e45654bf6870b35edf75b69dd4a05b66dd4 +SIZE (Data-Object-0.37.tar.gz) = 67498 Modified: head/devel/p5-Data-Object/pkg-plist ============================================================================== --- head/devel/p5-Data-Object/pkg-plist Thu Aug 13 17:34:06 2015 (r394111) +++ head/devel/p5-Data-Object/pkg-plist Thu Aug 13 17:34:11 2015 (r394112) @@ -1,6 +1,7 @@ %%SITE_PERL%%/Data/Object.pm %%SITE_PERL%%/Data/Object/Array.pm %%SITE_PERL%%/Data/Object/Class.pm +%%SITE_PERL%%/Data/Object/Class/Syntax.pm %%SITE_PERL%%/Data/Object/Code.pm %%SITE_PERL%%/Data/Object/Exception.pm %%SITE_PERL%%/Data/Object/Float.pm @@ -31,6 +32,7 @@ %%SITE_PERL%%/Data/Object/Role/Regexp.pm %%SITE_PERL%%/Data/Object/Role/Scalar.pm %%SITE_PERL%%/Data/Object/Role/String.pm +%%SITE_PERL%%/Data/Object/Role/Syntax.pm %%SITE_PERL%%/Data/Object/Role/Type.pm %%SITE_PERL%%/Data/Object/Role/Undef.pm %%SITE_PERL%%/Data/Object/Role/Universal.pm @@ -42,13 +44,17 @@ %%SITE_PERL%%/Data/Object/Universal.pm %%PERL5_MAN3%%/Data::Object.3.gz %%PERL5_MAN3%%/Data::Object::Array.3.gz +%%PERL5_MAN3%%/Data::Object::Class.3.gz +%%PERL5_MAN3%%/Data::Object::Class::Syntax.3.gz %%PERL5_MAN3%%/Data::Object::Code.3.gz +%%PERL5_MAN3%%/Data::Object::Exception.3.gz %%PERL5_MAN3%%/Data::Object::Float.3.gz %%PERL5_MAN3%%/Data::Object::Hash.3.gz %%PERL5_MAN3%%/Data::Object::Integer.3.gz %%PERL5_MAN3%%/Data::Object::Number.3.gz %%PERL5_MAN3%%/Data::Object::Regexp.3.gz %%PERL5_MAN3%%/Data::Object::Regexp::Result.3.gz +%%PERL5_MAN3%%/Data::Object::Role.3.gz %%PERL5_MAN3%%/Data::Object::Role::Array.3.gz %%PERL5_MAN3%%/Data::Object::Role::Code.3.gz %%PERL5_MAN3%%/Data::Object::Role::Float.3.gz @@ -58,6 +64,7 @@ %%PERL5_MAN3%%/Data::Object::Role::Regexp.3.gz %%PERL5_MAN3%%/Data::Object::Role::Scalar.3.gz %%PERL5_MAN3%%/Data::Object::Role::String.3.gz +%%PERL5_MAN3%%/Data::Object::Role::Syntax.3.gz %%PERL5_MAN3%%/Data::Object::Role::Undef.3.gz %%PERL5_MAN3%%/Data::Object::Role::Universal.3.gz %%PERL5_MAN3%%/Data::Object::Scalar.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FF189B869E; Thu, 13 Aug 2015 17:34:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 10E941197; Thu, 13 Aug 2015 17:34:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYHlb048687; Thu, 13 Aug 2015 17:34:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYHeG048684; Thu, 13 Aug 2015 17:34:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYHeG048684@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394113 - head/devel/p5-Data-UUID X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:18 -0000 Author: sunpoet Date: Thu Aug 13 17:34:16 2015 New Revision: 394113 URL: https://svnweb.freebsd.org/changeset/ports/394113 Log: - Update to 1.221 - Add LICENSE - Strip shared library - Sort PLIST Changes: http://search.cpan.org/dist/Data-UUID/Changes Modified: head/devel/p5-Data-UUID/Makefile head/devel/p5-Data-UUID/distinfo head/devel/p5-Data-UUID/pkg-plist Modified: head/devel/p5-Data-UUID/Makefile ============================================================================== --- head/devel/p5-Data-UUID/Makefile Thu Aug 13 17:34:11 2015 (r394112) +++ head/devel/p5-Data-UUID/Makefile Thu Aug 13 17:34:16 2015 (r394113) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Data-UUID -PORTVERSION= 1.220 +PORTVERSION= 1.221 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,8 +10,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate Globally/Universally Unique Identifiers (GUIDs/UUIDs) +LICENSE= BSD3CLAUSE + USES= perl5 USE_PERL5= configure CONFIGURE_ARGS= Modified: head/devel/p5-Data-UUID/distinfo ============================================================================== --- head/devel/p5-Data-UUID/distinfo Thu Aug 13 17:34:11 2015 (r394112) +++ head/devel/p5-Data-UUID/distinfo Thu Aug 13 17:34:16 2015 (r394113) @@ -1,2 +1,2 @@ -SHA256 (Data-UUID-1.220.tar.gz) = 99533b06e4348d704e3d2252d7d41aa652680a1bd5af04e1dc8ce7e84e74f960 -SIZE (Data-UUID-1.220.tar.gz) = 16905 +SHA256 (Data-UUID-1.221.tar.gz) = 3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667 +SIZE (Data-UUID-1.221.tar.gz) = 17041 Modified: head/devel/p5-Data-UUID/pkg-plist ============================================================================== --- head/devel/p5-Data-UUID/pkg-plist Thu Aug 13 17:34:11 2015 (r394112) +++ head/devel/p5-Data-UUID/pkg-plist Thu Aug 13 17:34:16 2015 (r394113) @@ -1,3 +1,3 @@ -%%PERL5_MAN3%%/Data::UUID.3.gz %%SITE_ARCH%%/Data/UUID.pm %%SITE_ARCH%%/auto/Data/UUID/UUID.so +%%PERL5_MAN3%%/Data::UUID.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B70E9B86C2; Thu, 13 Aug 2015 17:34:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6100412B8; Thu, 13 Aug 2015 17:34:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYNu1048806; Thu, 13 Aug 2015 17:34:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYMAr048803; Thu, 13 Aug 2015 17:34:22 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYMAr048803@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394114 - head/devel/p5-Inline-CPP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:23 -0000 Author: sunpoet Date: Thu Aug 13 17:34:22 2015 New Revision: 394114 URL: https://svnweb.freebsd.org/changeset/ports/394114 Log: - Update to 0.73 - Add NO_ARCH Changes: http://search.cpan.org/dist/Inline-CPP/Changes Modified: head/devel/p5-Inline-CPP/Makefile head/devel/p5-Inline-CPP/distinfo Modified: head/devel/p5-Inline-CPP/Makefile ============================================================================== --- head/devel/p5-Inline-CPP/Makefile Thu Aug 13 17:34:16 2015 (r394113) +++ head/devel/p5-Inline-CPP/Makefile Thu Aug 13 17:34:22 2015 (r394114) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Inline-CPP -PORTVERSION= 0.71 +PORTVERSION= 0.73 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -18,6 +18,7 @@ BUILD_DEPENDS= p5-Inline>=0.78:${PORTSDI RUN_DEPENDS:= ${BUILD_DEPENDS} BUILD_DEPENDS+= p5-ExtUtils-CppGuess>=0.07:${PORTSDIR}/devel/p5-ExtUtils-CppGuess +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Inline-CPP/distinfo ============================================================================== --- head/devel/p5-Inline-CPP/distinfo Thu Aug 13 17:34:16 2015 (r394113) +++ head/devel/p5-Inline-CPP/distinfo Thu Aug 13 17:34:22 2015 (r394114) @@ -1,2 +1,2 @@ -SHA256 (Inline-CPP-0.71.tar.gz) = 05f59bf7b4e11b65ec21a7b74e7c021a8a2f68ee700450d973244b176fa5a31a -SIZE (Inline-CPP-0.71.tar.gz) = 63465 +SHA256 (Inline-CPP-0.73.tar.gz) = 42be80f4de265ea2641f9db32439d59ad02f116900899cd30631dd3b8366f7fe +SIZE (Inline-CPP-0.73.tar.gz) = 63259 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E6A29B86E5; Thu, 13 Aug 2015 17:34:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EEEDE13C7; Thu, 13 Aug 2015 17:34:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYSUj048924; Thu, 13 Aug 2015 17:34:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYSvj048922; Thu, 13 Aug 2015 17:34:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYSvj048922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394115 - head/devel/p5-Log-Dispatch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:29 -0000 Author: sunpoet Date: Thu Aug 13 17:34:27 2015 New Revision: 394115 URL: https://svnweb.freebsd.org/changeset/ports/394115 Log: - Update to 2.48 Changes: http://search.cpan.org/dist/Log-Dispatch/Changes Modified: head/devel/p5-Log-Dispatch/Makefile head/devel/p5-Log-Dispatch/distinfo Modified: head/devel/p5-Log-Dispatch/Makefile ============================================================================== --- head/devel/p5-Log-Dispatch/Makefile Thu Aug 13 17:34:22 2015 (r394114) +++ head/devel/p5-Log-Dispatch/Makefile Thu Aug 13 17:34:27 2015 (r394115) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Log-Dispatch -PORTVERSION= 2.45 +PORTVERSION= 2.48 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,7 +14,7 @@ LICENSE= ART20 BUILD_DEPENDS= p5-Devel-GlobalDestruction>=0:${PORTSDIR}/devel/p5-Devel-GlobalDestruction \ p5-Dist-CheckConflicts>=0.02:${PORTSDIR}/devel/p5-Dist-CheckConflicts \ p5-Module-Runtime>=0:${PORTSDIR}/devel/p5-Module-Runtime \ - p5-Params-Validate>=0.15:${PORTSDIR}/devel/p5-Params-Validate + p5-Params-Validate>=1.03:${PORTSDIR}/devel/p5-Params-Validate RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= APACHELOG MIMELITE MAILSEND MAILSENDER MAILSENDMAIL Modified: head/devel/p5-Log-Dispatch/distinfo ============================================================================== --- head/devel/p5-Log-Dispatch/distinfo Thu Aug 13 17:34:22 2015 (r394114) +++ head/devel/p5-Log-Dispatch/distinfo Thu Aug 13 17:34:27 2015 (r394115) @@ -1,2 +1,2 @@ -SHA256 (Log-Dispatch-2.45.tar.gz) = 707fc17d1f072150b87d400e5994b46ae2083a7120a9d21d37680ade08084bd6 -SIZE (Log-Dispatch-2.45.tar.gz) = 52537 +SHA256 (Log-Dispatch-2.48.tar.gz) = fb803b3e2441f650a2058a01d5b97b930c487df574a9743b974a145facd913a6 +SIZE (Log-Dispatch-2.48.tar.gz) = 54346 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF61A9B8707; Thu, 13 Aug 2015 17:34:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5EC0415DE; Thu, 13 Aug 2015 17:34:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYYoG049057; Thu, 13 Aug 2015 17:34:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYXP3049054; Thu, 13 Aug 2015 17:34:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYXP3049054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394116 - head/dns/p5-Net-DNS-SEC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:34 -0000 Author: sunpoet Date: Thu Aug 13 17:34:32 2015 New Revision: 394116 URL: https://svnweb.freebsd.org/changeset/ports/394116 Log: - Update to 1.01 Changes: http://search.cpan.org/dist/Net-DNS-SEC/Changes Modified: head/dns/p5-Net-DNS-SEC/Makefile head/dns/p5-Net-DNS-SEC/distinfo head/dns/p5-Net-DNS-SEC/pkg-plist Modified: head/dns/p5-Net-DNS-SEC/Makefile ============================================================================== --- head/dns/p5-Net-DNS-SEC/Makefile Thu Aug 13 17:34:27 2015 (r394115) +++ head/dns/p5-Net-DNS-SEC/Makefile Thu Aug 13 17:34:32 2015 (r394116) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= Net-DNS-SEC -PORTVERSION= 0.22 -PORTREVISION= 1 +PORTVERSION= 1.01 CATEGORIES= dns perl5 MASTER_SITES= CPAN \ http://www.ripe.net/ripencc/pub-services/np/DISI/SRC/ @@ -14,13 +13,11 @@ COMMENT= DNSSEC extensions to Net::DNS LICENSE= MIT BUILD_DEPENDS= p5-Crypt-OpenSSL-Bignum>=0.04:${PORTSDIR}/security/p5-Crypt-OpenSSL-Bignum \ - p5-Crypt-OpenSSL-DSA>=0.1:${PORTSDIR}/security/p5-Crypt-OpenSSL-DSA \ + p5-Crypt-OpenSSL-DSA>=0.14:${PORTSDIR}/security/p5-Crypt-OpenSSL-DSA \ p5-Crypt-OpenSSL-EC>=1.01:${PORTSDIR}/security/p5-Crypt-OpenSSL-EC \ p5-Crypt-OpenSSL-ECDSA>=0.6:${PORTSDIR}/security/p5-Crypt-OpenSSL-ECDSA \ - p5-Crypt-OpenSSL-RSA>=0.19:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \ + p5-Crypt-OpenSSL-RSA>=0.27:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \ p5-Crypt-OpenSSL-Random>=0.06:${PORTSDIR}/security/p5-Crypt-OpenSSL-Random \ - p5-Digest-BubbleBabble>=0.01:${PORTSDIR}/security/p5-Digest-BubbleBabble \ - p5-MIME-Base32>=0:${PORTSDIR}/converters/p5-MIME-Base32 \ p5-Net-DNS>=1.01:${PORTSDIR}/dns/p5-Net-DNS RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -28,8 +25,4 @@ NO_ARCH= yes USES= perl5 USE_PERL5= configure -post-patch: - @${RM} -fr ${WRKSRC}/RR/ - @${REINPLACE_CMD} -e '/RR\//d' ${WRKSRC}/MANIFEST ${WRKSRC}/Makefile.PL - .include Modified: head/dns/p5-Net-DNS-SEC/distinfo ============================================================================== --- head/dns/p5-Net-DNS-SEC/distinfo Thu Aug 13 17:34:27 2015 (r394115) +++ head/dns/p5-Net-DNS-SEC/distinfo Thu Aug 13 17:34:32 2015 (r394116) @@ -1,2 +1,2 @@ -SHA256 (Net-DNS-SEC-0.22.tar.gz) = 381830970220ee6175e19dfaa1d5589fd65137f6c54aa2542b61a826e1cb72ad -SIZE (Net-DNS-SEC-0.22.tar.gz) = 76844 +SHA256 (Net-DNS-SEC-1.01.tar.gz) = 25b8e940c578acd0baa1c73d8a32d0e4e347347385e954416bae669d667fdfa0 +SIZE (Net-DNS-SEC-1.01.tar.gz) = 35744 Modified: head/dns/p5-Net-DNS-SEC/pkg-plist ============================================================================== --- head/dns/p5-Net-DNS-SEC/pkg-plist Thu Aug 13 17:34:27 2015 (r394115) +++ head/dns/p5-Net-DNS-SEC/pkg-plist Thu Aug 13 17:34:32 2015 (r394116) @@ -1,4 +1,3 @@ -%%SITE_PERL%%/Net/DNS/Keyset.pm %%SITE_PERL%%/Net/DNS/SEC.pm %%SITE_PERL%%/Net/DNS/SEC/DSA.pm %%SITE_PERL%%/Net/DNS/SEC/ECCGOST.pm @@ -6,7 +5,6 @@ %%SITE_PERL%%/Net/DNS/SEC/Keyset.pm %%SITE_PERL%%/Net/DNS/SEC/Private.pm %%SITE_PERL%%/Net/DNS/SEC/RSA.pm -%%PERL5_MAN3%%/Net::DNS::KeysetStub.3.gz %%PERL5_MAN3%%/Net::DNS::SEC.3.gz %%PERL5_MAN3%%/Net::DNS::SEC::DSA.3.gz %%PERL5_MAN3%%/Net::DNS::SEC::ECCGOST.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B806B9B8728; Thu, 13 Aug 2015 17:34:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AFB0166B; Thu, 13 Aug 2015 17:34:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYdeh049190; Thu, 13 Aug 2015 17:34:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYc5I049187; Thu, 13 Aug 2015 17:34:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYc5I049187@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394117 - head/finance/p5-Finance-QuoteHist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:39 -0000 Author: sunpoet Date: Thu Aug 13 17:34:37 2015 New Revision: 394117 URL: https://svnweb.freebsd.org/changeset/ports/394117 Log: - Update to 1.24 - Add NO_ARCH Changes: http://search.cpan.org/dist/Finance-QuoteHist/Changes Modified: head/finance/p5-Finance-QuoteHist/Makefile head/finance/p5-Finance-QuoteHist/distinfo head/finance/p5-Finance-QuoteHist/pkg-plist Modified: head/finance/p5-Finance-QuoteHist/Makefile ============================================================================== --- head/finance/p5-Finance-QuoteHist/Makefile Thu Aug 13 17:34:32 2015 (r394116) +++ head/finance/p5-Finance-QuoteHist/Makefile Thu Aug 13 17:34:37 2015 (r394117) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Finance-QuoteHist -PORTVERSION= 1.23 +PORTVERSION= 1.24 CATEGORIES= finance perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -21,6 +21,7 @@ BUILD_DEPENDS= p5-Date-Manip>=0:${PORTSD p5-libwww>=0:${PORTSDIR}/www/p5-libwww RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/finance/p5-Finance-QuoteHist/distinfo ============================================================================== --- head/finance/p5-Finance-QuoteHist/distinfo Thu Aug 13 17:34:32 2015 (r394116) +++ head/finance/p5-Finance-QuoteHist/distinfo Thu Aug 13 17:34:37 2015 (r394117) @@ -1,2 +1,2 @@ -SHA256 (Finance-QuoteHist-1.23.tar.gz) = 8b6bedb7f4b3f4db5fd1ad0a51f29ddec7d2ccb89f47915f99079877827bc149 -SIZE (Finance-QuoteHist-1.23.tar.gz) = 51589 +SHA256 (Finance-QuoteHist-1.24.tar.gz) = 66d3216649b7c5e2405935426d641be5e7b6bf8a8d7a0b05db00bc2a2fa01305 +SIZE (Finance-QuoteHist-1.24.tar.gz) = 50996 Modified: head/finance/p5-Finance-QuoteHist/pkg-plist ============================================================================== --- head/finance/p5-Finance-QuoteHist/pkg-plist Thu Aug 13 17:34:32 2015 (r394116) +++ head/finance/p5-Finance-QuoteHist/pkg-plist Thu Aug 13 17:34:37 2015 (r394117) @@ -4,11 +4,9 @@ %%SITE_PERL%%/Finance/QuoteHist/Google.pm %%SITE_PERL%%/Finance/QuoteHist/StockNod.pm %%SITE_PERL%%/Finance/QuoteHist/Yahoo.pm -%%SITE_PERL%%/Finance/QuoteHist/Yahoo/Australia.pm %%PERL5_MAN3%%/Finance::QuoteHist.3.gz %%PERL5_MAN3%%/Finance::QuoteHist::DailyFinance.3.gz %%PERL5_MAN3%%/Finance::QuoteHist::Generic.3.gz %%PERL5_MAN3%%/Finance::QuoteHist::Google.3.gz %%PERL5_MAN3%%/Finance::QuoteHist::StockNod.3.gz %%PERL5_MAN3%%/Finance::QuoteHist::Yahoo.3.gz -%%PERL5_MAN3%%/Finance::QuoteHist::Yahoo::Australia.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25E349B874D; Thu, 13 Aug 2015 17:34:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0B3E1746; Thu, 13 Aug 2015 17:34:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYilf049322; Thu, 13 Aug 2015 17:34:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYhPa049317; Thu, 13 Aug 2015 17:34:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYhPa049317@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394118 - head/mail/p5-Email-MessageID X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:45 -0000 Author: sunpoet Date: Thu Aug 13 17:34:43 2015 New Revision: 394118 URL: https://svnweb.freebsd.org/changeset/ports/394118 Log: - Update to 1.406 - Add LICENSE - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Email-MessageID/Changes Modified: head/mail/p5-Email-MessageID/Makefile head/mail/p5-Email-MessageID/distinfo head/mail/p5-Email-MessageID/pkg-plist Modified: head/mail/p5-Email-MessageID/Makefile ============================================================================== --- head/mail/p5-Email-MessageID/Makefile Thu Aug 13 17:34:37 2015 (r394117) +++ head/mail/p5-Email-MessageID/Makefile Thu Aug 13 17:34:43 2015 (r394118) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Email-MessageID -PORTVERSION= 1.405 -PORTREVISION= 1 +PORTVERSION= 1.406 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,9 +10,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Generate world unique message-ids -RUN_DEPENDS= p5-Email-Address>=1.80:${PORTSDIR}/mail/p5-Email-Address -BUILD_DEPENDS:= ${RUN_DEPENDS} +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +BUILD_DEPENDS= p5-Email-Address>=1.80:${PORTSDIR}/mail/p5-Email-Address +RUN_DEPENDS:= ${BUILD_DEPENDS} + +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/mail/p5-Email-MessageID/distinfo ============================================================================== --- head/mail/p5-Email-MessageID/distinfo Thu Aug 13 17:34:37 2015 (r394117) +++ head/mail/p5-Email-MessageID/distinfo Thu Aug 13 17:34:43 2015 (r394118) @@ -1,2 +1,2 @@ -SHA256 (Email-MessageID-1.405.tar.gz) = 03e7ade51b3ccbadf642bdea0cfb6af007fc871cb5f1319c4ba907f195354124 -SIZE (Email-MessageID-1.405.tar.gz) = 14841 +SHA256 (Email-MessageID-1.406.tar.gz) = ec425ddbf395e0e1ac7c6f95b4933c55c57ac9f1e7514003c7c904ec6cd342b8 +SIZE (Email-MessageID-1.406.tar.gz) = 16247 Modified: head/mail/p5-Email-MessageID/pkg-plist ============================================================================== --- head/mail/p5-Email-MessageID/pkg-plist Thu Aug 13 17:34:37 2015 (r394117) +++ head/mail/p5-Email-MessageID/pkg-plist Thu Aug 13 17:34:43 2015 (r394118) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/Email::MessageID.3.gz %%SITE_PERL%%/Email/MessageID.pm +%%PERL5_MAN3%%/Email::MessageID.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 786A29B8763; Thu, 13 Aug 2015 17:34:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 692931813; Thu, 13 Aug 2015 17:34:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYnEM049439; Thu, 13 Aug 2015 17:34:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYmNf049436; Thu, 13 Aug 2015 17:34:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYmNf049436@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394119 - head/net/p5-XML-Compile-SOAP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:49 -0000 Author: sunpoet Date: Thu Aug 13 17:34:48 2015 New Revision: 394119 URL: https://svnweb.freebsd.org/changeset/ports/394119 Log: - Update to 3.10 Changes: http://search.cpan.org/dist/XML-Compile-SOAP/ChangeLog Modified: head/net/p5-XML-Compile-SOAP/Makefile head/net/p5-XML-Compile-SOAP/distinfo Modified: head/net/p5-XML-Compile-SOAP/Makefile ============================================================================== --- head/net/p5-XML-Compile-SOAP/Makefile Thu Aug 13 17:34:43 2015 (r394118) +++ head/net/p5-XML-Compile-SOAP/Makefile Thu Aug 13 17:34:48 2015 (r394119) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= XML-Compile-SOAP -PORTVERSION= 3.09 +PORTVERSION= 3.10 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-XML-Compile-SOAP/distinfo ============================================================================== --- head/net/p5-XML-Compile-SOAP/distinfo Thu Aug 13 17:34:43 2015 (r394118) +++ head/net/p5-XML-Compile-SOAP/distinfo Thu Aug 13 17:34:48 2015 (r394119) @@ -1,2 +1,2 @@ -SHA256 (XML-Compile-SOAP-3.09.tar.gz) = cb27009b41069f6dc0fe799108c7adc4dc5673f4903238ed9c9d1338a1a23dee -SIZE (XML-Compile-SOAP-3.09.tar.gz) = 100306 +SHA256 (XML-Compile-SOAP-3.10.tar.gz) = 0da813c651ae259b9c1c1a9da3cc2e33f146f96932d7d2cd6620d78d7282b870 +SIZE (XML-Compile-SOAP-3.10.tar.gz) = 100466 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:34:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D01C9B8796; Thu, 13 Aug 2015 17:34:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2D9481907; Thu, 13 Aug 2015 17:34:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYsaX049557; Thu, 13 Aug 2015 17:34:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYrls049554; Thu, 13 Aug 2015 17:34:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYrls049554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394120 - head/textproc/p5-HTML-FormatExternal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:34:54 -0000 Author: sunpoet Date: Thu Aug 13 17:34:53 2015 New Revision: 394120 URL: https://svnweb.freebsd.org/changeset/ports/394120 Log: - Update to 25 Changes: http://search.cpan.org/dist/HTML-FormatExternal/Changes Modified: head/textproc/p5-HTML-FormatExternal/Makefile head/textproc/p5-HTML-FormatExternal/distinfo Modified: head/textproc/p5-HTML-FormatExternal/Makefile ============================================================================== --- head/textproc/p5-HTML-FormatExternal/Makefile Thu Aug 13 17:34:48 2015 (r394119) +++ head/textproc/p5-HTML-FormatExternal/Makefile Thu Aug 13 17:34:53 2015 (r394120) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= HTML-FormatExternal -PORTVERSION= 24 +PORTVERSION= 25 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/textproc/p5-HTML-FormatExternal/distinfo ============================================================================== --- head/textproc/p5-HTML-FormatExternal/distinfo Thu Aug 13 17:34:48 2015 (r394119) +++ head/textproc/p5-HTML-FormatExternal/distinfo Thu Aug 13 17:34:53 2015 (r394120) @@ -1,2 +1,2 @@ -SHA256 (HTML-FormatExternal-24.tar.gz) = bbcca757eb35d8f61ff689d5be0c51a0abfe4bde0eb3edd45a9d71527949b8c5 -SIZE (HTML-FormatExternal-24.tar.gz) = 56264 +SHA256 (HTML-FormatExternal-25.tar.gz) = db8d8b1a2f01d25a331d92b56dd3567abb75ad9ba87e66360fe6771c30e1afa5 +SIZE (HTML-FormatExternal-25.tar.gz) = 57220 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1147D9B87B8; Thu, 13 Aug 2015 17:35:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C290819F0; Thu, 13 Aug 2015 17:34:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHYxrY049695; Thu, 13 Aug 2015 17:34:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHYwba049692; Thu, 13 Aug 2015 17:34:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131734.t7DHYwba049692@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:34:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394121 - head/www/p5-Catalyst-Plugin-Email X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:00 -0000 Author: sunpoet Date: Thu Aug 13 17:34:58 2015 New Revision: 394121 URL: https://svnweb.freebsd.org/changeset/ports/394121 Log: - Update to 0.09 - Add LICENSE - Sort *_DEPENDS - Add NO_ARCH - Sort PLIST Changes: http://search.cpan.org/dist/Catalyst-Plugin-Email/Changes Modified: head/www/p5-Catalyst-Plugin-Email/Makefile head/www/p5-Catalyst-Plugin-Email/distinfo head/www/p5-Catalyst-Plugin-Email/pkg-plist Modified: head/www/p5-Catalyst-Plugin-Email/Makefile ============================================================================== --- head/www/p5-Catalyst-Plugin-Email/Makefile Thu Aug 13 17:34:53 2015 (r394120) +++ head/www/p5-Catalyst-Plugin-Email/Makefile Thu Aug 13 17:34:58 2015 (r394121) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Catalyst-Plugin-Email -PORTVERSION= 0.08 -PORTREVISION= 2 +PORTVERSION= 0.09 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,11 +10,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Send emails with Catalyst +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Catalyst-Runtime>=5.7000:${PORTSDIR}/www/p5-Catalyst-Runtime \ - p5-Email-Send>=0:${PORTSDIR}/mail/p5-Email-Send \ - p5-Email-MIME>=0:${PORTSDIR}/mail/p5-Email-MIME + p5-Email-MIME>=0:${PORTSDIR}/mail/p5-Email-MIME \ + p5-Email-Send>=0:${PORTSDIR}/mail/p5-Email-Send RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/www/p5-Catalyst-Plugin-Email/distinfo ============================================================================== --- head/www/p5-Catalyst-Plugin-Email/distinfo Thu Aug 13 17:34:53 2015 (r394120) +++ head/www/p5-Catalyst-Plugin-Email/distinfo Thu Aug 13 17:34:58 2015 (r394121) @@ -1,2 +1,2 @@ -SHA256 (Catalyst-Plugin-Email-0.08.tar.gz) = ca284b556904b011baad4eda741727eb52bed9b2680ccd48777d93c28efd1035 -SIZE (Catalyst-Plugin-Email-0.08.tar.gz) = 3320 +SHA256 (Catalyst-Plugin-Email-0.09.tar.gz) = e99b5da1f26fd26e0b828b6d445197e00353a0a56ac4b039824dbcedad8b5837 +SIZE (Catalyst-Plugin-Email-0.09.tar.gz) = 4787 Modified: head/www/p5-Catalyst-Plugin-Email/pkg-plist ============================================================================== --- head/www/p5-Catalyst-Plugin-Email/pkg-plist Thu Aug 13 17:34:53 2015 (r394120) +++ head/www/p5-Catalyst-Plugin-Email/pkg-plist Thu Aug 13 17:34:58 2015 (r394121) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/Catalyst::Plugin::Email.3.gz %%SITE_PERL%%/Catalyst/Plugin/Email.pm +%%PERL5_MAN3%%/Catalyst::Plugin::Email.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:05 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B60D9B87DA; Thu, 13 Aug 2015 17:35:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0351D1ACA; Thu, 13 Aug 2015 17:35:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZ4bM049841; Thu, 13 Aug 2015 17:35:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZ49t049838; Thu, 13 Aug 2015 17:35:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZ49t049838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394122 - head/www/p5-Flickr-API X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:05 -0000 Author: sunpoet Date: Thu Aug 13 17:35:03 2015 New Revision: 394122 URL: https://svnweb.freebsd.org/changeset/ports/394122 Log: - Update to 1.17 Changes: http://search.cpan.org/dist/Flickr-API/Changes Modified: head/www/p5-Flickr-API/Makefile head/www/p5-Flickr-API/distinfo head/www/p5-Flickr-API/pkg-plist Modified: head/www/p5-Flickr-API/Makefile ============================================================================== --- head/www/p5-Flickr-API/Makefile Thu Aug 13 17:34:58 2015 (r394121) +++ head/www/p5-Flickr-API/Makefile Thu Aug 13 17:35:03 2015 (r394122) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Flickr-API -PORTVERSION= 1.16 +PORTVERSION= 1.17 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Flickr-API/distinfo ============================================================================== --- head/www/p5-Flickr-API/distinfo Thu Aug 13 17:34:58 2015 (r394121) +++ head/www/p5-Flickr-API/distinfo Thu Aug 13 17:35:03 2015 (r394122) @@ -1,2 +1,2 @@ -SHA256 (Flickr-API-1.16.tar.gz) = 62656ce11f6912954d2f7b97f98363f5a36d7c5c56025aa91e2effcd8bd4da40 -SIZE (Flickr-API-1.16.tar.gz) = 25924 +SHA256 (Flickr-API-1.17.tar.gz) = 7e38bc83b351c64b63ab73d8f7801629a94a4c97d81bb1a5af002b2dbad852eb +SIZE (Flickr-API-1.17.tar.gz) = 27568 Modified: head/www/p5-Flickr-API/pkg-plist ============================================================================== --- head/www/p5-Flickr-API/pkg-plist Thu Aug 13 17:34:58 2015 (r394121) +++ head/www/p5-Flickr-API/pkg-plist Thu Aug 13 17:35:03 2015 (r394122) @@ -1,9 +1,11 @@ bin/flickr_dump_stored_config.pl bin/flickr_make_stored_config.pl %%SITE_PERL%%/Flickr/API.pm +%%SITE_PERL%%/Flickr/API/Reflection.pm %%SITE_PERL%%/Flickr/API/Request.pm %%SITE_PERL%%/Flickr/API/Response.pm %%PERL5_MAN3%%/Flickr::API.3.gz +%%PERL5_MAN3%%/Flickr::API::Reflection.3.gz %%PERL5_MAN3%%/Flickr::API::Request.3.gz %%PERL5_MAN3%%/Flickr::API::Response.3.gz man/man1/flickr_dump_stored_config.pl.1.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D693C9B87FB; Thu, 13 Aug 2015 17:35:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C709A1BBC; Thu, 13 Aug 2015 17:35:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZ9Ij049959; Thu, 13 Aug 2015 17:35:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZ903049956; Thu, 13 Aug 2015 17:35:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZ903049956@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394123 - head/www/p5-Feersum X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:09 -0000 Author: sunpoet Date: Thu Aug 13 17:35:08 2015 New Revision: 394123 URL: https://svnweb.freebsd.org/changeset/ports/394123 Log: - Update to 1.403 Changes: http://search.cpan.org/dist/Feersum/Changes Modified: head/www/p5-Feersum/Makefile head/www/p5-Feersum/distinfo Modified: head/www/p5-Feersum/Makefile ============================================================================== --- head/www/p5-Feersum/Makefile Thu Aug 13 17:35:03 2015 (r394122) +++ head/www/p5-Feersum/Makefile Thu Aug 13 17:35:08 2015 (r394123) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Feersum -PORTVERSION= 1.402 +PORTVERSION= 1.403 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:AUDREYT Modified: head/www/p5-Feersum/distinfo ============================================================================== --- head/www/p5-Feersum/distinfo Thu Aug 13 17:35:03 2015 (r394122) +++ head/www/p5-Feersum/distinfo Thu Aug 13 17:35:08 2015 (r394123) @@ -1,2 +1,2 @@ -SHA256 (Feersum-1.402.tar.gz) = 63134250c7ef6c23dee1d46d3259eb45eaee570ce26d8e005df0213056475ced -SIZE (Feersum-1.402.tar.gz) = 107089 +SHA256 (Feersum-1.403.tar.gz) = 89d5c68aa608659efcad7faf14e385620f334a6f19b2cf0a9804e4c10ba49a80 +SIZE (Feersum-1.403.tar.gz) = 107006 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D2B29B8823; Thu, 13 Aug 2015 17:35:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3ACEC1CC1; Thu, 13 Aug 2015 17:35:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZECZ050090; Thu, 13 Aug 2015 17:35:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZEKP050087; Thu, 13 Aug 2015 17:35:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZEKP050087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394124 - head/www/p5-HTTP-Request-Params X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:15 -0000 Author: sunpoet Date: Thu Aug 13 17:35:13 2015 New Revision: 394124 URL: https://svnweb.freebsd.org/changeset/ports/394124 Log: - Update to 1.02 - Add LICENSE - Fix *_DEPENDS - Add NO_ARCH - Remove DOCS option - Sort PLIST Changes: http://search.cpan.org/dist/HTTP-Request-Params/Changes Modified: head/www/p5-HTTP-Request-Params/Makefile head/www/p5-HTTP-Request-Params/distinfo head/www/p5-HTTP-Request-Params/pkg-plist Modified: head/www/p5-HTTP-Request-Params/Makefile ============================================================================== --- head/www/p5-HTTP-Request-Params/Makefile Thu Aug 13 17:35:08 2015 (r394123) +++ head/www/p5-HTTP-Request-Params/Makefile Thu Aug 13 17:35:13 2015 (r394124) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= HTTP-Request-Params -PORTVERSION= 1.01 -PORTREVISION= 3 +PORTVERSION= 1.02 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,21 +10,24 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Retrieve GET/POST Parameters from HTTP Requests -BUILD_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ - p5-Email-MIME>=0:${PORTSDIR}/mail/p5-Email-MIME \ - p5-libwww>=0:${PORTSDIR}/www/p5-libwww +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Class-Accessor>=0.19:${PORTSDIR}/devel/p5-Class-Accessor \ + p5-Email-MIME-ContentType>=1:${PORTSDIR}/mail/p5-Email-MIME-ContentType \ + p5-Email-MIME>=1.420:${PORTSDIR}/mail/p5-Email-MIME \ + p5-HTTP-Message>=1.40:${PORTSDIR}/www/p5-HTTP-Message RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure -OPTIONS_DEFINE= DOCS - -PORTDOCS= Changes README +.include -post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." +.if ${PERL_LEVEL} >= 502200 +BUILD_DEPENDS+= p5-CGI>=3:${PORTSDIR}/www/p5-CGI +RUN_DEPENDS+= p5-CGI>=3:${PORTSDIR}/www/p5-CGI +.endif -.include +.include Modified: head/www/p5-HTTP-Request-Params/distinfo ============================================================================== --- head/www/p5-HTTP-Request-Params/distinfo Thu Aug 13 17:35:08 2015 (r394123) +++ head/www/p5-HTTP-Request-Params/distinfo Thu Aug 13 17:35:13 2015 (r394124) @@ -1,2 +1,2 @@ -SHA256 (HTTP-Request-Params-1.01.tar.gz) = 0ca6d66e0f87bccac54f06147af4aa93f4f65f683b3191320f0b846a7449bc09 -SIZE (HTTP-Request-Params-1.01.tar.gz) = 3427 +SHA256 (HTTP-Request-Params-1.02.tar.gz) = 9c12880ae20bda79366a89cab05eca53d728d94e5e99e988763effc013e8ee8c +SIZE (HTTP-Request-Params-1.02.tar.gz) = 4061 Modified: head/www/p5-HTTP-Request-Params/pkg-plist ============================================================================== --- head/www/p5-HTTP-Request-Params/pkg-plist Thu Aug 13 17:35:08 2015 (r394123) +++ head/www/p5-HTTP-Request-Params/pkg-plist Thu Aug 13 17:35:13 2015 (r394124) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/HTTP::Request::Params.3.gz %%SITE_PERL%%/HTTP/Request/Params.pm +%%PERL5_MAN3%%/HTTP::Request::Params.3.gz From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B568A9B8857; Thu, 13 Aug 2015 17:35:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A577C1D98; Thu, 13 Aug 2015 17:35:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZKSA050250; Thu, 13 Aug 2015 17:35:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZJAM050246; Thu, 13 Aug 2015 17:35:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZJAM050246@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394125 - in head/x11-toolkits/p5-Prima: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:20 -0000 Author: sunpoet Date: Thu Aug 13 17:35:18 2015 New Revision: 394125 URL: https://svnweb.freebsd.org/changeset/ports/394125 Log: - Update to 1.44 Changes: http://search.cpan.org/dist/Prima/Changes Added: head/x11-toolkits/p5-Prima/files/patch-img-codec_tiff.c - copied unchanged from r394056, head/x11-toolkits/p5-Prima/files/patch-codec_tiff.c Deleted: head/x11-toolkits/p5-Prima/files/patch-codec_tiff.c Modified: head/x11-toolkits/p5-Prima/Makefile head/x11-toolkits/p5-Prima/distinfo head/x11-toolkits/p5-Prima/files/patch-Makefile.PL Modified: head/x11-toolkits/p5-Prima/Makefile ============================================================================== --- head/x11-toolkits/p5-Prima/Makefile Thu Aug 13 17:35:13 2015 (r394124) +++ head/x11-toolkits/p5-Prima/Makefile Thu Aug 13 17:35:18 2015 (r394125) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Prima -PORTVERSION= 1.43 +PORTVERSION= 1.44 CATEGORIES= x11-toolkits graphics perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/x11-toolkits/p5-Prima/distinfo ============================================================================== --- head/x11-toolkits/p5-Prima/distinfo Thu Aug 13 17:35:13 2015 (r394124) +++ head/x11-toolkits/p5-Prima/distinfo Thu Aug 13 17:35:18 2015 (r394125) @@ -1,2 +1,2 @@ -SHA256 (Prima-1.43.tar.gz) = 36eb1d2f43885c084cb39bab9bdb3d7cba4c11dbeb2f48b8888bea39c6f24069 -SIZE (Prima-1.43.tar.gz) = 1380695 +SHA256 (Prima-1.44.tar.gz) = e5d22acc9f2ecc2edbc32f32bdd9be920249994c3e35b7837563bcde20e635ac +SIZE (Prima-1.44.tar.gz) = 1378239 Modified: head/x11-toolkits/p5-Prima/files/patch-Makefile.PL ============================================================================== --- head/x11-toolkits/p5-Prima/files/patch-Makefile.PL Thu Aug 13 17:35:13 2015 (r394124) +++ head/x11-toolkits/p5-Prima/files/patch-Makefile.PL Thu Aug 13 17:35:18 2015 (r394125) @@ -1,6 +1,6 @@ ---- Makefile.PL.orig 2015-04-10 19:17:48 UTC +--- Makefile.PL.orig 2015-08-05 07:18:10 UTC +++ Makefile.PL -@@ -1269,13 +1269,13 @@ EOF +@@ -1270,13 +1270,13 @@ EOF $cmd_options{WITH_ICONV} = 0 unless $cmd_options{WITH_XFT}; # iconv is used for xft only if ( $cmd_options{WITH_ICONV} && have_header( "iconv.h")) { printlog "Checking for presence of libiconv... "; @@ -20,14 +20,3 @@ } else { $DEFINES{HAVE_ICONV_H} = undef; $cmd_options{WITH_ICONV} = 0; -@@ -2062,8 +2062,8 @@ sub install - my $t = $self->SUPER::install(@_); - my $n = $t =~ s[ - (pure_\w+_install.*?) # 1 -- (INST_ARCHLIB\)\s+)\$\(DEST(\w+)\)(.*?) # 2,3,4 -- (INST_BIN\)\s+)\$\(DEST(\w+)\)(.*?) # 5,6,7 -+ (INST_ARCHLIB\)"?\s+"?)\$\(DEST(\w+)\)(.*?) # 2,3,4 -+ (INST_BIN\)"?\s+"?)\$\(DEST(\w+)\)(.*?) # 5,6,7 - (.*?) # 8 - \n\n - ][ Copied: head/x11-toolkits/p5-Prima/files/patch-img-codec_tiff.c (from r394056, head/x11-toolkits/p5-Prima/files/patch-codec_tiff.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/p5-Prima/files/patch-img-codec_tiff.c Thu Aug 13 17:35:18 2015 (r394125, copy of r394056, head/x11-toolkits/p5-Prima/files/patch-codec_tiff.c) @@ -0,0 +1,11 @@ +--- img/codec_tiff.c.orig 2008-10-29 12:15:32.000000000 +0100 ++++ img/codec_tiff.c 2010-08-26 21:32:37.000000000 +0200 +@@ -164,7 +164,7 @@ + static ImgCodecInfo codec_info = { + "TIFF Bitmap", + "www.libtiff.org", +- TIFF_VERSION, TIFFLIB_VERSION, /* version */ ++ TIFF_VERSION_CLASSIC, TIFFLIB_VERSION, /* version */ + tiffext, /* extension */ + "Tagged Image File Format", /* file type */ + "TIFF", /* short type */ From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B9459B887C; Thu, 13 Aug 2015 17:35:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C41B1E87; Thu, 13 Aug 2015 17:35:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZPnf050367; Thu, 13 Aug 2015 17:35:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZOmk050365; Thu, 13 Aug 2015 17:35:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZOmk050365@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394126 - head/databases/rubygem-arel6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:25 -0000 Author: sunpoet Date: Thu Aug 13 17:35:24 2015 New Revision: 394126 URL: https://svnweb.freebsd.org/changeset/ports/394126 Log: - Update to 6.0.3 Changes: https://github.com/rails/arel/blob/master/History.txt Modified: head/databases/rubygem-arel6/Makefile head/databases/rubygem-arel6/distinfo Modified: head/databases/rubygem-arel6/Makefile ============================================================================== --- head/databases/rubygem-arel6/Makefile Thu Aug 13 17:35:18 2015 (r394125) +++ head/databases/rubygem-arel6/Makefile Thu Aug 13 17:35:24 2015 (r394126) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= arel -PORTVERSION= 6.0.2 +PORTVERSION= 6.0.3 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 6 Modified: head/databases/rubygem-arel6/distinfo ============================================================================== --- head/databases/rubygem-arel6/distinfo Thu Aug 13 17:35:18 2015 (r394125) +++ head/databases/rubygem-arel6/distinfo Thu Aug 13 17:35:24 2015 (r394126) @@ -1,2 +1,2 @@ -SHA256 (rubygem/arel-6.0.2.gem) = 410dfd02520aa16f370aacb1097836e9e4ca7d70e22f888dffffe73f63853fcf -SIZE (rubygem/arel-6.0.2.gem) = 30720 +SHA256 (rubygem/arel-6.0.3.gem) = f3676eafca9987cb5fe263df1edf2538bf6dafc712b30e17be3543a9680547a8 +SIZE (rubygem/arel-6.0.3.gem) = 30720 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC5F99B88A1; Thu, 13 Aug 2015 17:35:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C93181F9D; Thu, 13 Aug 2015 17:35:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZTpP050484; Thu, 13 Aug 2015 17:35:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZTiZ050482; Thu, 13 Aug 2015 17:35:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZTiZ050482@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394127 - head/databases/rubygem-globalid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:30 -0000 Author: sunpoet Date: Thu Aug 13 17:35:28 2015 New Revision: 394127 URL: https://svnweb.freebsd.org/changeset/ports/394127 Log: - Update to 0.3.6 Changes: https://github.com/rails/globalid/releases Modified: head/databases/rubygem-globalid/Makefile head/databases/rubygem-globalid/distinfo Modified: head/databases/rubygem-globalid/Makefile ============================================================================== --- head/databases/rubygem-globalid/Makefile Thu Aug 13 17:35:24 2015 (r394126) +++ head/databases/rubygem-globalid/Makefile Thu Aug 13 17:35:28 2015 (r394127) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= globalid -PORTVERSION= 0.3.5 +PORTVERSION= 0.3.6 CATEGORIES= databases rubygems MASTER_SITES= RG Modified: head/databases/rubygem-globalid/distinfo ============================================================================== --- head/databases/rubygem-globalid/distinfo Thu Aug 13 17:35:24 2015 (r394126) +++ head/databases/rubygem-globalid/distinfo Thu Aug 13 17:35:28 2015 (r394127) @@ -1,2 +1,2 @@ -SHA256 (rubygem/globalid-0.3.5.gem) = 2ab297d30094ce3168126c4dd299baab3ab261a2e04e84e2a62846f7d2aa964f -SIZE (rubygem/globalid-0.3.5.gem) = 9728 +SHA256 (rubygem/globalid-0.3.6.gem) = 2189faa079709772a0f64ac8df61dbcd84c5112a0a9b3c86971887eef4cdbd90 +SIZE (rubygem/globalid-0.3.6.gem) = 10752 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E00959B88BD; Thu, 13 Aug 2015 17:35:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF796F0; Thu, 13 Aug 2015 17:35:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZYXd050603; Thu, 13 Aug 2015 17:35:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZYp0050601; Thu, 13 Aug 2015 17:35:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZYp0050601@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394128 - head/devel/rubygem-backports X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:35 -0000 Author: sunpoet Date: Thu Aug 13 17:35:33 2015 New Revision: 394128 URL: https://svnweb.freebsd.org/changeset/ports/394128 Log: - Update to 3.6.6 Changes: https://github.com/marcandre/backports/blob/master/CHANGELOG.rdoc https://github.com/marcandre/backports/commits/master Modified: head/devel/rubygem-backports/Makefile head/devel/rubygem-backports/distinfo Modified: head/devel/rubygem-backports/Makefile ============================================================================== --- head/devel/rubygem-backports/Makefile Thu Aug 13 17:35:28 2015 (r394127) +++ head/devel/rubygem-backports/Makefile Thu Aug 13 17:35:33 2015 (r394128) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= backports -PORTVERSION= 3.6.5 +PORTVERSION= 3.6.6 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-backports/distinfo ============================================================================== --- head/devel/rubygem-backports/distinfo Thu Aug 13 17:35:28 2015 (r394127) +++ head/devel/rubygem-backports/distinfo Thu Aug 13 17:35:33 2015 (r394128) @@ -1,2 +1,2 @@ -SHA256 (rubygem/backports-3.6.5.gem) = f4a7c4c539b3f53056b52eec2eb40078983bec57b4e218cd6e44d223d3d88a5e -SIZE (rubygem/backports-3.6.5.gem) = 88576 +SHA256 (rubygem/backports-3.6.6.gem) = e0ce60155bbf58a2a5b73214aeac83a3b4acb99fc2823af82a05482e2b43dfdc +SIZE (rubygem/backports-3.6.6.gem) = 88576 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AA2A9B88EB; Thu, 13 Aug 2015 17:35:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24429202; Thu, 13 Aug 2015 17:35:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZdTG050719; Thu, 13 Aug 2015 17:35:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZdhT050717; Thu, 13 Aug 2015 17:35:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZdhT050717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394129 - head/devel/rubygem-commander X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:40 -0000 Author: sunpoet Date: Thu Aug 13 17:35:38 2015 New Revision: 394129 URL: https://svnweb.freebsd.org/changeset/ports/394129 Log: - Update to 4.3.5 Changes: https://github.com/commander-rb/commander/blob/master/History.rdoc Modified: head/devel/rubygem-commander/Makefile head/devel/rubygem-commander/distinfo Modified: head/devel/rubygem-commander/Makefile ============================================================================== --- head/devel/rubygem-commander/Makefile Thu Aug 13 17:35:33 2015 (r394128) +++ head/devel/rubygem-commander/Makefile Thu Aug 13 17:35:38 2015 (r394129) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= commander -PORTVERSION= 4.3.4 +PORTVERSION= 4.3.5 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-commander/distinfo ============================================================================== --- head/devel/rubygem-commander/distinfo Thu Aug 13 17:35:33 2015 (r394128) +++ head/devel/rubygem-commander/distinfo Thu Aug 13 17:35:38 2015 (r394129) @@ -1,2 +1,2 @@ -SHA256 (rubygem/commander-4.3.4.gem) = ef77fec9ab31a67790f3d6b0ae311d76a51e20bb03c916117bf5aa69997805a7 -SIZE (rubygem/commander-4.3.4.gem) = 34816 +SHA256 (rubygem/commander-4.3.5.gem) = 23234d4a975c9b5356c9795a46ca2b7786999720321ba3c4a3ec417fea15965f +SIZE (rubygem/commander-4.3.5.gem) = 35328 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 711BF9B890F; Thu, 13 Aug 2015 17:35:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 183E42EB; Thu, 13 Aug 2015 17:35:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZidR050840; Thu, 13 Aug 2015 17:35:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZiQT050836; Thu, 13 Aug 2015 17:35:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZiQT050836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394130 - head/devel/rubygem-devise X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:45 -0000 Author: sunpoet Date: Thu Aug 13 17:35:43 2015 New Revision: 394130 URL: https://svnweb.freebsd.org/changeset/ports/394130 Log: - Update to 3.5.2 Changes: https://github.com/plataformatec/devise/blob/master/CHANGELOG.md Modified: head/devel/rubygem-devise/Makefile head/devel/rubygem-devise/distinfo Modified: head/devel/rubygem-devise/Makefile ============================================================================== --- head/devel/rubygem-devise/Makefile Thu Aug 13 17:35:38 2015 (r394129) +++ head/devel/rubygem-devise/Makefile Thu Aug 13 17:35:43 2015 (r394130) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= devise -PORTVERSION= 3.5.1 -PORTREVISION= 1 +PORTVERSION= 3.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-devise/distinfo ============================================================================== --- head/devel/rubygem-devise/distinfo Thu Aug 13 17:35:38 2015 (r394129) +++ head/devel/rubygem-devise/distinfo Thu Aug 13 17:35:43 2015 (r394130) @@ -1,2 +1,2 @@ -SHA256 (rubygem/devise-3.5.1.gem) = c3efe71e970e30f4b798eea63560b4b39afdc72a50e1527dbbc37ad4fc582f11 -SIZE (rubygem/devise-3.5.1.gem) = 171008 +SHA256 (rubygem/devise-3.5.2.gem) = 83a5f24351958d044360eb749dfd65d02383857b7f1b60a48b96410f454448f2 +SIZE (rubygem/devise-3.5.2.gem) = 171008 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 678D59B8937; Thu, 13 Aug 2015 17:35:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BC5261D; Thu, 13 Aug 2015 17:35:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZnhX050958; Thu, 13 Aug 2015 17:35:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZnJI050956; Thu, 13 Aug 2015 17:35:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZnJI050956@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394131 - head/devel/rubygem-devise-async X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:50 -0000 Author: sunpoet Date: Thu Aug 13 17:35:48 2015 New Revision: 394131 URL: https://svnweb.freebsd.org/changeset/ports/394131 Log: - Update to 0.10.1 - Use ?= instead of = Changes: https://github.com/mhfs/devise-async/blob/master/CHANGELOG.md Modified: head/devel/rubygem-devise-async/Makefile head/devel/rubygem-devise-async/distinfo Modified: head/devel/rubygem-devise-async/Makefile ============================================================================== --- head/devel/rubygem-devise-async/Makefile Thu Aug 13 17:35:43 2015 (r394130) +++ head/devel/rubygem-devise-async/Makefile Thu Aug 13 17:35:48 2015 (r394131) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= devise-async -PORTVERSION= 0.9.0 +PORTVERSION= 0.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -11,7 +11,7 @@ COMMENT= Send Devise emails in backgroun LICENSE= MIT -RUN_DEPENDS= rubygem-devise>=3.2:${PORTSDIR}/devel/rubygem-devise +RUN_DEPENDS?= rubygem-devise>=3.2:${PORTSDIR}/devel/rubygem-devise SLAVEDIRS= devel/rubygem-devise-async-rails4 Modified: head/devel/rubygem-devise-async/distinfo ============================================================================== --- head/devel/rubygem-devise-async/distinfo Thu Aug 13 17:35:43 2015 (r394130) +++ head/devel/rubygem-devise-async/distinfo Thu Aug 13 17:35:48 2015 (r394131) @@ -1,2 +1,2 @@ -SHA256 (rubygem/devise-async-0.9.0.gem) = b51aec324bfa56f5e51b00e5429546e9eeab4be99ac0971625afdeffde799486 -SIZE (rubygem/devise-async-0.9.0.gem) = 17920 +SHA256 (rubygem/devise-async-0.10.1.gem) = 3380fac383a5f16bb2fcdda54d68983210f2d0cae3100572eb888742190e02d3 +SIZE (rubygem/devise-async-0.10.1.gem) = 20480 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BB139B894E; Thu, 13 Aug 2015 17:35:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F27EB6F1; Thu, 13 Aug 2015 17:35:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZsVF051062; Thu, 13 Aug 2015 17:35:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZsmp051061; Thu, 13 Aug 2015 17:35:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZsmp051061@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394132 - head/devel/rubygem-devise-rails4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:55 -0000 Author: sunpoet Date: Thu Aug 13 17:35:53 2015 New Revision: 394132 URL: https://svnweb.freebsd.org/changeset/ports/394132 Log: - Fix indent Modified: head/devel/rubygem-devise-rails4/Makefile (contents, props changed) Modified: head/devel/rubygem-devise-rails4/Makefile ============================================================================== --- head/devel/rubygem-devise-rails4/Makefile Thu Aug 13 17:35:48 2015 (r394131) +++ head/devel/rubygem-devise-rails4/Makefile Thu Aug 13 17:35:53 2015 (r394132) @@ -3,7 +3,7 @@ PKGNAMESUFFIX= -rails4 -RAILS4= yes +RAILS4= yes MASTERDIR= ${.CURDIR}/../rubygem-devise .include "${MASTERDIR}/Makefile" From owner-svn-ports-all@freebsd.org Thu Aug 13 17:35:59 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7AB1F9B8982; Thu, 13 Aug 2015 17:35:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6B4AE802; Thu, 13 Aug 2015 17:35:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHZxT2051168; Thu, 13 Aug 2015 17:35:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHZxWl051167; Thu, 13 Aug 2015 17:35:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131735.t7DHZxWl051167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:35:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394133 - head/devel/rubygem-devise-async-rails4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:35:59 -0000 Author: sunpoet Date: Thu Aug 13 17:35:58 2015 New Revision: 394133 URL: https://svnweb.freebsd.org/changeset/ports/394133 Log: - Fix RUN_DEPENDS Modified: head/devel/rubygem-devise-async-rails4/Makefile (contents, props changed) Modified: head/devel/rubygem-devise-async-rails4/Makefile ============================================================================== --- head/devel/rubygem-devise-async-rails4/Makefile Thu Aug 13 17:35:53 2015 (r394132) +++ head/devel/rubygem-devise-async-rails4/Makefile Thu Aug 13 17:35:58 2015 (r394133) @@ -3,8 +3,8 @@ PKGNAMESUFFIX= -rails4 +RUN_DEPENDS= rubygem-devise-rails4>=3.2:${PORTSDIR}/devel/rubygem-devise-rails4 + MASTERDIR= ${.CURDIR}/../rubygem-devise-async .include "${MASTERDIR}/Makefile" - -RUN_DEPENDS= rubygem-devise-rails4>=3.2:${PORTSDIR}/devel/rubygem-devise-rails4 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B1279B89A4; Thu, 13 Aug 2015 17:36:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BA068E1; Thu, 13 Aug 2015 17:36:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHa4qt051287; Thu, 13 Aug 2015 17:36:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHa4cV051285; Thu, 13 Aug 2015 17:36:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHa4cV051285@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394134 - head/devel/rubygem-rotp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:04 -0000 Author: sunpoet Date: Thu Aug 13 17:36:03 2015 New Revision: 394134 URL: https://svnweb.freebsd.org/changeset/ports/394134 Log: - Update to 2.1.1 - Add NO_ARCH Changes: https://github.com/mdp/rotp/blob/master/CHANGELOG.md Modified: head/devel/rubygem-rotp/Makefile head/devel/rubygem-rotp/distinfo Modified: head/devel/rubygem-rotp/Makefile ============================================================================== --- head/devel/rubygem-rotp/Makefile Thu Aug 13 17:35:58 2015 (r394133) +++ head/devel/rubygem-rotp/Makefile Thu Aug 13 17:36:03 2015 (r394134) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rotp -PORTVERSION= 1.6.1 +PORTVERSION= 2.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -11,8 +11,11 @@ COMMENT= Ruby library for generating one LICENSE= MIT +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/rotp .include Modified: head/devel/rubygem-rotp/distinfo ============================================================================== --- head/devel/rubygem-rotp/distinfo Thu Aug 13 17:35:58 2015 (r394133) +++ head/devel/rubygem-rotp/distinfo Thu Aug 13 17:36:03 2015 (r394134) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rotp-1.6.1.gem) = 07e5d891538ec4e55a7ba578b0baa033e522f51759109174349def7059f15222 -SIZE (rubygem/rotp-1.6.1.gem) = 56320 +SHA256 (rubygem/rotp-2.1.1.gem) = 2f895249e4220e339b8451418680610ba0da92a5489cbde4f756c6ee6062fadb +SIZE (rubygem/rotp-2.1.1.gem) = 59392 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D94A9B89D4; Thu, 13 Aug 2015 17:36:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 551C49B9; Thu, 13 Aug 2015 17:36:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHa9id051414; Thu, 13 Aug 2015 17:36:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHa8EU051412; Thu, 13 Aug 2015 17:36:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHa8EU051412@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394135 - in head/security/rubygem-devise-two-factor: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:09 -0000 Author: sunpoet Date: Thu Aug 13 17:36:08 2015 New Revision: 394135 URL: https://svnweb.freebsd.org/changeset/ports/394135 Log: - Update to 1.1.0 - Add NO_ARCH Changes: https://github.com/tinfoil/devise-two-factor/commits/master Deleted: head/security/rubygem-devise-two-factor/files/ Modified: head/security/rubygem-devise-two-factor/Makefile head/security/rubygem-devise-two-factor/distinfo Modified: head/security/rubygem-devise-two-factor/Makefile ============================================================================== --- head/security/rubygem-devise-two-factor/Makefile Thu Aug 13 17:36:03 2015 (r394134) +++ head/security/rubygem-devise-two-factor/Makefile Thu Aug 13 17:36:08 2015 (r394135) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= devise-two-factor -PORTVERSION= 1.0.2 +PORTVERSION= 1.1.0 CATEGORIES= security rubygems MASTER_SITES= RG @@ -11,15 +11,15 @@ COMMENT= Barebones two-factor authentica LICENSE= MIT -RUN_DEPENDS?= rubygem-activemodel4>=4.0.0:${PORTSDIR}/databases/rubygem-activemodel4 \ - rubygem-activesupport4>=4.0.0:${PORTSDIR}/devel/rubygem-activesupport4 \ - rubygem-attr_encrypted>=1.3.4:${PORTSDIR}/security/rubygem-attr_encrypted \ - rubygem-devise-rails4>=3.2.4:${PORTSDIR}/devel/rubygem-devise-rails4 \ - rubygem-railties4>=4.0.0:${PORTSDIR}/www/rubygem-railties4 \ - rubygem-rotp<=2.0.0:${PORTSDIR}/devel/rubygem-rotp +RUN_DEPENDS= rubygem-activesupport4>=0:${PORTSDIR}/devel/rubygem-activesupport4 \ + rubygem-attr_encrypted>=1.3.2:${PORTSDIR}/security/rubygem-attr_encrypted \ + rubygem-devise-rails4>=3.5.0:${PORTSDIR}/devel/rubygem-devise-rails4 \ + rubygem-railties4>=0:${PORTSDIR}/www/rubygem-railties4 \ + rubygem-rotp>=2:${PORTSDIR}/devel/rubygem-rotp +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +RUBYGEM_AUTOPLIST= yes .include Modified: head/security/rubygem-devise-two-factor/distinfo ============================================================================== --- head/security/rubygem-devise-two-factor/distinfo Thu Aug 13 17:36:03 2015 (r394134) +++ head/security/rubygem-devise-two-factor/distinfo Thu Aug 13 17:36:08 2015 (r394135) @@ -1,2 +1,2 @@ -SHA256 (rubygem/devise-two-factor-1.0.2.gem) = 07380181436a893255b1f82e1d03d1a6b5e1c7dc841bfb39c34bac2aba193322 -SIZE (rubygem/devise-two-factor-1.0.2.gem) = 25600 +SHA256 (rubygem/devise-two-factor-1.1.0.gem) = f5d54b601d54b6577bbfba734500703a986f69a9a9eda02d52bf504e26990b9b +SIZE (rubygem/devise-two-factor-1.1.0.gem) = 25088 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:14 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B8AE9B8A02; Thu, 13 Aug 2015 17:36:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 438EAA8E; Thu, 13 Aug 2015 17:36:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHaEbS051533; Thu, 13 Aug 2015 17:36:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHaD56051531; Thu, 13 Aug 2015 17:36:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHaD56051531@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394136 - head/devel/rubygem-github_api X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:14 -0000 Author: sunpoet Date: Thu Aug 13 17:36:13 2015 New Revision: 394136 URL: https://svnweb.freebsd.org/changeset/ports/394136 Log: - Update to 0.12.4 Changes: https://github.com/peter-murach/github/blob/master/CHANGELOG.md Modified: head/devel/rubygem-github_api/Makefile head/devel/rubygem-github_api/distinfo Modified: head/devel/rubygem-github_api/Makefile ============================================================================== --- head/devel/rubygem-github_api/Makefile Thu Aug 13 17:36:08 2015 (r394135) +++ head/devel/rubygem-github_api/Makefile Thu Aug 13 17:36:13 2015 (r394136) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= github_api -PORTVERSION= 0.12.3 +PORTVERSION= 0.12.4 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -14,9 +14,9 @@ LICENSE= MIT RUN_DEPENDS= rubygem-addressable>=2.3:${PORTSDIR}/www/rubygem-addressable \ rubygem-descendants_tracker>=0.0.4:${PORTSDIR}/devel/rubygem-descendants_tracker \ rubygem-faraday>=0.8:${PORTSDIR}/www/rubygem-faraday \ - rubygem-hashie>=3.3:${PORTSDIR}/devel/rubygem-hashie \ + rubygem-hashie>=3.4:${PORTSDIR}/devel/rubygem-hashie \ rubygem-multi_json>=1.7.5:${PORTSDIR}/devel/rubygem-multi_json \ - rubygem-nokogiri>=1.6.3:${PORTSDIR}/textproc/rubygem-nokogiri \ + rubygem-nokogiri>=1.6.6:${PORTSDIR}/textproc/rubygem-nokogiri \ rubygem-oauth2>=0:${PORTSDIR}/net/rubygem-oauth2 NO_ARCH= yes Modified: head/devel/rubygem-github_api/distinfo ============================================================================== --- head/devel/rubygem-github_api/distinfo Thu Aug 13 17:36:08 2015 (r394135) +++ head/devel/rubygem-github_api/distinfo Thu Aug 13 17:36:13 2015 (r394136) @@ -1,2 +1,2 @@ -SHA256 (rubygem/github_api-0.12.3.gem) = 7a2c322a620ba179dc8270b5f816243c8ad357ee17f3fe53df4e66b1d54ecb85 -SIZE (rubygem/github_api-0.12.3.gem) = 1997824 +SHA256 (rubygem/github_api-0.12.4.gem) = 9be96570ea098b53bbf064c64a1f58dce95078bbacc8832a1da0d8a37a9abfa3 +SIZE (rubygem/github_api-0.12.4.gem) = 134656 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7B2E9B8A26; Thu, 13 Aug 2015 17:36:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8636B6F; Thu, 13 Aug 2015 17:36:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHaIkp051627; Thu, 13 Aug 2015 17:36:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHaInj051626; Thu, 13 Aug 2015 17:36:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHaInj051626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394137 - head/devel/rubygem-jeweler X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:19 -0000 Author: sunpoet Date: Thu Aug 13 17:36:17 2015 New Revision: 394137 URL: https://svnweb.freebsd.org/changeset/ports/394137 Log: - Add NO_ARCH Approved by: portmgr (blanket) Modified: head/devel/rubygem-jeweler/Makefile Modified: head/devel/rubygem-jeweler/Makefile ============================================================================== --- head/devel/rubygem-jeweler/Makefile Thu Aug 13 17:36:13 2015 (r394136) +++ head/devel/rubygem-jeweler/Makefile Thu Aug 13 17:36:17 2015 (r394137) @@ -19,6 +19,7 @@ RUN_DEPENDS= rubygem-builder32>=0:${PORT rubygem-nokogiri>=1.5.10:${PORTSDIR}/textproc/rubygem-nokogiri \ rubygem-rake>=0:${PORTSDIR}/devel/rubygem-rake +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91A409B8A53; Thu, 13 Aug 2015 17:36:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62FAACA3; Thu, 13 Aug 2015 17:36:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHaOQU051793; Thu, 13 Aug 2015 17:36:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHaNjd051785; Thu, 13 Aug 2015 17:36:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHaNjd051785@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394138 - in head/net: . rubygem-fog-dynect X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:24 -0000 Author: sunpoet Date: Thu Aug 13 17:36:22 2015 New Revision: 394138 URL: https://svnweb.freebsd.org/changeset/ports/394138 Log: - Add rubygem-fog-dynect 0.0.1 Fog::Dynect is a module for the fog gem to support Dyn Managed DNS. WWW: https://github.com/fog/fog-dynect Added: head/net/rubygem-fog-dynect/ head/net/rubygem-fog-dynect/Makefile (contents, props changed) head/net/rubygem-fog-dynect/distinfo (contents, props changed) head/net/rubygem-fog-dynect/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Aug 13 17:36:17 2015 (r394137) +++ head/net/Makefile Thu Aug 13 17:36:22 2015 (r394138) @@ -1055,6 +1055,7 @@ SUBDIR += rubygem-epp-client-smallregistry SUBDIR += rubygem-fog-atmos SUBDIR += rubygem-fog-aws + SUBDIR += rubygem-fog-dynect SUBDIR += rubygem-fog-ecloud SUBDIR += rubygem-fog-google SUBDIR += rubygem-fog-local Added: head/net/rubygem-fog-dynect/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-fog-dynect/Makefile Thu Aug 13 17:36:22 2015 (r394138) @@ -0,0 +1,23 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= fog-dynect +PORTVERSION= 0.0.1 +CATEGORIES= net rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Module for the 'fog' gem to support Dynect DNS + +LICENSE= MIT + +RUN_DEPENDS= rubygem-fog-core>=0:${PORTSDIR}/devel/rubygem-fog-core \ + rubygem-fog-json>=0:${PORTSDIR}/devel/rubygem-fog-json \ + rubygem-fog-xml>=0:${PORTSDIR}/textproc/rubygem-fog-xml + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/net/rubygem-fog-dynect/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-fog-dynect/distinfo Thu Aug 13 17:36:22 2015 (r394138) @@ -0,0 +1,2 @@ +SHA256 (rubygem/fog-dynect-0.0.1.gem) = a2680c3b6d1be87b64223d40792bc2a45bcd520bd860779dc3474c0de29b978d +SIZE (rubygem/fog-dynect-0.0.1.gem) = 16384 Added: head/net/rubygem-fog-dynect/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-fog-dynect/pkg-descr Thu Aug 13 17:36:22 2015 (r394138) @@ -0,0 +1,3 @@ +Fog::Dynect is a module for the fog gem to support Dyn Managed DNS. + +WWW: https://github.com/fog/fog-dynect From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BFE29B8A7A; Thu, 13 Aug 2015 17:36:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 18F15DB6; Thu, 13 Aug 2015 17:36:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHaTJX051923; Thu, 13 Aug 2015 17:36:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHaTiQ051920; Thu, 13 Aug 2015 17:36:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHaTiQ051920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394139 - in head/devel/rubygem-fog: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:30 -0000 Author: sunpoet Date: Thu Aug 13 17:36:28 2015 New Revision: 394139 URL: https://svnweb.freebsd.org/changeset/ports/394139 Log: - Update to 1.33.0 Changes: https://github.com/fog/fog/blob/master/CHANGELOG.md Modified: head/devel/rubygem-fog/Makefile head/devel/rubygem-fog/distinfo head/devel/rubygem-fog/files/patch-gemspec Modified: head/devel/rubygem-fog/Makefile ============================================================================== --- head/devel/rubygem-fog/Makefile Thu Aug 13 17:36:22 2015 (r394138) +++ head/devel/rubygem-fog/Makefile Thu Aug 13 17:36:28 2015 (r394139) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fog -PORTVERSION= 1.32.0 +PORTVERSION= 1.33.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -15,6 +15,7 @@ RUN_DEPENDS= rubygem-fog-atmos>=0:${PORT rubygem-fog-aws>=0.6.0:${PORTSDIR}/net/rubygem-fog-aws \ rubygem-fog-brightbox>=0.4:${PORTSDIR}/devel/rubygem-fog-brightbox \ rubygem-fog-core>=1.32:${PORTSDIR}/devel/rubygem-fog-core \ + rubygem-fog-dynect>=0:${PORTSDIR}/net/rubygem-fog-dynect \ rubygem-fog-ecloud>=0.1.1:${PORTSDIR}/net/rubygem-fog-ecloud \ rubygem-fog-google>=0.0.2:${PORTSDIR}/net/rubygem-fog-google \ rubygem-fog-json>=0:${PORTSDIR}/devel/rubygem-fog-json \ Modified: head/devel/rubygem-fog/distinfo ============================================================================== --- head/devel/rubygem-fog/distinfo Thu Aug 13 17:36:22 2015 (r394138) +++ head/devel/rubygem-fog/distinfo Thu Aug 13 17:36:28 2015 (r394139) @@ -1,2 +1,2 @@ -SHA256 (rubygem/fog-1.32.0.gem) = 0630f49da9a6ca68db308331b85bc089453ba1a8751e335326fb18f364040ba1 -SIZE (rubygem/fog-1.32.0.gem) = 1248768 +SHA256 (rubygem/fog-1.33.0.gem) = fe3642dd38ece5469cc5a2cf89e2dc4ae3658d10ce84302eba30d4f8d53b6dc6 +SIZE (rubygem/fog-1.33.0.gem) = 1261568 Modified: head/devel/rubygem-fog/files/patch-gemspec ============================================================================== --- head/devel/rubygem-fog/files/patch-gemspec Thu Aug 13 17:36:22 2015 (r394138) +++ head/devel/rubygem-fog/files/patch-gemspec Thu Aug 13 17:36:28 2015 (r394139) @@ -1,9 +1,9 @@ ---- fog.gemspec.orig 2015-07-03 07:51:47 UTC +--- fog.gemspec.orig 2015-08-13 16:08:43 UTC +++ fog.gemspec -@@ -34,7 +34,7 @@ Gem::Specification.new do |s| - s.add_runtime_dependency(%q, [">= 0"]) +@@ -35,7 +35,7 @@ Gem::Specification.new do |s| s.add_runtime_dependency(%q, [">= 0.6.0"]) s.add_runtime_dependency(%q, ["~> 0.4"]) + s.add_runtime_dependency(%q, [">= 0"]) - s.add_runtime_dependency(%q, ["= 0.1.1"]) + s.add_runtime_dependency(%q, [">= 0.1.1"]) s.add_runtime_dependency(%q, [">= 0.0.2"]) From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D38589B8AB5; Thu, 13 Aug 2015 17:36:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABFF7E45; Thu, 13 Aug 2015 17:36:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHaZQq052054; Thu, 13 Aug 2015 17:36:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHaYAk052051; Thu, 13 Aug 2015 17:36:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHaYAk052051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394140 - head/devel/rubygem-grape X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:35 -0000 Author: sunpoet Date: Thu Aug 13 17:36:34 2015 New Revision: 394140 URL: https://svnweb.freebsd.org/changeset/ports/394140 Log: - Update to 0.13.0 - Update WWW Changes: https://github.com/ruby-grape/grape/blob/master/CHANGELOG.md Modified: head/devel/rubygem-grape/Makefile head/devel/rubygem-grape/distinfo head/devel/rubygem-grape/pkg-descr Modified: head/devel/rubygem-grape/Makefile ============================================================================== --- head/devel/rubygem-grape/Makefile Thu Aug 13 17:36:28 2015 (r394139) +++ head/devel/rubygem-grape/Makefile Thu Aug 13 17:36:34 2015 (r394140) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grape -PORTVERSION= 0.12.0 +PORTVERSION= 0.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-grape/distinfo ============================================================================== --- head/devel/rubygem-grape/distinfo Thu Aug 13 17:36:28 2015 (r394139) +++ head/devel/rubygem-grape/distinfo Thu Aug 13 17:36:34 2015 (r394140) @@ -1,2 +1,2 @@ -SHA256 (rubygem/grape-0.12.0.gem) = 10f734beac29c420f951afbc3d33f1748c08f72bab1a6227f294e34ba1a663d7 -SIZE (rubygem/grape-0.12.0.gem) = 136192 +SHA256 (rubygem/grape-0.13.0.gem) = b0561d6f10fa54219dc16e2d4a7de3ba95fbfa690b4f294530b85f2d0b55aeb7 +SIZE (rubygem/grape-0.13.0.gem) = 145408 Modified: head/devel/rubygem-grape/pkg-descr ============================================================================== --- head/devel/rubygem-grape/pkg-descr Thu Aug 13 17:36:28 2015 (r394139) +++ head/devel/rubygem-grape/pkg-descr Thu Aug 13 17:36:34 2015 (r394140) @@ -1,3 +1,3 @@ A Ruby framework for rapid API development with great conventions. -WWW: https://github.com/intridea/grape +WWW: https://github.com/ruby-grape/grape From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 656C39B8AF3; Thu, 13 Aug 2015 17:36:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 210B1EE8; Thu, 13 Aug 2015 17:36:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHaeN1052185; Thu, 13 Aug 2015 17:36:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHaemX052182; Thu, 13 Aug 2015 17:36:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHaemX052182@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394141 - head/devel/rubygem-grape-entity X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:41 -0000 Author: sunpoet Date: Thu Aug 13 17:36:39 2015 New Revision: 394141 URL: https://svnweb.freebsd.org/changeset/ports/394141 Log: - Update to 0.4.8 - Update WWW Changes: https://github.com/ruby-grape/grape-entity/blob/master/CHANGELOG.md Modified: head/devel/rubygem-grape-entity/Makefile head/devel/rubygem-grape-entity/distinfo head/devel/rubygem-grape-entity/pkg-descr Modified: head/devel/rubygem-grape-entity/Makefile ============================================================================== --- head/devel/rubygem-grape-entity/Makefile Thu Aug 13 17:36:34 2015 (r394140) +++ head/devel/rubygem-grape-entity/Makefile Thu Aug 13 17:36:39 2015 (r394141) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grape-entity -PORTVERSION= 0.4.5 +PORTVERSION= 0.4.8 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-grape-entity/distinfo ============================================================================== --- head/devel/rubygem-grape-entity/distinfo Thu Aug 13 17:36:34 2015 (r394140) +++ head/devel/rubygem-grape-entity/distinfo Thu Aug 13 17:36:39 2015 (r394141) @@ -1,2 +1,2 @@ -SHA256 (rubygem/grape-entity-0.4.5.gem) = 09b3d98317d0ea8846d0f646105a6badc86de4fce85ec368aca44f32f4f230f7 -SIZE (rubygem/grape-entity-0.4.5.gem) = 26624 +SHA256 (rubygem/grape-entity-0.4.8.gem) = 68cab76417ef92fb35f05f82d61261a294478e0a993773216f9bd9748586af43 +SIZE (rubygem/grape-entity-0.4.8.gem) = 29696 Modified: head/devel/rubygem-grape-entity/pkg-descr ============================================================================== --- head/devel/rubygem-grape-entity/pkg-descr Thu Aug 13 17:36:34 2015 (r394140) +++ head/devel/rubygem-grape-entity/pkg-descr Thu Aug 13 17:36:39 2015 (r394141) @@ -1,4 +1,4 @@ Entities - a simple Facade to use with your models and API - extracted from Grape. -WWW: https://github.com/intridea/grape-entity +WWW: https://github.com/ruby-grape/grape-entity From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6AE39B8B26; Thu, 13 Aug 2015 17:36:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7836DFFA; Thu, 13 Aug 2015 17:36:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHak82052302; Thu, 13 Aug 2015 17:36:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHajDc052300; Thu, 13 Aug 2015 17:36:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHajDc052300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394142 - head/devel/rubygem-eventmachine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:46 -0000 Author: sunpoet Date: Thu Aug 13 17:36:45 2015 New Revision: 394142 URL: https://svnweb.freebsd.org/changeset/ports/394142 Log: - Update to 1.0.8 Changes: https://github.com/eventmachine/eventmachine/blob/master/CHANGELOG.md Modified: head/devel/rubygem-eventmachine/Makefile head/devel/rubygem-eventmachine/distinfo Modified: head/devel/rubygem-eventmachine/Makefile ============================================================================== --- head/devel/rubygem-eventmachine/Makefile Thu Aug 13 17:36:39 2015 (r394141) +++ head/devel/rubygem-eventmachine/Makefile Thu Aug 13 17:36:45 2015 (r394142) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= eventmachine -PORTVERSION= 1.0.7 +PORTVERSION= 1.0.8 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-eventmachine/distinfo ============================================================================== --- head/devel/rubygem-eventmachine/distinfo Thu Aug 13 17:36:39 2015 (r394141) +++ head/devel/rubygem-eventmachine/distinfo Thu Aug 13 17:36:45 2015 (r394142) @@ -1,2 +1,2 @@ -SHA256 (rubygem/eventmachine-1.0.7.gem) = 342b7dfa2bc1d43f9b58c4481d81cc9eb5f7c92a5d0eb39739459fcbdd579d4c -SIZE (rubygem/eventmachine-1.0.7.gem) = 231424 +SHA256 (rubygem/eventmachine-1.0.8.gem) = 57ba18d8f76fb43f8842dd17cc3cebc46eea06a5d5033b3131ac8f73c7bc3bbb +SIZE (rubygem/eventmachine-1.0.8.gem) = 232960 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:51 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 99DAF9B8B53; Thu, 13 Aug 2015 17:36:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A7A5E9; Thu, 13 Aug 2015 17:36:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHaph2052419; Thu, 13 Aug 2015 17:36:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHapAs052417; Thu, 13 Aug 2015 17:36:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHapAs052417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394143 - head/devel/rubygem-highline X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:51 -0000 Author: sunpoet Date: Thu Aug 13 17:36:50 2015 New Revision: 394143 URL: https://svnweb.freebsd.org/changeset/ports/394143 Log: - Update to 1.7.3 Changes: https://github.com/JEG2/highline/blob/master/Changelog.md Modified: head/devel/rubygem-highline/Makefile head/devel/rubygem-highline/distinfo Modified: head/devel/rubygem-highline/Makefile ============================================================================== --- head/devel/rubygem-highline/Makefile Thu Aug 13 17:36:45 2015 (r394142) +++ head/devel/rubygem-highline/Makefile Thu Aug 13 17:36:50 2015 (r394143) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= highline -PORTVERSION= 1.7.2 +PORTVERSION= 1.7.3 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-highline/distinfo ============================================================================== --- head/devel/rubygem-highline/distinfo Thu Aug 13 17:36:45 2015 (r394142) +++ head/devel/rubygem-highline/distinfo Thu Aug 13 17:36:50 2015 (r394143) @@ -1,2 +1,2 @@ -SHA256 (rubygem/highline-1.7.2.gem) = 5beef0869e444075e701ffd87f47a9ebc6beb4c417976425d454d2775bdf9d91 -SIZE (rubygem/highline-1.7.2.gem) = 224256 +SHA256 (rubygem/highline-1.7.3.gem) = d2f7b7bf88499a156130e40038d0b3046e1da20fd8eece46a31577a533ab2d0d +SIZE (rubygem/highline-1.7.3.gem) = 224256 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:36:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A2C99B8B81; Thu, 13 Aug 2015 17:36:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D75F71E6; Thu, 13 Aug 2015 17:36:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHatuU052509; Thu, 13 Aug 2015 17:36:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHatsT052508; Thu, 13 Aug 2015 17:36:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHatsT052508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394144 - head/sysutils/rubygem-chef X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:36:56 -0000 Author: sunpoet Date: Thu Aug 13 17:36:54 2015 New Revision: 394144 URL: https://svnweb.freebsd.org/changeset/ports/394144 Log: - Add NO_ARCH Approved by: portmgr (blanket) Modified: head/sysutils/rubygem-chef/Makefile Modified: head/sysutils/rubygem-chef/Makefile ============================================================================== --- head/sysutils/rubygem-chef/Makefile Thu Aug 13 17:36:50 2015 (r394143) +++ head/sysutils/rubygem-chef/Makefile Thu Aug 13 17:36:54 2015 (r394144) @@ -30,6 +30,7 @@ RUN_DEPENDS= rubygem-chef-zero>=2.1.0:${ rubygem-pry>=0.9.0:${PORTSDIR}/devel/rubygem-pry \ rubygem-rest-client>=1.0.4:${PORTSDIR}/www/rubygem-rest-client +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 214D09B8BA7; Thu, 13 Aug 2015 17:37:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB66C2BF; Thu, 13 Aug 2015 17:36:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHax43052616; Thu, 13 Aug 2015 17:36:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHaxKs052615; Thu, 13 Aug 2015 17:36:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131736.t7DHaxKs052615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394145 - head/sysutils/rubygem-hammer_cli/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:00 -0000 Author: sunpoet Date: Thu Aug 13 17:36:59 2015 New Revision: 394145 URL: https://svnweb.freebsd.org/changeset/ports/394145 Log: - Rename gemspec patch to patch-gemspec Added: head/sysutils/rubygem-hammer_cli/files/patch-gemspec - copied unchanged from r393941, head/sysutils/rubygem-hammer_cli/files/patch-hammer__cli.gemspec Deleted: head/sysutils/rubygem-hammer_cli/files/patch-hammer__cli.gemspec Copied: head/sysutils/rubygem-hammer_cli/files/patch-gemspec (from r393941, head/sysutils/rubygem-hammer_cli/files/patch-hammer__cli.gemspec) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-hammer_cli/files/patch-gemspec Thu Aug 13 17:36:59 2015 (r394145, copy of r393941, head/sysutils/rubygem-hammer_cli/files/patch-hammer__cli.gemspec) @@ -0,0 +1,23 @@ +--- hammer_cli.gemspec.orig 2015-08-04 18:31:34 UTC ++++ hammer_cli.gemspec +@@ -25,17 +25,15 @@ Gem::Specification.new do |s| + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 1.0.0"]) +- s.add_runtime_dependency(%q, ["< 1.7.0"]) ++ s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, ["< 2.0.0"]) + s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 0"]) +- s.add_runtime_dependency(%q, ["< 1.7.0"]) ++ s.add_runtime_dependency(%q, [">= 1.7.0"]) + s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 2.0.6"]) + s.add_runtime_dependency(%q, [">= 0"]) +- s.add_runtime_dependency(%q, [">= 0"]) +- s.add_runtime_dependency(%q, [">= 0"]) +- s.add_runtime_dependency(%q, ["~> 1.0"]) ++ s.add_runtime_dependency(%q, [">= 1.0"]) + s.add_runtime_dependency(%q, ["~> 0.0.10"]) + else + s.add_dependency(%q, [">= 1.0.0"]) From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:05 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 028009B8BD5; Thu, 13 Aug 2015 17:37:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E77293C5; Thu, 13 Aug 2015 17:37:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHb4xd052737; Thu, 13 Aug 2015 17:37:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHb4kT052735; Thu, 13 Aug 2015 17:37:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHb4kT052735@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394146 - head/devel/rubygem-minitest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:05 -0000 Author: sunpoet Date: Thu Aug 13 17:37:03 2015 New Revision: 394146 URL: https://svnweb.freebsd.org/changeset/ports/394146 Log: - Update to 5.8.0 Changes: https://github.com/seattlerb/minitest/blob/master/History.rdoc Modified: head/devel/rubygem-minitest/Makefile head/devel/rubygem-minitest/distinfo Modified: head/devel/rubygem-minitest/Makefile ============================================================================== --- head/devel/rubygem-minitest/Makefile Thu Aug 13 17:36:59 2015 (r394145) +++ head/devel/rubygem-minitest/Makefile Thu Aug 13 17:37:03 2015 (r394146) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= minitest -PORTVERSION= 5.7.0 +PORTVERSION= 5.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-minitest/distinfo ============================================================================== --- head/devel/rubygem-minitest/distinfo Thu Aug 13 17:36:59 2015 (r394145) +++ head/devel/rubygem-minitest/distinfo Thu Aug 13 17:37:03 2015 (r394146) @@ -1,2 +1,2 @@ -SHA256 (rubygem/minitest-5.7.0.gem) = 08ef10d1e6314fd0dc9a71ea697fd196d153d6bbffa8c6f7b8350973a772b867 -SIZE (rubygem/minitest-5.7.0.gem) = 71680 +SHA256 (rubygem/minitest-5.8.0.gem) = 875de2784b97b710da76c682e725095ca6c5142093a07474114e52cd6dea0953 +SIZE (rubygem/minitest-5.8.0.gem) = 71680 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C838F9B8C07; Thu, 13 Aug 2015 17:37:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B85A46CC; Thu, 13 Aug 2015 17:37:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHb9kk052840; Thu, 13 Aug 2015 17:37:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHb98k052839; Thu, 13 Aug 2015 17:37:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHb98k052839@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394147 - head/devel/rubygem-activesupport41 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:09 -0000 Author: sunpoet Date: Thu Aug 13 17:37:08 2015 New Revision: 394147 URL: https://svnweb.freebsd.org/changeset/ports/394147 Log: - Add NO_ARCH - Remove USE_RUBY_FEATURES Modified: head/devel/rubygem-activesupport41/Makefile Modified: head/devel/rubygem-activesupport41/Makefile ============================================================================== --- head/devel/rubygem-activesupport41/Makefile Thu Aug 13 17:37:03 2015 (r394146) +++ head/devel/rubygem-activesupport41/Makefile Thu Aug 13 17:37:08 2015 (r394147) @@ -18,9 +18,9 @@ RUN_DEPENDS= rubygem-i18n>=0.6.9:${PORTS rubygem-thread_safe1>=0.1:${PORTSDIR}/devel/rubygem-thread_safe1 \ rubygem-tzinfo>=1.1:${PORTSDIR}/devel/rubygem-tzinfo +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes -USE_RUBY_FEATURES= iconv RUBYGEM_AUTOPLIST= yes PORTSCOUT= limit:^4\.1 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:14 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A65B09B8C2E; Thu, 13 Aug 2015 17:37:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 940B17F2; Thu, 13 Aug 2015 17:37:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbEUd052957; Thu, 13 Aug 2015 17:37:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbENQ052954; Thu, 13 Aug 2015 17:37:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbENQ052954@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394148 - head/devel/rubygem-oj X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:14 -0000 Author: sunpoet Date: Thu Aug 13 17:37:13 2015 New Revision: 394148 URL: https://svnweb.freebsd.org/changeset/ports/394148 Log: - Update to 2.12.12 Changes: http://www.ohler.com/dev/oj_misc/release_notes.html Modified: head/devel/rubygem-oj/Makefile head/devel/rubygem-oj/distinfo Modified: head/devel/rubygem-oj/Makefile ============================================================================== --- head/devel/rubygem-oj/Makefile Thu Aug 13 17:37:08 2015 (r394147) +++ head/devel/rubygem-oj/Makefile Thu Aug 13 17:37:13 2015 (r394148) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= oj -PORTVERSION= 2.12.10 +PORTVERSION= 2.12.12 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-oj/distinfo ============================================================================== --- head/devel/rubygem-oj/distinfo Thu Aug 13 17:37:08 2015 (r394147) +++ head/devel/rubygem-oj/distinfo Thu Aug 13 17:37:13 2015 (r394148) @@ -1,2 +1,2 @@ -SHA256 (rubygem/oj-2.12.10.gem) = e54c4959ab2b1b7cc6eae675c933ed52b14333713ef526cc7144da4b8ee71962 -SIZE (rubygem/oj-2.12.10.gem) = 115200 +SHA256 (rubygem/oj-2.12.12.gem) = dfe34453574c05166caa7165dac9a687579285356223751dd85a5587e54afeb3 +SIZE (rubygem/oj-2.12.12.gem) = 115712 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE6179B8C56; Thu, 13 Aug 2015 17:37:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 975638DE; Thu, 13 Aug 2015 17:37:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbJXC053071; Thu, 13 Aug 2015 17:37:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbJrQ053069; Thu, 13 Aug 2015 17:37:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbJrQ053069@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394149 - head/devel/rubygem-rack-mini-profiler X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:19 -0000 Author: sunpoet Date: Thu Aug 13 17:37:18 2015 New Revision: 394149 URL: https://svnweb.freebsd.org/changeset/ports/394149 Log: - Update to 0.9.7 Changes: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/CHANGELOG.md Modified: head/devel/rubygem-rack-mini-profiler/Makefile head/devel/rubygem-rack-mini-profiler/distinfo Modified: head/devel/rubygem-rack-mini-profiler/Makefile ============================================================================== --- head/devel/rubygem-rack-mini-profiler/Makefile Thu Aug 13 17:37:13 2015 (r394148) +++ head/devel/rubygem-rack-mini-profiler/Makefile Thu Aug 13 17:37:18 2015 (r394149) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rack-mini-profiler -PORTVERSION= 0.9.6 +PORTVERSION= 0.9.7 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-rack-mini-profiler/distinfo ============================================================================== --- head/devel/rubygem-rack-mini-profiler/distinfo Thu Aug 13 17:37:13 2015 (r394148) +++ head/devel/rubygem-rack-mini-profiler/distinfo Thu Aug 13 17:37:18 2015 (r394149) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rack-mini-profiler-0.9.6.gem) = cc2b72e65f0693ffd1cabfc16c87b503d9406d9f0e3f6f04c8a332876213fc15 -SIZE (rubygem/rack-mini-profiler-0.9.6.gem) = 95744 +SHA256 (rubygem/rack-mini-profiler-0.9.7.gem) = 9284bab7ff3f9cdb3eaf0bf2b3ff9e75e27f8ec159d0ae1d637965a443379f0e +SIZE (rubygem/rack-mini-profiler-0.9.7.gem) = 95744 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB1829B8C7C; Thu, 13 Aug 2015 17:37:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B9859A2; Thu, 13 Aug 2015 17:37:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbO19053188; Thu, 13 Aug 2015 17:37:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbOEr053186; Thu, 13 Aug 2015 17:37:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbOEr053186@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394150 - head/devel/rubygem-redis-activesupport X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:24 -0000 Author: sunpoet Date: Thu Aug 13 17:37:23 2015 New Revision: 394150 URL: https://svnweb.freebsd.org/changeset/ports/394150 Log: - Update to 4.1.1 Changes: https://github.com/redis-store/redis-activesupport/commits/master Modified: head/devel/rubygem-redis-activesupport/Makefile head/devel/rubygem-redis-activesupport/distinfo Modified: head/devel/rubygem-redis-activesupport/Makefile ============================================================================== --- head/devel/rubygem-redis-activesupport/Makefile Thu Aug 13 17:37:18 2015 (r394149) +++ head/devel/rubygem-redis-activesupport/Makefile Thu Aug 13 17:37:23 2015 (r394150) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= redis-activesupport -PORTVERSION= 4.1.0 +PORTVERSION= 4.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-redis-activesupport/distinfo ============================================================================== --- head/devel/rubygem-redis-activesupport/distinfo Thu Aug 13 17:37:18 2015 (r394149) +++ head/devel/rubygem-redis-activesupport/distinfo Thu Aug 13 17:37:23 2015 (r394150) @@ -1,2 +1,2 @@ -SHA256 (rubygem/redis-activesupport-4.1.0.gem) = dcfe8d8d7ae5910d894cb27fee6be88a8f32e92aaf9f4c4ce45c1ec3385c36bc -SIZE (rubygem/redis-activesupport-4.1.0.gem) = 11264 +SHA256 (rubygem/redis-activesupport-4.1.1.gem) = a1143f901b2e75b666e864e1a0b3df140afb2e6a4d7b4d46f17ac285a37391f5 +SIZE (rubygem/redis-activesupport-4.1.1.gem) = 11264 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D41E9B8CA5; Thu, 13 Aug 2015 17:37:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EABA5AD4; Thu, 13 Aug 2015 17:37:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbT7C053305; Thu, 13 Aug 2015 17:37:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbTF4053303; Thu, 13 Aug 2015 17:37:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbTF4053303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394151 - head/devel/rubygem-sprockets3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:30 -0000 Author: sunpoet Date: Thu Aug 13 17:37:28 2015 New Revision: 394151 URL: https://svnweb.freebsd.org/changeset/ports/394151 Log: - Update to 3.3.0 Changes: https://github.com/rails/sprockets/blob/3.x/CHANGELOG.md Modified: head/devel/rubygem-sprockets3/Makefile head/devel/rubygem-sprockets3/distinfo Modified: head/devel/rubygem-sprockets3/Makefile ============================================================================== --- head/devel/rubygem-sprockets3/Makefile Thu Aug 13 17:37:23 2015 (r394150) +++ head/devel/rubygem-sprockets3/Makefile Thu Aug 13 17:37:28 2015 (r394151) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= sprockets -PORTVERSION= 3.2.0 -PORTREVISION= 2 +PORTVERSION= 3.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 Modified: head/devel/rubygem-sprockets3/distinfo ============================================================================== --- head/devel/rubygem-sprockets3/distinfo Thu Aug 13 17:37:23 2015 (r394150) +++ head/devel/rubygem-sprockets3/distinfo Thu Aug 13 17:37:28 2015 (r394151) @@ -1,2 +1,2 @@ -SHA256 (rubygem/sprockets-3.2.0.gem) = bc04b32486d0928258eac4095bcf263178f43f2673d13fbbb728c99378587a92 -SIZE (rubygem/sprockets-3.2.0.gem) = 60928 +SHA256 (rubygem/sprockets-3.3.0.gem) = e174312722d95776b0860dd654be31153678dab7a2358a3a0682aa4932e48322 +SIZE (rubygem/sprockets-3.3.0.gem) = 66048 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51DAB9B8CCE; Thu, 13 Aug 2015 17:37:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4274DB64; Thu, 13 Aug 2015 17:37:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbYQk053422; Thu, 13 Aug 2015 17:37:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbXeE053420; Thu, 13 Aug 2015 17:37:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbXeE053420@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394152 - head/graphics/rubygem-mini_magick X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:34 -0000 Author: sunpoet Date: Thu Aug 13 17:37:33 2015 New Revision: 394152 URL: https://svnweb.freebsd.org/changeset/ports/394152 Log: - Update to 4.2.10 Changes: https://github.com/minimagick/minimagick/releases Modified: head/graphics/rubygem-mini_magick/Makefile head/graphics/rubygem-mini_magick/distinfo Modified: head/graphics/rubygem-mini_magick/Makefile ============================================================================== --- head/graphics/rubygem-mini_magick/Makefile Thu Aug 13 17:37:28 2015 (r394151) +++ head/graphics/rubygem-mini_magick/Makefile Thu Aug 13 17:37:33 2015 (r394152) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mini_magick -PORTVERSION= 4.2.7 +PORTVERSION= 4.2.10 CATEGORIES= graphics rubygems MASTER_SITES= RG Modified: head/graphics/rubygem-mini_magick/distinfo ============================================================================== --- head/graphics/rubygem-mini_magick/distinfo Thu Aug 13 17:37:28 2015 (r394151) +++ head/graphics/rubygem-mini_magick/distinfo Thu Aug 13 17:37:33 2015 (r394152) @@ -1,2 +1,2 @@ -SHA256 (rubygem/mini_magick-4.2.7.gem) = 24f56c4561e9406d40f637a5f1ea9bc469fbd3b549c692061868fb7c054ff386 -SIZE (rubygem/mini_magick-4.2.7.gem) = 16384 +SHA256 (rubygem/mini_magick-4.2.10.gem) = 724f8f434010601a7190bb6c972e85b8332e3dd1addb7e545ce81071c89fe118 +SIZE (rubygem/mini_magick-4.2.10.gem) = 16384 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25DCE9B8CF2; Thu, 13 Aug 2015 17:37:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16525C3F; Thu, 13 Aug 2015 17:37:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbcON053537; Thu, 13 Aug 2015 17:37:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbcIk053534; Thu, 13 Aug 2015 17:37:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbcIk053534@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394153 - head/textproc/rubygem-jekyll-assets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:39 -0000 Author: sunpoet Date: Thu Aug 13 17:37:37 2015 New Revision: 394153 URL: https://svnweb.freebsd.org/changeset/ports/394153 Log: - Update to 1.0.0 Changes: https://github.com/jekyll-assets/jekyll-assets/releases Modified: head/textproc/rubygem-jekyll-assets/Makefile head/textproc/rubygem-jekyll-assets/distinfo Modified: head/textproc/rubygem-jekyll-assets/Makefile ============================================================================== --- head/textproc/rubygem-jekyll-assets/Makefile Thu Aug 13 17:37:33 2015 (r394152) +++ head/textproc/rubygem-jekyll-assets/Makefile Thu Aug 13 17:37:37 2015 (r394153) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jekyll-assets -PORTVERSION= 0.14.0 +PORTVERSION= 1.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -12,7 +12,7 @@ COMMENT= Create javascript/CSS assets fo LICENSE= MIT RUN_DEPENDS= rubygem-fastimage>=1.6:${PORTSDIR}/graphics/rubygem-fastimage \ - rubygem-jekyll>=2.0:${PORTSDIR}/www/rubygem-jekyll \ + rubygem-jekyll>=2:${PORTSDIR}/www/rubygem-jekyll \ rubygem-mini_magick>=4.1:${PORTSDIR}/graphics/rubygem-mini_magick \ rubygem-sass>=3.2:${PORTSDIR}/textproc/rubygem-sass \ rubygem-sprockets>=2.10:${PORTSDIR}/devel/rubygem-sprockets \ Modified: head/textproc/rubygem-jekyll-assets/distinfo ============================================================================== --- head/textproc/rubygem-jekyll-assets/distinfo Thu Aug 13 17:37:33 2015 (r394152) +++ head/textproc/rubygem-jekyll-assets/distinfo Thu Aug 13 17:37:37 2015 (r394153) @@ -1,2 +1,2 @@ -SHA256 (rubygem/jekyll-assets-0.14.0.gem) = 9dab8be32ba0849d78bbb580555fe0e90c48642da88cf0d6bb6efe56efbf0673 -SIZE (rubygem/jekyll-assets-0.14.0.gem) = 36864 +SHA256 (rubygem/jekyll-assets-1.0.0.gem) = ddfe7eb06ea5ed8eef190b366f35113b0493bdc3513ab7686a14b36799c3ddb3 +SIZE (rubygem/jekyll-assets-1.0.0.gem) = 35840 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 76F649B8D29; Thu, 13 Aug 2015 17:37:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67B3BD22; Thu, 13 Aug 2015 17:37:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbhBn053639; Thu, 13 Aug 2015 17:37:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbhnT053638; Thu, 13 Aug 2015 17:37:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbhnT053638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394154 - head/security/rubygem-net-ssh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:43 -0000 Author: sunpoet Date: Thu Aug 13 17:37:42 2015 New Revision: 394154 URL: https://svnweb.freebsd.org/changeset/ports/394154 Log: - Add PORTSCOUT Modified: head/security/rubygem-net-ssh/Makefile Modified: head/security/rubygem-net-ssh/Makefile ============================================================================== --- head/security/rubygem-net-ssh/Makefile Thu Aug 13 17:37:37 2015 (r394153) +++ head/security/rubygem-net-ssh/Makefile Thu Aug 13 17:37:42 2015 (r394154) @@ -17,6 +17,8 @@ OPTIONS_DEFAULT=PROMPT_PASSPHRASES OPTIONSFILE?= ${PORT_DBDIR}/rubygem-${PORTNAME}/options PROMPT_PASSPHRASES_DESC= Prompt for passphrases on keys +PORTSCOUT= skipv:2.10.0 + USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DB299B8D5C; Thu, 13 Aug 2015 17:37:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DF26DFA; Thu, 13 Aug 2015 17:37:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbmPE053756; Thu, 13 Aug 2015 17:37:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbljT053754; Thu, 13 Aug 2015 17:37:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbljT053754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394155 - head/security/rubygem-ruby-saml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:48 -0000 Author: sunpoet Date: Thu Aug 13 17:37:47 2015 New Revision: 394155 URL: https://svnweb.freebsd.org/changeset/ports/394155 Log: - Update to 1.0.0 Changes: https://github.com/onelogin/ruby-saml/blob/master/changelog.md Modified: head/security/rubygem-ruby-saml/Makefile head/security/rubygem-ruby-saml/distinfo Modified: head/security/rubygem-ruby-saml/Makefile ============================================================================== --- head/security/rubygem-ruby-saml/Makefile Thu Aug 13 17:37:42 2015 (r394154) +++ head/security/rubygem-ruby-saml/Makefile Thu Aug 13 17:37:47 2015 (r394155) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ruby-saml -PORTVERSION= 0.9.2 +PORTVERSION= 1.0.0 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-ruby-saml/distinfo ============================================================================== --- head/security/rubygem-ruby-saml/distinfo Thu Aug 13 17:37:42 2015 (r394154) +++ head/security/rubygem-ruby-saml/distinfo Thu Aug 13 17:37:47 2015 (r394155) @@ -1,2 +1,2 @@ -SHA256 (rubygem/ruby-saml-0.9.2.gem) = 3161d7bfd1c07bab038d3dbe3dfa91706506f71bd1d448ba19423c01bb00eaff -SIZE (rubygem/ruby-saml-0.9.2.gem) = 90624 +SHA256 (rubygem/ruby-saml-1.0.0.gem) = 24ea186d2506dd99f19acbc2f1b3bf637e0df40ef5ee73d8f2c552a158221643 +SIZE (rubygem/ruby-saml-1.0.0.gem) = 204800 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5F839B8D7F; Thu, 13 Aug 2015 17:37:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6329EC3; Thu, 13 Aug 2015 17:37:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbqqY053883; Thu, 13 Aug 2015 17:37:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbqtH053881; Thu, 13 Aug 2015 17:37:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbqtH053881@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394156 - in head/security/rubygem-omniauth-saml: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:52 -0000 Author: sunpoet Date: Thu Aug 13 17:37:51 2015 New Revision: 394156 URL: https://svnweb.freebsd.org/changeset/ports/394156 Log: - Update to 1.4.1 Changes: https://github.com/PracticallyGreen/omniauth-saml/releases Deleted: head/security/rubygem-omniauth-saml/files/ Modified: head/security/rubygem-omniauth-saml/Makefile head/security/rubygem-omniauth-saml/distinfo Modified: head/security/rubygem-omniauth-saml/Makefile ============================================================================== --- head/security/rubygem-omniauth-saml/Makefile Thu Aug 13 17:37:47 2015 (r394155) +++ head/security/rubygem-omniauth-saml/Makefile Thu Aug 13 17:37:51 2015 (r394156) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= omniauth-saml -PORTVERSION= 1.3.1 +PORTVERSION= 1.4.1 CATEGORIES= security rubygems MASTER_SITES= RG @@ -12,7 +12,7 @@ COMMENT= OmniAuth strategy for SAML LICENSE= MIT RUN_DEPENDS= rubygem-omniauth>=1.1:${PORTSDIR}/security/rubygem-omniauth \ - rubygem-ruby-saml>=0.8.1:${PORTSDIR}/security/rubygem-ruby-saml + rubygem-ruby-saml>=1.0.0:${PORTSDIR}/security/rubygem-ruby-saml NO_ARCH= yes USE_RUBY= yes Modified: head/security/rubygem-omniauth-saml/distinfo ============================================================================== --- head/security/rubygem-omniauth-saml/distinfo Thu Aug 13 17:37:47 2015 (r394155) +++ head/security/rubygem-omniauth-saml/distinfo Thu Aug 13 17:37:51 2015 (r394156) @@ -1,2 +1,2 @@ -SHA256 (rubygem/omniauth-saml-1.3.1.gem) = 41d23d263f928b8b301c4a1a02e7a7a917952665d0f79d3bf587cd99f83d8a85 -SIZE (rubygem/omniauth-saml-1.3.1.gem) = 9728 +SHA256 (rubygem/omniauth-saml-1.4.1.gem) = 38db2130940982c0eae757194ba16c400adc58f4dded517c98620e367393538a +SIZE (rubygem/omniauth-saml-1.4.1.gem) = 10752 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:37:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 542049B8DA6; Thu, 13 Aug 2015 17:37:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 44BB1FA4; Thu, 13 Aug 2015 17:37:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHbv1U053997; Thu, 13 Aug 2015 17:37:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHbutI053995; Thu, 13 Aug 2015 17:37:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131737.t7DHbutI053995@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:37:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394157 - head/sysutils/rubygem-winrm-fs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:37:57 -0000 Author: sunpoet Date: Thu Aug 13 17:37:56 2015 New Revision: 394157 URL: https://svnweb.freebsd.org/changeset/ports/394157 Log: - Update to 0.2.2 Changes: https://github.com/WinRb/winrm-fs/blob/master/changelog.md Modified: head/sysutils/rubygem-winrm-fs/Makefile head/sysutils/rubygem-winrm-fs/distinfo Modified: head/sysutils/rubygem-winrm-fs/Makefile ============================================================================== --- head/sysutils/rubygem-winrm-fs/Makefile Thu Aug 13 17:37:51 2015 (r394156) +++ head/sysutils/rubygem-winrm-fs/Makefile Thu Aug 13 17:37:56 2015 (r394157) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= winrm-fs -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-winrm-fs/distinfo ============================================================================== --- head/sysutils/rubygem-winrm-fs/distinfo Thu Aug 13 17:37:51 2015 (r394156) +++ head/sysutils/rubygem-winrm-fs/distinfo Thu Aug 13 17:37:56 2015 (r394157) @@ -1,2 +1,2 @@ -SHA256 (rubygem/winrm-fs-0.2.1.gem) = 5d5185286a027536654f143288932c3b38c970a9830f6d8d2833d4ce0ca19949 -SIZE (rubygem/winrm-fs-0.2.1.gem) = 19968 +SHA256 (rubygem/winrm-fs-0.2.2.gem) = 9facbfb337b67f5714cadb12ff34dabc72a432aaf3596080e4e2c554ce366768 +SIZE (rubygem/winrm-fs-0.2.2.gem) = 19968 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC8A59B8DC8; Thu, 13 Aug 2015 17:38:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DCDE8107E; Thu, 13 Aug 2015 17:38:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHc1Gd054118; Thu, 13 Aug 2015 17:38:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHc1Cq054116; Thu, 13 Aug 2015 17:38:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHc1Cq054116@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394158 - head/textproc/rubygem-github-markdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:02 -0000 Author: sunpoet Date: Thu Aug 13 17:38:00 2015 New Revision: 394158 URL: https://svnweb.freebsd.org/changeset/ports/394158 Log: - Update to 0.6.9 - Mark DEPRECATED Modified: head/textproc/rubygem-github-markdown/Makefile head/textproc/rubygem-github-markdown/distinfo Modified: head/textproc/rubygem-github-markdown/Makefile ============================================================================== --- head/textproc/rubygem-github-markdown/Makefile Thu Aug 13 17:37:56 2015 (r394157) +++ head/textproc/rubygem-github-markdown/Makefile Thu Aug 13 17:38:00 2015 (r394158) @@ -1,13 +1,15 @@ # $FreeBSD$ PORTNAME= github-markdown -PORTVERSION= 0.6.8 +PORTVERSION= 0.6.9 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Self-contained Markdown parser for GitHub +DEPRECATED= This gem is not maintained and not supported by upstream + USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/textproc/rubygem-github-markdown/distinfo ============================================================================== --- head/textproc/rubygem-github-markdown/distinfo Thu Aug 13 17:37:56 2015 (r394157) +++ head/textproc/rubygem-github-markdown/distinfo Thu Aug 13 17:38:00 2015 (r394158) @@ -1,2 +1,2 @@ -SHA256 (rubygem/github-markdown-0.6.8.gem) = cd11d4280d27d6c0508405a99d95d89eb35719a1cc084ca15e9ee0f632b3d5b9 -SIZE (rubygem/github-markdown-0.6.8.gem) = 36864 +SHA256 (rubygem/github-markdown-0.6.9.gem) = d2250d80ac08a975c12ff8b4a45a678041044333ac56834fac3d7de8bd235d59 +SIZE (rubygem/github-markdown-0.6.9.gem) = 36864 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94EF09B8DDF; Thu, 13 Aug 2015 17:38:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 817FF1146; Thu, 13 Aug 2015 17:38:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHc6C5054235; Thu, 13 Aug 2015 17:38:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHc6jO054233; Thu, 13 Aug 2015 17:38:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHc6jO054233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394159 - head/textproc/rubygem-jekyll-gist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:06 -0000 Author: sunpoet Date: Thu Aug 13 17:38:05 2015 New Revision: 394159 URL: https://svnweb.freebsd.org/changeset/ports/394159 Log: - Update to 1.3.0 Changes: https://github.com/jekyll/jekyll-gist/blob/master/History.markdown Modified: head/textproc/rubygem-jekyll-gist/Makefile head/textproc/rubygem-jekyll-gist/distinfo Modified: head/textproc/rubygem-jekyll-gist/Makefile ============================================================================== --- head/textproc/rubygem-jekyll-gist/Makefile Thu Aug 13 17:38:00 2015 (r394158) +++ head/textproc/rubygem-jekyll-gist/Makefile Thu Aug 13 17:38:05 2015 (r394159) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jekyll-gist -PORTVERSION= 1.2.1 +PORTVERSION= 1.3.0 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/rubygem-jekyll-gist/distinfo ============================================================================== --- head/textproc/rubygem-jekyll-gist/distinfo Thu Aug 13 17:38:00 2015 (r394158) +++ head/textproc/rubygem-jekyll-gist/distinfo Thu Aug 13 17:38:05 2015 (r394159) @@ -1,2 +1,2 @@ -SHA256 (rubygem/jekyll-gist-1.2.1.gem) = 7b2577826645d21750439b986ef9c89a93bb39297915c56d10ca29ccdbe31e82 -SIZE (rubygem/jekyll-gist-1.2.1.gem) = 8192 +SHA256 (rubygem/jekyll-gist-1.3.0.gem) = b81400ecd5a296cb37b70386ba93dcd0b6c756dfd605eebc07bdd6b9923954c7 +SIZE (rubygem/jekyll-gist-1.3.0.gem) = 9216 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 786C99B8E09; Thu, 13 Aug 2015 17:38:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68AD9122A; Thu, 13 Aug 2015 17:38:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcBUl054352; Thu, 13 Aug 2015 17:38:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcAO5054350; Thu, 13 Aug 2015 17:38:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcAO5054350@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394160 - head/www/rubygem-browser X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:11 -0000 Author: sunpoet Date: Thu Aug 13 17:38:10 2015 New Revision: 394160 URL: https://svnweb.freebsd.org/changeset/ports/394160 Log: - Update to 0.9.1 Changes: https://github.com/fnando/browser/commits/master Modified: head/www/rubygem-browser/Makefile head/www/rubygem-browser/distinfo Modified: head/www/rubygem-browser/Makefile ============================================================================== --- head/www/rubygem-browser/Makefile Thu Aug 13 17:38:05 2015 (r394159) +++ head/www/rubygem-browser/Makefile Thu Aug 13 17:38:10 2015 (r394160) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= browser -PORTVERSION= 0.9.0 +PORTVERSION= 0.9.1 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-browser/distinfo ============================================================================== --- head/www/rubygem-browser/distinfo Thu Aug 13 17:38:05 2015 (r394159) +++ head/www/rubygem-browser/distinfo Thu Aug 13 17:38:10 2015 (r394160) @@ -1,2 +1,2 @@ -SHA256 (rubygem/browser-0.9.0.gem) = 69282907b6a934bf3524143b42cfc7e6d53801cadff379ccd19763fe6fb32a13 -SIZE (rubygem/browser-0.9.0.gem) = 26112 +SHA256 (rubygem/browser-0.9.1.gem) = faa4334ce3aaf1ef3a81ca1c6aec50d826fb567292cdfc9c60cf6401efd6676e +SIZE (rubygem/browser-0.9.1.gem) = 26112 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC2F79B8E2E; Thu, 13 Aug 2015 17:38:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C09551300; Thu, 13 Aug 2015 17:38:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcGu6054483; Thu, 13 Aug 2015 17:38:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcGqU054479; Thu, 13 Aug 2015 17:38:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcGqU054479@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394161 - in head/www/rubygem-gollum-lib: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:17 -0000 Author: sunpoet Date: Thu Aug 13 17:38:15 2015 New Revision: 394161 URL: https://svnweb.freebsd.org/changeset/ports/394161 Log: - Update to 4.1.0 - Add NO_ARCH Changes: https://github.com/gollum/gollum-lib/blob/master/HISTORY.md https://github.com/gollum/gollum-lib/commits/master Modified: head/www/rubygem-gollum-lib/Makefile head/www/rubygem-gollum-lib/distinfo head/www/rubygem-gollum-lib/files/patch-gemspec Modified: head/www/rubygem-gollum-lib/Makefile ============================================================================== --- head/www/rubygem-gollum-lib/Makefile Thu Aug 13 17:38:10 2015 (r394160) +++ head/www/rubygem-gollum-lib/Makefile Thu Aug 13 17:38:15 2015 (r394161) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gollum-lib -PORTVERSION= 4.0.3 -PORTREVISION= 1 +PORTVERSION= 4.1.0 CATEGORIES= www rubygems MASTER_SITES= RG @@ -16,10 +15,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-github-markup>=1.3.3:${PORTSDIR}/textproc/rubygem-github-markup \ rubygem-gollum-grit_adapter>=1.0:${PORTSDIR}/www/rubygem-gollum-grit_adapter \ rubygem-nokogiri>=1.6.4:${PORTSDIR}/textproc/rubygem-nokogiri \ - rubygem-rouge>=1.7.4:${PORTSDIR}/textproc/rubygem-rouge \ + rubygem-rouge>=1.9:${PORTSDIR}/textproc/rubygem-rouge \ rubygem-sanitize>=2.1.0:${PORTSDIR}/textproc/rubygem-sanitize \ rubygem-stringex>=2.5.1:${PORTSDIR}/devel/rubygem-stringex +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/www/rubygem-gollum-lib/distinfo ============================================================================== --- head/www/rubygem-gollum-lib/distinfo Thu Aug 13 17:38:10 2015 (r394160) +++ head/www/rubygem-gollum-lib/distinfo Thu Aug 13 17:38:15 2015 (r394161) @@ -1,2 +1,2 @@ -SHA256 (rubygem/gollum-lib-4.0.3.gem) = 7e7aa8ac271a201479b837d82a9812d36d1144c3f98c30fdf777b2a07eff12b9 -SIZE (rubygem/gollum-lib-4.0.3.gem) = 45568 +SHA256 (rubygem/gollum-lib-4.1.0.gem) = b5b95f0fbef3208e493b4ae0689b5abbd8c5324f0742e375658f0d06ffbb4807 +SIZE (rubygem/gollum-lib-4.1.0.gem) = 47616 Modified: head/www/rubygem-gollum-lib/files/patch-gemspec ============================================================================== --- head/www/rubygem-gollum-lib/files/patch-gemspec Thu Aug 13 17:38:10 2015 (r394160) +++ head/www/rubygem-gollum-lib/files/patch-gemspec Thu Aug 13 17:38:15 2015 (r394161) @@ -1,11 +1,7 @@ ---- gollum-lib.gemspec.orig 2015-08-02 05:43:28 UTC +--- gollum-lib.gemspec.orig 2015-08-12 15:29:02 UTC +++ gollum-lib.gemspec -@@ -26,11 +26,11 @@ Gem::Specification.new do |s| - - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q, ["~> 1.0"]) -- s.add_runtime_dependency(%q, ["~> 1.7.4"]) -+ s.add_runtime_dependency(%q, [">= 1.7.4"]) +@@ -29,8 +29,8 @@ Gem::Specification.new do |s| + s.add_runtime_dependency(%q, ["~> 1.9"]) s.add_runtime_dependency(%q, ["~> 1.6.4"]) s.add_runtime_dependency(%q, ["~> 2.5.1"]) - s.add_runtime_dependency(%q, ["~> 2.1.0"]) From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E251A9B8E53; Thu, 13 Aug 2015 17:38:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D03ED13E2; Thu, 13 Aug 2015 17:38:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcLtc054599; Thu, 13 Aug 2015 17:38:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcLK8054597; Thu, 13 Aug 2015 17:38:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcLK8054597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394162 - head/www/rubygem-haml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:22 -0000 Author: sunpoet Date: Thu Aug 13 17:38:20 2015 New Revision: 394162 URL: https://svnweb.freebsd.org/changeset/ports/394162 Log: - Update to 4.0.7 Changes: https://github.com/haml/haml/blob/master/CHANGELOG.md Modified: head/www/rubygem-haml/Makefile head/www/rubygem-haml/distinfo Modified: head/www/rubygem-haml/Makefile ============================================================================== --- head/www/rubygem-haml/Makefile Thu Aug 13 17:38:15 2015 (r394161) +++ head/www/rubygem-haml/Makefile Thu Aug 13 17:38:20 2015 (r394162) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= haml -PORTVERSION= 4.0.6 +PORTVERSION= 4.0.7 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-haml/distinfo ============================================================================== --- head/www/rubygem-haml/distinfo Thu Aug 13 17:38:15 2015 (r394161) +++ head/www/rubygem-haml/distinfo Thu Aug 13 17:38:20 2015 (r394162) @@ -1,2 +1,2 @@ -SHA256 (rubygem/haml-4.0.6.gem) = 2ede5f8a1f38d98e71daf570d836ec0db18e1c6187c383a50fb7eb2223beff23 -SIZE (rubygem/haml-4.0.6.gem) = 115712 +SHA256 (rubygem/haml-4.0.7.gem) = 3754d0f7c21cf261a30b207a94524211293b921492fab58c89d1ede7e7933f57 +SIZE (rubygem/haml-4.0.7.gem) = 121856 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C6E49B8E78; Thu, 13 Aug 2015 17:38:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D0981628; Thu, 13 Aug 2015 17:38:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcP22054689; Thu, 13 Aug 2015 17:38:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcP1k054688; Thu, 13 Aug 2015 17:38:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcP1k054688@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394163 - head/www/rubygem-kensa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:26 -0000 Author: sunpoet Date: Thu Aug 13 17:38:25 2015 New Revision: 394163 URL: https://svnweb.freebsd.org/changeset/ports/394163 Log: - Add NO_ARCH Approved by: portmgr (blanket) Modified: head/www/rubygem-kensa/Makefile Modified: head/www/rubygem-kensa/Makefile ============================================================================== --- head/www/rubygem-kensa/Makefile Thu Aug 13 17:38:20 2015 (r394162) +++ head/www/rubygem-kensa/Makefile Thu Aug 13 17:38:25 2015 (r394163) @@ -11,6 +11,7 @@ COMMENT= Heroku Add-On provider tool LICENSE= MIT +NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2DD369B8E99; Thu, 13 Aug 2015 17:38:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E7DB1701; Thu, 13 Aug 2015 17:38:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcTB0054779; Thu, 13 Aug 2015 17:38:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcTHv054778; Thu, 13 Aug 2015 17:38:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcTHv054778@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394164 - head/www/rubygem-rabbirack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:30 -0000 Author: sunpoet Date: Thu Aug 13 17:38:29 2015 New Revision: 394164 URL: https://svnweb.freebsd.org/changeset/ports/394164 Log: - Add NO_ARCH Approved by: portmgr (blanket) Modified: head/www/rubygem-rabbirack/Makefile Modified: head/www/rubygem-rabbirack/Makefile ============================================================================== --- head/www/rubygem-rabbirack/Makefile Thu Aug 13 17:38:25 2015 (r394163) +++ head/www/rubygem-rabbirack/Makefile Thu Aug 13 17:38:29 2015 (r394164) @@ -17,6 +17,7 @@ RUN_DEPENDS= rubygem-haml>0:${PORTSDIR}/ rubygem-rabbit>=2.0.0:${PORTSDIR}/misc/rubygem-rabbit \ rubygem-sinatra>0:${PORTSDIR}/www/rubygem-sinatra +NO_ARCH= yes USES= gettext USE_RUBY= yes USE_RUBYGEMS= yes From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 472E79B8EBF; Thu, 13 Aug 2015 17:38:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0385F1818; Thu, 13 Aug 2015 17:38:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcYYQ054893; Thu, 13 Aug 2015 17:38:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcYd6054891; Thu, 13 Aug 2015 17:38:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcYd6054891@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394165 - head/www/rubygem-puma X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:35 -0000 Author: sunpoet Date: Thu Aug 13 17:38:33 2015 New Revision: 394165 URL: https://svnweb.freebsd.org/changeset/ports/394165 Log: - Update to 2.12.3 Changes: https://github.com/puma/puma/blob/master/History.txt Modified: head/www/rubygem-puma/Makefile head/www/rubygem-puma/distinfo Modified: head/www/rubygem-puma/Makefile ============================================================================== --- head/www/rubygem-puma/Makefile Thu Aug 13 17:38:29 2015 (r394164) +++ head/www/rubygem-puma/Makefile Thu Aug 13 17:38:33 2015 (r394165) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= puma -PORTVERSION= 2.12.2 +PORTVERSION= 2.12.3 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-puma/distinfo ============================================================================== --- head/www/rubygem-puma/distinfo Thu Aug 13 17:38:29 2015 (r394164) +++ head/www/rubygem-puma/distinfo Thu Aug 13 17:38:33 2015 (r394165) @@ -1,2 +1,2 @@ -SHA256 (rubygem/puma-2.12.2.gem) = 9646d09c48973051140f9372f82aba993a0bcb8fca6ccf4738f079c9b76cf726 -SIZE (rubygem/puma-2.12.2.gem) = 96768 +SHA256 (rubygem/puma-2.12.3.gem) = 88b70ab3f7fdd38950f6527ce46ae69f9272eaf94b0bb88c2bf2e06a0d4debc9 +SIZE (rubygem/puma-2.12.3.gem) = 96768 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E19B59B8ED3; Thu, 13 Aug 2015 17:38:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE22618D7; Thu, 13 Aug 2015 17:38:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcdWY055010; Thu, 13 Aug 2015 17:38:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcdLg055008; Thu, 13 Aug 2015 17:38:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcdLg055008@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394166 - head/www/rubygem-rack-contrib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:40 -0000 Author: sunpoet Date: Thu Aug 13 17:38:38 2015 New Revision: 394166 URL: https://svnweb.freebsd.org/changeset/ports/394166 Log: - Update to 1.4.0 Changes: https://github.com/rack/rack-contrib/blob/master/CHANGELOG.md https://github.com/rack/rack-contrib/commits/master Modified: head/www/rubygem-rack-contrib/Makefile head/www/rubygem-rack-contrib/distinfo Modified: head/www/rubygem-rack-contrib/Makefile ============================================================================== --- head/www/rubygem-rack-contrib/Makefile Thu Aug 13 17:38:33 2015 (r394165) +++ head/www/rubygem-rack-contrib/Makefile Thu Aug 13 17:38:38 2015 (r394166) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rack-contrib -PORTVERSION= 1.3.0 +PORTVERSION= 1.4.0 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-rack-contrib/distinfo ============================================================================== --- head/www/rubygem-rack-contrib/distinfo Thu Aug 13 17:38:33 2015 (r394165) +++ head/www/rubygem-rack-contrib/distinfo Thu Aug 13 17:38:38 2015 (r394166) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rack-contrib-1.3.0.gem) = 1bb12c0666e941c8c69be5ca5321f3d9e82240270f26ff5eaa407c9978d72a49 -SIZE (rubygem/rack-contrib-1.3.0.gem) = 27648 +SHA256 (rubygem/rack-contrib-1.4.0.gem) = 06962bb07f3fb4d10117729a34d3ea2369991fb75184ebbcf6fd571d9ee6f348 +SIZE (rubygem/rack-contrib-1.4.0.gem) = 29696 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B71179B8F07; Thu, 13 Aug 2015 17:38:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99F8C19AB; Thu, 13 Aug 2015 17:38:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcimT055127; Thu, 13 Aug 2015 17:38:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHciPi055125; Thu, 13 Aug 2015 17:38:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHciPi055125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394167 - head/www/rubygem-typhoeus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:44 -0000 Author: sunpoet Date: Thu Aug 13 17:38:43 2015 New Revision: 394167 URL: https://svnweb.freebsd.org/changeset/ports/394167 Log: - Update to 0.7.3 Changes: https://github.com/typhoeus/typhoeus/blob/master/CHANGELOG.md Modified: head/www/rubygem-typhoeus/Makefile head/www/rubygem-typhoeus/distinfo Modified: head/www/rubygem-typhoeus/Makefile ============================================================================== --- head/www/rubygem-typhoeus/Makefile Thu Aug 13 17:38:38 2015 (r394166) +++ head/www/rubygem-typhoeus/Makefile Thu Aug 13 17:38:43 2015 (r394167) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= typhoeus -PORTVERSION= 0.7.2 +PORTVERSION= 0.7.3 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-typhoeus/distinfo ============================================================================== --- head/www/rubygem-typhoeus/distinfo Thu Aug 13 17:38:38 2015 (r394166) +++ head/www/rubygem-typhoeus/distinfo Thu Aug 13 17:38:43 2015 (r394167) @@ -1,2 +1,2 @@ -SHA256 (rubygem/typhoeus-0.7.2.gem) = 073fc5b57a49c17cfa0fda61573a4b590b21bd0c27aed9fb6bee432a024644c3 -SIZE (rubygem/typhoeus-0.7.2.gem) = 51712 +SHA256 (rubygem/typhoeus-0.7.3.gem) = 13d1b1056fcb559d571da52fb13387797ff7b4f99ea157a7ef80e121e9356061 +SIZE (rubygem/typhoeus-0.7.3.gem) = 51712 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A52B9B8F2E; Thu, 13 Aug 2015 17:38:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AFD21A7D; Thu, 13 Aug 2015 17:38:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcnLH055244; Thu, 13 Aug 2015 17:38:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcmok055242; Thu, 13 Aug 2015 17:38:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcmok055242@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394168 - head/net/pear-Net_SMTP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:49 -0000 Author: sunpoet Date: Thu Aug 13 17:38:48 2015 New Revision: 394168 URL: https://svnweb.freebsd.org/changeset/ports/394168 Log: - Update to 1.6.3 - Add LICENSE - Add NO_ARCH - Fix indent Changes: http://pear.php.net/package/Net_SMTP/download/ Modified: head/net/pear-Net_SMTP/Makefile head/net/pear-Net_SMTP/distinfo Modified: head/net/pear-Net_SMTP/Makefile ============================================================================== --- head/net/pear-Net_SMTP/Makefile Thu Aug 13 17:38:43 2015 (r394167) +++ head/net/pear-Net_SMTP/Makefile Thu Aug 13 17:38:48 2015 (r394168) @@ -2,16 +2,19 @@ # $FreeBSD$ PORTNAME= Net_SMTP -PORTVERSION= 1.6.2 +PORTVERSION= 1.6.3 CATEGORIES= net mail www pear MAINTAINER= ports@FreeBSD.org COMMENT= PEAR class that provides an implementation of the SMTP protocol +LICENSE= PHP301 + BUILD_DEPENDS= ${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket RUN_DEPENDS= ${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket -USES= pear +NO_ARCH= yes +USES= pear OPTIONS_DEFINE= PEAR_AUTH_SASL PEAR_AUTH_SASL_DESC= PEAR::Auth_SASL support Modified: head/net/pear-Net_SMTP/distinfo ============================================================================== --- head/net/pear-Net_SMTP/distinfo Thu Aug 13 17:38:43 2015 (r394167) +++ head/net/pear-Net_SMTP/distinfo Thu Aug 13 17:38:48 2015 (r394168) @@ -1,2 +1,2 @@ -SHA256 (PEAR/Net_SMTP-1.6.2.tgz) = 98d3ab28e99de2a8b1c39650c3ac107ac1caf09639b1d2018adf058dd9864785 -SIZE (PEAR/Net_SMTP-1.6.2.tgz) = 13077 +SHA256 (PEAR/Net_SMTP-1.6.3.tgz) = 6481f81886a33d4fccb2e19baa8da91b615fe4095659de10b9ae6e2fd6220040 +SIZE (PEAR/Net_SMTP-1.6.3.tgz) = 13387 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1F569B8F54; Thu, 13 Aug 2015 17:38:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E29061B58; Thu, 13 Aug 2015 17:38:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcriu055359; Thu, 13 Aug 2015 17:38:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcrTJ055356; Thu, 13 Aug 2015 17:38:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcrTJ055356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394169 - head/irc/pear-Net_SmartIRC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:54 -0000 Author: sunpoet Date: Thu Aug 13 17:38:52 2015 New Revision: 394169 URL: https://svnweb.freebsd.org/changeset/ports/394169 Log: - Update to 1.1.8 - Add NO_ARCH Changes: http://pear.php.net/package/Net_SmartIRC/download/ Modified: head/irc/pear-Net_SmartIRC/Makefile head/irc/pear-Net_SmartIRC/distinfo Modified: head/irc/pear-Net_SmartIRC/Makefile ============================================================================== --- head/irc/pear-Net_SmartIRC/Makefile Thu Aug 13 17:38:48 2015 (r394168) +++ head/irc/pear-Net_SmartIRC/Makefile Thu Aug 13 17:38:52 2015 (r394169) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net_SmartIRC -PORTVERSION= 1.1.7 +PORTVERSION= 1.1.8 CATEGORIES= irc www pear MAINTAINER= ports@FreeBSD.org @@ -11,6 +11,7 @@ COMMENT= PEAR class for communication wi LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE +NO_ARCH= yes USES= pear .include Modified: head/irc/pear-Net_SmartIRC/distinfo ============================================================================== --- head/irc/pear-Net_SmartIRC/distinfo Thu Aug 13 17:38:48 2015 (r394168) +++ head/irc/pear-Net_SmartIRC/distinfo Thu Aug 13 17:38:52 2015 (r394169) @@ -1,2 +1,2 @@ -SHA256 (PEAR/Net_SmartIRC-1.1.7.tgz) = 68f5fe7c2de1a81b40fb741f061869799403a481ab0c624981b70ba6f0ddc064 -SIZE (PEAR/Net_SmartIRC-1.1.7.tgz) = 165329 +SHA256 (PEAR/Net_SmartIRC-1.1.8.tgz) = 21094a2fc54ca9fb901989f8f4cf1cc92d19cac666d3f6a1a65a5b056ea1fa76 +SIZE (PEAR/Net_SmartIRC-1.1.8.tgz) = 165318 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:38:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63AB99B8F74; Thu, 13 Aug 2015 17:38:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5470C1C46; Thu, 13 Aug 2015 17:38:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHcwrs055475; Thu, 13 Aug 2015 17:38:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHcvSA055473; Thu, 13 Aug 2015 17:38:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131738.t7DHcvSA055473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:38:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394170 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:38:58 -0000 Author: sunpoet Date: Thu Aug 13 17:38:57 2015 New Revision: 394170 URL: https://svnweb.freebsd.org/changeset/ports/394170 Log: - Update to 2015.08.09 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Thu Aug 13 17:38:52 2015 (r394169) +++ head/german/mythes/Makefile Thu Aug 13 17:38:57 2015 (r394170) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.07.26 +PORTVERSION= 2015.08.09 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Thu Aug 13 17:38:52 2015 (r394169) +++ head/german/mythes/distinfo Thu Aug 13 17:38:57 2015 (r394170) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20150726.oxt) = 9734a118d8d3dc21f081fcb86b582623859f3ee9643eb5eb92e844a28073135c -SIZE (mythes/Deutscher-Thesaurus-20150726.oxt) = 7011000 +SHA256 (mythes/Deutscher-Thesaurus-20150809.oxt) = b36050e8d8ee6dc96c6443066d7d6cf8d6cd6c18914855dfd2df72ff2c8c4a7a +SIZE (mythes/Deutscher-Thesaurus-20150809.oxt) = 7051289 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:39:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 053C99B8F94; Thu, 13 Aug 2015 17:39:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA25E1D1A; Thu, 13 Aug 2015 17:39:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHd2mA055596; Thu, 13 Aug 2015 17:39:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHd2mO055594; Thu, 13 Aug 2015 17:39:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131739.t7DHd2mO055594@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:39:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394171 - head/textproc/nl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:39:03 -0000 Author: sunpoet Date: Thu Aug 13 17:39:01 2015 New Revision: 394171 URL: https://svnweb.freebsd.org/changeset/ports/394171 Log: - Update to 2015.08.09 Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Thu Aug 13 17:38:57 2015 (r394170) +++ head/textproc/nl-mythes/Makefile Thu Aug 13 17:39:01 2015 (r394171) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.07.26 +PORTVERSION= 2015.08.09 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Thu Aug 13 17:38:57 2015 (r394170) +++ head/textproc/nl-mythes/distinfo Thu Aug 13 17:39:01 2015 (r394171) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20150726.oxt) = e20e14bf27f78408ed0a6f910c7cd5da5cea5fc18c873b54f89424a425682d58 -SIZE (mythes/thes_nl-20150726.oxt) = 1956069 +SHA256 (mythes/thes_nl-20150809.oxt) = 5007bdeaf2ea610b225bd4d63c905d3f3317f02ca15d00f8a2b7aa632dea61ce +SIZE (mythes/thes_nl-20150809.oxt) = 1956069 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:39:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC4159B8FB9; Thu, 13 Aug 2015 17:39:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CCFA11DF0; Thu, 13 Aug 2015 17:39:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHd77v055713; Thu, 13 Aug 2015 17:39:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHd7p2055711; Thu, 13 Aug 2015 17:39:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131739.t7DHd7p2055711@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:39:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394172 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:39:08 -0000 Author: sunpoet Date: Thu Aug 13 17:39:06 2015 New Revision: 394172 URL: https://svnweb.freebsd.org/changeset/ports/394172 Log: - Update to 2015.08.09 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Thu Aug 13 17:39:01 2015 (r394171) +++ head/textproc/sk-mythes/Makefile Thu Aug 13 17:39:06 2015 (r394172) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.07.26 +PORTVERSION= 2015.08.09 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Thu Aug 13 17:39:01 2015 (r394171) +++ head/textproc/sk-mythes/distinfo Thu Aug 13 17:39:06 2015 (r394172) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20150726.zip) = 4eda2c58ea92063176b45988f61914049f1487b075d9cf60729a692b3e0981aa -SIZE (mythes/OOo-Thesaurus2-sk_SK-20150726.zip) = 239160 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20150809.zip) = 01486b815a2df19e37281a72861dda6e7765c5f9c249da12ae07d506fd123b31 +SIZE (mythes/OOo-Thesaurus2-sk_SK-20150809.zip) = 239160 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:39:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D23519B8FE0; Thu, 13 Aug 2015 17:39:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D4BA1ED1; Thu, 13 Aug 2015 17:39:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHdClm055827; Thu, 13 Aug 2015 17:39:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHdCtl055825; Thu, 13 Aug 2015 17:39:12 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131739.t7DHdCtl055825@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:39:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394173 - head/textproc/sl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:39:13 -0000 Author: sunpoet Date: Thu Aug 13 17:39:11 2015 New Revision: 394173 URL: https://svnweb.freebsd.org/changeset/ports/394173 Log: - Update to 2015.08.09 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Thu Aug 13 17:39:06 2015 (r394172) +++ head/textproc/sl-mythes/Makefile Thu Aug 13 17:39:11 2015 (r394173) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2015.07.26 +PORTVERSION= 2015.08.09 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Thu Aug 13 17:39:06 2015 (r394172) +++ head/textproc/sl-mythes/distinfo Thu Aug 13 17:39:11 2015 (r394173) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20150726.zip) = fac185c525e88dc05b8fc0e4837572904fc1acca44e12bc435b4cdff7aa5dcbd -SIZE (mythes/thes_sl_SI_v2-20150726.zip) = 374003 +SHA256 (mythes/thes_sl_SI_v2-20150809.zip) = 6b741e9653996f14578daa0636ef5eb5616963d3ddcf2d1106d6fa7d317ce634 +SIZE (mythes/thes_sl_SI_v2-20150809.zip) = 374003 From owner-svn-ports-all@freebsd.org Thu Aug 13 17:39:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 466DF9B8024; Thu, 13 Aug 2015 17:39:55 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1CD0DE3; Thu, 13 Aug 2015 17:39:55 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHdsH4057649; Thu, 13 Aug 2015 17:39:54 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHdsBS057645; Thu, 13 Aug 2015 17:39:54 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508131739.t7DHdsBS057645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Thu, 13 Aug 2015 17:39:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394175 - in head/net-p2p: zetacoin zetacoin-nox11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:39:55 -0000 Author: pgollucci Date: Thu Aug 13 17:39:53 2015 New Revision: 394175 URL: https://svnweb.freebsd.org/changeset/ports/394175 Log: net-p2p/zetacoin{-no11}: mark broken on armv6 clean up broken message [1] c++: warning: argument unused during compilation: '-L/usr/local/lib' c++: warning: argument unused during compilation: '-L/usr/local/lib/db48' c++: warning: argument unused during compilation: '-L/usr/local/lib' c++: warning: argument unused during compilation: '-L/usr/local/lib/db48' In file included from helpers/memenv/memenv.cc:9: In file included from ./port/port.h:14: In file included from ./port/port_posix.h:50: ./port/atomic_pointer.h:212:2: error: Please implement AtomicPointer for this pl atform. ^ 1 error generated. Suggested by: mat@, dafne@ Modified: head/net-p2p/zetacoin-nox11/Makefile head/net-p2p/zetacoin/Makefile Modified: head/net-p2p/zetacoin-nox11/Makefile ============================================================================== --- head/net-p2p/zetacoin-nox11/Makefile Thu Aug 13 17:39:31 2015 (r394174) +++ head/net-p2p/zetacoin-nox11/Makefile Thu Aug 13 17:39:53 2015 (r394175) @@ -8,4 +8,6 @@ OPTIONS_EXCLUDE= X11 QRCODES SLAVE_PORT= yes +BROKEN_armv6= AtomicPointer not implemented + .include "${MASTERDIR}/Makefile" Modified: head/net-p2p/zetacoin/Makefile ============================================================================== --- head/net-p2p/zetacoin/Makefile Thu Aug 13 17:39:31 2015 (r394174) +++ head/net-p2p/zetacoin/Makefile Thu Aug 13 17:39:53 2015 (r394175) @@ -13,7 +13,7 @@ LICENSE= MIT BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconf LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs -BROKEN_armv6= #error Please implement AtomicPointer for this platform. +BROKEN_armv6= AtomicPointer not implemented USE_GITHUB= yes GH_TAGNAME= 22ddb9b From owner-svn-ports-all@freebsd.org Thu Aug 13 17:40:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3197D9B804F; Thu, 13 Aug 2015 17:40:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EF091C6; Thu, 13 Aug 2015 17:40:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHe3oK057736; Thu, 13 Aug 2015 17:40:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHdWIm057464; Thu, 13 Aug 2015 17:39:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508131739.t7DHdWIm057464@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 13 Aug 2015 17:39:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394174 - in head: benchmarks/rubygem-benchmark-ips databases/rubygem-familia databases/rubygem-redis devel/rubygem-CFPropertyList devel/rubygem-algorithms devel/rubygem-attic devel/rub... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:40:04 -0000 Author: sunpoet Date: Thu Aug 13 17:39:31 2015 New Revision: 394174 URL: https://svnweb.freebsd.org/changeset/ports/394174 Log: - Remove RG link Modified: head/benchmarks/rubygem-benchmark-ips/pkg-descr head/databases/rubygem-familia/pkg-descr head/databases/rubygem-redis/pkg-descr head/devel/rubygem-CFPropertyList/pkg-descr head/devel/rubygem-algorithms/pkg-descr head/devel/rubygem-attic/pkg-descr head/devel/rubygem-benelux/pkg-descr head/devel/rubygem-blankslate/pkg-descr head/devel/rubygem-bones/pkg-descr head/devel/rubygem-buftok/pkg-descr head/devel/rubygem-colorize/pkg-descr head/devel/rubygem-cucumber-core/pkg-descr head/devel/rubygem-drydock/pkg-descr head/devel/rubygem-ffi-compiler/pkg-descr head/devel/rubygem-fluent-logger/pkg-descr head/devel/rubygem-fog-brightbox/pkg-descr head/devel/rubygem-fog-json/pkg-descr head/devel/rubygem-gibbler/pkg-descr head/devel/rubygem-git-version-bump/pkg-descr head/devel/rubygem-inflecto/pkg-descr head/devel/rubygem-jekyll-coffeescript/pkg-descr head/devel/rubygem-listen/pkg-descr head/devel/rubygem-lumberjack/pkg-descr head/devel/rubygem-memoizable/pkg-descr head/devel/rubygem-mercenary/pkg-descr head/devel/rubygem-nenv/pkg-descr head/devel/rubygem-nio4r/pkg-descr head/devel/rubygem-notiffany/pkg-descr head/devel/rubygem-open4/pkg-descr head/devel/rubygem-rb-inotify/pkg-descr head/devel/rubygem-rb-kqueue/pkg-descr head/devel/rubygem-retryable/pkg-descr head/devel/rubygem-stella/pkg-descr head/devel/rubygem-storable/pkg-descr head/devel/rubygem-subexec/pkg-descr head/devel/rubygem-sysinfo/pkg-descr head/devel/rubygem-tdiff/pkg-descr head/devel/rubygem-term-ansicolor/pkg-descr head/devel/rubygem-toml/pkg-descr head/dns/rubygem-public_suffix_service/pkg-descr head/emulators/rubygem-fission/pkg-descr head/graphics/rubygem-png/pkg-descr head/misc/rubygem-iesd/pkg-descr head/net-im/rubygem-hipchat/pkg-descr head/net/rubygem-aws-ses/pkg-descr head/net/rubygem-dogapi/pkg-descr head/net/rubygem-dropbox-sdk/pkg-descr head/net/rubygem-fog-atmos/pkg-descr head/net/rubygem-fog-aws/pkg-descr head/net/rubygem-fog-ecloud/pkg-descr head/net/rubygem-fog-google/pkg-descr head/net/rubygem-fog-local/pkg-descr head/net/rubygem-fog-powerdns/pkg-descr head/net/rubygem-fog-profitbricks/pkg-descr head/net/rubygem-fog-radosgw/pkg-descr head/net/rubygem-fog-riakcs/pkg-descr head/net/rubygem-fog-sakuracloud/pkg-descr head/net/rubygem-fog-serverlove/pkg-descr head/net/rubygem-fog-storm_on_demand/pkg-descr head/net/rubygem-fog-terremark/pkg-descr head/net/rubygem-fog-vmfusion/pkg-descr head/net/rubygem-fog-voxel/pkg-descr head/net/rubygem-httpauth/pkg-descr head/net/rubygem-oauth2/pkg-descr head/net/rubygem-opennebula/pkg-descr head/net/rubygem-rbvmomi/pkg-descr head/net/rubygem-simple_oauth/pkg-descr head/net/rubygem-t/pkg-descr head/net/rubygem-twitter/pkg-descr head/net/rubygem-uri-redis/pkg-descr head/science/rubygem-cdo/pkg-descr head/security/rubygem-scrypt/pkg-descr head/security/rubygem-sshkit/pkg-descr head/sysutils/rubygem-backup/pkg-descr head/sysutils/rubygem-guard-compat/pkg-descr head/sysutils/rubygem-guard-livereload/pkg-descr head/sysutils/rubygem-guard-minitest/pkg-descr head/sysutils/rubygem-guard/pkg-descr head/sysutils/rubygem-parallel/pkg-descr head/sysutils/rubygem-shellany/pkg-descr head/textproc/rubygem-autoprefixer-rails/pkg-descr head/textproc/rubygem-compass-core/pkg-descr head/textproc/rubygem-compass-import-once/pkg-descr head/textproc/rubygem-css_parser/pkg-descr head/textproc/rubygem-fog-xml/pkg-descr head/textproc/rubygem-jekyll-sass-converter/pkg-descr head/textproc/rubygem-multi_xml/pkg-descr head/textproc/rubygem-nokogiri-diff/pkg-descr head/textproc/rubygem-parslet/pkg-descr head/textproc/rubygem-yard/pkg-descr head/www/rubygem-em-websocket/pkg-descr head/www/rubygem-faraday/pkg-descr head/www/rubygem-flowdock/pkg-descr head/www/rubygem-http-form_data/pkg-descr head/www/rubygem-http/pkg-descr head/www/rubygem-jwt/pkg-descr head/www/rubygem-net-http-digest_auth/pkg-descr head/www/rubygem-net-http-persistent/pkg-descr head/www/rubygem-pagerduty/pkg-descr head/www/rubygem-responders-rails3/pkg-descr head/www/rubygem-responders/pkg-descr head/www/rubygem-robots/pkg-descr head/www/rubygem-webrobots/pkg-descr Modified: head/benchmarks/rubygem-benchmark-ips/pkg-descr ============================================================================== --- head/benchmarks/rubygem-benchmark-ips/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/benchmarks/rubygem-benchmark-ips/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Benchmark.ips provides iterations per second enhancement to Benchmark. WWW: https://github.com/evanphx/benchmark-ips -RG: https://rubygems.org/gems/benchmark-ips Modified: head/databases/rubygem-familia/pkg-descr ============================================================================== --- head/databases/rubygem-familia/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/databases/rubygem-familia/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-familia helps to organize and store Ruby objects in Redis. WWW: https://github.com/delano/familia -RG: https://rubygems.org/gems/familia Modified: head/databases/rubygem-redis/pkg-descr ============================================================================== --- head/databases/rubygem-redis/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/databases/rubygem-redis/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-redis is a Ruby client library for the Redis key-value store. WWW: https://github.com/redis/redis-rb -RG: https://rubygems.org/gems/redis Modified: head/devel/rubygem-CFPropertyList/pkg-descr ============================================================================== --- head/devel/rubygem-CFPropertyList/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-CFPropertyList/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ binary property list files (plist(5)) as CFPropertyList::List for more documentation. WWW: https://github.com/ckruse/CFPropertyList -RG: https://rubygems.org/gems/CFPropertyList Modified: head/devel/rubygem-algorithms/pkg-descr ============================================================================== --- head/devel/rubygem-algorithms/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-algorithms/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -11,4 +11,3 @@ structure/algorithm. It will also come w performance in different situations. WWW: https://github.com/kanwei/algorithms -RG: https://rubygems.org/gems/algorithms Modified: head/devel/rubygem-attic/pkg-descr ============================================================================== --- head/devel/rubygem-attic/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-attic/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ rubygem-attic provides a place to hide p objects. WWW: https://github.com/delano/attic -RG: https://rubygems.org/gems/attic Modified: head/devel/rubygem-benelux/pkg-descr ============================================================================== --- head/devel/rubygem-benelux/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-benelux/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -8,4 +8,3 @@ Features: - Thread-safe WWW: https://github.com/delano/benelux -RG: https://rubygems.org/gems/benelux Modified: head/devel/rubygem-blankslate/pkg-descr ============================================================================== --- head/devel/rubygem-blankslate/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-blankslate/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ Object and Kernel have been removed. Thi and other classes that make heavy use of method_missing. WWW: https://github.com/masover/blankslate -RG: https://rubygems.org/gems/blankslate Modified: head/devel/rubygem-bones/pkg-descr ============================================================================== --- head/devel/rubygem-bones/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-bones/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -5,4 +5,3 @@ available for creating git repositories, various test suites and source code analysis tools. WWW: https://github.com/TwP/bones -RG: https://rubygems.org/gems/bones Modified: head/devel/rubygem-buftok/pkg-descr ============================================================================== --- head/devel/rubygem-buftok/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-buftok/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -5,4 +5,3 @@ entities are delimited. In this respect EventMachine. WWW: https://github.com/sferik/buftok -RG: https://rubygems.org/gems/buftok Modified: head/devel/rubygem-colorize/pkg-descr ============================================================================== --- head/devel/rubygem-colorize/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-colorize/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ background color and, text effects on ru using ANSI escape sequences. WWW: https://github.com/fazibear/colorize -RG: https://rubygems.org/gems/colorize Modified: head/devel/rubygem-cucumber-core/pkg-descr ============================================================================== --- head/devel/rubygem-cucumber-core/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-cucumber-core/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -6,4 +6,3 @@ building other tools that work with Gher place. WWW: https://github.com/cucumber/cucumber-ruby-core -RG: https://rubygems.org/gems/cucumber-core Modified: head/devel/rubygem-drydock/pkg-descr ============================================================================== --- head/devel/rubygem-drydock/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-drydock/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ applications. The core class is containe copy directly into your project. See below for examples. WWW: https://github.com/delano/drydock -RG: https://rubygems.org/gems/drydock Modified: head/devel/rubygem-ffi-compiler/pkg-descr ============================================================================== --- head/devel/rubygem-ffi-compiler/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-ffi-compiler/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ for use with ffi. To use, define your ow it in C, then use ffi-compiler to compile it. WWW: https://github.com/ffi/ffi-compiler -RG: https://rubygems.org/gems/ffi-compiler Modified: head/devel/rubygem-fluent-logger/pkg-descr ============================================================================== --- head/devel/rubygem-fluent-logger/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-fluent-logger/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fluent logger is a structured event logger. WWW: https://github.com/fluent/fluent-logger-ruby -RG: https://rubygems.org/gems/fluent-logger Modified: head/devel/rubygem-fog-brightbox/pkg-descr ============================================================================== --- head/devel/rubygem-fog-brightbox/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-fog-brightbox/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -13,4 +13,3 @@ This includes support for the following - SQL Cloud instances WWW: https://github.com/fog/fog-brightbox -RG: https://rubygems.org/gems/fog-brightbox Modified: head/devel/rubygem-fog-json/pkg-descr ============================================================================== --- head/devel/rubygem-fog-json/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-fog-json/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ rubygem-fog-json (Fog::Json) provides ex shared between a number of providers in the 'fog' gem. WWW: https://github.com/fog/fog-json -RG: https://rubygems.org/gems/fog-json Modified: head/devel/rubygem-gibbler/pkg-descr ============================================================================== --- head/devel/rubygem-gibbler/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-gibbler/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-gibbler provides git-like hashes and history for Ruby objects. WWW: https://github.com/delano/gibbler -RG: https://rubygems.org/gems/gibbler Modified: head/devel/rubygem-git-version-bump/pkg-descr ============================================================================== --- head/devel/rubygem-git-version-bump/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-git-version-bump/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -7,4 +7,3 @@ inside a gemspec or your program to retr in builds and at runtime. WWW: https://github.com/mpalmer/git-version-bump -RG: https://rubygems.org/gems/git-version-bump Modified: head/devel/rubygem-inflecto/pkg-descr ============================================================================== --- head/devel/rubygem-inflecto/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-inflecto/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ This is a standalone inflector ripped ou originated from extlib The extlib inflecto originated from active_support. WWW: https://github.com/mbj/inflecto -RG: https://rubygems.org/gems/inflecto Modified: head/devel/rubygem-jekyll-coffeescript/pkg-descr ============================================================================== --- head/devel/rubygem-jekyll-coffeescript/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-jekyll-coffeescript/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-jekyll-coffeescript is a CoffeeScript converter for Jekyll. WWW: https://github.com/jekyll/jekyll-coffeescript -RG: https://rubygems.org/gems/jekyll-coffeescript Modified: head/devel/rubygem-listen/pkg-descr ============================================================================== --- head/devel/rubygem-listen/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-listen/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -12,4 +12,3 @@ Features: - Tested on all Ruby environments via travis-ci. WWW: https://github.com/guard/listen -RG: https://rubygems.org/gems/listen Modified: head/devel/rubygem-lumberjack/pkg-descr ============================================================================== --- head/devel/rubygem-lumberjack/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-lumberjack/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -4,4 +4,3 @@ automatically rolling log files even wit log file. WWW: https://github.com/bdurand/lumberjack -RG: https://rubygems.org/gems/lumberjack Modified: head/devel/rubygem-memoizable/pkg-descr ============================================================================== --- head/devel/rubygem-memoizable/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-memoizable/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Memoize method return values WWW: https://github.com/dkubb/memoizable -RG: https://rubygems.org/gems/memoizable Modified: head/devel/rubygem-mercenary/pkg-descr ============================================================================== --- head/devel/rubygem-mercenary/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-mercenary/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ rubygem-mercenary is a lightweight and f apps in Ruby. WWW: https://github.com/jekyll/mercenary -RG: https://rubygems.org/gems/mercenary Modified: head/devel/rubygem-nenv/pkg-descr ============================================================================== --- head/devel/rubygem-nenv/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-nenv/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -15,4 +15,3 @@ The benefits over using ENV directly: - designed to be both hackable and convenient WWW: https://github.com/e2/nenv -RG: https://rubygems.org/gems/nenv Modified: head/devel/rubygem-nio4r/pkg-descr ============================================================================== --- head/devel/rubygem-nio4r/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-nio4r/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -17,4 +17,3 @@ Its goals are: - Provide inherently thread-safe facilities for working with IO objects WWW: https://github.com/celluloid/nio4r -RG: https://rubygems.org/gems/nio4r Modified: head/devel/rubygem-notiffany/pkg-descr ============================================================================== --- head/devel/rubygem-notiffany/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-notiffany/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -8,4 +8,3 @@ Features: - child processes reuse same configuration WWW: https://github.com/guard/notiffany -RG: https://rubygems.org/gems/notiffany Modified: head/devel/rubygem-open4/pkg-descr ============================================================================== --- head/devel/rubygem-open4/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-open4/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ open child process with handles on pid, child processes and their io handles easily. WWW: https://github.com/ahoward/open4 -RG: https://rubygems.org/gems/open4 Modified: head/devel/rubygem-rb-inotify/pkg-descr ============================================================================== --- head/devel/rubygem-rb-inotify/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-rb-inotify/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-rb-inotify is a ruby wrapper for libinotify, using ffi. WWW: https://github.com/nex3/rb-inotify -RG: https://rubygems.org/gems/rb-inotify Modified: head/devel/rubygem-rb-kqueue/pkg-descr ============================================================================== --- head/devel/rubygem-rb-kqueue/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-rb-kqueue/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ This is a simple wrapper over the kqueue avoid having to compile a C extension. WWW: https://github.com/mat813/rb-kqueue -RG: https://rubygems.org/gems/rb-kqueue Modified: head/devel/rubygem-retryable/pkg-descr ============================================================================== --- head/devel/rubygem-retryable/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-retryable/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -9,4 +9,3 @@ Should the number of retries be reached be raised. WWW: https://github.com/nfedyashev/retryable -RG: https://rubygems.org/gems/retryable Modified: head/devel/rubygem-stella/pkg-descr ============================================================================== --- head/devel/rubygem-stella/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-stella/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -7,4 +7,3 @@ into your existing development process t performance tests throughout your product lifecycle. WWW: https://github.com/solutious/stella -RG: https://rubygems.org/gems/stella Modified: head/devel/rubygem-storable/pkg-descr ============================================================================== --- head/devel/rubygem-storable/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-storable/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Marshal Ruby classes into and out of multiple formats (yaml, json, csv, tsv). WWW: https://github.com/delano/storable/ -RG: https://rubygems.org/gems/storable Modified: head/devel/rubygem-subexec/pkg-descr ============================================================================== --- head/devel/rubygem-subexec/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-subexec/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Subexec spawns a subprocess with an optional timeout. WWW: https://github.com/nulayer/subexec -RG: https://rubygems.org/gems/subexec Modified: head/devel/rubygem-sysinfo/pkg-descr ============================================================================== --- head/devel/rubygem-sysinfo/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-sysinfo/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ rubygem-sysinfo provides all your system class. WWW: https://github.com/delano/sysinfo/ -RG: https://rubygems.org/gems/sysinfo Modified: head/devel/rubygem-tdiff/pkg-descr ============================================================================== --- head/devel/rubygem-tdiff/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-tdiff/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ TDiff calculates the differences between Rubys built-in TSort module. WWW: https://github.com/postmodern/tdiff#readme -RG: https://rubygems.org/gems/tdiff Modified: head/devel/rubygem-term-ansicolor/pkg-descr ============================================================================== --- head/devel/rubygem-term-ansicolor/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-term-ansicolor/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -20,4 +20,3 @@ respond to :to_str, e.g. String. print "red bold".red.bold, "\n" WWW: http://flori.github.io/term-ansicolor/ -RG: https://rubygems.org/gems/term-ansicolor Modified: head/devel/rubygem-toml/pkg-descr ============================================================================== --- head/devel/rubygem-toml/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/devel/rubygem-toml/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-toml is a TOML parser. WWW: https://github.com/jm/toml -RG: https://rubygems.org/gems/toml Modified: head/dns/rubygem-public_suffix_service/pkg-descr ============================================================================== --- head/dns/rubygem-public_suffix_service/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/dns/rubygem-public_suffix_service/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -15,4 +15,3 @@ Public Suffix List is a list of all know GitHub repository is at https://github.com/weppos/publicsuffix-ruby WWW: http://www.simonecarletti.com/code/public_suffix_service -RG: https://rubygems.org/gems/public_suffix_service Modified: head/emulators/rubygem-fission/pkg-descr ============================================================================== --- head/emulators/rubygem-fission/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/emulators/rubygem-fission/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ Fission is a simple command line tool fo Fusion 3.x is currently supported. WWW: https://github.com/thbishop/fission -RG: https://rubygems.org/gems/fission Modified: head/graphics/rubygem-png/pkg-descr ============================================================================== --- head/graphics/rubygem-png/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/graphics/rubygem-png/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ libraries. WWW: http://www.zenspider.com/projects/png.html WWW: https://github.com/seattlerb/png -RG: https://rubygems.org/gems/png Modified: head/misc/rubygem-iesd/pkg-descr ============================================================================== --- head/misc/rubygem-iesd/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/misc/rubygem-iesd/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ iESD customizes OS X InstallESD. WWW: https://github.com/ntkme/iesd -RG: https://rubygems.org/gems/iesd Modified: head/net-im/rubygem-hipchat/pkg-descr ============================================================================== --- head/net-im/rubygem-hipchat/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net-im/rubygem-hipchat/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ hipchat is a Ruby library to interact with HipChat. WWW: https://github.com/hipchat/hipchat-rb -RG: https://rubygems.org/gems/hipchat Modified: head/net/rubygem-aws-ses/pkg-descr ============================================================================== --- head/net/rubygem-aws-ses/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-aws-ses/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ AWS::SES is a Ruby library for Amazon's [1] https://aws.amazon.com/ses/ WWW: https://github.com/drewblas/aws-ses -RG: https://rubygems.org/gems/aws-ses Modified: head/net/rubygem-dogapi/pkg-descr ============================================================================== --- head/net/rubygem-dogapi/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-dogapi/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ for development of standalone scripts. I Datadog's raw HTTP interface for reporting events and metrics. WWW: https://github.com/DataDog/dogapi-rb -RG: https://rubygems.org/gems/dogapi Modified: head/net/rubygem-dropbox-sdk/pkg-descr ============================================================================== --- head/net/rubygem-dropbox-sdk/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-dropbox-sdk/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ dropbox-sdk is a library that provides a Dropbox API web endpoints. WWW: https://www.dropbox.com/developers -RG: https://rubygems.org/gems/dropbox-sdk Modified: head/net/rubygem-fog-atmos/pkg-descr ============================================================================== --- head/net/rubygem-fog-atmos/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-atmos/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Atmos is a module for the fog gem to support Atmos Cloud Storage. WWW: https://github.com/fog/fog-atmos -RG: https://rubygems.org/gems/fog-atmos Modified: head/net/rubygem-fog-aws/pkg-descr ============================================================================== --- head/net/rubygem-fog-aws/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-aws/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Aws is a module for the 'fog' gem to support Amazon Web Services. WWW: https://github.com/fog/fog-aws -RG: https://rubygems.org/gems/fog-aws Modified: head/net/rubygem-fog-ecloud/pkg-descr ============================================================================== --- head/net/rubygem-fog-ecloud/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-ecloud/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Ecloud is a module for the fog gem to support Terremark EnterpriseCloud. WWW: https://github.com/fog/fog-ecloud -RG: https://rubygems.org/gems/fog-ecloud Modified: head/net/rubygem-fog-google/pkg-descr ============================================================================== --- head/net/rubygem-fog-google/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-google/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ Fog currently supports two Google Cloud Google Cloud Storage) via Fog::Google. WWW: https://github.com/fog/fog-google -RG: https://rubygems.org/gems/fog-google Modified: head/net/rubygem-fog-local/pkg-descr ============================================================================== --- head/net/rubygem-fog-local/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-local/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Local is a module for the 'fog' gem to support local filesystem storage. WWW: https://github.com/fog/fog-local -RG: https://rubygems.org/gems/fog-local Modified: head/net/rubygem-fog-powerdns/pkg-descr ============================================================================== --- head/net/rubygem-fog-powerdns/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-powerdns/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::PowerDNS is a module for the 'fog' gem to support PowerDNS DNS services. WWW: https://github.com/fog/fog-powerdns -RG: https://rubygems.org/gems/fog-powerdns Modified: head/net/rubygem-fog-profitbricks/pkg-descr ============================================================================== --- head/net/rubygem-fog-profitbricks/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-profitbricks/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::profitbricks is a module for the fog gem to support ProfitBricks. WWW: https://github.com/fog/fog-profitbricks -RG: https://rubygems.org/gems/fog-profitbricks Modified: head/net/rubygem-fog-radosgw/pkg-descr ============================================================================== --- head/net/rubygem-fog-radosgw/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-radosgw/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ compatible REST API for Ceph. Currently, Swift. WWW: https://github.com/fog/fog-radosgw -RG: https://rubygems.org/gems/fog-radosgw Modified: head/net/rubygem-fog-riakcs/pkg-descr ============================================================================== --- head/net/rubygem-fog-riakcs/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-riakcs/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Riakcs is a module for the fog gem to support RiakCS. WWW: https://github.com/fog/fog-riakcs -RG: https://rubygems.org/gems/fog-riakcs Modified: head/net/rubygem-fog-sakuracloud/pkg-descr ============================================================================== --- head/net/rubygem-fog-sakuracloud/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-sakuracloud/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ Fog::Sakuracloud is a module for the fog in the Sakura no Cloud. WWW: https://github.com/fog/fog-sakuracloud -RG: https://rubygems.org/gems/fog-sakuracloud Modified: head/net/rubygem-fog-serverlove/pkg-descr ============================================================================== --- head/net/rubygem-fog-serverlove/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-serverlove/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Serverlove is a module for the 'fog' gem to support ServerLove. WWW: https://github.com/fog/fog-serverlove -RG: https://rubygems.org/gems/fog-serverlove Modified: head/net/rubygem-fog-storm_on_demand/pkg-descr ============================================================================== --- head/net/rubygem-fog-storm_on_demand/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-storm_on_demand/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::StormOnDemand is a module for the fog gem to support StormOnDemand. WWW: https://github.com/fog/fog-storm_on_demand -RG: https://rubygems.org/gems/fog-storm_on_demand Modified: head/net/rubygem-fog-terremark/pkg-descr ============================================================================== --- head/net/rubygem-fog-terremark/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-terremark/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Terremark is a module for the fog gem to support Terremark vCloud. WWW: https://github.com/fog/fog-terremark -RG: https://rubygems.org/gems/fog-terremark Modified: head/net/rubygem-fog-vmfusion/pkg-descr ============================================================================== --- head/net/rubygem-fog-vmfusion/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-vmfusion/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Vmfusion is a module for the fog gem to support VMware Fusion. WWW: https://github.com/fog/fog-vmfusion -RG: https://rubygems.org/gems/fog-vmfusion Modified: head/net/rubygem-fog-voxel/pkg-descr ============================================================================== --- head/net/rubygem-fog-voxel/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-fog-voxel/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Voxel is a module for the fog gem to support Voxel. WWW: https://github.com/fog/fog-voxel -RG: https://rubygems.org/gems/fog-voxel Modified: head/net/rubygem-httpauth/pkg-descr ============================================================================== --- head/net/rubygem-httpauth/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-httpauth/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ HTTPauth is a library supporting the ful specified in RFC 2617; both Digest Authentication and Basic Authentication. WWW: http://rubygems.org/gems/httpauth/ -RG: https://rubygems.org/gems/httpauth Modified: head/net/rubygem-oauth2/pkg-descr ============================================================================== --- head/net/rubygem-oauth2/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-oauth2/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -4,4 +4,3 @@ existing OAuth 2.0 endpoints (a.k.a. Fac to meet the entire specification over time. WWW: https://github.com/intridea/oauth2 -RG: https://rubygems.org/gems/oauth2 Modified: head/net/rubygem-opennebula/pkg-descr ============================================================================== --- head/net/rubygem-opennebula/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-opennebula/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ flexible solution to build and manage en centers. This gem provides libraries needed to talk to OpenNebula. WWW: http://opennebula.org/ -RG: https://rubygems.org/gems/opennebula Modified: head/net/rubygem-rbvmomi/pkg-descr ============================================================================== --- head/net/rubygem-rbvmomi/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-rbvmomi/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ can use it to manage ESX and VirtualCent the vSphere 5.0 API. WWW: https://github.com/vmware/rbvmomi -RG: https://rubygems.org/gems/rbvmomi Modified: head/net/rubygem-simple_oauth/pkg-descr ============================================================================== --- head/net/rubygem-simple_oauth/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-simple_oauth/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Rubygem-simple_oauth is a RubyGem for simply builds and verifies OAuth headers. WWW: https://github.com/laserlemon/simple_oauth -RG: https://rubygems.org/gems/simple_oauth Modified: head/net/rubygem-t/pkg-descr ============================================================================== --- head/net/rubygem-t/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-t/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ the Twitter SMS commands, but it offers than are available via SMS. WWW: http://sferik.github.io/t -RG: https://rubygems.org/gems/t Modified: head/net/rubygem-twitter/pkg-descr ============================================================================== --- head/net/rubygem-twitter/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-twitter/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ The command line gives you several optio twitter to see the options. WWW: http://sferik.github.io/twitter/ -RG: https://rubygems.org/gems/twitter Modified: head/net/rubygem-uri-redis/pkg-descr ============================================================================== --- head/net/rubygem-uri-redis/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/net/rubygem-uri-redis/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-uri-redis supports parsing redis://host:port/dbindex/keyname. WWW: https://github.com/delano/uri-redis -RG: https://rubygems.org/gems/uri-redis Modified: head/science/rubygem-cdo/pkg-descr ============================================================================== --- head/science/rubygem-cdo/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/science/rubygem-cdo/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ Ruby binding to CDO (Climate Data Operat WWW: https://code.zmaw.de/projects/cdo/wiki/Cdo%7Brbpy%7D WWW: https://github.com/Try2Code/cdo-bindings -RG: https://rubygems.org/gems/cdo Modified: head/security/rubygem-scrypt/pkg-descr ============================================================================== --- head/security/rubygem-scrypt/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/security/rubygem-scrypt/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ hardware brute-force attacks than altern bcrypt. WWW: https://github.com/pbhogan/scrypt -RG: https://rubygems.org/gems/scrypt Modified: head/security/rubygem-sshkit/pkg-descr ============================================================================== --- head/security/rubygem-sshkit/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/security/rubygem-sshkit/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ SSHKit is a comprehensive toolkit for re manner on groups of servers. WWW: https://github.com/capistrano/sshkit -RG: https://rubygems.org/gems/sshkit Modified: head/sysutils/rubygem-backup/pkg-descr ============================================================================== --- head/sysutils/rubygem-backup/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/sysutils/rubygem-backup/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -7,4 +7,3 @@ you can mix and match. It was built with simplicity in mind. WWW: https://github.com/backup/backup -RG: https://rubygems.org/gems/backup Modified: head/sysutils/rubygem-guard-compat/pkg-descr ============================================================================== --- head/sysutils/rubygem-guard-compat/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/sysutils/rubygem-guard-compat/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ Guard::Compat provides only a test helpe currently. WWW: https://github.com/guard/guard-compat -RG: https://rubygems.org/gems/guard-compat Modified: head/sysutils/rubygem-guard-livereload/pkg-descr ============================================================================== --- head/sysutils/rubygem-guard-livereload/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/sysutils/rubygem-guard-livereload/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ Guard::LiveReload automatically reloads modified. WWW: https://github.com/guard/guard-livereload -RG: https://rubygems.org/gems/guard-livereload Modified: head/sysutils/rubygem-guard-minitest/pkg-descr ============================================================================== --- head/sysutils/rubygem-guard-minitest/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/sysutils/rubygem-guard-minitest/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ Guard::Minitest allows to automatically minitest framework when files are modified. WWW: https://github.com/guard/guard-minitest -RG: https://rubygems.org/gems/guard-minitest Modified: head/sysutils/rubygem-guard/pkg-descr ============================================================================== --- head/sysutils/rubygem-guard/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/sysutils/rubygem-guard/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Guard is a command line tool that easily handle events on files modifications. WWW: https://github.com/guard/guard -RG: https://rubygems.org/gems/guard Modified: head/sysutils/rubygem-parallel/pkg-descr ============================================================================== --- head/sysutils/rubygem-parallel/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/sysutils/rubygem-parallel/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ parallel runs any kind of code in parallel processes. WWW: https://github.com/grosser/parallel -RG: https://rubygems.org/gems/parallel Modified: head/sysutils/rubygem-shellany/pkg-descr ============================================================================== --- head/sysutils/rubygem-shellany/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/sysutils/rubygem-shellany/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -8,4 +8,3 @@ Features: - Prevents running the same command multiple times. WWW: https://github.com/guard/shellany -RG: https://rubygems.org/gems/shellany Modified: head/textproc/rubygem-autoprefixer-rails/pkg-descr ============================================================================== --- head/textproc/rubygem-autoprefixer-rails/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-autoprefixer-rails/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ values from the Can I Use. This gem prov with this JavaScript tool. WWW: https://github.com/ai/autoprefixer-rails -RG: https://rubygems.org/gems/autoprefixer-rails Modified: head/textproc/rubygem-compass-core/pkg-descr ============================================================================== --- head/textproc/rubygem-compass-core/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-compass-core/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ The compass core framework is a design-a code that would otherwise be duplicated across other frameworks and extensions. WWW: http://compass-style.org/reference/compass/ -RG: https://rubygems.org/gems/compass-core Modified: head/textproc/rubygem-compass-import-once/pkg-descr ============================================================================== --- head/textproc/rubygem-compass-import-once/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-compass-import-once/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -7,4 +7,3 @@ Note: Although this plugin is maintained compass in any Sass-based project. WWW: https://github.com/Compass/compass/tree/master/import-once -RG: https://rubygems.org/gems/compass-import-once Modified: head/textproc/rubygem-css_parser/pkg-descr ============================================================================== --- head/textproc/rubygem-css_parser/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-css_parser/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ rubygem-css_parser is a CSS Parser which sets in Ruby. WWW: https://github.com/premailer/css_parser -RG: https://rubygems.org/gems/css_parser Modified: head/textproc/rubygem-fog-xml/pkg-descr ============================================================================== --- head/textproc/rubygem-fog-xml/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-fog-xml/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Fog::Xml provides shared XML related functionality for fog. WWW: https://github.com/fog/fog-xml -RG: https://rubygems.org/gems/fog-xml Modified: head/textproc/rubygem-jekyll-sass-converter/pkg-descr ============================================================================== --- head/textproc/rubygem-jekyll-sass-converter/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-jekyll-sass-converter/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-jekyll-sass-converter is a basic Sass converter for Jekyll. WWW: https://github.com/jekyll/jekyll-sass-converter -RG: https://rubygems.org/gems/jekyll-sass-converter Modified: head/textproc/rubygem-multi_xml/pkg-descr ============================================================================== --- head/textproc/rubygem-multi_xml/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-multi_xml/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -5,4 +5,3 @@ favorite XML library. In order to best s libraries, multi_xml is a general-purpose swappable XML backend library. WWW: https://github.com/sferik/multi_xml -RG: https://rubygems.org/gems/multi_xml Modified: head/textproc/rubygem-nokogiri-diff/pkg-descr ============================================================================== --- head/textproc/rubygem-nokogiri-diff/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-nokogiri-diff/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -8,4 +8,3 @@ Features: added or removed nodes. WWW: https://github.com/postmodern/nokogiri-diff -RG: https://rubygems.org/gems/nokogiri-diff Modified: head/textproc/rubygem-parslet/pkg-descr ============================================================================== --- head/textproc/rubygem-parslet/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-parslet/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -10,4 +10,3 @@ incremental language construction. Often atoms of your language first; parslet takes pride in making this possible. WWW: http://kschiess.github.io/parslet/ -RG: https://rubygems.org/gems/parslet Modified: head/textproc/rubygem-yard/pkg-descr ============================================================================== --- head/textproc/rubygem-yard/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/textproc/rubygem-yard/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -7,4 +7,3 @@ custom Ruby constructs such as custom cl WWW: http://yardoc.org/ WWW: https://github.com/lsegal/yard -RG: https://rubygems.org/gems/yard Modified: head/www/rubygem-em-websocket/pkg-descr ============================================================================== --- head/www/rubygem-em-websocket/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-em-websocket/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-em-websocket is an EventMachine based WebSocket server. WWW: https://github.com/igrigorik/em-websocket -RG: https://rubygems.org/gems/em-websocket Modified: head/www/rubygem-faraday/pkg-descr ============================================================================== --- head/www/rubygem-faraday/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-faraday/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ adapters (such as Net::HTTP) and embrace processing the request/response cycle. WWW: https://github.com/lostisland/faraday -RG: https://rubygems.org/gems/faraday Modified: head/www/rubygem-flowdock/pkg-descr ============================================================================== --- head/www/rubygem-flowdock/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-flowdock/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-flowdock provides the Flowdock Push API. WWW: https://github.com/flowdock/flowdock-api -RG: https://rubygems.org/gems/flowdock Modified: head/www/rubygem-http-form_data/pkg-descr ============================================================================== --- head/www/rubygem-http-form_data/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-http-form_data/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ HTTP::FormData is utility-belt to build support for 'application/x-www-form-urlencoded' and 'multipart/form-data' types. WWW: https://github.com/httprb/form_data.rb -RG: https://rubygems.org/gems/http-form_data Modified: head/www/rubygem-http/pkg-descr ============================================================================== --- head/www/rubygem-http/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-http/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -6,4 +6,3 @@ Under the hood, The HTTP Gem uses http_p extension based on the Node.js parser and a Java port thereof. WWW: https://github.com/tarcieri/http -RG: https://rubygems.org/gems/http Modified: head/www/rubygem-jwt/pkg-descr ============================================================================== --- head/www/rubygem-jwt/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-jwt/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ JWT is a Ruby implementation of JSON Web [1] http://self-issued.info/docs/draft-jones-json-web-token-06.html WWW: https://github.com/progrium/ruby-jwt -RG: https://rubygems.org/gems/jwt Modified: head/www/rubygem-net-http-digest_auth/pkg-descr ============================================================================== --- head/www/rubygem-net-http-digest_auth/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-net-http-digest_auth/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -3,4 +3,3 @@ Authentication. At this time the gem doe can be used for with other HTTP clients. WWW: https://github.com/drbrain/net-http-digest_auth -RG: https://rubygems.org/gems/net-http-digest_auth Modified: head/www/rubygem-net-http-persistent/pkg-descr ============================================================================== --- head/www/rubygem-net-http-persistent/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-net-http-persistent/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -7,4 +7,3 @@ with some API methods but does not handl Net::HTTP::Persistent supports reconnection and retry according to RFC 2616. WWW: https://github.com/drbrain/net-http-persistent -RG: https://rubygems.org/gems/net-http-persistent Modified: head/www/rubygem-pagerduty/pkg-descr ============================================================================== --- head/www/rubygem-pagerduty/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-pagerduty/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -2,4 +2,3 @@ pagerduty provides a lightweight Ruby in Integration API. WWW: https://github.com/envato/pagerduty -RG: https://rubygems.org/gems/pagerduty Modified: head/www/rubygem-responders-rails3/pkg-descr ============================================================================== --- head/www/rubygem-responders-rails3/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-responders-rails3/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Responders provides a set of responders modules to dry up your Rails app. WWW: https://github.com/plataformatec/responders -RG: https://rubygems.org/gems/responders Modified: head/www/rubygem-responders/pkg-descr ============================================================================== --- head/www/rubygem-responders/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-responders/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Responders provides a set of responders modules to dry up your Rails app. WWW: https://github.com/plataformatec/responders -RG: https://rubygems.org/gems/responders Modified: head/www/rubygem-robots/pkg-descr ============================================================================== --- head/www/rubygem-robots/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-robots/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ Robots is a simple Ruby library to parse robots.txt files. WWW: https://github.com/fizx/robots -RG: https://rubygems.org/gems/robots Modified: head/www/rubygem-webrobots/pkg-descr ============================================================================== --- head/www/rubygem-webrobots/pkg-descr Thu Aug 13 17:39:11 2015 (r394173) +++ head/www/rubygem-webrobots/pkg-descr Thu Aug 13 17:39:31 2015 (r394174) @@ -1,4 +1,3 @@ rubygem-webrobots helps writing robots.txt compliant web robots in Ruby. WWW: https://github.com/knu/webrobots -RG: https://rubygems.org/gems/webrobots From owner-svn-ports-all@freebsd.org Thu Aug 13 17:45:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DB939B8212; Thu, 13 Aug 2015 17:45:08 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 348DD90A; Thu, 13 Aug 2015 17:45:08 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DHj82a061650; Thu, 13 Aug 2015 17:45:08 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DHj7K9061648; Thu, 13 Aug 2015 17:45:07 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508131745.t7DHj7K9061648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Thu, 13 Aug 2015 17:45:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394176 - in head/devel/libgtop: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 17:45:08 -0000 Author: kwm Date: Thu Aug 13 17:45:06 2015 New Revision: 394176 URL: https://svnweb.freebsd.org/changeset/ports/394176 Log: Add gtk-doc annotations for the glibtop_init functions. Their return value should not be freed. This fixes usage from gnome-instrospection (invalid free). Submitted by: Ting-Wei Lan Obtained from: upstream libgtop git 598764c Added: head/devel/libgtop/files/patch-glibtop.h (contents, props changed) Modified: head/devel/libgtop/Makefile Modified: head/devel/libgtop/Makefile ============================================================================== --- head/devel/libgtop/Makefile Thu Aug 13 17:39:53 2015 (r394175) +++ head/devel/libgtop/Makefile Thu Aug 13 17:45:06 2015 (r394176) @@ -4,7 +4,7 @@ PORTNAME= libgtop PORTVERSION= 2.30.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 Added: head/devel/libgtop/files/patch-glibtop.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libgtop/files/patch-glibtop.h Thu Aug 13 17:45:06 2015 (r394176) @@ -0,0 +1,38 @@ +--- glibtop.h.orig 2015-08-13 19:30:44.824882000 +0200 ++++ glibtop.h 2015-08-13 19:30:04.376611000 +0200 +@@ -125,14 +125,35 @@ extern glibtop *glibtop_global_server; + + extern const unsigned long glibtop_server_features; + ++/** ++ * glibtop_init: ++ * ++ * Returns: (transfer none): ++ */ + glibtop * + glibtop_init (void); + ++/** ++ * glibtop_init_r: ++ * @server_ptr: (out): ++ * @features: ++ * @flags: ++ * ++ * Returns: (transfer none): ++ */ + glibtop * + glibtop_init_r (glibtop **server_ptr, + unsigned long features, + unsigned flags); + ++/** ++ * glibtop_init_s: ++ * @server_ptr: (out): ++ * @features: ++ * @flags: ++ * ++ * Returns: (transfer none): ++ */ + glibtop * + glibtop_init_s (glibtop **server_ptr, + unsigned long features, From owner-svn-ports-all@freebsd.org Thu Aug 13 18:04:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E99429B8570; Thu, 13 Aug 2015 18:04:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D91DB889; Thu, 13 Aug 2015 18:04:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DI40mR069998; Thu, 13 Aug 2015 18:04:00 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DI40Mr069996; Thu, 13 Aug 2015 18:04:00 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201508131804.t7DI40Mr069996@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Thu, 13 Aug 2015 18:04:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394177 - in head: . sysutils sysutils/rubygem-bundler17 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 18:04:01 -0000 Author: rene Date: Thu Aug 13 18:03:59 2015 New Revision: 394177 URL: https://svnweb.freebsd.org/changeset/ports/394177 Log: Remove expired port: 2015-08-12 sysutils/rubygem-bundler17: not used by other ports anymore Deleted: head/sysutils/rubygem-bundler17/ Modified: head/MOVED head/sysutils/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Thu Aug 13 17:45:06 2015 (r394176) +++ head/MOVED Thu Aug 13 18:03:59 2015 (r394177) @@ -7821,3 +7821,4 @@ net/py-xmlrpclib||2015-08-07|Has expired net-p2p/py-kenosis||2015-08-07|Has expired: Fails to run with modern python graphics/skencil||2015-08-08|Has expired: Project is abandoned and was overtaken by sK1 fork www/ismail||2015-08-08|Has expired: Development has been discontinued for many years +sysutils/rubygem-bundler17||2015-08-13|Has expired: not used by other ports anymore Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Aug 13 17:45:06 2015 (r394176) +++ head/sysutils/Makefile Thu Aug 13 18:03:59 2015 (r394177) @@ -838,7 +838,6 @@ SUBDIR += rubygem-bosh-gen SUBDIR += rubygem-bosh_cli SUBDIR += rubygem-bundler - SUBDIR += rubygem-bundler17 SUBDIR += rubygem-bundler_ext SUBDIR += rubygem-capistrano SUBDIR += rubygem-capistrano-ext From owner-svn-ports-all@freebsd.org Thu Aug 13 18:08:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 95DE89B85CF; Thu, 13 Aug 2015 18:08:37 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 847E0A61; Thu, 13 Aug 2015 18:08:37 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DI8bYN070329; Thu, 13 Aug 2015 18:08:37 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DI8abq070325; Thu, 13 Aug 2015 18:08:36 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201508131808.t7DI8abq070325@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Thu, 13 Aug 2015 18:08:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394178 - head/emulators/i386-wine-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 18:08:37 -0000 Author: dbn Date: Thu Aug 13 18:08:35 2015 New Revision: 394178 URL: https://svnweb.freebsd.org/changeset/ports/394178 Log: emulators/i386-wine-devel: update to 1.7.49 * Drop support for FreeBSD 8 * Eliminate post-package step (no longer worked, not needed) Modified: head/emulators/i386-wine-devel/Makefile.i386 head/emulators/i386-wine-devel/Makefile.inc head/emulators/i386-wine-devel/distinfo head/emulators/i386-wine-devel/pkg-plist Modified: head/emulators/i386-wine-devel/Makefile.i386 ============================================================================== --- head/emulators/i386-wine-devel/Makefile.i386 Thu Aug 13 18:03:59 2015 (r394177) +++ head/emulators/i386-wine-devel/Makefile.i386 Thu Aug 13 18:08:35 2015 (r394178) @@ -81,10 +81,4 @@ post-install-script: echo ${DATADIR:S|$(PREFIX)/||}/patch-nvidia.sh >> ${TMPPLIST} @${CAT} ${PKGMESSAGE} -post-package-script: - ${XZ_CMD} -dc ${PKGFILE} | \ - ${SED} -e 's/\(freebsd:.*:x86\):32/\1:64/' -e 's/\(freebsd:.*:x86\):32/\1:64/' | \ - ${XZ_CMD} > ${WRKDIR}/${PKGNAME}${PKG_SUFX}; \ - ${MV} ${WRKDIR}/${PKGNAME}${PKG_SUFX} ${PKGFILE}; \ - .include "${MASTERDIR}/Makefile" Modified: head/emulators/i386-wine-devel/Makefile.inc ============================================================================== --- head/emulators/i386-wine-devel/Makefile.inc Thu Aug 13 18:03:59 2015 (r394177) +++ head/emulators/i386-wine-devel/Makefile.inc Thu Aug 13 18:08:35 2015 (r394178) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -PORTVERSION= 1.7.48 +PORTVERSION= 1.7.49 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/${PORTVERSION} @@ -48,7 +48,7 @@ MONO_RUN_DEPENDS= ${DATADIR}/mono/wine-m # Included for OPSYS and OSVERSION .include -.for osrel in 8 9 10 11 +.for osrel in 9 10 11 .if ${OSREL:C/\..*//} == ${osrel} PLIST_SUB+= OSREL${osrel}="" .if ${PKGNAMESUFFIX} == -devel @@ -65,8 +65,8 @@ PLIST_SUB+= OSREL${osrel}-STAGING="@comm .endif .endfor -.if ${OPSYS} != FreeBSD || (!(${OSVERSION} < 900000) && !(${OSVERSION} >= 903000 && ${OSVERSION} < 1000000) && !(${OSVERSION} >= 1001000 && ${OSVERSION} < 1100000) && !(${OSVERSION} >= 1100070 && ${OSVERSION} < 1200000)) -IGNORE= binaries compiled for FreeBSD 8.4+, 9.3+, 10.1+ and -current only +.if ${OPSYS} != FreeBSD || (!(${OSVERSION} < 1000000) && !(${OSVERSION} >= 1001000 && ${OSVERSION} < 1100000) && !(${OSVERSION} >= 1100077 && ${OSVERSION} < 1200000)) +IGNORE= binaries compiled for FreeBSD 9.3+, 10.1+ and -current only DISTFILES= .endif @@ -83,7 +83,7 @@ ${PLIST}: fetch port-update: ${RM} -f ${SLAVEDIR}/distinfo ${SLAVEDIR}/distinfo~ ${SLAVEDIR}/pkg-plist.* -.for osrel in 8 9 10 11 +.for osrel in 9 10 11 .for suffix in -devel -staging ${MAKE} fetch OSREL=${osrel} OSVERSION=${osrel}99999 UNAME_r=${osrel} PKGNAMESUFFIX=${suffix} ${MAKE} makesum OSREL=${osrel} OSVERSION=${osrel}99999 UNAME_r=${osrel} PKGNAMESUFFIX=${suffix} Modified: head/emulators/i386-wine-devel/distinfo ============================================================================== --- head/emulators/i386-wine-devel/distinfo Thu Aug 13 18:03:59 2015 (r394177) +++ head/emulators/i386-wine-devel/distinfo Thu Aug 13 18:08:35 2015 (r394178) @@ -1,16 +1,12 @@ -SHA256 (freebsd:8:x86:64/i386-wine-devel-1.7.48,1.txz) = 87e4c57d9bf2e60cbe87b9c7ad3abb270faf659fe0bc5e0efa7889cb79bce7ed -SIZE (freebsd:8:x86:64/i386-wine-devel-1.7.48,1.txz) = 49605628 -SHA256 (freebsd:8:x86:64/i386-wine-staging-1.7.48,1.txz) = 1370400ee015e6ada394dcc38a0d1ab281d94bd6155074dfa24cbc8b90ee1d3e -SIZE (freebsd:8:x86:64/i386-wine-staging-1.7.48,1.txz) = 52559872 -SHA256 (freebsd:9:x86:64/i386-wine-devel-1.7.48,1.txz) = bb8a78ea5ea51b8720d0c704f8b1d97491792559551a49e2868925e278ede282 -SIZE (freebsd:9:x86:64/i386-wine-devel-1.7.48,1.txz) = 48141348 -SHA256 (freebsd:9:x86:64/i386-wine-staging-1.7.48,1.txz) = eea02ba3f44aa785b7875f32fc28f15533e1ae38e54f90865a7e75c84f2e3bb9 -SIZE (freebsd:9:x86:64/i386-wine-staging-1.7.48,1.txz) = 51220864 -SHA256 (freebsd:10:x86:64/i386-wine-devel-1.7.48,1.txz) = 1585c5e1f777ebce3f5f56098b1d246655719ea16e3c5ff8072569e42cb828c5 -SIZE (freebsd:10:x86:64/i386-wine-devel-1.7.48,1.txz) = 34053520 -SHA256 (freebsd:10:x86:64/i386-wine-staging-1.7.48,1.txz) = c6663a01edd9a474b7c56d269d17d0155b62096737672c1de3b910ca9a1ee8ba -SIZE (freebsd:10:x86:64/i386-wine-staging-1.7.48,1.txz) = 37097820 -SHA256 (freebsd:11:x86:64/i386-wine-devel-1.7.48,1.txz) = 14e763906f85ec690c7b030a8d4660d7b03e5ab04f0b2618a4af8bda3e191e9f -SIZE (freebsd:11:x86:64/i386-wine-devel-1.7.48,1.txz) = 37549336 -SHA256 (freebsd:11:x86:64/i386-wine-staging-1.7.48,1.txz) = 7b145cfe25a6d2fa48a74c005bccd4671a67cc3cd9fcd153eaf5d5bbdc536c7b -SIZE (freebsd:11:x86:64/i386-wine-staging-1.7.48,1.txz) = 39684580 +SHA256 (freebsd:9:x86:64/i386-wine-devel-1.7.49,1.txz) = 41dfd10ad3ab920df0f896cc1390295f8a22725f06bd85021680dbffbad273da +SIZE (freebsd:9:x86:64/i386-wine-devel-1.7.49,1.txz) = 48194764 +SHA256 (freebsd:9:x86:64/i386-wine-staging-1.7.49,1.txz) = 11ee74259b5dc66c30cd0bd3278f4e6cabd110f1fdf82903d08649e65b038a3e +SIZE (freebsd:9:x86:64/i386-wine-staging-1.7.49,1.txz) = 51561324 +SHA256 (freebsd:10:x86:64/i386-wine-devel-1.7.49,1.txz) = 58c305f2195457354387b3abe909b47fe6f603b88664b14ad06c1649685ccdad +SIZE (freebsd:10:x86:64/i386-wine-devel-1.7.49,1.txz) = 34110640 +SHA256 (freebsd:10:x86:64/i386-wine-staging-1.7.49,1.txz) = 786b880ebb63235b441c2bb37b0d8c47244c3dc0843dff971b9636430b947431 +SIZE (freebsd:10:x86:64/i386-wine-staging-1.7.49,1.txz) = 37441524 +SHA256 (freebsd:11:x86:64/i386-wine-devel-1.7.49,1.txz) = 7fe540ae9845120bd959e2f7e6a48d285760eb0d846dc66de6768a64b94490b0 +SIZE (freebsd:11:x86:64/i386-wine-devel-1.7.49,1.txz) = 37949732 +SHA256 (freebsd:11:x86:64/i386-wine-staging-1.7.49,1.txz) = 7349c1e3a13798c480a1a7699951c465a0030cd8bb3bdf148ab996002e5c668e +SIZE (freebsd:11:x86:64/i386-wine-staging-1.7.49,1.txz) = 39306188 Modified: head/emulators/i386-wine-devel/pkg-plist ============================================================================== --- head/emulators/i386-wine-devel/pkg-plist Thu Aug 13 18:03:59 2015 (r394177) +++ head/emulators/i386-wine-devel/pkg-plist Thu Aug 13 18:08:35 2015 (r394178) @@ -183,12 +183,10 @@ include/wine/windows/ctfutb.h include/wine/windows/ctfutb.idl include/wine/windows/ctxtcall.h include/wine/windows/ctxtcall.idl -%%OSREL8-STAGING%%include/wine/windows/cuda.h %%OSREL9-STAGING%%include/wine/windows/cuda.h %%OSREL10-STAGING%%include/wine/windows/cuda.h %%OSREL11-STAGING%%include/wine/windows/cuda.h include/wine/windows/custcntl.h -%%OSREL8-STAGING%%include/wine/windows/cuviddec.h %%OSREL9-STAGING%%include/wine/windows/cuviddec.h %%OSREL10-STAGING%%include/wine/windows/cuviddec.h %%OSREL11-STAGING%%include/wine/windows/cuviddec.h @@ -230,11 +228,9 @@ include/wine/windows/d3drmobj.h include/wine/windows/d3drmwin.h include/wine/windows/d3dtypes.h include/wine/windows/d3dvec.inl -%%OSREL8-STAGING%%include/wine/windows/d3dx10core.h %%OSREL9-STAGING%%include/wine/windows/d3dx10core.h %%OSREL10-STAGING%%include/wine/windows/d3dx10core.h %%OSREL11-STAGING%%include/wine/windows/d3dx10core.h -%%OSREL8-STAGING%%include/wine/windows/d3dx10core.idl %%OSREL9-STAGING%%include/wine/windows/d3dx10core.idl %%OSREL10-STAGING%%include/wine/windows/d3dx10core.idl %%OSREL11-STAGING%%include/wine/windows/d3dx10core.idl @@ -359,7 +355,6 @@ include/wine/windows/dxgi1_2.h include/wine/windows/dxgi1_2.idl include/wine/windows/dxgiformat.h include/wine/windows/dxgitype.h -%%OSREL8-STAGING%%include/wine/windows/dxva.h %%OSREL9-STAGING%%include/wine/windows/dxva.h %%OSREL10-STAGING%%include/wine/windows/dxva.h %%OSREL11-STAGING%%include/wine/windows/dxva.h @@ -389,7 +384,6 @@ include/wine/windows/gameux.idl include/wine/windows/gdiplus.h include/wine/windows/gdipluscolor.h include/wine/windows/gdipluscolormatrix.h -%%OSREL8-STAGING%%include/wine/windows/gdipluseffects.h %%OSREL9-STAGING%%include/wine/windows/gdipluseffects.h %%OSREL10-STAGING%%include/wine/windows/gdipluseffects.h %%OSREL11-STAGING%%include/wine/windows/gdipluseffects.h @@ -497,6 +491,8 @@ include/wine/windows/metahost.h include/wine/windows/metahost.idl include/wine/windows/mfapi.h include/wine/windows/mferror.h +include/wine/windows/mfobjects.h +include/wine/windows/mfobjects.idl include/wine/windows/midles.h include/wine/windows/mimeinfo.h include/wine/windows/mimeinfo.idl @@ -577,7 +573,6 @@ include/wine/windows/ntddscsi.h include/wine/windows/ntddstor.h include/wine/windows/ntdef.h include/wine/windows/ntdsapi.h -%%OSREL8-STAGING%%include/wine/windows/ntifs.h %%OSREL9-STAGING%%include/wine/windows/ntifs.h %%OSREL10-STAGING%%include/wine/windows/ntifs.h %%OSREL11-STAGING%%include/wine/windows/ntifs.h @@ -585,15 +580,12 @@ include/wine/windows/ntquery.h include/wine/windows/ntsecapi.h include/wine/windows/ntsecpkg.h include/wine/windows/ntstatus.h -%%OSREL8-STAGING%%include/wine/windows/nvapi.h %%OSREL9-STAGING%%include/wine/windows/nvapi.h %%OSREL10-STAGING%%include/wine/windows/nvapi.h %%OSREL11-STAGING%%include/wine/windows/nvapi.h -%%OSREL8-STAGING%%include/wine/windows/nvcuvid.h %%OSREL9-STAGING%%include/wine/windows/nvcuvid.h %%OSREL10-STAGING%%include/wine/windows/nvcuvid.h %%OSREL11-STAGING%%include/wine/windows/nvcuvid.h -%%OSREL8-STAGING%%include/wine/windows/nvencodeapi.h %%OSREL9-STAGING%%include/wine/windows/nvencodeapi.h %%OSREL10-STAGING%%include/wine/windows/nvencodeapi.h %%OSREL11-STAGING%%include/wine/windows/nvencodeapi.h @@ -791,6 +783,7 @@ include/wine/windows/wbemdisp.h include/wine/windows/wbemdisp.idl include/wine/windows/wbemprov.h include/wine/windows/wbemprov.idl +include/wine/windows/wct.h include/wine/windows/webservices.h include/wine/windows/werapi.h include/wine/windows/wfext.h @@ -809,6 +802,8 @@ include/wine/windows/wincred.h include/wine/windows/wincrypt.h include/wine/windows/windef.h include/wine/windows/windns.h +include/wine/windows/windows.foundation.h +include/wine/windows/windows.foundation.idl include/wine/windows/windows.h include/wine/windows/windowsx.h include/wine/windows/winerror.h @@ -912,7 +907,6 @@ lib32/libXrender.so.1 lib32/libXxf86vm.so.1 %%OSREL10%%lib32/libdevq.so.0 %%OSREL11%%lib32/libdevq.so.0 -%%OSREL8%%lib32/libdricore9.1.7.so.1 %%OSREL9%%lib32/libdricore9.1.7.so.1 lib32/libdrm.so.2 lib32/libdrm_intel.so.1 @@ -920,53 +914,40 @@ lib32/libdrm_radeon.so.1 %%OSREL10%%lib32/libedit.so.0 %%OSREL11%%lib32/libedit.so.0 lib32/libexpat.so.1 -%%OSREL8-STAGING%%lib32/libffi.so.6 %%OSREL9-STAGING%%lib32/libffi.so.6 %%OSREL10-STAGING%%lib32/libffi.so.6 %%OSREL11-STAGING%%lib32/libffi.so.6 lib32/libfontconfig.so.1 lib32/libfreetype.so.6 -%%OSREL8%%lib32/libgcc_s.so.1 lib32/libglapi.so.0 -%%OSREL8-STAGING%%lib32/libgmp.so.10 %%OSREL9-STAGING%%lib32/libgmp.so.10 %%OSREL10-STAGING%%lib32/libgmp.so.10 %%OSREL11-STAGING%%lib32/libgmp.so.10 -%%OSREL8-STAGING%%lib32/libgnutls.so.28 %%OSREL9-STAGING%%lib32/libgnutls.so.28 %%OSREL10-STAGING%%lib32/libgnutls.so.28 %%OSREL11-STAGING%%lib32/libgnutls.so.28 -%%OSREL8-STAGING%%lib32/libhogweed.so.2 %%OSREL9-STAGING%%lib32/libhogweed.so.2 %%OSREL10-STAGING%%lib32/libhogweed.so.2 %%OSREL11-STAGING%%lib32/libhogweed.so.2 -%%OSREL8%%lib32/libiconv.so.2 %%OSREL9%%lib32/libiconv.so.2 -%%OSREL8-STAGING%%lib32/libintl.so.8 %%OSREL9-STAGING%%lib32/libintl.so.8 %%OSREL10-STAGING%%lib32/libintl.so.8 %%OSREL11-STAGING%%lib32/libintl.so.8 lib32/libjpeg.so.8 lib32/liblcms2.so.2 -%%OSREL8%%lib32/libllvmradeon9.1.7.so %%OSREL9%%lib32/libllvmradeon9.1.7.so -%%OSREL8-STAGING%%lib32/libnettle.so.4 %%OSREL9-STAGING%%lib32/libnettle.so.4 %%OSREL10-STAGING%%lib32/libnettle.so.4 %%OSREL11-STAGING%%lib32/libnettle.so.4 -%%OSREL8-STAGING%%lib32/libp11-kit.so.0 %%OSREL9-STAGING%%lib32/libp11-kit.so.0 %%OSREL10-STAGING%%lib32/libp11-kit.so.0 %%OSREL11-STAGING%%lib32/libp11-kit.so.0 lib32/libpciaccess.so.0 lib32/libpng16.so.16 lib32/libpthread-stubs.so.0 -%%OSREL8%%lib32/libstdc++.so.6 -%%OSREL8-STAGING%%lib32/libtasn1.so.6 %%OSREL9-STAGING%%lib32/libtasn1.so.6 %%OSREL10-STAGING%%lib32/libtasn1.so.6 %%OSREL11-STAGING%%lib32/libtasn1.so.6 -%%OSREL8-STAGING%%lib32/libtspi.so.1 %%OSREL9-STAGING%%lib32/libtspi.so.1 %%OSREL10-STAGING%%lib32/libtspi.so.1 %%OSREL11-STAGING%%lib32/libtspi.so.1 @@ -976,7 +957,6 @@ lib32/libxcb-dri2.so.0 lib32/libxcb-glx.so.0 lib32/libxcb.so.1 lib32/libxml2.so.2 -%%OSREL8-STAGING%%lib32/libxslt.so.1 %%OSREL9-STAGING%%lib32/libxslt.so.1 %%OSREL10-STAGING%%lib32/libxslt.so.1 %%OSREL11-STAGING%%lib32/libxslt.so.1 @@ -1047,6 +1027,51 @@ lib32/wine/api-ms-win-core-winrt-error-l lib32/wine/api-ms-win-core-winrt-l1-1-0.dll.so lib32/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so lib32/wine/api-ms-win-core-xstate-l2-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-conio-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-conio-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-conio-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-convert-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-convert-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-convert-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-environment-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-environment-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-environment-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-filesystem-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-heap-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-heap-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-heap-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-locale-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-locale-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-locale-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-math-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-math-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-math-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-multibyte-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-private-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-private-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-private-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-process-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-process-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-process-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-runtime-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-runtime-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-runtime-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-stdio-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-stdio-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-stdio-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-string-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-string-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-string-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-time-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-time-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-time-l1-1-0.dll.so +%%OSREL9-STAGING%%lib32/wine/api-ms-win-crt-utility-l1-1-0.dll.so +%%OSREL10-STAGING%%lib32/wine/api-ms-win-crt-utility-l1-1-0.dll.so +%%OSREL11-STAGING%%lib32/wine/api-ms-win-crt-utility-l1-1-0.dll.so lib32/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so lib32/wine/api-ms-win-downlevel-advapi32-l2-1-0.dll.so lib32/wine/api-ms-win-downlevel-normaliz-l1-1-0.dll.so @@ -1289,6 +1314,51 @@ lib32/wine/fakedlls/api-ms-win-core-winr lib32/wine/fakedlls/api-ms-win-core-winrt-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-xstate-l2-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-conio-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-convert-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-environment-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-filesystem-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-heap-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-locale-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-math-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-multibyte-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-private-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-process-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-runtime-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-stdio-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-string-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-time-l1-1-0.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/api-ms-win-crt-utility-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-downlevel-advapi32-l2-1-0.dll lib32/wine/fakedlls/api-ms-win-downlevel-normaliz-l1-1-0.dll @@ -1467,7 +1537,6 @@ lib32/wine/fakedlls/extrac32.exe lib32/wine/fakedlls/faultrep.dll lib32/wine/fakedlls/findstr.exe lib32/wine/fakedlls/fltlib.dll -%%OSREL8-STAGING%%lib32/wine/fakedlls/fltmgr.sys %%OSREL9-STAGING%%lib32/wine/fakedlls/fltmgr.sys %%OSREL10-STAGING%%lib32/wine/fakedlls/fltmgr.sys %%OSREL11-STAGING%%lib32/wine/fakedlls/fltmgr.sys @@ -1634,19 +1703,15 @@ lib32/wine/fakedlls/ntdll.dll lib32/wine/fakedlls/ntdsapi.dll lib32/wine/fakedlls/ntoskrnl.exe lib32/wine/fakedlls/ntprint.dll -%%OSREL8-STAGING%%lib32/wine/fakedlls/nvapi.dll %%OSREL9-STAGING%%lib32/wine/fakedlls/nvapi.dll %%OSREL10-STAGING%%lib32/wine/fakedlls/nvapi.dll %%OSREL11-STAGING%%lib32/wine/fakedlls/nvapi.dll -%%OSREL8-STAGING%%lib32/wine/fakedlls/nvcuda.dll %%OSREL9-STAGING%%lib32/wine/fakedlls/nvcuda.dll %%OSREL10-STAGING%%lib32/wine/fakedlls/nvcuda.dll %%OSREL11-STAGING%%lib32/wine/fakedlls/nvcuda.dll -%%OSREL8-STAGING%%lib32/wine/fakedlls/nvcuvid.dll %%OSREL9-STAGING%%lib32/wine/fakedlls/nvcuvid.dll %%OSREL10-STAGING%%lib32/wine/fakedlls/nvcuvid.dll %%OSREL11-STAGING%%lib32/wine/fakedlls/nvcuvid.dll -%%OSREL8-STAGING%%lib32/wine/fakedlls/nvencodeapi.dll %%OSREL9-STAGING%%lib32/wine/fakedlls/nvencodeapi.dll %%OSREL10-STAGING%%lib32/wine/fakedlls/nvencodeapi.dll %%OSREL11-STAGING%%lib32/wine/fakedlls/nvencodeapi.dll @@ -1771,6 +1836,9 @@ lib32/wine/fakedlls/traffic.dll lib32/wine/fakedlls/twain.dll16 lib32/wine/fakedlls/twain_32.dll lib32/wine/fakedlls/typelib.dll16 +%%OSREL9-STAGING%%lib32/wine/fakedlls/ucrtbase.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/ucrtbase.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/ucrtbase.dll lib32/wine/fakedlls/unicows.dll lib32/wine/fakedlls/uninstaller.exe lib32/wine/fakedlls/unlodctr.exe @@ -1786,7 +1854,11 @@ lib32/wine/fakedlls/uxtheme.dll lib32/wine/fakedlls/vbscript.dll lib32/wine/fakedlls/vcomp.dll lib32/wine/fakedlls/vcomp100.dll +lib32/wine/fakedlls/vcomp110.dll lib32/wine/fakedlls/vcomp90.dll +%%OSREL9-STAGING%%lib32/wine/fakedlls/vcruntime140.dll +%%OSREL10-STAGING%%lib32/wine/fakedlls/vcruntime140.dll +%%OSREL11-STAGING%%lib32/wine/fakedlls/vcruntime140.dll lib32/wine/fakedlls/vdhcp.vxd lib32/wine/fakedlls/vdmdbg.dll lib32/wine/fakedlls/ver.dll16 @@ -1817,7 +1889,6 @@ lib32/wine/fakedlls/wineboot.exe lib32/wine/fakedlls/winebrowser.exe lib32/wine/fakedlls/winecfg.exe lib32/wine/fakedlls/wineconsole.exe -%%OSREL8-STAGING%%lib32/wine/fakedlls/wined3d-csmt.dll %%OSREL9-STAGING%%lib32/wine/fakedlls/wined3d-csmt.dll %%OSREL10-STAGING%%lib32/wine/fakedlls/wined3d-csmt.dll %%OSREL11-STAGING%%lib32/wine/fakedlls/wined3d-csmt.dll @@ -1886,6 +1957,7 @@ lib32/wine/fakedlls/xapofx1_3.dll lib32/wine/fakedlls/xapofx1_4.dll lib32/wine/fakedlls/xapofx1_5.dll lib32/wine/fakedlls/xaudio2_7.dll +lib32/wine/fakedlls/xaudio2_8.dll lib32/wine/fakedlls/xcopy.exe lib32/wine/fakedlls/xinput1_1.dll lib32/wine/fakedlls/xinput1_2.dll @@ -1899,7 +1971,6 @@ lib32/wine/fakedlls/xpssvcs.dll lib32/wine/faultrep.dll.so lib32/wine/findstr.exe.so lib32/wine/fltlib.dll.so -%%OSREL8-STAGING%%lib32/wine/fltmgr.sys.so %%OSREL9-STAGING%%lib32/wine/fltmgr.sys.so %%OSREL10-STAGING%%lib32/wine/fltmgr.sys.so %%OSREL11-STAGING%%lib32/wine/fltmgr.sys.so @@ -2099,6 +2170,9 @@ lib32/wine/libstrmbase.a lib32/wine/libstrmiids.a lib32/wine/libsxs.def lib32/wine/libtapi32.def +%%OSREL9-STAGING%%lib32/wine/libucrtbase.def +%%OSREL10-STAGING%%lib32/wine/libucrtbase.def +%%OSREL11-STAGING%%lib32/wine/libucrtbase.def lib32/wine/libunicows.def lib32/wine/liburl.def lib32/wine/liburlmon.def @@ -2108,13 +2182,15 @@ lib32/wine/libuserenv.def lib32/wine/libusp10.def lib32/wine/libuuid.a lib32/wine/libuxtheme.def +%%OSREL9-STAGING%%lib32/wine/libvcruntime140.def +%%OSREL10-STAGING%%lib32/wine/libvcruntime140.def +%%OSREL11-STAGING%%lib32/wine/libvcruntime140.def lib32/wine/libvdmdbg.def lib32/wine/libversion.def lib32/wine/libwebservices.def lib32/wine/libwer.def lib32/wine/libwindowscodecs.def lib32/wine/libwindowscodecsext.def -%%OSREL8-STAGING%%lib32/wine/libwinealsa.drv.def %%OSREL9-STAGING%%lib32/wine/libwinealsa.drv.def %%OSREL10-STAGING%%lib32/wine/libwinealsa.drv.def %%OSREL11-STAGING%%lib32/wine/libwinealsa.drv.def @@ -2251,19 +2327,15 @@ lib32/wine/ntdll.dll.so lib32/wine/ntdsapi.dll.so lib32/wine/ntoskrnl.exe.so lib32/wine/ntprint.dll.so -%%OSREL8-STAGING%%lib32/wine/nvapi.dll.so %%OSREL9-STAGING%%lib32/wine/nvapi.dll.so %%OSREL10-STAGING%%lib32/wine/nvapi.dll.so %%OSREL11-STAGING%%lib32/wine/nvapi.dll.so -%%OSREL8-STAGING%%lib32/wine/nvcuda.dll.so %%OSREL9-STAGING%%lib32/wine/nvcuda.dll.so %%OSREL10-STAGING%%lib32/wine/nvcuda.dll.so %%OSREL11-STAGING%%lib32/wine/nvcuda.dll.so -%%OSREL8-STAGING%%lib32/wine/nvcuvid.dll.so %%OSREL9-STAGING%%lib32/wine/nvcuvid.dll.so %%OSREL10-STAGING%%lib32/wine/nvcuvid.dll.so %%OSREL11-STAGING%%lib32/wine/nvcuvid.dll.so -%%OSREL8-STAGING%%lib32/wine/nvencodeapi.dll.so %%OSREL9-STAGING%%lib32/wine/nvencodeapi.dll.so %%OSREL10-STAGING%%lib32/wine/nvencodeapi.dll.so %%OSREL11-STAGING%%lib32/wine/nvencodeapi.dll.so @@ -2388,6 +2460,9 @@ lib32/wine/traffic.dll.so lib32/wine/twain.dll16.so lib32/wine/twain_32.dll.so lib32/wine/typelib.dll16.so +%%OSREL9-STAGING%%lib32/wine/ucrtbase.dll.so +%%OSREL10-STAGING%%lib32/wine/ucrtbase.dll.so +%%OSREL11-STAGING%%lib32/wine/ucrtbase.dll.so lib32/wine/unicows.dll.so lib32/wine/uninstaller.exe.so lib32/wine/unlodctr.exe.so @@ -2403,7 +2478,11 @@ lib32/wine/uxtheme.dll.so lib32/wine/vbscript.dll.so lib32/wine/vcomp.dll.so lib32/wine/vcomp100.dll.so +lib32/wine/vcomp110.dll.so lib32/wine/vcomp90.dll.so +%%OSREL9-STAGING%%lib32/wine/vcruntime140.dll.so +%%OSREL10-STAGING%%lib32/wine/vcruntime140.dll.so +%%OSREL11-STAGING%%lib32/wine/vcruntime140.dll.so lib32/wine/vdhcp.vxd.so lib32/wine/vdmdbg.dll.so lib32/wine/ver.dll16.so @@ -2434,7 +2513,6 @@ lib32/wine/wineboot.exe.so lib32/wine/winebrowser.exe.so lib32/wine/winecfg.exe.so lib32/wine/wineconsole.exe.so -%%OSREL8-STAGING%%lib32/wine/wined3d-csmt.dll.so %%OSREL9-STAGING%%lib32/wine/wined3d-csmt.dll.so %%OSREL10-STAGING%%lib32/wine/wined3d-csmt.dll.so %%OSREL11-STAGING%%lib32/wine/wined3d-csmt.dll.so @@ -2503,6 +2581,7 @@ lib32/wine/xapofx1_3.dll.so lib32/wine/xapofx1_4.dll.so lib32/wine/xapofx1_5.dll.so lib32/wine/xaudio2_7.dll.so +lib32/wine/xaudio2_8.dll.so lib32/wine/xcopy.exe.so lib32/wine/xinput1_1.dll.so lib32/wine/xinput1_2.dll.so @@ -2548,14 +2627,12 @@ share/doc/wine/AUTHORS share/doc/wine/README share/doc/wine/README.winedbg share/doc/wine/README.winedump -%%OSREL8-STAGING%%share/wine/fonts/arial.ttf %%OSREL9-STAGING%%share/wine/fonts/arial.ttf %%OSREL10-STAGING%%share/wine/fonts/arial.ttf %%OSREL11-STAGING%%share/wine/fonts/arial.ttf share/wine/fonts/coue1255.fon share/wine/fonts/coue1256.fon share/wine/fonts/coue1257.fon -%%OSREL8-STAGING%%share/wine/fonts/cour.ttf %%OSREL9-STAGING%%share/wine/fonts/cour.ttf %%OSREL10-STAGING%%share/wine/fonts/cour.ttf %%OSREL11-STAGING%%share/wine/fonts/cour.ttf @@ -2570,7 +2647,6 @@ share/wine/fonts/jsmalle.fon share/wine/fonts/jvgafix.fon share/wine/fonts/jvgasys.fon share/wine/fonts/marlett.ttf -%%OSREL8-STAGING%%share/wine/fonts/msyh.ttf %%OSREL9-STAGING%%share/wine/fonts/msyh.ttf %%OSREL10-STAGING%%share/wine/fonts/msyh.ttf %%OSREL11-STAGING%%share/wine/fonts/msyh.ttf @@ -2615,15 +2691,6 @@ share/wine/fonts/vgasysg.fon share/wine/fonts/vgasysr.fon share/wine/fonts/vgasyst.fon share/wine/fonts/wingding.ttf -%%OSREL8-DEVEL%%share/wine/l_intl.nls -%%OSREL9%%share/wine/l_intl.nls -%%OSREL10%%share/wine/l_intl.nls -%%OSREL11%%share/wine/l_intl.nls -%%OSREL8-DEVEL%%share/wine/patch-nvidia.sh -%%OSREL9%%share/wine/patch-nvidia.sh -%%OSREL10%%share/wine/patch-nvidia.sh -%%OSREL11%%share/wine/patch-nvidia.sh -%%OSREL8-DEVEL%%share/wine/wine.inf -%%OSREL9%%share/wine/wine.inf -%%OSREL10%%share/wine/wine.inf -%%OSREL11%%share/wine/wine.inf +share/wine/l_intl.nls +share/wine/patch-nvidia.sh +share/wine/wine.inf From owner-svn-ports-all@freebsd.org Thu Aug 13 18:19:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F422F9B8787; Thu, 13 Aug 2015 18:19:01 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF74DFBE; Thu, 13 Aug 2015 18:19:01 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DIJ1Df074509; Thu, 13 Aug 2015 18:19:01 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DIJ1Ve074506; Thu, 13 Aug 2015 18:19:01 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131819.t7DIJ1Ve074506@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 18:19:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394179 - head/devel/py-asn1-modules X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 18:19:02 -0000 Author: rm Date: Thu Aug 13 18:19:00 2015 New Revision: 394179 URL: https://svnweb.freebsd.org/changeset/ports/394179 Log: devel/py-asn1-modules: update to 0.0.7 Changelog --------- - Extensions added to text files, CVS attic flushed. - Fix to rfc2459.BasicConstraints syntax. Modified: head/devel/py-asn1-modules/Makefile head/devel/py-asn1-modules/distinfo head/devel/py-asn1-modules/pkg-plist Modified: head/devel/py-asn1-modules/Makefile ============================================================================== --- head/devel/py-asn1-modules/Makefile Thu Aug 13 18:08:35 2015 (r394178) +++ head/devel/py-asn1-modules/Makefile Thu Aug 13 18:19:00 2015 (r394179) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= asn1-modules -PORTVERSION= 0.0.6 +PORTVERSION= 0.0.7 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,19 +11,20 @@ MAINTAINER= rm@FreeBSD.org COMMENT= Collection of ASN.1 data structures for py-asn1 LICENSE= BSD2CLAUSE -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>=0.1.4:${PORTSDIR}/devel/py-asn1 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asn1>=0.1.8:${PORTSDIR}/devel/py-asn1 +NO_ARCH= yes USES= python shebangfix SHEBANG_FILES= tools/*.py USE_PYTHON= autoplist distutils DOCSDIR= ${PREFIX}/share/doc/${PYTHON_PKGNAMEPREFIX}${PORTNAME} -PORTDOCS= CHANGES README +PORTDOCS= CHANGES.txt README.txt TOOLS= cmpdump.py crldump.py crmfdump.py ocspclient.py ocspreqdump.py \ - ocsprspdump.py ocspserver.py pkcs10dump.py pkcs1dump.py \ - pkcs7dump.py pkcs8dump.py snmpget.py x509dump.py + ocsprspdump.py pkcs10dump.py pkcs1dump.py pkcs7dump.py \ + pkcs8dump.py snmpget.py x509dump.py post-install: ${INSTALL_SCRIPT} ${TOOLS:S|^|${WRKSRC}/tools/|} ${STAGEDIR}${PREFIX}/bin Modified: head/devel/py-asn1-modules/distinfo ============================================================================== --- head/devel/py-asn1-modules/distinfo Thu Aug 13 18:08:35 2015 (r394178) +++ head/devel/py-asn1-modules/distinfo Thu Aug 13 18:19:00 2015 (r394179) @@ -1,2 +1,2 @@ -SHA256 (pyasn1-modules-0.0.6.tar.gz) = 1f41d3f3da43e9a769e23649724368aa0b88afcfd1fe6e9f210d31d13322fc15 -SIZE (pyasn1-modules-0.0.6.tar.gz) = 38940 +SHA256 (pyasn1-modules-0.0.7.tar.gz) = 794dbcef4b7124b8271f12eb7eea0d37b466012f11ce023f91e2e2082df11c7e +SIZE (pyasn1-modules-0.0.7.tar.gz) = 38605 Modified: head/devel/py-asn1-modules/pkg-plist ============================================================================== --- head/devel/py-asn1-modules/pkg-plist Thu Aug 13 18:08:35 2015 (r394178) +++ head/devel/py-asn1-modules/pkg-plist Thu Aug 13 18:19:00 2015 (r394179) @@ -4,7 +4,6 @@ bin/crmfdump.py bin/ocspclient.py bin/ocspreqdump.py bin/ocsprspdump.py -bin/ocspserver.py bin/pkcs10dump.py bin/pkcs1dump.py bin/pkcs7dump.py From owner-svn-ports-all@freebsd.org Thu Aug 13 18:23:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D420A9B88A9; Thu, 13 Aug 2015 18:23:34 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C19DF394; Thu, 13 Aug 2015 18:23:34 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DINYEk078410; Thu, 13 Aug 2015 18:23:34 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DINYkr078408; Thu, 13 Aug 2015 18:23:34 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201508131823.t7DINYkr078408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Thu, 13 Aug 2015 18:23:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394180 - head/security/pcsc-tools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 18:23:34 -0000 Author: arved Date: Thu Aug 13 18:23:33 2015 New Revision: 394180 URL: https://svnweb.freebsd.org/changeset/ports/394180 Log: Update to 1.4.24 Modified: head/security/pcsc-tools/Makefile head/security/pcsc-tools/distinfo Modified: head/security/pcsc-tools/Makefile ============================================================================== --- head/security/pcsc-tools/Makefile Thu Aug 13 18:19:00 2015 (r394179) +++ head/security/pcsc-tools/Makefile Thu Aug 13 18:23:33 2015 (r394180) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcsc-tools -PORTVERSION= 1.4.23 +PORTVERSION= 1.4.24 CATEGORIES= security MASTER_SITES= http://ludovic.rousseau.free.fr/softwares/pcsc-tools/ Modified: head/security/pcsc-tools/distinfo ============================================================================== --- head/security/pcsc-tools/distinfo Thu Aug 13 18:19:00 2015 (r394179) +++ head/security/pcsc-tools/distinfo Thu Aug 13 18:23:33 2015 (r394180) @@ -1,2 +1,2 @@ -SHA256 (pcsc-tools-1.4.23.tar.gz) = 69ca7bb6ee23ef99e2696451f2f56072dd74adcc43272d89fd757ac8f7de4fe2 -SIZE (pcsc-tools-1.4.23.tar.gz) = 114495 +SHA256 (pcsc-tools-1.4.24.tar.gz) = 176ee6f791cd7437e05d921e5041a1f2265116a5a0d1079a5b8321f2cf541682 +SIZE (pcsc-tools-1.4.24.tar.gz) = 180792 From owner-svn-ports-all@freebsd.org Thu Aug 13 18:42:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 585CF9B8DAA; Thu, 13 Aug 2015 18:42:42 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F3941462; Thu, 13 Aug 2015 18:42:42 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DIgg9B086807; Thu, 13 Aug 2015 18:42:42 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DIgftC086805; Thu, 13 Aug 2015 18:42:41 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131842.t7DIgftC086805@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 18:42:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394181 - head/www/py-flask-restful X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 18:42:42 -0000 Author: rm Date: Thu Aug 13 18:42:41 2015 New Revision: 394181 URL: https://svnweb.freebsd.org/changeset/ports/394181 Log: www/py-flask-restful: update to 0.3.4 Version 0.3.4 ------------- Released July 20, 2015 - Fixed issue where `abort()` and `raise Exception` were not equivalent - Fixed `RequestParser` settings not being copied properly - Add ability to configure json serializer settings from application config - Project metadata, tests, and examples are now included in source distributions - Various documentation improvements Modified: head/www/py-flask-restful/Makefile head/www/py-flask-restful/distinfo Modified: head/www/py-flask-restful/Makefile ============================================================================== --- head/www/py-flask-restful/Makefile Thu Aug 13 18:23:33 2015 (r394180) +++ head/www/py-flask-restful/Makefile Thu Aug 13 18:42:41 2015 (r394181) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Flask-RESTful -PORTVERSION= 0.3.3 +PORTVERSION= 0.3.4 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,6 +16,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}anis ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz +NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils Modified: head/www/py-flask-restful/distinfo ============================================================================== --- head/www/py-flask-restful/distinfo Thu Aug 13 18:23:33 2015 (r394180) +++ head/www/py-flask-restful/distinfo Thu Aug 13 18:42:41 2015 (r394181) @@ -1,2 +1,2 @@ -SHA256 (Flask-RESTful-0.3.3.tar.gz) = 30f70682188e6f5bd7915f6188353d35b981b62a880d86b8079c462ee7d9c6b8 -SIZE (Flask-RESTful-0.3.3.tar.gz) = 20459 +SHA256 (Flask-RESTful-0.3.4.tar.gz) = 89f3773363fb0dd235d16c806b7ff8fed8268152d45bf1fc618a12a36dfd1b68 +SIZE (Flask-RESTful-0.3.4.tar.gz) = 105384 From owner-svn-ports-all@freebsd.org Thu Aug 13 18:44:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 228F69B8E2E; Thu, 13 Aug 2015 18:44:53 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 138DE1706; Thu, 13 Aug 2015 18:44:53 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DIiqps087087; Thu, 13 Aug 2015 18:44:52 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DIiqGD087085; Thu, 13 Aug 2015 18:44:52 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131844.t7DIiqGD087085@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 18:44:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394182 - head/www/py-w3lib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 18:44:53 -0000 Author: rm Date: Thu Aug 13 18:44:51 2015 New Revision: 394182 URL: https://svnweb.freebsd.org/changeset/ports/394182 Log: www/py-w3lib: update to 1.12.0 Modified: head/www/py-w3lib/Makefile head/www/py-w3lib/distinfo Modified: head/www/py-w3lib/Makefile ============================================================================== --- head/www/py-w3lib/Makefile Thu Aug 13 18:42:41 2015 (r394181) +++ head/www/py-w3lib/Makefile Thu Aug 13 18:44:51 2015 (r394182) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= w3lib -PORTVERSION= 1.11.0 +PORTVERSION= 1.12.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,6 +13,7 @@ LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six +NO_ARCH= yes USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/www/py-w3lib/distinfo ============================================================================== --- head/www/py-w3lib/distinfo Thu Aug 13 18:42:41 2015 (r394181) +++ head/www/py-w3lib/distinfo Thu Aug 13 18:44:51 2015 (r394182) @@ -1,2 +1,2 @@ -SHA256 (w3lib-1.11.0.tar.gz) = 826f6184232c385b7c8038ef7ae5506f1cb3f8fa470ac12ce0fb6fb0a592fb92 -SIZE (w3lib-1.11.0.tar.gz) = 12083 +SHA256 (w3lib-1.12.0.tar.gz) = dedaadf01aa18bc566d9043a37c3a551b4d47623fdb6f6fe75ecb95b6821d7c4 +SIZE (w3lib-1.12.0.tar.gz) = 35255 From owner-svn-ports-all@freebsd.org Thu Aug 13 18:49:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA1B49B8EEC; Thu, 13 Aug 2015 18:49:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D80F51A50; Thu, 13 Aug 2015 18:49:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DIn328087407; Thu, 13 Aug 2015 18:49:03 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DIn3Ln087405; Thu, 13 Aug 2015 18:49:03 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131849.t7DIn3Ln087405@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 18:49:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394183 - head/net/py-ldap3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 18:49:04 -0000 Author: rm Date: Thu Aug 13 18:49:02 2015 New Revision: 394183 URL: https://svnweb.freebsd.org/changeset/ports/394183 Log: net/py-ldap3: update to 0.9.8.7 * 0.9.8.7 2015.07.19 - backported ssl.match_hostname from Python 3.4.3 standard library to be used in Python < 2.7.10 - uses backports.ssl_match_hostname if present instead of static backported functions for matching server names in ssl certificate (thanks Michal) - attributes values are properly printed when not strings in abstract.attribute (thanks hogneh) - checking unicode __repr__() in python2 - added hashing capability to Modify Password extended operation (thanks Gawain) Modified: head/net/py-ldap3/Makefile head/net/py-ldap3/distinfo Modified: head/net/py-ldap3/Makefile ============================================================================== --- head/net/py-ldap3/Makefile Thu Aug 13 18:44:51 2015 (r394182) +++ head/net/py-ldap3/Makefile Thu Aug 13 18:49:02 2015 (r394183) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ldap3 -PORTVERSION= 0.9.8.6 +PORTVERSION= 0.9.8.7 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-ldap3/distinfo ============================================================================== --- head/net/py-ldap3/distinfo Thu Aug 13 18:44:51 2015 (r394182) +++ head/net/py-ldap3/distinfo Thu Aug 13 18:49:02 2015 (r394183) @@ -1,2 +1,2 @@ -SHA256 (ldap3-0.9.8.6.tar.gz) = aa932ca208cc46c2a3b3ec5dc7cbe681bb9661b823779e9bf27cffa3eba96c16 -SIZE (ldap3-0.9.8.6.tar.gz) = 263664 +SHA256 (ldap3-0.9.8.7.tar.gz) = 19c6de07d9a6e72c9efb19628612cd474e7ea18b62557539ce88eb9c66ec8ee8 +SIZE (ldap3-0.9.8.7.tar.gz) = 264738 From owner-svn-ports-all@freebsd.org Thu Aug 13 19:00:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03B8F9B80FB; Thu, 13 Aug 2015 19:00:01 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E86602D7; Thu, 13 Aug 2015 19:00:00 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DJ00Ud091751; Thu, 13 Aug 2015 19:00:00 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DJ00vE091748; Thu, 13 Aug 2015 19:00:00 GMT (envelope-from mi@FreeBSD.org) Message-Id: <201508131900.t7DJ00vE091748@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Thu, 13 Aug 2015 19:00:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394184 - in head/x11-fonts/cyr-rfx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 19:00:01 -0000 Author: mi Date: Thu Aug 13 18:59:59 2015 New Revision: 394184 URL: https://svnweb.freebsd.org/changeset/ports/394184 Log: Stop using the "legacy" fmake, adjust the Makefile to work with the newer bmake. PR: 201208 Submitted by: amdmi3 Modified: head/x11-fonts/cyr-rfx/Makefile head/x11-fonts/cyr-rfx/files/Makefile.bdf2pcf Modified: head/x11-fonts/cyr-rfx/Makefile ============================================================================== --- head/x11-fonts/cyr-rfx/Makefile Thu Aug 13 18:49:02 2015 (r394183) +++ head/x11-fonts/cyr-rfx/Makefile Thu Aug 13 18:59:59 2015 (r394184) @@ -16,7 +16,7 @@ COMMENT= Cyrillic X11 bitmap fonts from BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \ mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir -USES= fonts fmake +USES= fonts USE_XORG= x11 CYR_RFX_ENCODING?= koi8-o Modified: head/x11-fonts/cyr-rfx/files/Makefile.bdf2pcf ============================================================================== --- head/x11-fonts/cyr-rfx/files/Makefile.bdf2pcf Thu Aug 13 18:49:02 2015 (r394183) +++ head/x11-fonts/cyr-rfx/files/Makefile.bdf2pcf Thu Aug 13 18:59:59 2015 (r394184) @@ -1,6 +1,5 @@ -VPATH= ${.CURDIR}/75dpi:${.CURDIR}/misc -BDFS!= echo ${VPATH:S,:,/*.bdf ,}/*.bdf -PCFS= ${BDFS:T:S/.bdf/.pcf.gz/} +BDFS!= echo 75dpi/*.bdf misc/*.bdf +PCFS= ${BDFS:S/.bdf/.pcf.gz/} .SUFFIXES: .bdf .pcf.gz @@ -9,7 +8,7 @@ all: fonts.dir fonts.alias ${PCFS} fonts.dir: ${PCFS} mkfontdir . -fonts.alias: ${VPATH:S,:,/fonts.alias ,}/fonts.alias +fonts.alias: 75dpi/fonts.alias misc/fonts.alias cat ${.ALLSRC} > ${.TARGET} .bdf.pcf.gz: From owner-svn-ports-all@freebsd.org Thu Aug 13 19:21:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B2019B859D; Thu, 13 Aug 2015 19:21:46 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E0586F1; Thu, 13 Aug 2015 19:21:46 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DJLjdn002114; Thu, 13 Aug 2015 19:21:45 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DJLiLV002108; Thu, 13 Aug 2015 19:21:44 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131921.t7DJLiLV002108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 19:21:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394185 - in head/devel: . py-kayako X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 19:21:46 -0000 Author: rm Date: Thu Aug 13 19:21:44 2015 New Revision: 394185 URL: https://svnweb.freebsd.org/changeset/ports/394185 Log: Python API Wrapper for Kayako 4.01.240 WWW: https://pypi.python.org/pypi/kayako/ Added: head/devel/py-kayako/ head/devel/py-kayako/Makefile (contents, props changed) head/devel/py-kayako/distinfo (contents, props changed) head/devel/py-kayako/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 13 18:59:59 2015 (r394184) +++ head/devel/Makefile Thu Aug 13 19:21:44 2015 (r394185) @@ -4010,6 +4010,7 @@ SUBDIR += py-jsonrpclib SUBDIR += py-jsonschema SUBDIR += py-kaptan + SUBDIR += py-kayako SUBDIR += py-kazoo SUBDIR += py-kid SUBDIR += py-kjbuckets Added: head/devel/py-kayako/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-kayako/Makefile Thu Aug 13 19:21:44 2015 (r394185) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= kayako +PORTVERSION= 1.1.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Python API Wrapper for Kayako + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml + +NO_ARCH= yes +USES= python:2 +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-kayako/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-kayako/distinfo Thu Aug 13 19:21:44 2015 (r394185) @@ -0,0 +1,2 @@ +SHA256 (kayako-1.1.5.tar.gz) = 1dcf13f4b2ccc2be4d0e5e1a1ff6367ce88e882bc4b8be94d0202d535ca8be3a +SIZE (kayako-1.1.5.tar.gz) = 32660 Added: head/devel/py-kayako/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-kayako/pkg-descr Thu Aug 13 19:21:44 2015 (r394185) @@ -0,0 +1,3 @@ +Python API Wrapper for Kayako 4.01.240 + +WWW: https://pypi.python.org/pypi/kayako/ From owner-svn-ports-all@freebsd.org Thu Aug 13 19:33:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 931679B878E; Thu, 13 Aug 2015 19:33:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 840E4CB4; Thu, 13 Aug 2015 19:33:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DJX304008242; Thu, 13 Aug 2015 19:33:03 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DJX3CU008240; Thu, 13 Aug 2015 19:33:03 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131933.t7DJX3CU008240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 19:33:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394186 - head/devel/py-serpent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 19:33:03 -0000 Author: rm Date: Thu Aug 13 19:33:02 2015 New Revision: 394186 URL: https://svnweb.freebsd.org/changeset/ports/394186 Log: devel/py-serpent: update to 1.11 Modified: head/devel/py-serpent/Makefile head/devel/py-serpent/distinfo Modified: head/devel/py-serpent/Makefile ============================================================================== --- head/devel/py-serpent/Makefile Thu Aug 13 19:21:44 2015 (r394185) +++ head/devel/py-serpent/Makefile Thu Aug 13 19:33:02 2015 (r394186) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= serpent -PORTVERSION= 1.10 +PORTVERSION= 1.11 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,8 @@ COMMENT= Simple serialization library ba LICENSE= MIT -USES= python +NO_ARCH= yes +USES= dos2unix python USE_PYTHON= autoplist concurrent distutils .include Modified: head/devel/py-serpent/distinfo ============================================================================== --- head/devel/py-serpent/distinfo Thu Aug 13 19:21:44 2015 (r394185) +++ head/devel/py-serpent/distinfo Thu Aug 13 19:33:02 2015 (r394186) @@ -1,2 +1,2 @@ -SHA256 (serpent-1.10.tar.gz) = 06f4863c1b2ace6871dcbf69f74d50a08afc8bd427445d1f5c59b03d976e204b -SIZE (serpent-1.10.tar.gz) = 10846 +SHA256 (serpent-1.11.tar.gz) = ab5df8f28574552bdbaf8d3774e6d0faff62f0aa6d5e6bb33b6b0c46937001ad +SIZE (serpent-1.11.tar.gz) = 11321 From owner-svn-ports-all@freebsd.org Thu Aug 13 19:34:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08C869B87B5; Thu, 13 Aug 2015 19:34:04 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D3D4AD9D; Thu, 13 Aug 2015 19:34:03 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DJY3vm008394; Thu, 13 Aug 2015 19:34:03 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DJY3dc008392; Thu, 13 Aug 2015 19:34:03 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131934.t7DJY3dc008392@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 19:34:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394187 - head/devel/py-pyro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 19:34:04 -0000 Author: rm Date: Thu Aug 13 19:34:02 2015 New Revision: 394187 URL: https://svnweb.freebsd.org/changeset/ports/394187 Log: devel/py-pyro: update to 4.39 Modified: head/devel/py-pyro/Makefile head/devel/py-pyro/distinfo Modified: head/devel/py-pyro/Makefile ============================================================================== --- head/devel/py-pyro/Makefile Thu Aug 13 19:33:02 2015 (r394186) +++ head/devel/py-pyro/Makefile Thu Aug 13 19:34:02 2015 (r394187) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= pyro -PORTVERSION= 4.35 +PORTVERSION= 4.39 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= Pyro4-${PORTVERSION}.src +DISTNAME= Pyro4-${PORTVERSION} MAINTAINER= rm@FreeBSD.org COMMENT= Distributed Object Middleware for Python(IPC/RPC) @@ -14,18 +14,17 @@ COMMENT= Distributed Object Middleware f LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}serpent>=1.9:${PORTSDIR}/devel/py-serpent +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}serpent>=1.11:${PORTSDIR}/devel/py-serpent USES= dos2unix python USE_PYTHON= autoplist concurrent distutils PORTDOCS= * PORTEXAMPLES= * -WRKSRC= ${WRKDIR}/${DISTNAME:S/.src//} post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) + (cd ${WRKSRC}/docs/source && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) Modified: head/devel/py-pyro/distinfo ============================================================================== --- head/devel/py-pyro/distinfo Thu Aug 13 19:33:02 2015 (r394186) +++ head/devel/py-pyro/distinfo Thu Aug 13 19:34:02 2015 (r394187) @@ -1,2 +1,2 @@ -SHA256 (Pyro4-4.35.src.tar.gz) = 97ef658b96fa10bac3e01097b1e2b6630fea2b307081ec6f2ac00f85e6020178 -SIZE (Pyro4-4.35.src.tar.gz) = 331969 +SHA256 (Pyro4-4.39.tar.gz) = 39c6ca7f86b0f0bebfeada687a5a8b99f66470a52b0f815195ae63c683266f24 +SIZE (Pyro4-4.39.tar.gz) = 496566 From owner-svn-ports-all@freebsd.org Thu Aug 13 19:34:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0035B9B87E0; Thu, 13 Aug 2015 19:34:52 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E277CE76; Thu, 13 Aug 2015 19:34:51 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DJYppN008524; Thu, 13 Aug 2015 19:34:51 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DJYpu4008523; Thu, 13 Aug 2015 19:34:51 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131934.t7DJYpu4008523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 19:34:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394188 - head/devel/py-pyro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 19:34:52 -0000 Author: rm Date: Thu Aug 13 19:34:51 2015 New Revision: 394188 URL: https://svnweb.freebsd.org/changeset/ports/394188 Log: devel/py-pyro: add NO_ARCH forgotten in previous commit Modified: head/devel/py-pyro/Makefile Modified: head/devel/py-pyro/Makefile ============================================================================== --- head/devel/py-pyro/Makefile Thu Aug 13 19:34:02 2015 (r394187) +++ head/devel/py-pyro/Makefile Thu Aug 13 19:34:51 2015 (r394188) @@ -16,6 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}serpent>=1.11:${PORTSDIR}/devel/py-serpent +NO_ARCH= yes USES= dos2unix python USE_PYTHON= autoplist concurrent distutils From owner-svn-ports-all@freebsd.org Thu Aug 13 19:49:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C07F9B8985; Thu, 13 Aug 2015 19:49:44 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F12DC6DF; Thu, 13 Aug 2015 19:49:43 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DJnhNe012944; Thu, 13 Aug 2015 19:49:43 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DJnhgg012942; Thu, 13 Aug 2015 19:49:43 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508131949.t7DJnhgg012942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 19:49:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394189 - head/devel/py-boto X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 19:49:44 -0000 Author: rm Date: Thu Aug 13 19:49:42 2015 New Revision: 394189 URL: https://svnweb.freebsd.org/changeset/ports/394189 Log: devel/py-boto: update to 2.38.0 Modified: head/devel/py-boto/Makefile head/devel/py-boto/distinfo Modified: head/devel/py-boto/Makefile ============================================================================== --- head/devel/py-boto/Makefile Thu Aug 13 19:34:51 2015 (r394188) +++ head/devel/py-boto/Makefile Thu Aug 13 19:49:42 2015 (r394189) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= boto -PORTVERSION= 2.36.0 +PORTVERSION= 2.38.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,6 +12,7 @@ COMMENT= Python interface to Amazon Web LICENSE= MIT +NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils Modified: head/devel/py-boto/distinfo ============================================================================== --- head/devel/py-boto/distinfo Thu Aug 13 19:34:51 2015 (r394188) +++ head/devel/py-boto/distinfo Thu Aug 13 19:49:42 2015 (r394189) @@ -1,2 +1,2 @@ -SHA256 (boto-2.36.0.tar.gz) = 8033c6f7a7252976df0137b62536cfe38f1dbd1ef443a7a6d8bc06c063bc36bd -SIZE (boto-2.36.0.tar.gz) = 1412318 +SHA256 (boto-2.38.0.tar.gz) = d9083f91e21df850c813b38358dc83df16d7f253180a1344ecfedce24213ecf2 +SIZE (boto-2.38.0.tar.gz) = 1423863 From owner-svn-ports-all@freebsd.org Thu Aug 13 20:01:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CA7F9B8CC9; Thu, 13 Aug 2015 20:01:33 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D869F14; Thu, 13 Aug 2015 20:01:33 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DK1X0n020865; Thu, 13 Aug 2015 20:01:33 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DK1WWF020862; Thu, 13 Aug 2015 20:01:32 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508132001.t7DK1WWF020862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Thu, 13 Aug 2015 20:01:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394190 - head/textproc/py-rdflib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 20:01:33 -0000 Author: olivierd Date: Thu Aug 13 20:01:32 2015 New Revision: 394190 URL: https://svnweb.freebsd.org/changeset/ports/394190 Log: Update to 4.2.1 Modified: head/textproc/py-rdflib/Makefile head/textproc/py-rdflib/distinfo Modified: head/textproc/py-rdflib/Makefile ============================================================================== --- head/textproc/py-rdflib/Makefile Thu Aug 13 19:49:42 2015 (r394189) +++ head/textproc/py-rdflib/Makefile Thu Aug 13 20:01:32 2015 (r394190) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rdflib -PORTVERSION= 4.1.2 +PORTVERSION= 4.2.1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/textproc/py-rdflib/distinfo ============================================================================== --- head/textproc/py-rdflib/distinfo Thu Aug 13 19:49:42 2015 (r394189) +++ head/textproc/py-rdflib/distinfo Thu Aug 13 20:01:32 2015 (r394190) @@ -1,2 +1,2 @@ -SHA256 (rdflib-4.1.2.tar.gz) = 3cf94bda0867f21468b248ce9f671581efb92ae9edd28ff321716126c6706a4f -SIZE (rdflib-4.1.2.tar.gz) = 868883 +SHA256 (rdflib-4.2.1.tar.gz) = eb02bd235606ef3b26e213da3e576557a6392ce103efd8c6c8ff1e08321608c8 +SIZE (rdflib-4.2.1.tar.gz) = 889467 From owner-svn-ports-all@freebsd.org Thu Aug 13 20:42:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A55C9B84F3; Thu, 13 Aug 2015 20:42:35 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A72D935; Thu, 13 Aug 2015 20:42:35 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DKgYoT037727; Thu, 13 Aug 2015 20:42:34 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DKgYS7037725; Thu, 13 Aug 2015 20:42:34 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201508132042.t7DKgYS7037725@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Thu, 13 Aug 2015 20:42:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394191 - head/x11/tilda X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 20:42:35 -0000 Author: rodrigo Date: Thu Aug 13 20:42:33 2015 New Revision: 394191 URL: https://svnweb.freebsd.org/changeset/ports/394191 Log: Upgrade tilda to 1.2.4 Modified: head/x11/tilda/Makefile head/x11/tilda/distinfo Modified: head/x11/tilda/Makefile ============================================================================== --- head/x11/tilda/Makefile Thu Aug 13 20:01:32 2015 (r394190) +++ head/x11/tilda/Makefile Thu Aug 13 20:42:33 2015 (r394191) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tilda -PORTVERSION= 1.2.2 +PORTVERSION= 1.2.4 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= x11 Modified: head/x11/tilda/distinfo ============================================================================== --- head/x11/tilda/distinfo Thu Aug 13 20:01:32 2015 (r394190) +++ head/x11/tilda/distinfo Thu Aug 13 20:42:33 2015 (r394191) @@ -1,2 +1,2 @@ -SHA256 (lanoxx-tilda-tilda-1.2.2_GH0.tar.gz) = 855ab15423e3de8106975fab2185af4380caeb1bb4c2d0bc60b7674d29f0f4d7 -SIZE (lanoxx-tilda-tilda-1.2.2_GH0.tar.gz) = 289677 +SHA256 (lanoxx-tilda-tilda-1.2.4_GH0.tar.gz) = 1f7b52c5d8cfd9038ad2e41fc633fce935f420fa657ed15e3942722c8570751e +SIZE (lanoxx-tilda-tilda-1.2.4_GH0.tar.gz) = 290233 From owner-svn-ports-all@freebsd.org Thu Aug 13 21:20:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CFB49B8BA6; Thu, 13 Aug 2015 21:20:02 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D82D9E4E; Thu, 13 Aug 2015 21:20:01 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DLK1fn050293; Thu, 13 Aug 2015 21:20:01 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DLK0tC050287; Thu, 13 Aug 2015 21:20:00 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508132120.t7DLK0tC050287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 21:20:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394192 - in head/russian: . py-pytils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 21:20:02 -0000 Author: rm Date: Thu Aug 13 21:20:00 2015 New Revision: 394192 URL: https://svnweb.freebsd.org/changeset/ports/394192 Log: Simple tools for processing strings in Russian (choose proper form for plurals, in-words representation of numerals, dates in Russian without locales, transliteration, etc). WWW: https://github.com/j2a/pytils/ Added: head/russian/py-pytils/ head/russian/py-pytils/Makefile (contents, props changed) head/russian/py-pytils/distinfo (contents, props changed) head/russian/py-pytils/pkg-descr (contents, props changed) Modified: head/russian/Makefile Modified: head/russian/Makefile ============================================================================== --- head/russian/Makefile Thu Aug 13 20:42:33 2015 (r394191) +++ head/russian/Makefile Thu Aug 13 21:20:00 2015 (r394192) @@ -33,6 +33,7 @@ SUBDIR += p5-Text-Hyphen-RU SUBDIR += p5-XML-Parser-encodings SUBDIR += p5-cyrillic + SUBDIR += py-pytils SUBDIR += rubygem-russian SUBDIR += rubygem-rutils SUBDIR += rux Added: head/russian/py-pytils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/russian/py-pytils/Makefile Thu Aug 13 21:20:00 2015 (r394192) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= pytils +PORTVERSION= 0.3 +CATEGORIES= russian python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Russian-specific string utils + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/russian/py-pytils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/russian/py-pytils/distinfo Thu Aug 13 21:20:00 2015 (r394192) @@ -0,0 +1,2 @@ +SHA256 (pytils-0.3.tar.gz) = 1e85118d095d48928fef1a73e3e1dccdbc07bc931131705976b7dd05b66627fc +SIZE (pytils-0.3.tar.gz) = 89526 Added: head/russian/py-pytils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/russian/py-pytils/pkg-descr Thu Aug 13 21:20:00 2015 (r394192) @@ -0,0 +1,5 @@ +Simple tools for processing strings in Russian (choose proper form for plurals, +in-words representation of numerals, dates in Russian without locales, +transliteration, etc). + +WWW: https://github.com/j2a/pytils/ From owner-svn-ports-all@freebsd.org Thu Aug 13 21:23:23 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B07DF9B8CC9; Thu, 13 Aug 2015 21:23:23 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 950331C9; Thu, 13 Aug 2015 21:23:23 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DLNNs9054196; Thu, 13 Aug 2015 21:23:23 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DLNMQS054192; Thu, 13 Aug 2015 21:23:22 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508132123.t7DLNMQS054192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 21:23:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394193 - in head/devel: . py-weblib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 21:23:23 -0000 Author: rm Date: Thu Aug 13 21:23:21 2015 New Revision: 394193 URL: https://svnweb.freebsd.org/changeset/ports/394193 Log: Weblib provides tools to solve typical tasks in web scraping: * processing HTML * handling text encodings * controling repeating and parallel tasks * parsing RSS/ATOM feeds * preparing data for HTTP requests * working with DOM tree * working with text and numeral data * list of common user agents * cross-platform file locking * operations with files and directories WWW: https://pypi.python.org/pypi/weblib Added: head/devel/py-weblib/ head/devel/py-weblib/Makefile (contents, props changed) head/devel/py-weblib/distinfo (contents, props changed) head/devel/py-weblib/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 13 21:20:00 2015 (r394192) +++ head/devel/Makefile Thu Aug 13 21:23:21 2015 (r394193) @@ -4272,6 +4272,7 @@ SUBDIR += py-virtualenvwrapper SUBDIR += py-watchdog SUBDIR += py-wcwidth + SUBDIR += py-weblib SUBDIR += py-wheel SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools Added: head/devel/py-weblib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weblib/Makefile Thu Aug 13 21:23:21 2015 (r394193) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= weblib +PORTVERSION= 0.1.14 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Set of tools for web scraping projects + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytils>0:${PORTSDIR}/russian/py-pytils \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +post-extract: + ${RM} -rf ${WRKSRC}/test + +.include Added: head/devel/py-weblib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weblib/distinfo Thu Aug 13 21:23:21 2015 (r394193) @@ -0,0 +1,2 @@ +SHA256 (weblib-0.1.14.tar.gz) = f9602ce66a6c5e010509d515a57b55d8c9d1eda8c4cbf5544a9ae11382618d8a +SIZE (weblib-0.1.14.tar.gz) = 36292 Added: head/devel/py-weblib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-weblib/pkg-descr Thu Aug 13 21:23:21 2015 (r394193) @@ -0,0 +1,14 @@ +Weblib provides tools to solve typical tasks in web scraping: + + * processing HTML + * handling text encodings + * controling repeating and parallel tasks + * parsing RSS/ATOM feeds + * preparing data for HTTP requests + * working with DOM tree + * working with text and numeral data + * list of common user agents + * cross-platform file locking + * operations with files and directories + +WWW: https://pypi.python.org/pypi/weblib From owner-svn-ports-all@freebsd.org Thu Aug 13 21:25:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C7A99B8D09; Thu, 13 Aug 2015 21:25:36 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F127A2F7; Thu, 13 Aug 2015 21:25:35 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DLPZxK054470; Thu, 13 Aug 2015 21:25:35 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DLPYaZ054465; Thu, 13 Aug 2015 21:25:34 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508132125.t7DLPYaZ054465@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 21:25:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394194 - in head/devel: . py-selection py-selection/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 21:25:36 -0000 Author: rm Date: Thu Aug 13 21:25:33 2015 New Revision: 394194 URL: https://svnweb.freebsd.org/changeset/ports/394194 Log: API to extract data from HTML and XML documents. WWW: https://pypi.python.org/pypi/selection Added: head/devel/py-selection/ head/devel/py-selection/Makefile (contents, props changed) head/devel/py-selection/distinfo (contents, props changed) head/devel/py-selection/files/ head/devel/py-selection/files/patch-setup.py (contents, props changed) head/devel/py-selection/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Aug 13 21:23:21 2015 (r394193) +++ head/devel/Makefile Thu Aug 13 21:25:33 2015 (r394194) @@ -4186,6 +4186,7 @@ SUBDIR += py-sanetime SUBDIR += py-scripttest SUBDIR += py-sdl2 + SUBDIR += py-selection SUBDIR += py-semantic_version SUBDIR += py-serpent SUBDIR += py-setproctitle Added: head/devel/py-selection/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-selection/Makefile Thu Aug 13 21:25:33 2015 (r394194) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= selection +PORTVERSION= 0.0.9 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= API to extract content from HTML & XML documents + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \ + ${PYTHON_PKGNAMEPREFIX}weblib>0:${PORTSDIR}/devel/py-weblib + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +post-extract: + ${RM} -rf ${WRKSRC}/test + +.include Added: head/devel/py-selection/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-selection/distinfo Thu Aug 13 21:25:33 2015 (r394194) @@ -0,0 +1,2 @@ +SHA256 (selection-0.0.9.tar.gz) = 2e89d6eea792447a7c23da77b81fd7df84526791f64cbff4a50edf363697759e +SIZE (selection-0.0.9.tar.gz) = 5979 Added: head/devel/py-selection/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-selection/files/patch-setup.py Thu Aug 13 21:25:33 2015 (r394194) @@ -0,0 +1,11 @@ +--- setup.py.orig 2015-04-16 10:03:43 UTC ++++ setup.py +@@ -7,7 +7,7 @@ setup( + author = 'Gregory Petukhov', + author_email = 'lorien@lorien.name', + install_requires = ['lxml', 'weblib', 'six'], +- packages = ['selection', 'selection.backend', 'test'], ++ packages = ['selection', 'selection.backend'], + license = "MIT", + classifiers = ( + 'Programming Language :: Python', Added: head/devel/py-selection/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-selection/pkg-descr Thu Aug 13 21:25:33 2015 (r394194) @@ -0,0 +1,3 @@ +API to extract data from HTML and XML documents. + +WWW: https://pypi.python.org/pypi/selection From owner-svn-ports-all@freebsd.org Thu Aug 13 21:26:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B50579B8D45; Thu, 13 Aug 2015 21:26:27 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99ED840E; Thu, 13 Aug 2015 21:26:27 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DLQRap054629; Thu, 13 Aug 2015 21:26:27 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DLQQLE054624; Thu, 13 Aug 2015 21:26:26 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508132126.t7DLQQLE054624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Thu, 13 Aug 2015 21:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394195 - head/devel/py-grab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 21:26:27 -0000 Author: rm Date: Thu Aug 13 21:26:26 2015 New Revision: 394195 URL: https://svnweb.freebsd.org/changeset/ports/394195 Log: devel/py-grab: update to 0.6.21 Modified: head/devel/py-grab/Makefile head/devel/py-grab/distinfo head/devel/py-grab/pkg-descr Modified: head/devel/py-grab/Makefile ============================================================================== --- head/devel/py-grab/Makefile Thu Aug 13 21:25:33 2015 (r394194) +++ head/devel/py-grab/Makefile Thu Aug 13 21:26:26 2015 (r394195) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grab -PORTVERSION= 0.5.5 +PORTVERSION= 0.6.21 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,11 +11,16 @@ COMMENT= Site scraping framework LICENSE= MIT -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \ - ${PYTHON_PKGNAMEPREFIX}curl>0:${PORTSDIR}/ftp/py-curl + ${PYTHON_PKGNAMEPREFIX}curl>0:${PORTSDIR}/ftp/py-curl \ + ${PYTHON_PKGNAMEPREFIX}weblib>0:${PORTSDIR}/devel/py-weblib \ + ${PYTHON_PKGNAMEPREFIX}selection>0:${PORTSDIR}/devel/py-selection +NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils +post-extract: + ${RM} -rf ${WRKSRC}/test + .include Modified: head/devel/py-grab/distinfo ============================================================================== --- head/devel/py-grab/distinfo Thu Aug 13 21:25:33 2015 (r394194) +++ head/devel/py-grab/distinfo Thu Aug 13 21:26:26 2015 (r394195) @@ -1,2 +1,2 @@ -SHA256 (grab-0.5.5.tar.gz) = e14a5e110d1d1e4b42d9c25a6075f83bcff4daf2ea3acbfa773467e61f6e45f6 -SIZE (grab-0.5.5.tar.gz) = 161432 +SHA256 (grab-0.6.21.tar.gz) = cad55287c0da16b2e303ba27a4d77a2905c1ac3e73badb83d3d143b0fe701e99 +SIZE (grab-0.6.21.tar.gz) = 89728 Modified: head/devel/py-grab/pkg-descr ============================================================================== --- head/devel/py-grab/pkg-descr Thu Aug 13 21:25:33 2015 (r394194) +++ head/devel/py-grab/pkg-descr Thu Aug 13 21:26:26 2015 (r394195) @@ -1,7 +1,18 @@ -Grab is site scraping framework. Grab could be used for: +Grab is a python web scraping framework. Grab provides tons of helpful methods +to scrape web sites and to process the scraped content: - - website data mining - - work with network API - - automation of actions performed on websites + * Automatic cookies (session) support + * HTTP and SOCKS proxy with and without authorization + * Keep-Alive support + * IDN support + * Tools to work with web forms + * Easy multipart file uploading + * Flexible customization of HTTP requests + * Automatic charset detection + * Powerful API of extracting info from HTML documents with XPATH queries + * Asynchronous API to make thousands of simultaneous queries. This part of + library called Spider and it is too big to even list its features in this + README. + * Python 3 ready WWW: http://grablib.org/ From owner-svn-ports-all@freebsd.org Thu Aug 13 21:35:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E8C419B8EC2; Thu, 13 Aug 2015 21:35:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9254A01; Thu, 13 Aug 2015 21:35:43 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DLZhb3058756; Thu, 13 Aug 2015 21:35:43 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DLZhg9058755; Thu, 13 Aug 2015 21:35:43 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508132135.t7DLZhg9058755@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 13 Aug 2015 21:35:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394196 - head/net/libnetdude X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 21:35:44 -0000 Author: antoine Date: Thu Aug 13 21:35:43 2015 New Revision: 394196 URL: https://svnweb.freebsd.org/changeset/ports/394196 Log: - Unbreak installation on freebsd 9 - Drop DOCS option, it doesn't install anything Modified: head/net/libnetdude/Makefile Modified: head/net/libnetdude/Makefile ============================================================================== --- head/net/libnetdude/Makefile Thu Aug 13 21:26:26 2015 (r394195) +++ head/net/libnetdude/Makefile Thu Aug 13 21:35:43 2015 (r394196) @@ -23,9 +23,6 @@ USE_LDCONFIG= yes INSTALL_TARGET= install-strip PLIST_SUB= PORTVERSION=${PORTVERSION} -PORTDOCS= * - -OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e "s|netinet/if_fddi.h|net/fddi.h|g" \ @@ -37,6 +34,6 @@ post-patch: -e '/LIBADD/s,$$(top_builddir)/libltdl/libltdlc.la,@LIBLTDL@,' post-install: - @${FIND} -d ${STAGEDIR}${DOCSDIR} -type d -empty -delete + @${RMDIR} ${STAGEDIR}${DOCSDIR}/images ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-all@freebsd.org Thu Aug 13 23:26:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E87569B819E; Thu, 13 Aug 2015 23:26:46 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D931789; Thu, 13 Aug 2015 23:26:46 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7DNQkAf003704; Thu, 13 Aug 2015 23:26:46 GMT (envelope-from edwin@FreeBSD.org) Received: (from edwin@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7DNQkvJ003702; Thu, 13 Aug 2015 23:26:46 GMT (envelope-from edwin@FreeBSD.org) Message-Id: <201508132326.t7DNQkvJ003702@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: edwin set sender to edwin@FreeBSD.org using -f From: Edwin Groothuis Date: Thu, 13 Aug 2015 23:26:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394197 - head/misc/zoneinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Aug 2015 23:26:47 -0000 Author: edwin Date: Thu Aug 13 23:26:45 2015 New Revision: 394197 URL: https://svnweb.freebsd.org/changeset/ports/394197 Log: Update to tzdata2015f: Changes affecting future time stamps North Korea switches to +0830 on 2015-08-15. (Thanks to Steffen Thorsen.) The abbreviation remains "KST". (Thanks to Robert Elz.) Uruguay no longer observes DST. (Thanks to Steffen Thorsen and Pablo Camargo.) Changes affecting past and future time stamps Moldova starts and ends DST at 00:00 UTC, not at 01:00 UTC. (Thanks to Roman Tudos.) Modified: head/misc/zoneinfo/Makefile head/misc/zoneinfo/distinfo Modified: head/misc/zoneinfo/Makefile ============================================================================== --- head/misc/zoneinfo/Makefile Thu Aug 13 21:35:43 2015 (r394196) +++ head/misc/zoneinfo/Makefile Thu Aug 13 23:26:45 2015 (r394197) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zoneinfo -DISTVERSION= 2015e +DISTVERSION= 2015f CATEGORIES= misc MASTER_SITES= ftp://ftp.iana.org/tz/releases/ \ ftp://munnari.oz.au/pub/ Modified: head/misc/zoneinfo/distinfo ============================================================================== --- head/misc/zoneinfo/distinfo Thu Aug 13 21:35:43 2015 (r394196) +++ head/misc/zoneinfo/distinfo Thu Aug 13 23:26:45 2015 (r394197) @@ -1,2 +1,2 @@ -SHA256 (tzdata2015e.tar.gz) = ffc9b5d38abda8277aa479e3f75aa7668819d0977cd1a0c8ef3b09128334ba6f -SIZE (tzdata2015e.tar.gz) = 296773 +SHA256 (tzdata2015f.tar.gz) = 959f81b541e042ecb13c50097d264ae92ff03a57979c478dbcf24d5da242531d +SIZE (tzdata2015f.tar.gz) = 298815 From owner-svn-ports-all@freebsd.org Fri Aug 14 00:12:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DE2B99E39C; Fri, 14 Aug 2015 00:12:55 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E2D01E02; Fri, 14 Aug 2015 00:12:55 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7E0Ct91024675; Fri, 14 Aug 2015 00:12:55 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7E0Ctdk024672; Fri, 14 Aug 2015 00:12:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508140012.t7E0Ctdk024672@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 00:12:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394198 - head/emulators/ppsspp-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 00:12:55 -0000 Author: jbeich Date: Fri Aug 14 00:12:54 2015 New Revision: 394198 URL: https://svnweb.freebsd.org/changeset/ports/394198 Log: emulators/ppsspp-devel: update to 1.0.1.809 Changes: https://github.com/hrydgard/ppsspp/compare/aae2542...ee2238d Modified: head/emulators/ppsspp-devel/Makefile (contents, props changed) head/emulators/ppsspp-devel/distinfo (contents, props changed) Modified: head/emulators/ppsspp-devel/Makefile ============================================================================== --- head/emulators/ppsspp-devel/Makefile Thu Aug 13 23:26:45 2015 (r394197) +++ head/emulators/ppsspp-devel/Makefile Fri Aug 14 00:12:54 2015 (r394198) @@ -1,7 +1,7 @@ # $FreeBSD$ -DISTVERSION= 1.0.1-791 -DISTVERSIONSUFFIX= -gaae2542 +DISTVERSION= 1.0.1-809 +DISTVERSIONSUFFIX= -gee2238d PORTREVISION= 0 PKGNAMESUFFIX= -devel Modified: head/emulators/ppsspp-devel/distinfo ============================================================================== --- head/emulators/ppsspp-devel/distinfo Thu Aug 13 23:26:45 2015 (r394197) +++ head/emulators/ppsspp-devel/distinfo Fri Aug 14 00:12:54 2015 (r394198) @@ -1,5 +1,5 @@ -SHA256 (hrydgard-ppsspp-v1.0.1-791-gaae2542_GH0.tar.gz) = fd62f384e32aa9403cfee42375da02fc01e78ddeb3c600d4f144929d19c20781 -SIZE (hrydgard-ppsspp-v1.0.1-791-gaae2542_GH0.tar.gz) = 13546479 +SHA256 (hrydgard-ppsspp-v1.0.1-809-gee2238d_GH0.tar.gz) = 719f781b955d2a9bc87e13d1a7f8faaf0f90be47b68b1b0b9c0f681b941e52ce +SIZE (hrydgard-ppsspp-v1.0.1-809-gee2238d_GH0.tar.gz) = 13548941 SHA256 (hrydgard-ppsspp-lang-4e29d4e_GH0.tar.gz) = 30022bfb0b6e809cca41f01dbe418d9751bd571052b8d162e72ab0b5cb911c50 SIZE (hrydgard-ppsspp-lang-4e29d4e_GH0.tar.gz) = 206112 SHA256 (hrydgard-native-477568b_GH0.tar.gz) = bc6b2f2838421c3388e66567135187034c1475fb1f0f99f47bb5e1c50b7afb3b From owner-svn-ports-all@freebsd.org Fri Aug 14 00:13:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EBBA99E3EE; Fri, 14 Aug 2015 00:13:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80D381EE2; Fri, 14 Aug 2015 00:13:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7E0DIcK025031; Fri, 14 Aug 2015 00:13:18 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7E0DEL3025012; Fri, 14 Aug 2015 00:13:14 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508140013.t7E0DEL3025012@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 00:13:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394199 - in head/devel: . android-tools-simpleperf android-tools-simpleperf/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 00:13:18 -0000 Author: jbeich Date: Fri Aug 14 00:13:13 2015 New Revision: 394199 URL: https://svnweb.freebsd.org/changeset/ports/394199 Log: devel/android-tools-simpleperf: add new port simpleperf is a minimal Linux perf implementation for extracting sampling information out of perf.data. Added: head/devel/android-tools-simpleperf/ head/devel/android-tools-simpleperf/Makefile (contents, props changed) head/devel/android-tools-simpleperf/distinfo (contents, props changed) head/devel/android-tools-simpleperf/files/ head/devel/android-tools-simpleperf/files/Makefile (contents, props changed) head/devel/android-tools-simpleperf/files/patch-base_file.cpp (contents, props changed) head/devel/android-tools-simpleperf/files/patch-base_include_base_logging.h (contents, props changed) head/devel/android-tools-simpleperf/files/patch-base_logging.cpp (contents, props changed) head/devel/android-tools-simpleperf/files/patch-libcutils_threads.c (contents, props changed) head/devel/android-tools-simpleperf/files/patch-liblog_logd__write.c (contents, props changed) head/devel/android-tools-simpleperf/files/patch-simpleperf_dso.cpp (contents, props changed) head/devel/android-tools-simpleperf/files/patch-simpleperf_event__attr.cpp (contents, props changed) head/devel/android-tools-simpleperf/files/patch-simpleperf_record.h (contents, props changed) head/devel/android-tools-simpleperf/files/patch-simpleperf_utils.cpp (contents, props changed) head/devel/android-tools-simpleperf/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Aug 14 00:12:54 2015 (r394198) +++ head/devel/Makefile Fri Aug 14 00:13:13 2015 (r394199) @@ -66,6 +66,7 @@ SUBDIR += android-tools-adb-devel SUBDIR += android-tools-fastboot SUBDIR += android-tools-fastboot-devel + SUBDIR += android-tools-simpleperf SUBDIR += anjuta SUBDIR += anjuta-extras SUBDIR += antlr Added: head/devel/android-tools-simpleperf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/Makefile Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,47 @@ +# $FreeBSD$ + +PORTNAME= android-tools-simpleperf +DISTVERSIONPREFIX= android- +DISTVERSION= m-preview-136 +DISTVERSIONSUFFIX= -g89a2254 +CATEGORIES= devel + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Android simpleperf tool + +LICENSE= APACHE20 + +BUILD_DEPENDS= llvm-config${LLVM_VER}:${PORTSDIR}/devel/llvm${LLVM_VER} + +USE_GITHUB= yes +GH_ACCOUNT= android:bionic,core jbeich +GH_PROJECT= platform_bionic:bionic platform_system_core:core \ + platform_system_extras +GH_TAGNAME= android-m-preview-232-gb4f2112:bionic \ + android-m-preview-868-gb81c410:core + +USES= compiler:c++11-lib uidfix +BUILD_WRKSRC= ${WRKSRC}/simpleperf +INSTALL_WRKSRC= ${BUILD_WRKSRC} +MAKEFILE= ${FILESDIR}/Makefile +MAKE_ENV= BINDIR="${PREFIX}/bin" LLVM_CONFIG="llvm-config${LLVM_VER}" +ALL_TARGET= all +LDFLAGS+= -Wl,--as-needed # avoid overlinking (llvm deps) +PLIST_FILES= bin/simpleperf + +LLVM_VER?= 36 # XXX Move to DEFAULT_VERSIONS + +OPTIONS_DEFINE= TEST + +TEST_BUILD_DEPENDS=googletest>=1.6.0:${PORTSDIR}/devel/googletest +TEST_ALL_TARGET=simpleperf_unit_test + +post-extract: +# Adjust paths relative to extras + @(cd ${WRKSRC_core} && ${COPYTREE_SHARE} . ${WRKSRC}) + @${MV} ${WRKSRC_bionic} ${WRKSRC}/bionic + +pre-install-TEST-on: + ${BUILD_WRKSRC}/simpleperf_unit_test + +.include Added: head/devel/android-tools-simpleperf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/distinfo Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,6 @@ +SHA256 (jbeich-platform_system_extras-android-m-preview-136-g89a2254_GH0.tar.gz) = 33813515ba14743085b8e95a4a74025ac4cefd7d308d5870cc8e279ef5380d4a +SIZE (jbeich-platform_system_extras-android-m-preview-136-g89a2254_GH0.tar.gz) = 665360 +SHA256 (android-platform_bionic-android-m-preview-232-gb4f2112_GH0.tar.gz) = 88767af6ed1b4377c03aee44e61c175f69decc9169eea2b39661c940186eec5e +SIZE (android-platform_bionic-android-m-preview-232-gb4f2112_GH0.tar.gz) = 3438328 +SHA256 (android-platform_system_core-android-m-preview-868-gb81c410_GH0.tar.gz) = e013cf5538e25d8123bb7e423ab4269826f74d0af3d44e3e316942c2b1b5a362 +SIZE (android-platform_system_core-android-m-preview-868-gb81c410_GH0.tar.gz) = 1335909 Added: head/devel/android-tools-simpleperf/files/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/Makefile Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,73 @@ +# $FreeBSD$ + +PROG_CXX=simpleperf +NO_MAN= +BINDIR?=/usr/bin + +SRCS+= callchain.cpp +SRCS+= cmd_dumprecord.cpp +SRCS+= cmd_help.cpp +SRCS+= cmd_report.cpp +SRCS+= command.cpp +SRCS+= dso.cpp +SRCS+= environment_fake.cpp +SRCS+= event_attr.cpp +SRCS+= event_type.cpp +SRCS+= main.cpp +SRCS+= perf_regs.cpp +SRCS+= read_elf.cpp +SRCS+= record.cpp +SRCS+= record_file_reader.cpp +SRCS+= sample_tree.cpp +SRCS+= thread_tree.cpp +SRCS+= utils.cpp + +TEST_SRCS+= command_test.cpp +TEST_SRCS+= gtest_main.cpp +TEST_SRCS+= record_test.cpp +TEST_SRCS+= sample_tree_test.cpp + +# required by simpleperf +.PATH: ${.CURDIR}/../base +SRCS+= file.cpp +SRCS+= logging.cpp +SRCS+= stringprintf.cpp +SRCS+= strings.cpp + +# required by base +.PATH: ${.CURDIR}/../liblog +SRCS+= fake_log_device.c +SRCS+= logd_write.c +CFLAGS.logd_write.c+= -DFAKE_LOG_DEVICE=1 + +# required by base +.PATH: ${.CURDIR}/../libcutils +SRCS+= threads.c + +CFLAGS+=-D_WITH_GETLINE +CFLAGS+=-DUSE_BIONIC_UAPI_HEADERS +CFLAGS+=-I${.CURDIR}/darwin_support +CFLAGS+=-I${.CURDIR}/../include +CFLAGS+=-I${.CURDIR}/../base/include +CFLAGS+=-I${.CURDIR}/../bionic/libc/kernel +CFLAGS+=$$(${LLVM_CONFIG} --cppflags) +CFLAGS+=${CFLAGS.${.IMPSRC:T}} + +CXXFLAGS+=-std=gnu++11 +CXXFLAGS+=${CFLAGS:N-std*} + +TEST_CFLAGS+= $$(${GTEST_CONFIG} --cppflags) +.for f in ${TEST_SRCS} +CFLAGS.${f}+= ${TEST_CFLAGS} +.endfor + +LDADD+= $$(${LLVM_CONFIG} --system-libs --libs --ldflags) +TEST_LDADD+= $$(${GTEST_CONFIG} --libs --ldflags) + +LLVM_CONFIG?= llvm-config +GTEST_CONFIG?= gtest-config + +simpleperf_unit_test: ${SRCS:R:S/$/.o/:Nmain.o} ${TEST_SRCS:R:S/$/.o/} + ${CXX} ${CXXFLAGS} ${LDFLAGS} -o $@ $> ${LDADD} ${TEST_LDADD} + +.include Added: head/devel/android-tools-simpleperf/files/patch-base_file.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-base_file.cpp Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,10 @@ +--- base/file.cpp.orig 2015-08-12 23:28:08 UTC ++++ base/file.cpp +@@ -21,6 +21,7 @@ + #include + #include + ++#include // strerror + #include + + #include "base/macros.h" // For TEMP_FAILURE_RETRY on Darwin. Added: head/devel/android-tools-simpleperf/files/patch-base_include_base_logging.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-base_include_base_logging.h Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,10 @@ +--- base/include/base/logging.h.orig 2015-08-12 23:28:08 UTC ++++ base/include/base/logging.h +@@ -25,6 +25,7 @@ + #endif + #endif + ++#include // errno + #include + #include + #include Added: head/devel/android-tools-simpleperf/files/patch-base_logging.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-base_logging.cpp Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,18 @@ +--- base/logging.cpp.orig 2015-08-12 23:28:08 UTC ++++ base/logging.cpp +@@ -23,12 +23,14 @@ + #include + + // For getprogname(3) or program_invocation_short_name. +-#if defined(__ANDROID__) || defined(__APPLE__) ++#if !defined(_WIN32) && !defined(__GLIBC__) + #include + #elif defined(__GLIBC__) + #include + #endif + ++#include // strlen ++#include // fprintf + #include + #include + #include Added: head/devel/android-tools-simpleperf/files/patch-libcutils_threads.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-libcutils_threads.c Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,38 @@ +--- libcutils/threads.c.orig 2015-08-12 23:28:08 UTC ++++ libcutils/threads.c +@@ -29,6 +29,14 @@ + #include + #elif defined(_WIN32) + #include ++#elif defined(__DragonFly__) ++#include ++#elif defined(__FreeBSD__) ++#include ++#include ++#include ++#elif defined(__NetBSD__) ++#include + #endif + + // No definition needed for Android because we'll just pick up bionic's copy. +@@ -40,6 +48,20 @@ pid_t gettid() { + return syscall(__NR_gettid); + #elif defined(_WIN32) + return GetCurrentThreadId(); ++#elif defined(__DragonFly__) ++ return lwp_gettid(); ++#elif defined(__NetBSD__) ++ return _lwp_self(); ++#elif defined(__FreeBSD__) ++# if __FreeBSD_version > 900030 ++ return pthread_getthreadid_np(); ++# else ++ long lwpid; ++ thr_self(&lwpid); ++ return lwpid; ++# endif ++#else ++ return (intptr_t) pthread_self(); + #endif + } + #endif // __ANDROID__ Added: head/devel/android-tools-simpleperf/files/patch-liblog_logd__write.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-liblog_logd__write.c Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,12 @@ +--- liblog/logd_write.c.orig 2015-05-27 20:24:08 UTC ++++ liblog/logd_write.c +@@ -22,7 +22,9 @@ + #include + #endif + #include ++#if (FAKE_LOG_DEVICE == 0) + #include ++#endif + #include + #include + #include Added: head/devel/android-tools-simpleperf/files/patch-simpleperf_dso.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-simpleperf_dso.cpp Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,10 @@ +--- simpleperf/dso.cpp.orig 2015-08-12 01:49:40 UTC ++++ simpleperf/dso.cpp +@@ -16,6 +16,7 @@ + + #include "dso.h" + ++#include // ULLONG_MAX + #include + #include + #include "environment.h" Added: head/devel/android-tools-simpleperf/files/patch-simpleperf_event__attr.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-simpleperf_event__attr.cpp Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,10 @@ +--- simpleperf/event_attr.cpp.orig 2015-08-12 01:49:40 UTC ++++ simpleperf/event_attr.cpp +@@ -18,6 +18,7 @@ + + #include + #include ++#include // memset + #include + #include + Added: head/devel/android-tools-simpleperf/files/patch-simpleperf_record.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-simpleperf_record.h Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,10 @@ +--- simpleperf/record.h.orig 2015-08-12 01:49:40 UTC ++++ simpleperf/record.h +@@ -19,6 +19,7 @@ + + #include + ++#include // unique_ptr + #include + #include + Added: head/devel/android-tools-simpleperf/files/patch-simpleperf_utils.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/files/patch-simpleperf_utils.cpp Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,10 @@ +--- simpleperf/utils.cpp.orig 2015-08-12 01:49:40 UTC ++++ simpleperf/utils.cpp +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include // strcmp + #include + #include + Added: head/devel/android-tools-simpleperf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/android-tools-simpleperf/pkg-descr Fri Aug 14 00:13:13 2015 (r394199) @@ -0,0 +1,2 @@ +simpleperf is a minimal Linux perf implementation for extracting +sampling information out of perf.data. From owner-svn-ports-all@freebsd.org Fri Aug 14 00:30:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09BE999E6D8; Fri, 14 Aug 2015 00:30:40 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D157C1702; Fri, 14 Aug 2015 00:30:39 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7E0Udi3032710; Fri, 14 Aug 2015 00:30:39 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7E0UdOu032708; Fri, 14 Aug 2015 00:30:39 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201508140030.t7E0UdOu032708@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 14 Aug 2015 00:30:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394200 - in branches/2015Q3/devel/py-foolscap: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 00:30:40 -0000 Author: delphij Date: Fri Aug 14 00:30:38 2015 New Revision: 394200 URL: https://svnweb.freebsd.org/changeset/ports/394200 Log: MFH: r394005 Update to 0.8.0 PR: 202261 Submitted by: Thomas Hurst Approved by: ports-secteam Deleted: branches/2015Q3/devel/py-foolscap/files/ Modified: branches/2015Q3/devel/py-foolscap/Makefile branches/2015Q3/devel/py-foolscap/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/py-foolscap/Makefile ============================================================================== --- branches/2015Q3/devel/py-foolscap/Makefile Fri Aug 14 00:13:13 2015 (r394199) +++ branches/2015Q3/devel/py-foolscap/Makefile Fri Aug 14 00:30:38 2015 (r394200) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= foolscap -PORTVERSION= 0.6.4 -PORTREVISION= 1 +PORTVERSION= 0.8.0 CATEGORIES= devel python MASTER_SITES= http://foolscap.lothar.com/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,6 +17,9 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}op RUN_DEPENDS:= ${BUILD_DEPENDS} USES= python twisted -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils + +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Modified: branches/2015Q3/devel/py-foolscap/distinfo ============================================================================== --- branches/2015Q3/devel/py-foolscap/distinfo Fri Aug 14 00:13:13 2015 (r394199) +++ branches/2015Q3/devel/py-foolscap/distinfo Fri Aug 14 00:30:38 2015 (r394200) @@ -1,2 +1,2 @@ -SHA256 (foolscap-0.6.4.tar.gz) = 74b283dd68a3c9d68ebf4e9b4ebf5cfb37480915b6a808ac930fe858a66f8d99 -SIZE (foolscap-0.6.4.tar.gz) = 479664 +SHA256 (foolscap-0.8.0.tar.gz) = 6ab49e8c52ee49597148802a877593ddb6ca9a63cb32eaae8bff2900667be1c9 +SIZE (foolscap-0.8.0.tar.gz) = 475062 From owner-svn-ports-all@freebsd.org Fri Aug 14 07:28:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8AFA99B84C8; Fri, 14 Aug 2015 07:28:41 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: from mail.droso.net (koala.droso.dk [IPv6:2a01:4f8:a0:7163::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5146F1D4F; Fri, 14 Aug 2015 07:28:40 +0000 (UTC) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id F00401654A; Fri, 14 Aug 2015 09:28:27 +0200 (CEST) Date: Fri, 14 Aug 2015 09:28:27 +0200 From: Erwin Lansing To: "Lev A. Serebryakov" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r393662 - in head/devel/subversion: . files Message-ID: <20150814072827.GA63119@droso.dk> References: <201508061547.t76Fll2m098994@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <201508061547.t76Fll2m098994@repo.freebsd.org> X-Operating-System: FreeBSD/amd64 9.3-RELEASE-p5 User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 07:28:41 -0000 Hi Lev, On Thu, Aug 06, 2015 at 03:47:47PM +0000, Lev A. Serebryakov wrote: > Author: lev > Date: Thu Aug 6 15:47:47 2015 > New Revision: 393662 > URL: https://svnweb.freebsd.org/changeset/ports/393662 > > Log: > (1) Update to latest subversion 1.8.14. > (2) Make FreeBSD template configurable. > > PR: [2] 201989 > Submitted by: [2] Edward Tomasz Napierala > Since this fixed two security vulnerabilities, should this be MFHed? http://www.vuxml.org/freebsd/57bb5e3d-3c4f-11e5-a4d4-001e8c75030d.html Erwin From owner-svn-ports-all@freebsd.org Fri Aug 14 10:38:10 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 388B99B8172; Fri, 14 Aug 2015 10:38:10 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1F1781C55; Fri, 14 Aug 2015 10:38:10 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EAc9tO080308; Fri, 14 Aug 2015 10:38:09 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EAc9PV080306; Fri, 14 Aug 2015 10:38:09 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201508141038.t7EAc9PV080306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Fri, 14 Aug 2015 10:38:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394201 - head/security/keychain X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 10:38:10 -0000 Author: garga Date: Fri Aug 14 10:38:08 2015 New Revision: 394201 URL: https://svnweb.freebsd.org/changeset/ports/394201 Log: Update to 2.8.1 PR: 202073 Submitted by: David Harrigan Modified: head/security/keychain/Makefile head/security/keychain/distinfo Modified: head/security/keychain/Makefile ============================================================================== --- head/security/keychain/Makefile Fri Aug 14 00:30:38 2015 (r394200) +++ head/security/keychain/Makefile Fri Aug 14 10:38:08 2015 (r394201) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= keychain -PORTVERSION= 2.8.0 -PORTREVISION= 3 +PORTVERSION= 2.8.1 CATEGORIES= security MASTER_SITES= http://www.funtoo.org/archive/keychain/ \ GENTOO Modified: head/security/keychain/distinfo ============================================================================== --- head/security/keychain/distinfo Fri Aug 14 00:30:38 2015 (r394200) +++ head/security/keychain/distinfo Fri Aug 14 10:38:08 2015 (r394201) @@ -1,2 +1,2 @@ -SHA256 (keychain-2.8.0.tar.bz2) = 411bfe6a3ac9daca1c35f9a56828f03cc8474e8a668e122773397deb8f7a0799 -SIZE (keychain-2.8.0.tar.bz2) = 33727 +SHA256 (keychain-2.8.1.tar.bz2) = 1568c0946db3638fe081d5a7ba3df022b533dbeb8aa67cd07dc8276e87598809 +SIZE (keychain-2.8.1.tar.bz2) = 33734 From owner-svn-ports-all@freebsd.org Fri Aug 14 10:42:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 705BB9B836E; Fri, 14 Aug 2015 10:42:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D2EC1F8C; Fri, 14 Aug 2015 10:42:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EAgtah084277; Fri, 14 Aug 2015 10:42:55 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EAgsu9084275; Fri, 14 Aug 2015 10:42:54 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201508141042.t7EAgsu9084275@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Fri, 14 Aug 2015 10:42:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394202 - in head/ports-mgmt/pkg_jail: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 10:42:55 -0000 Author: dinoex Date: Fri Aug 14 10:42:54 2015 New Revision: 394202 URL: https://svnweb.freebsd.org/changeset/ports/394202 Log: - update to 1.86 Modified: head/ports-mgmt/pkg_jail/Makefile head/ports-mgmt/pkg_jail/files/pkg_update Modified: head/ports-mgmt/pkg_jail/Makefile ============================================================================== --- head/ports-mgmt/pkg_jail/Makefile Fri Aug 14 10:38:08 2015 (r394201) +++ head/ports-mgmt/pkg_jail/Makefile Fri Aug 14 10:42:54 2015 (r394202) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pkg_jail -PORTVERSION= 1.85 +PORTVERSION= 1.86 CATEGORIES= ports-mgmt MASTER_SITES= # empty DISTFILES= # empty Modified: head/ports-mgmt/pkg_jail/files/pkg_update ============================================================================== --- head/ports-mgmt/pkg_jail/files/pkg_update Fri Aug 14 10:38:08 2015 (r394201) +++ head/ports-mgmt/pkg_jail/files/pkg_update Fri Aug 14 10:42:54 2015 (r394202) @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: pkg_update,v 1.85 2015/02/28 06:43:09 cvs Exp $ +# $Id: pkg_update,v 1.86 2015/08/14 10:41:23 cvs Exp $ # $FreeBSD$ # # Copyright (c) 2001-2006 @@ -159,13 +159,13 @@ run_pkg_add() { read_env_local if test "${pkgng}" = "" then - ${local_env} pkg_add "${pkgfile}" + env ${pkg_env} ${local_env} pkg_add "${pkgfile}" if test -e ${pkg_dbdir}/${pkgname}/+CONTENTS then return 0 fi else - ${local_env} pkg add "${pkgfile}" + env ${pkg_env} ${local_env} pkg add "${pkgfile}" installed=`pkg query -e "%o == ${dir}" '%o'` if test "${installed}" = "${dir}" then @@ -331,7 +331,7 @@ run_pkg_info_dependecies() { then pkg_info -q -r "${1}" | sed 's|^@pkgdep ||' else - ${pkg} info -q -d -F "${1}" + ${pkg} info -q --dependencies -F "${1}" fi } @@ -1125,7 +1125,7 @@ clean_package_all() { while read dep do pmade="${dep}${ext}" - if test -f "${pmade}" + if test -f "${pkgall}/${pmade}" then # # find matching port directory (origin) @@ -1160,12 +1160,12 @@ clean_package_all() { move_away ${i} break else - noinstall=`cd "${depdir}" && make -V NO_INSTALL` - case "${noinstall}" in - yes|YES) - continue - ;; - esac +# noinstall=`cd "${depdir}" && make -V NO_INSTALL` +# case "${noinstall}" in +# yes|YES) +# continue +# ;; +# esac echo "${i}: dependency ${pmade} missing!" move_away ${i} break @@ -2064,15 +2064,16 @@ update_pkg() { if test -f "${pkg}" then ${pkg} delete -y -a -f + env "PKG_DBDIR=/var/db/pkgng" ${pkg} delete -y -a -f fi /etc/rc.d/ldconfig start - cd "${portsdir}/ports-mgmt/pkg" && make clean deinstall PREFIX=/usr/pkgng PKGNAMESUFFIX=-pkgng package install + ( cd "${portsdir}/ports-mgmt/pkg" && env "PKG_DBDIR=/var/db/pkgng" make clean deinstall PREFIX=/usr/pkgng PKGNAMESUFFIX=-pkgng package install ) if test ! -L /usr/sbin/pkg then mv -f /usr/sbin/pkg /usr/sbin/pkg.orig ln -s "${pkg}" /usr/sbin/pkg fi - cd "${portsdir}/ports-mgmt/pkg" && make clean package install + ( cd "${portsdir}/ports-mgmt/pkg" && make clean package install ) ${pkg} delete -y -f pkg } # @@ -2081,7 +2082,7 @@ update_pkg() { check_update_pkg() { if test -f "${pkg}" then - old=`${pkg} query -e '%p == /usr/pkgng' %n-%v` + old=`env "PKG_DBDIR=/var/db/pkgng" ${pkg} query -e '%p == /usr/pkgng' %n-%v` pkgname=`cd "${portsdir}/ports-mgmt/pkg" && make PKGNAMESUFFIX=-pkgng -V PKGNAME` if test "${old}" = "${pkgname}" then @@ -2177,6 +2178,14 @@ quiet_mkdir "${pkginfo_cache}" # target="${1}" case "${target}" in +repo) + if test "${pkgng}" != "" + then + mv "${packages}/Old" "${packages}-Old" + ${pkg} repo "${packages}" + mv "${packages}-Old" "${packages}/Old" + fi + ;; make-packages) defaultdata="${localdir}/data/make-packages.${hostname}" if test ! -f "${defaultdata}" @@ -2204,12 +2213,7 @@ make-packages) make_packages_in_dir "${i}" fi done - if test "${pkgng}" != "" - then - mv "${packages}/Old" "${packages}-Old" - ${pkg} repo "${packages}" - mv "${packages}-Old" "${packages}/Old" - fi + next_target repo ;; add-packages) shift @@ -2342,6 +2346,7 @@ clean-packages) clean_package_all clean_package_links ) + next_target repo next_target "${@}" ;; clean-openssl-packages) From owner-svn-ports-all@freebsd.org Fri Aug 14 10:52:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B521C9B853C; Fri, 14 Aug 2015 10:52:13 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5C131338; Fri, 14 Aug 2015 10:52:13 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EAqDvm088368; Fri, 14 Aug 2015 10:52:13 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EAqDlD088366; Fri, 14 Aug 2015 10:52:13 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201508141052.t7EAqDlD088366@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Fri, 14 Aug 2015 10:52:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394203 - head/devel/sbt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 10:52:13 -0000 Author: ale Date: Fri Aug 14 10:52:12 2015 New Revision: 394203 URL: https://svnweb.freebsd.org/changeset/ports/394203 Log: Update to 0.13.9 release. Modified: head/devel/sbt/Makefile head/devel/sbt/distinfo Modified: head/devel/sbt/Makefile ============================================================================== --- head/devel/sbt/Makefile Fri Aug 14 10:42:54 2015 (r394202) +++ head/devel/sbt/Makefile Fri Aug 14 10:52:12 2015 (r394203) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sbt -PORTVERSION= 0.13.8 +PORTVERSION= 0.13.9 CATEGORIES= devel java MASTER_SITES= http://dl.bintray.com/sbt/native-packages/sbt/${PORTVERSION}/ Modified: head/devel/sbt/distinfo ============================================================================== --- head/devel/sbt/distinfo Fri Aug 14 10:42:54 2015 (r394202) +++ head/devel/sbt/distinfo Fri Aug 14 10:52:12 2015 (r394203) @@ -1,2 +1,2 @@ -SHA256 (sbt-0.13.8.tgz) = f481c5db5b9e5ef35d87be9cd30a917e363812d67f218b25ae0c9e66078417dd -SIZE (sbt-0.13.8.tgz) = 1059183 +SHA256 (sbt-0.13.9.tgz) = 148f2801f2993773de6f8859fe0e6520fcabe649d66bb316e13aff8b2fd7f504 +SIZE (sbt-0.13.9.tgz) = 1049367 From owner-svn-ports-all@freebsd.org Fri Aug 14 12:35:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F65A9B8154; Fri, 14 Aug 2015 12:35:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 761D81831; Fri, 14 Aug 2015 12:35:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ECZSGk029371; Fri, 14 Aug 2015 12:35:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ECZRUO029367; Fri, 14 Aug 2015 12:35:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141235.t7ECZRUO029367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 12:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394204 - in head/security: ca_root_nss nss X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 12:35:28 -0000 Author: jbeich Date: Fri Aug 14 12:35:26 2015 New Revision: 394204 URL: https://svnweb.freebsd.org/changeset/ports/394204 Log: security/{,ca_root_}nss: update to 3.19.3 Changes: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.19.3_release_notes MFH: 2015Q3 Modified: head/security/ca_root_nss/Makefile head/security/ca_root_nss/distinfo head/security/nss/Makefile head/security/nss/distinfo Modified: head/security/ca_root_nss/Makefile ============================================================================== --- head/security/ca_root_nss/Makefile Fri Aug 14 10:52:12 2015 (r394203) +++ head/security/ca_root_nss/Makefile Fri Aug 14 12:35:26 2015 (r394204) @@ -32,8 +32,8 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.19.2 -#NSS_SUFFIX= .with.ckbi.1.98 +VERSION_NSS= 3.19.3 +#NSS_SUFFIX= -with-ckbi-1.98 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: head/security/ca_root_nss/distinfo ============================================================================== --- head/security/ca_root_nss/distinfo Fri Aug 14 10:52:12 2015 (r394203) +++ head/security/ca_root_nss/distinfo Fri Aug 14 12:35:26 2015 (r394204) @@ -1,2 +1,2 @@ -SHA256 (nss-3.19.2.tar.gz) = 1306663e8f61d8449ad8cbcffab743a604dcd9f6f34232c210847c51dce2c9ae -SIZE (nss-3.19.2.tar.gz) = 6953657 +SHA256 (nss-3.19.3.tar.gz) = c56bdad20736a8227afb3c97b25d6d2eb3982e979ddc9be1d66cb7199ae8ca8f +SIZE (nss-3.19.3.tar.gz) = 6949648 Modified: head/security/nss/Makefile ============================================================================== --- head/security/nss/Makefile Fri Aug 14 10:52:12 2015 (r394203) +++ head/security/nss/Makefile Fri Aug 14 12:35:26 2015 (r394204) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.19.2 +PORTVERSION= 3.19.3 #DISTVERSIONSUFFIX= .with.ckbi.1.93 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src Modified: head/security/nss/distinfo ============================================================================== --- head/security/nss/distinfo Fri Aug 14 10:52:12 2015 (r394203) +++ head/security/nss/distinfo Fri Aug 14 12:35:26 2015 (r394204) @@ -1,2 +1,2 @@ -SHA256 (nss-3.19.2.tar.gz) = 1306663e8f61d8449ad8cbcffab743a604dcd9f6f34232c210847c51dce2c9ae -SIZE (nss-3.19.2.tar.gz) = 6953657 +SHA256 (nss-3.19.3.tar.gz) = c56bdad20736a8227afb3c97b25d6d2eb3982e979ddc9be1d66cb7199ae8ca8f +SIZE (nss-3.19.3.tar.gz) = 6949648 From owner-svn-ports-all@freebsd.org Fri Aug 14 12:43:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6057E9B8318; Fri, 14 Aug 2015 12:43:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4EDBF1C4E; Fri, 14 Aug 2015 12:43:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EChRcM033416; Fri, 14 Aug 2015 12:43:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EChRFt033415; Fri, 14 Aug 2015 12:43:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141243.t7EChRFt033415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 12:43:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394205 - head/security/nss X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 12:43:27 -0000 Author: jbeich Date: Fri Aug 14 12:43:26 2015 New Revision: 394205 URL: https://svnweb.freebsd.org/changeset/ports/394205 Log: security/nss: update legacy ckbi suffix to the one used in 3.19.1 This is only for convenience, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201831 MFH: 2015Q3 X-MFH-With: r394204 Modified: head/security/nss/Makefile Modified: head/security/nss/Makefile ============================================================================== --- head/security/nss/Makefile Fri Aug 14 12:35:26 2015 (r394204) +++ head/security/nss/Makefile Fri Aug 14 12:43:26 2015 (r394205) @@ -3,7 +3,7 @@ PORTNAME= nss PORTVERSION= 3.19.3 -#DISTVERSIONSUFFIX= .with.ckbi.1.93 +#DISTVERSIONSUFFIX= -with-ckbi-1.98 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src From owner-svn-ports-all@freebsd.org Fri Aug 14 13:17:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5318C9B89B0; Fri, 14 Aug 2015 13:17:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 405131E58; Fri, 14 Aug 2015 13:17:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDHqB7045866; Fri, 14 Aug 2015 13:17:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDHq0K045865; Fri, 14 Aug 2015 13:17:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141317.t7EDHq0K045865@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:17:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394206 - head/textproc/rubygem-rdtool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:17:52 -0000 Author: amdmi3 Date: Fri Aug 14 13:17:51 2015 New Revision: 394206 URL: https://svnweb.freebsd.org/changeset/ports/394206 Log: - Fix shebangs Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/textproc/rubygem-rdtool/Makefile Modified: head/textproc/rubygem-rdtool/Makefile ============================================================================== --- head/textproc/rubygem-rdtool/Makefile Fri Aug 14 12:43:26 2015 (r394205) +++ head/textproc/rubygem-rdtool/Makefile Fri Aug 14 13:17:51 2015 (r394206) @@ -2,7 +2,7 @@ PORTNAME= rdtool PORTVERSION= 0.6.38 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc ruby MASTER_SITES= RG @@ -14,6 +14,8 @@ LICENSE_COMB= dual NO_ARCH= yes +USES= shebangfix +SHEBANG_FILES= bin/rd2 bin/rdswap.rb USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Fri Aug 14 13:21:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FCF49B8A25; Fri, 14 Aug 2015 13:21:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70C8211E2; Fri, 14 Aug 2015 13:21:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDLI5C047165; Fri, 14 Aug 2015 13:21:18 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDLITe047164; Fri, 14 Aug 2015 13:21:18 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141321.t7EDLITe047164@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:21:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394207 - branches/2015Q3/textproc/rubygem-rdtool X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:21:18 -0000 Author: amdmi3 Date: Fri Aug 14 13:21:17 2015 New Revision: 394207 URL: https://svnweb.freebsd.org/changeset/ports/394207 Log: MFH: r394206 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/textproc/rubygem-rdtool/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/textproc/rubygem-rdtool/Makefile ============================================================================== --- branches/2015Q3/textproc/rubygem-rdtool/Makefile Fri Aug 14 13:17:51 2015 (r394206) +++ branches/2015Q3/textproc/rubygem-rdtool/Makefile Fri Aug 14 13:21:17 2015 (r394207) @@ -2,7 +2,7 @@ PORTNAME= rdtool PORTVERSION= 0.6.38 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc ruby MASTER_SITES= RG @@ -12,6 +12,8 @@ COMMENT= RD to HTML/man/etc. converter ( LICENSE= GPLv2 GPLv3 RUBY LICENSE_COMB= dual +USES= shebangfix +SHEBANG_FILES= bin/rd2 bin/rdswap.rb USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes From owner-svn-ports-all@freebsd.org Fri Aug 14 13:21:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EBCF9B8B87; Fri, 14 Aug 2015 13:21:52 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F3F6E1328; Fri, 14 Aug 2015 13:21:51 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDLpJE049594; Fri, 14 Aug 2015 13:21:51 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDLpc8049425; Fri, 14 Aug 2015 13:21:51 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141321.t7EDLpc8049425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:21:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394208 - head/deskutils/gnote X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:21:52 -0000 Author: amdmi3 Date: Fri Aug 14 13:21:50 2015 New Revision: 394208 URL: https://svnweb.freebsd.org/changeset/ports/394208 Log: - Add missing file to plist Approved by: portmgr blanket Modified: head/deskutils/gnote/Makefile head/deskutils/gnote/pkg-plist Modified: head/deskutils/gnote/Makefile ============================================================================== --- head/deskutils/gnote/Makefile Fri Aug 14 13:21:17 2015 (r394207) +++ head/deskutils/gnote/Makefile Fri Aug 14 13:21:50 2015 (r394208) @@ -3,6 +3,7 @@ PORTNAME= gnote PORTVERSION= 3.16.2 +PORTREVISION= 1 CATEGORIES= deskutils gnome MASTER_SITES= GNOME Modified: head/deskutils/gnote/pkg-plist ============================================================================== --- head/deskutils/gnote/pkg-plist Fri Aug 14 13:21:17 2015 (r394207) +++ head/deskutils/gnote/pkg-plist Fri Aug 14 13:21:50 2015 (r394208) @@ -741,6 +741,7 @@ share/locale/lv/LC_MESSAGES/gnote.mo share/locale/ml/LC_MESSAGES/gnote.mo share/locale/mr/LC_MESSAGES/gnote.mo share/locale/nb/LC_MESSAGES/gnote.mo +share/locale/oc/LC_MESSAGES/gnote.mo share/locale/or/LC_MESSAGES/gnote.mo share/locale/pa/LC_MESSAGES/gnote.mo share/locale/pl/LC_MESSAGES/gnote.mo From owner-svn-ports-all@freebsd.org Fri Aug 14 13:23:59 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 448E29B8C14; Fri, 14 Aug 2015 13:23:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35C03163F; Fri, 14 Aug 2015 13:23:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDNxCY050044; Fri, 14 Aug 2015 13:23:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDNxTs050043; Fri, 14 Aug 2015 13:23:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141323.t7EDNxTs050043@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:23:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394209 - head/editors/fpc-ide X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:23:59 -0000 Author: amdmi3 Date: Fri Aug 14 13:23:58 2015 New Revision: 394209 URL: https://svnweb.freebsd.org/changeset/ports/394209 Log: - Fix build by adding missing dependency Approved by: portmgr blanket Modified: head/editors/fpc-ide/Makefile Modified: head/editors/fpc-ide/Makefile ============================================================================== --- head/editors/fpc-ide/Makefile Fri Aug 14 13:21:50 2015 (r394208) +++ head/editors/fpc-ide/Makefile Fri Aug 14 13:23:58 2015 (r394209) @@ -8,8 +8,8 @@ PKGNAMESUFFIX= -ide MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal integrated IDE/compiler -USE_FPC= chm fcl-async fcl-base fv gdbint graph ibase hash mysql odbc \ - oracle pasjpeg paszlib pthreads postgres regexpr sqlite +USE_FPC= chm fcl-async fcl-base fcl-xml fv gdbint graph ibase hash mysql \ + odbc oracle pasjpeg paszlib pthreads postgres regexpr sqlite FPCDIR= # none UNITPREFIX= # none From owner-svn-ports-all@freebsd.org Fri Aug 14 13:28:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DFDFC9B8CF7; Fri, 14 Aug 2015 13:28:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D10381861; Fri, 14 Aug 2015 13:28:35 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDSZBF050474; Fri, 14 Aug 2015 13:28:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDSZ3G050473; Fri, 14 Aug 2015 13:28:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141328.t7EDSZ3G050473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:28:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394210 - head/devel/rubygem-sysinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:28:36 -0000 Author: amdmi3 Date: Fri Aug 14 13:28:34 2015 New Revision: 394210 URL: https://svnweb.freebsd.org/changeset/ports/394210 Log: - Fix shebangs Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/devel/rubygem-sysinfo/Makefile Modified: head/devel/rubygem-sysinfo/Makefile ============================================================================== --- head/devel/rubygem-sysinfo/Makefile Fri Aug 14 13:23:58 2015 (r394209) +++ head/devel/rubygem-sysinfo/Makefile Fri Aug 14 13:28:34 2015 (r394210) @@ -3,6 +3,7 @@ PORTNAME= sysinfo PORTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -18,6 +19,8 @@ NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +USES= shebangfix +SHEBANG_FILES= bin/sysinfo PLIST_FILES= bin/sysinfo From owner-svn-ports-all@freebsd.org Fri Aug 14 13:32:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D00F9B8E39; Fri, 14 Aug 2015 13:32:49 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EF0211C02; Fri, 14 Aug 2015 13:32:48 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDWm4O054411; Fri, 14 Aug 2015 13:32:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDWmGQ054410; Fri, 14 Aug 2015 13:32:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141332.t7EDWmGQ054410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:32:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394211 - branches/2015Q3/devel/rubygem-sysinfo X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:32:49 -0000 Author: amdmi3 Date: Fri Aug 14 13:32:48 2015 New Revision: 394211 URL: https://svnweb.freebsd.org/changeset/ports/394211 Log: MFH: r394210 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/devel/rubygem-sysinfo/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/rubygem-sysinfo/Makefile ============================================================================== --- branches/2015Q3/devel/rubygem-sysinfo/Makefile Fri Aug 14 13:28:34 2015 (r394210) +++ branches/2015Q3/devel/rubygem-sysinfo/Makefile Fri Aug 14 13:32:48 2015 (r394211) @@ -3,6 +3,7 @@ PORTNAME= sysinfo PORTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -17,6 +18,8 @@ RUN_DEPENDS= rubygem-drydock>=0:${PORTSD USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +USES= shebangfix +SHEBANG_FILES= bin/sysinfo PLIST_FILES= bin/sysinfo From owner-svn-ports-all@freebsd.org Fri Aug 14 13:37:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E8249B8F47; Fri, 14 Aug 2015 13:37:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F8621E7C; Fri, 14 Aug 2015 13:37:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDb3Sm054714; Fri, 14 Aug 2015 13:37:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDb3gU054713; Fri, 14 Aug 2015 13:37:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141337.t7EDb3gU054713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:37:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394212 - head/science/chemical-mime-data X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:37:03 -0000 Author: amdmi3 Date: Fri Aug 14 13:37:02 2015 New Revision: 394212 URL: https://svnweb.freebsd.org/changeset/ports/394212 Log: - Fix leftover files generated by shared-mime-info Approved by: kwm Modified: head/science/chemical-mime-data/pkg-plist Modified: head/science/chemical-mime-data/pkg-plist ============================================================================== --- head/science/chemical-mime-data/pkg-plist Fri Aug 14 13:32:48 2015 (r394211) +++ head/science/chemical-mime-data/pkg-plist Fri Aug 14 13:37:02 2015 (r394212) @@ -61,3 +61,4 @@ share/mimelnk/chemical/x-ncbi-asn1.deskt share/mimelnk/chemical/x-shelx.desktop share/mimelnk/chemical/x-vmd.desktop share/mimelnk/chemical/x-xyz.desktop +@unexec rm -rf %D/share/mime/chemical From owner-svn-ports-all@freebsd.org Fri Aug 14 13:45:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE6469B8261; Fri, 14 Aug 2015 13:45:49 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B96E1807; Fri, 14 Aug 2015 13:45:49 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDjnQc059007; Fri, 14 Aug 2015 13:45:49 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDjl9w059001; Fri, 14 Aug 2015 13:45:48 GMT (envelope-from decke@FreeBSD.org) Message-Id: <201508141345.t7EDjl9w059001@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Fri, 14 Aug 2015 13:45:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394213 - in head/net: . srelay srelay/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:45:49 -0000 Author: decke Date: Fri Aug 14 13:45:47 2015 New Revision: 394213 URL: https://svnweb.freebsd.org/changeset/ports/394213 Log: The SOCKS proxy and relay. * Srelay is a socks4/5 protocol proxy server * Supports socks connect/bind request in the protocol v4, v4a, and v5. * Supports socks server chaining with both v4 and v5 servers. * Supports Username/Password authentication in v5 (not recommended). * Testing on FreeBSD 8.1R, Solaris 8, 10, Linux-i386, MacOS 10.5. * Supports IPv6 as well as IPv4. * Srelay is Free. WWW: https://github.com/gco/srelay Added: head/net/srelay/ head/net/srelay/Makefile (contents, props changed) head/net/srelay/distinfo (contents, props changed) head/net/srelay/files/ head/net/srelay/files/srelay.in (contents, props changed) head/net/srelay/pkg-descr (contents, props changed) head/net/srelay/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Aug 14 13:37:02 2015 (r394212) +++ head/net/Makefile Fri Aug 14 13:45:47 2015 (r394213) @@ -1178,6 +1178,7 @@ SUBDIR += spread4 SUBDIR += sprinkle SUBDIR += sqtop + SUBDIR += srelay SUBDIR += ss5 SUBDIR += ssldump SUBDIR += sslh Added: head/net/srelay/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/srelay/Makefile Fri Aug 14 13:45:47 2015 (r394213) @@ -0,0 +1,26 @@ +# Created by: Bernhard Froehlich +# $FreeBSD$ + +PORTNAME= srelay +PORTVERSION= 0.4.8b6 +CATEGORIES= net + +MAINTAINER= decke@FreeBSD.org +COMMENT= Srelay is a SOCKS4/5 proxy and Relay + +LICENSE= BSD3CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= gco +GH_TAGNAME= 9461835 + +HAS_CONFIGURE= yes +USE_RC_SUBR= srelay + +do-install: + ${INSTALL_DATA} ${WRKSRC}/srelay.conf ${STAGEDIR}${PREFIX}/etc/srelay.conf.sample + ${INSTALL_DATA} ${WRKSRC}/srelay.passwd ${STAGEDIR}${PREFIX}/etc/srelay.passwd.sample + ${INSTALL_MAN} ${WRKSRC}/srelay.8 ${STAGEDIR}${PREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/srelay ${STAGEDIR}${PREFIX}/sbin + +.include Added: head/net/srelay/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/srelay/distinfo Fri Aug 14 13:45:47 2015 (r394213) @@ -0,0 +1,2 @@ +SHA256 (gco-srelay-0.4.8b6-9461835_GH0.tar.gz) = 52752c52660520570bf70719f8a6ca6775885bd8e9fa557020c1aa891ba274e0 +SIZE (gco-srelay-0.4.8b6-9461835_GH0.tar.gz) = 110152 Added: head/net/srelay/files/srelay.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/srelay/files/srelay.in Fri Aug 14 13:45:47 2015 (r394213) @@ -0,0 +1,29 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# PROVIDE: srelay +# REQUIRE: DAEMON jail +# BEFORE: LOGIN +# KEYWORD: FreeBSD NetBSD shutdown +# +# Add the following line to /etc/rc.conf to enable srelay: +# +# srelay_enable="YES" +# srelay_flags="-i 127.0.0.1" +# + +. /etc/rc.subr + +name=srelay +rcvar=srelay_enable + +load_rc_config $name +: ${srelay_enable="NO"} + +command="%%LOCALBASE%%/sbin/srelay" +pid_file="/var/run/srelay.pid" + +load_rc_config $name + +run_rc_command "$1" Added: head/net/srelay/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/srelay/pkg-descr Fri Aug 14 13:45:47 2015 (r394213) @@ -0,0 +1,11 @@ +The SOCKS proxy and relay. + +* Srelay is a socks4/5 protocol proxy server +* Supports socks connect/bind request in the protocol v4, v4a, and v5. +* Supports socks server chaining with both v4 and v5 servers. +* Supports Username/Password authentication in v5 (not recommended). +* Testing on FreeBSD 8.1R, Solaris 8, 10, Linux-i386, MacOS 10.5. +* Supports IPv6 as well as IPv4. +* Srelay is Free. + +WWW: https://github.com/gco/srelay Added: head/net/srelay/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/srelay/pkg-plist Fri Aug 14 13:45:47 2015 (r394213) @@ -0,0 +1,4 @@ +@sample etc/srelay.conf.sample +@sample etc/srelay.passwd.sample +man/man8/srelay.8.gz +sbin/srelay From owner-svn-ports-all@freebsd.org Fri Aug 14 13:47:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 300C09B8296; Fri, 14 Aug 2015 13:47:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 209F91903; Fri, 14 Aug 2015 13:47:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDlJCA059192; Fri, 14 Aug 2015 13:47:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDlIMT059190; Fri, 14 Aug 2015 13:47:18 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141347.t7EDlIMT059190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:47:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394214 - in head: devel/rubygem-drydock textproc/rubygem-diff-lcs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:47:19 -0000 Author: amdmi3 Date: Fri Aug 14 13:47:17 2015 New Revision: 394214 URL: https://svnweb.freebsd.org/changeset/ports/394214 Log: - Place USES and shebang-related knobs after RUBYGEM_* as requested by sunpoet@ before Modified: head/devel/rubygem-drydock/Makefile head/textproc/rubygem-diff-lcs/Makefile Modified: head/devel/rubygem-drydock/Makefile ============================================================================== --- head/devel/rubygem-drydock/Makefile Fri Aug 14 13:45:47 2015 (r394213) +++ head/devel/rubygem-drydock/Makefile Fri Aug 14 13:47:17 2015 (r394214) @@ -16,8 +16,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes -USES= shebangfix RUBYGEM_AUTOPLIST= yes +USES= shebangfix SHEBANG_FILES= bin/example .include Modified: head/textproc/rubygem-diff-lcs/Makefile ============================================================================== --- head/textproc/rubygem-diff-lcs/Makefile Fri Aug 14 13:45:47 2015 (r394213) +++ head/textproc/rubygem-diff-lcs/Makefile Fri Aug 14 13:47:17 2015 (r394214) @@ -15,12 +15,12 @@ LICENSE_COMB= dual NO_ARCH= yes -USES= shebangfix -ruby_OLD_CMD= ruby -SHEBANG_FILES= bin/htmldiff bin/ldiff USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +USES= shebangfix +ruby_OLD_CMD= ruby +SHEBANG_FILES= bin/htmldiff bin/ldiff PLIST_FILES= bin/htmldiff bin/ldiff From owner-svn-ports-all@freebsd.org Fri Aug 14 13:52:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6C6E9B84CF; Fri, 14 Aug 2015 13:52:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97EBA1F60; Fri, 14 Aug 2015 13:52:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDqQ5l063128; Fri, 14 Aug 2015 13:52:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDqQjI063127; Fri, 14 Aug 2015 13:52:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141352.t7EDqQjI063127@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:52:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394215 - head/devel/ncurses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:52:26 -0000 Author: amdmi3 Date: Fri Aug 14 13:52:25 2015 New Revision: 394215 URL: https://svnweb.freebsd.org/changeset/ports/394215 Log: - Fix shebangs Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/devel/ncurses/Makefile Modified: head/devel/ncurses/Makefile ============================================================================== --- head/devel/ncurses/Makefile Fri Aug 14 13:47:17 2015 (r394214) +++ head/devel/ncurses/Makefile Fri Aug 14 13:52:25 2015 (r394215) @@ -3,6 +3,7 @@ PORTNAME= ncurses DISTVERSION= ${RELEASE}-20150214 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://invisible-island.net/${PORTNAME}/current/ DIST_SUBDIR= ${PORTNAME} @@ -38,7 +39,8 @@ TRACE_DESC= Add trace() function to all CONFIGURE_ENV= gnat_exists="no" USE_LDCONFIG= yes -USES= tar:tgz +USES= shebangfix tar:tgz +SHEBANG_FILES= test/tracemunch WIDEC_WRKSRC= ${WRKSRC}/build.widec NOWIDEC_WRKSRC= ${WRKSRC}/build.nowidec From owner-svn-ports-all@freebsd.org Fri Aug 14 13:53:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B16B9B8537; Fri, 14 Aug 2015 13:53:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1BE91108C; Fri, 14 Aug 2015 13:53:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EDruGS063325; Fri, 14 Aug 2015 13:53:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EDruaF063324; Fri, 14 Aug 2015 13:53:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141353.t7EDruaF063324@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 13:53:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394216 - branches/2015Q3/devel/ncurses X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 13:53:57 -0000 Author: amdmi3 Date: Fri Aug 14 13:53:56 2015 New Revision: 394216 URL: https://svnweb.freebsd.org/changeset/ports/394216 Log: MFH: r394215 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/devel/ncurses/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/devel/ncurses/Makefile ============================================================================== --- branches/2015Q3/devel/ncurses/Makefile Fri Aug 14 13:52:25 2015 (r394215) +++ branches/2015Q3/devel/ncurses/Makefile Fri Aug 14 13:53:56 2015 (r394216) @@ -3,6 +3,7 @@ PORTNAME= ncurses DISTVERSION= ${RELEASE}-20150214 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ftp://invisible-island.net/${PORTNAME}/current/ DIST_SUBDIR= ${PORTNAME} @@ -38,7 +39,8 @@ TRACE_DESC= Add trace() function to all CONFIGURE_ENV= gnat_exists="no" USE_LDCONFIG= yes -USES= tar:tgz +USES= shebangfix tar:tgz +SHEBANG_FILES= test/tracemunch WIDEC_WRKSRC= ${WRKSRC}/build.widec NOWIDEC_WRKSRC= ${WRKSRC}/build.nowidec From owner-svn-ports-all@freebsd.org Fri Aug 14 14:08:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E7679B889B; Fri, 14 Aug 2015 14:08:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F9871A7E; Fri, 14 Aug 2015 14:08:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EE8jQO067703; Fri, 14 Aug 2015 14:08:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EE8jfg067701; Fri, 14 Aug 2015 14:08:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141408.t7EE8jfg067701@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 14:08:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394217 - head/www/tntnet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 14:08:45 -0000 Author: amdmi3 Date: Fri Aug 14 14:08:44 2015 New Revision: 394217 URL: https://svnweb.freebsd.org/changeset/ports/394217 Log: - Fix shebangs - Drop @dirrm* from plist Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/www/tntnet/Makefile head/www/tntnet/pkg-plist Modified: head/www/tntnet/Makefile ============================================================================== --- head/www/tntnet/Makefile Fri Aug 14 13:53:56 2015 (r394216) +++ head/www/tntnet/Makefile Fri Aug 14 14:08:44 2015 (r394217) @@ -3,7 +3,7 @@ PORTNAME= tntnet PORTVERSION= 2.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www devel MASTER_SITES= http://www.tntnet.org/download/ @@ -13,7 +13,8 @@ COMMENT= Webapplicationserver for C++ LIB_DEPENDS= libcxxtools.so:${PORTSDIR}/devel/cxxtools BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -USES= cpe iconv libtool pathfix pkgconfig +USES= cpe iconv libtool pathfix pkgconfig shebangfix +SHEBANG_FILES= tntnet-conf2xml.pl USE_CSTD= gnu89 PATCH_STRIP= -p1 GNU_CONFIGURE= yes Modified: head/www/tntnet/pkg-plist ============================================================================== --- head/www/tntnet/pkg-plist Fri Aug 14 13:53:56 2015 (r394216) +++ head/www/tntnet/pkg-plist Fri Aug 14 14:08:44 2015 (r394217) @@ -135,7 +135,3 @@ man/man7/tntnet.properties.7.gz man/man7/tntnet.xml.7.gz man/man8/tntnet.8.gz %%DATADIR%%/tntnet-conf2xml.pl -@dirrm %%DATADIR%% -@dirrm lib/tntnet -@dirrm include/tnt -@dirrmtry %%ETCDIR%% From owner-svn-ports-all@freebsd.org Fri Aug 14 14:10:20 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84E6F9B893A; Fri, 14 Aug 2015 14:10:20 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75C991C81; Fri, 14 Aug 2015 14:10:20 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EEAK1s067912; Fri, 14 Aug 2015 14:10:20 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EEAKE2067910; Fri, 14 Aug 2015 14:10:20 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201508141410.t7EEAKE2067910@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Fri, 14 Aug 2015 14:10:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394218 - head/shells/bash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 14:10:20 -0000 Author: ehaupt Date: Fri Aug 14 14:10:19 2015 New Revision: 394218 URL: https://svnweb.freebsd.org/changeset/ports/394218 Log: Update to 4.3.42 Modified: head/shells/bash/Makefile head/shells/bash/distinfo Modified: head/shells/bash/Makefile ============================================================================== --- head/shells/bash/Makefile Fri Aug 14 14:08:44 2015 (r394217) +++ head/shells/bash/Makefile Fri Aug 14 14:10:19 2015 (r394218) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= bash -PATCHLEVEL= 39 +PATCHLEVEL= 42 PORTVERSION= 4.3.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 3 +PORTREVISION?= 0 CATEGORIES= shells MASTER_SITES= GNU/${PORTNAME} DISTNAME= ${PORTNAME}-${PORTVERSION:R} Modified: head/shells/bash/distinfo ============================================================================== --- head/shells/bash/distinfo Fri Aug 14 14:08:44 2015 (r394217) +++ head/shells/bash/distinfo Fri Aug 14 14:10:19 2015 (r394218) @@ -78,3 +78,9 @@ SHA256 (bash/bash43-038) = adbeaa500ca7a SIZE (bash/bash43-038) = 2354 SHA256 (bash/bash43-039) = ab94dced2215541097691f60c3eb323cc28ef2549463e6a5334bbcc1e61e74ec SIZE (bash/bash43-039) = 1531 +SHA256 (bash/bash43-040) = 84bb396b9262992ca5424feab6ed3ec39f193ef5c76dfe4a62b551bd8dd9d76b +SIZE (bash/bash43-040) = 1532 +SHA256 (bash/bash43-041) = 4ec432966e4198524a7e0cd685fe222e96043769c9613e66742ac475db132c1a +SIZE (bash/bash43-041) = 2362 +SHA256 (bash/bash43-042) = b75a53141ab3d8fff3fa74b5f3dc76468b01eae299f50bbc2bc71ae395d690af +SIZE (bash/bash43-042) = 1535 From owner-svn-ports-all@freebsd.org Fri Aug 14 14:16:44 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E4AE9B8B6D; Fri, 14 Aug 2015 14:16:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F3D61018; Fri, 14 Aug 2015 14:16:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EEGiM7071970; Fri, 14 Aug 2015 14:16:44 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EEGhdU071968; Fri, 14 Aug 2015 14:16:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141416.t7EEGhdU071968@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 14:16:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394219 - branches/2015Q3/www/tntnet X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 14:16:44 -0000 Author: amdmi3 Date: Fri Aug 14 14:16:43 2015 New Revision: 394219 URL: https://svnweb.freebsd.org/changeset/ports/394219 Log: MFH: r394217 - Fix shebangs - Drop @dirrm* from plist Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/www/tntnet/Makefile branches/2015Q3/www/tntnet/pkg-plist Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/www/tntnet/Makefile ============================================================================== --- branches/2015Q3/www/tntnet/Makefile Fri Aug 14 14:10:19 2015 (r394218) +++ branches/2015Q3/www/tntnet/Makefile Fri Aug 14 14:16:43 2015 (r394219) @@ -3,7 +3,7 @@ PORTNAME= tntnet PORTVERSION= 2.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www devel MASTER_SITES= http://www.tntnet.org/download/ @@ -13,7 +13,8 @@ COMMENT= Webapplicationserver for C++ LIB_DEPENDS= libcxxtools.so:${PORTSDIR}/devel/cxxtools BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip -USES= cpe iconv libtool pathfix pkgconfig +USES= cpe iconv libtool pathfix pkgconfig shebangfix +SHEBANG_FILES= tntnet-conf2xml.pl USE_CSTD= gnu89 PATCH_STRIP= -p1 GNU_CONFIGURE= yes Modified: branches/2015Q3/www/tntnet/pkg-plist ============================================================================== --- branches/2015Q3/www/tntnet/pkg-plist Fri Aug 14 14:10:19 2015 (r394218) +++ branches/2015Q3/www/tntnet/pkg-plist Fri Aug 14 14:16:43 2015 (r394219) @@ -135,7 +135,3 @@ man/man7/tntnet.properties.7.gz man/man7/tntnet.xml.7.gz man/man8/tntnet.8.gz %%DATADIR%%/tntnet-conf2xml.pl -@dirrm %%DATADIR%% -@dirrm lib/tntnet -@dirrm include/tnt -@dirrmtry %%ETCDIR%% From owner-svn-ports-all@freebsd.org Fri Aug 14 14:34:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EDC29B9133; Fri, 14 Aug 2015 14:34:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA07411F5; Fri, 14 Aug 2015 14:34:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EEYCJE080149; Fri, 14 Aug 2015 14:34:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EEYCQY080147; Fri, 14 Aug 2015 14:34:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141434.t7EEYCQY080147@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 14:34:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394220 - head/multimedia/smplayer-themes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 14:34:13 -0000 Author: amdmi3 Date: Fri Aug 14 14:34:11 2015 New Revision: 394220 URL: https://svnweb.freebsd.org/changeset/ports/394220 Log: - Add missing files to plist - Add NO_ARCH Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/multimedia/smplayer-themes/Makefile head/multimedia/smplayer-themes/pkg-plist Modified: head/multimedia/smplayer-themes/Makefile ============================================================================== --- head/multimedia/smplayer-themes/Makefile Fri Aug 14 14:16:43 2015 (r394219) +++ head/multimedia/smplayer-themes/Makefile Fri Aug 14 14:34:11 2015 (r394220) @@ -4,6 +4,7 @@ PORTNAME= smplayer-themes PORTVERSION= 15.6.0 PORTEPOCH= 1 +PORTREVISION= 1 CATEGORIES= multimedia audio kde MASTER_SITES= SF/smplayer/SMPlayer-themes/${PORTVERSION}/ @@ -12,6 +13,7 @@ COMMENT= Themes for SMPlayer USES= tar:bzip2 USE_QT4= rcc_build +NO_ARCH= yes DATADIR= ${PREFIX}/share/smplayer Modified: head/multimedia/smplayer-themes/pkg-plist ============================================================================== --- head/multimedia/smplayer-themes/pkg-plist Fri Aug 14 14:16:43 2015 (r394219) +++ head/multimedia/smplayer-themes/pkg-plist Fri Aug 14 14:34:11 2015 (r394220) @@ -1,7 +1,16 @@ +%%DATADIR%%/themes/Faenza-Darkest/Faenza-Darkest.rcc +%%DATADIR%%/themes/Faenza-Darkest/README.txt +%%DATADIR%%/themes/Faenza-Silver/Faenza-Silver.rcc +%%DATADIR%%/themes/Faenza-Silver/README.txt +%%DATADIR%%/themes/Faenza/Faenza.rcc +%%DATADIR%%/themes/Faenza/README.txt %%DATADIR%%/themes/Gartoon/Gartoon.rcc %%DATADIR%%/themes/Gartoon/README.txt %%DATADIR%%/themes/Gnome/Gnome.rcc %%DATADIR%%/themes/Gnome/README.txt +%%DATADIR%%/themes/H2O/H2O.rcc +%%DATADIR%%/themes/H2O/README.txt +%%DATADIR%%/themes/H2O/style.qss %%DATADIR%%/themes/Monochrome/Monochrome.rcc %%DATADIR%%/themes/Monochrome/README.txt %%DATADIR%%/themes/Noia/Noia.rcc @@ -14,6 +23,8 @@ %%DATADIR%%/themes/Nuvola/README.txt %%DATADIR%%/themes/Oxygen-Air/Oxygen-Air.rcc %%DATADIR%%/themes/Oxygen-Air/README.txt +%%DATADIR%%/themes/Oxygen-KDE/Oxygen-KDE.rcc +%%DATADIR%%/themes/Oxygen-KDE/README.txt %%DATADIR%%/themes/Oxygen-Refit/Oxygen-Refit.rcc %%DATADIR%%/themes/Oxygen-Refit/README.txt %%DATADIR%%/themes/Oxygen/Oxygen.rcc From owner-svn-ports-all@freebsd.org Fri Aug 14 14:50:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C00C79B945A; Fri, 14 Aug 2015 14:50:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B10391D12; Fri, 14 Aug 2015 14:50:34 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EEoYHe084544; Fri, 14 Aug 2015 14:50:34 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EEoYwP084542; Fri, 14 Aug 2015 14:50:34 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141450.t7EEoYwP084542@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 14:50:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394221 - head/graphics/icc-profiles-openicc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 14:50:34 -0000 Author: amdmi3 Date: Fri Aug 14 14:50:33 2015 New Revision: 394221 URL: https://svnweb.freebsd.org/changeset/ports/394221 Log: - Add empty directories to plist - Add USES=shared-mime-info as suggested by stage-qa Approved by: portmgr blanket Modified: head/graphics/icc-profiles-openicc/Makefile head/graphics/icc-profiles-openicc/pkg-plist Modified: head/graphics/icc-profiles-openicc/Makefile ============================================================================== --- head/graphics/icc-profiles-openicc/Makefile Fri Aug 14 14:34:11 2015 (r394220) +++ head/graphics/icc-profiles-openicc/Makefile Fri Aug 14 14:50:33 2015 (r394221) @@ -2,7 +2,7 @@ PORTNAME= icc-profiles-openicc PORTVERSION= 1.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/openicc/OpenICC-Profiles @@ -12,7 +12,7 @@ COMMENT= Color data for color managed ap LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/COPYING # Has a Copyright note -USES= tar:bzip2 +USES= shared-mime-info tar:bzip2 GNU_CONFIGURE= yes SYSCOLORDIR= share/color Modified: head/graphics/icc-profiles-openicc/pkg-plist ============================================================================== --- head/graphics/icc-profiles-openicc/pkg-plist Fri Aug 14 14:34:11 2015 (r394220) +++ head/graphics/icc-profiles-openicc/pkg-plist Fri Aug 14 14:50:33 2015 (r394221) @@ -18,6 +18,8 @@ %%SYSCOLORDIR%%/target/fogra/FOGRA30L.ti3 %%SYSCOLORDIR%%/target/fogra/FOGRA39L.ti3 %%SYSCOLORDIR%%/target/fogra/FOGRA40L.ti3 +@dir %%SYSCOLORDIR%%/settings +@dir %%SYSCOLORDIR%%/icc/PhotoGamut share/icons/application-vnd.iccprofile.png share/icons/text-vnd.cgats.png share/mime/packages/x-color-cgats.xml From owner-svn-ports-all@freebsd.org Fri Aug 14 14:51:59 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 248149B9528; Fri, 14 Aug 2015 14:51:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1501A1FA1; Fri, 14 Aug 2015 14:51:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EEpwfU088254; Fri, 14 Aug 2015 14:51:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EEpwAt088253; Fri, 14 Aug 2015 14:51:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141451.t7EEpwAt088253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 14:51:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394222 - head/textproc/rubygem-kramdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 14:51:59 -0000 Author: amdmi3 Date: Fri Aug 14 14:51:58 2015 New Revision: 394222 URL: https://svnweb.freebsd.org/changeset/ports/394222 Log: - Fix shebangs Approved by: portmgr blanket MFH: 2015Q3 (blanket) Modified: head/textproc/rubygem-kramdown/Makefile Modified: head/textproc/rubygem-kramdown/Makefile ============================================================================== --- head/textproc/rubygem-kramdown/Makefile Fri Aug 14 14:50:33 2015 (r394221) +++ head/textproc/rubygem-kramdown/Makefile Fri Aug 14 14:51:58 2015 (r394222) @@ -3,6 +3,7 @@ PORTNAME= kramdown PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -15,6 +16,8 @@ NO_ARCH= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +USES= shebangfix +SHEBANG_FILES= benchmark/testing.sh benchmark/timing.sh PLIST_FILES= bin/kramdown From owner-svn-ports-all@freebsd.org Fri Aug 14 15:03:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C280D9B968A; Fri, 14 Aug 2015 15:03:31 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2DC6168E; Fri, 14 Aug 2015 15:03:31 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EF3VwD092572; Fri, 14 Aug 2015 15:03:31 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EF3V74092570; Fri, 14 Aug 2015 15:03:31 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201508141503.t7EF3V74092570@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Fri, 14 Aug 2015 15:03:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394223 - in head/net/mpd5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 15:03:31 -0000 Author: garga Date: Fri Aug 14 15:03:30 2015 New Revision: 394223 URL: https://svnweb.freebsd.org/changeset/ports/394223 Log: - Backport mpd5 fix (rev. 1224): Do not print warning, when we a renaming interface to existing name https://forum.pfsense.org/index.php?topic=41061.msg476926 - Bump PORTREVISION PR: 200722 Approved by: maintainer timeout (> 2 months) Sponsored by: Netgate Added: head/net/mpd5/files/patch-src_file.c (contents, props changed) Modified: head/net/mpd5/Makefile Modified: head/net/mpd5/Makefile ============================================================================== --- head/net/mpd5/Makefile Fri Aug 14 14:51:58 2015 (r394222) +++ head/net/mpd5/Makefile Fri Aug 14 15:03:30 2015 (r394223) @@ -3,7 +3,7 @@ PORTNAME= mpd DISTVERSION= 5.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= SF/${PORTNAME}/Mpd5/Mpd-${PORTVERSION} PKGNAMESUFFIX= 5 Added: head/net/mpd5/files/patch-src_file.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/mpd5/files/patch-src_file.c Fri Aug 14 15:03:30 2015 (r394223) @@ -0,0 +1,17 @@ +--- src/iface.c 2015/05/13 12:31:43 1.223 ++++ src/iface.c 2015/06/02 08:57:13 1.224 +@@ -3654,9 +3654,11 @@ + b->name, iface->ifname, ifname)); + + if (ioctl(s, SIOCSIFNAME, (caddr_t)&ifr) < 0) { +- Perror("[%s] IFACE: ioctl(%s, SIOCSIFNAME)", b->name, iface->ifname); +- close(s); +- return(-1); ++ if (errno != EEXIST) { ++ Perror("[%s] IFACE: ioctl(%s, SIOCSIFNAME)", b->name, iface->ifname); ++ close(s); ++ return(-1); ++ } + } + + close(s); From owner-svn-ports-all@freebsd.org Fri Aug 14 16:09:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED8479BA430; Fri, 14 Aug 2015 16:08:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE03016FD; Fri, 14 Aug 2015 16:08:59 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EG8x3k020015; Fri, 14 Aug 2015 16:08:59 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EG8xS7020014; Fri, 14 Aug 2015 16:08:59 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508141608.t7EG8xS7020014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 14 Aug 2015 16:08:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394224 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:09:00 -0000 Author: feld Date: Fri Aug 14 16:08:58 2015 New Revision: 394224 URL: https://svnweb.freebsd.org/changeset/ports/394224 Log: Document gnutls vulnerabilities No CVEs assigned yet Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Aug 14 15:03:30 2015 (r394223) +++ head/security/vuxml/vuln.xml Fri Aug 14 16:08:58 2015 (r394224) @@ -58,6 +58,71 @@ Notes: --> + + gnutls -- double free in certificate DN decoding + + + gnutls + 3.3.17 + + + + +

gnutls.org reports:

+
+

Kurt Roeckx reported that decoding a specific certificate with very + long DistinguishedName (DN) entries leads to double free, which may + result to a denial of service. Since the DN decoding occurs in almost + all applications using certificates it is recommended to upgrade the + latest GnuTLS version fixing the issue. Recommendation: Upgrade to + GnuTLS 3.4.4, or 3.3.17.

+
+ +
+ + http://www.gnutls.org/security.html#GNUTLS-SA-2015-3 + http://seclists.org/oss-sec/2015/q3/308 + https://gitlab.com/gnutls/gnutls/commit/272854367efc130fbd4f1a51840d80c630214e12 + + + 2015-07-20 + 2015-08-14 + +
+ + + gnutls -- MD5 downgrade in TLS signatures + + + gnutls + 3.3.15 + + + + +

Karthikeyan Bhargavan reports:

+
+

GnuTLS does not by default support MD5 signatures. Indeed the RSA-MD5 + signature-hash algorithm needs to be explicitly enabled using the + priority option VERIFY_ALLOW_SIGN_RSA_MD5. In the NORMAL and SECURE + profiles, GnuTLS clients do not offer RSA-MD5 in the signature + algorithms extension. However, we find that all GnuTLS clients still + accept RSA-MD5 in the ServerKeyExchange and GnuTLS servers still + accept RSA-MD5 in the ClientCertificateVerify.

+
+ +
+ + http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/8132 + http://www.gnutls.org/security.html#GNUTLS-SA-2015-2 + http://seclists.org/oss-sec/2015/q2/367 + + + 2015-04-25 + 2015-08-14 + +
+ froxlor -- database password information leak From owner-svn-ports-all@freebsd.org Fri Aug 14 16:25:18 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EEAF9BA800; Fri, 14 Aug 2015 16:25:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6EAFA1F34; Fri, 14 Aug 2015 16:25:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGPIBj029125; Fri, 14 Aug 2015 16:25:18 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGPIrU029124; Fri, 14 Aug 2015 16:25:18 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141625.t7EGPIrU029124@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 16:25:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394225 - head/devel/fpc-fppkg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:25:18 -0000 Author: amdmi3 Date: Fri Aug 14 16:25:17 2015 New Revision: 394225 URL: https://svnweb.freebsd.org/changeset/ports/394225 Log: - Fix build by adding missing depends Approved by: portmgr blanket Modified: head/devel/fpc-fppkg/Makefile Modified: head/devel/fpc-fppkg/Makefile ============================================================================== --- head/devel/fpc-fppkg/Makefile Fri Aug 14 16:08:58 2015 (r394224) +++ head/devel/fpc-fppkg/Makefile Fri Aug 14 16:25:17 2015 (r394225) @@ -8,7 +8,7 @@ PKGNAMESUFFIX= -fppkg MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal package unit -USE_FPC= fcl-base fcl-process fcl-web fcl-xml +USE_FPC= fcl-base fcl-net fcl-passrc fcl-process fcl-web fcl-xml fpmkunit MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/packages/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Fri Aug 14 16:26:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01F379BA855; Fri, 14 Aug 2015 16:26:26 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6A681032; Fri, 14 Aug 2015 16:26:25 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGQPmN029330; Fri, 14 Aug 2015 16:26:25 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGQPYM029329; Fri, 14 Aug 2015 16:26:25 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508141626.t7EGQPYM029329@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Fri, 14 Aug 2015 16:26:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394226 - head/www/bareos-webui/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:26:26 -0000 Author: acm Date: Fri Aug 14 16:26:25 2015 New Revision: 394226 URL: https://svnweb.freebsd.org/changeset/ports/394226 Log: - Replace bacula/bareos Modified: head/www/bareos-webui/files/pkg-message.in Modified: head/www/bareos-webui/files/pkg-message.in ============================================================================== --- head/www/bareos-webui/files/pkg-message.in Fri Aug 14 16:25:17 2015 (r394225) +++ head/www/bareos-webui/files/pkg-message.in Fri Aug 14 16:26:25 2015 (r394226) @@ -1,9 +1,9 @@ ############################################################################### -bacula webui was installed +bareos webui was installed Please note that everything has been installed in %%BAREOSWEBUIDIR%%. You can -look bacula-webui installation/configuration instructions at: +look bareos-webui installation/configuration instructions at: https://github.com/bareos/bareos-webui/blob/master/doc/INSTALL.md From owner-svn-ports-all@freebsd.org Fri Aug 14 16:27:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E80659BA878; Fri, 14 Aug 2015 16:27:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8823111B; Fri, 14 Aug 2015 16:27:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGR0pF029491; Fri, 14 Aug 2015 16:27:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGR0I8029490; Fri, 14 Aug 2015 16:27:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141627.t7EGR0I8029490@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 16:27:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394227 - branches/2015Q3/textproc/rubygem-kramdown X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:27:01 -0000 Author: amdmi3 Date: Fri Aug 14 16:27:00 2015 New Revision: 394227 URL: https://svnweb.freebsd.org/changeset/ports/394227 Log: MFH: r394222 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam shebang fix blanket Modified: branches/2015Q3/textproc/rubygem-kramdown/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/textproc/rubygem-kramdown/Makefile ============================================================================== --- branches/2015Q3/textproc/rubygem-kramdown/Makefile Fri Aug 14 16:26:25 2015 (r394226) +++ branches/2015Q3/textproc/rubygem-kramdown/Makefile Fri Aug 14 16:27:00 2015 (r394227) @@ -3,6 +3,7 @@ PORTNAME= kramdown PORTVERSION= 1.7.0 +PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -14,6 +15,8 @@ LICENSE= MIT USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +USES= shebangfix +SHEBANG_FILES= benchmark/testing.sh benchmark/timing.sh PLIST_FILES= bin/kramdown From owner-svn-ports-all@freebsd.org Fri Aug 14 16:31:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 865429BA9E3; Fri, 14 Aug 2015 16:31:36 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76FB2169E; Fri, 14 Aug 2015 16:31:36 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGVaBd031288; Fri, 14 Aug 2015 16:31:36 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGVZgA031284; Fri, 14 Aug 2015 16:31:35 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201508141631.t7EGVZgA031284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Fri, 14 Aug 2015 16:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394228 - head/audio/mpg123 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:31:36 -0000 Author: novel Date: Fri Aug 14 16:31:35 2015 New Revision: 394228 URL: https://svnweb.freebsd.org/changeset/ports/394228 Log: Update to 1.22.4. Modified: head/audio/mpg123/Makefile head/audio/mpg123/distinfo head/audio/mpg123/pkg-plist Modified: head/audio/mpg123/Makefile ============================================================================== --- head/audio/mpg123/Makefile Fri Aug 14 16:27:00 2015 (r394227) +++ head/audio/mpg123/Makefile Fri Aug 14 16:31:35 2015 (r394228) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpg123 -PORTVERSION= 1.22.3 +PORTVERSION= 1.22.4 CATEGORIES= audio ipv6 MASTER_SITES= SF \ http://www.mpg123.de/download/ Modified: head/audio/mpg123/distinfo ============================================================================== --- head/audio/mpg123/distinfo Fri Aug 14 16:27:00 2015 (r394227) +++ head/audio/mpg123/distinfo Fri Aug 14 16:31:35 2015 (r394228) @@ -1,2 +1,2 @@ -SHA256 (mpg123-1.22.3.tar.bz2) = 23d2a843c3efc746a326eb4e56d5488b4c67fa6c3c7c71f4d26d98ee4c1f5c2d -SIZE (mpg123-1.22.3.tar.bz2) = 870218 +SHA256 (mpg123-1.22.4.tar.bz2) = 5069e02e50138600f10cc5f7674e44e9bf6f1930af81d0e1d2f869b3c0ee40d2 +SIZE (mpg123-1.22.4.tar.bz2) = 870889 Modified: head/audio/mpg123/pkg-plist ============================================================================== --- head/audio/mpg123/pkg-plist Fri Aug 14 16:27:00 2015 (r394227) +++ head/audio/mpg123/pkg-plist Fri Aug 14 16:31:35 2015 (r394228) @@ -5,7 +5,7 @@ bin/out123 include/mpg123.h lib/libmpg123.so lib/libmpg123.so.0 -lib/libmpg123.so.0.41.1 +lib/libmpg123.so.0.41.2 lib/mpg123/output_dummy.so lib/mpg123/output_oss.so libdata/pkgconfig/libmpg123.pc From owner-svn-ports-all@freebsd.org Fri Aug 14 16:33:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87CEC9BAA3A; Fri, 14 Aug 2015 16:33:41 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 780CB1844; Fri, 14 Aug 2015 16:33:41 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGXfSN034089; Fri, 14 Aug 2015 16:33:41 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGXeW3034085; Fri, 14 Aug 2015 16:33:40 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201508141633.t7EGXeW3034085@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Fri, 14 Aug 2015 16:33:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394229 - in head/sysutils: bareos-client bareos-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:33:41 -0000 Author: acm Date: Fri Aug 14 16:33:39 2015 New Revision: 394229 URL: https://svnweb.freebsd.org/changeset/ports/394229 Log: - /var/log/bareos and /var/run/bareos are created by bareos-client now. It fixed a problem when bareos-client is started PR: 202291 Reported by: timp87 _ at _ gmail.com Modified: head/sysutils/bareos-client/Makefile head/sysutils/bareos-server/Makefile head/sysutils/bareos-server/pkg-plist head/sysutils/bareos-server/pkg-plist.client Modified: head/sysutils/bareos-client/Makefile ============================================================================== --- head/sysutils/bareos-client/Makefile Fri Aug 14 16:31:35 2015 (r394228) +++ head/sysutils/bareos-client/Makefile Fri Aug 14 16:33:39 2015 (r394229) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bareos -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -client COMMENT= Backup archiving recovery open sourced (client) Modified: head/sysutils/bareos-server/Makefile ============================================================================== --- head/sysutils/bareos-server/Makefile Fri Aug 14 16:31:35 2015 (r394228) +++ head/sysutils/bareos-server/Makefile Fri Aug 14 16:33:39 2015 (r394229) @@ -3,7 +3,7 @@ PORTNAME= bareos DISTVERSION= 15.2 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= sysutils PKGNAMEPREFIX?= # PKGNAMESUFFIX?= -server @@ -162,15 +162,13 @@ MP1+= bsmtp.1 bregex.1 bwild.1 bareos-tr MAKE_ENV+= MAN8="${MP8}" MAN1="${MP1}" post-patch: -# This port does not install docs. See bacula-docs for that +# This port does not install docs. See bareos-docs for that ${REINPLACE_CMD} -e '/docdir/d' ${WRKSRC}/Makefile.in # Default bconsole.conf is in ${ETCDIR} @${REINPLACE_CMD} -e 's|./bconsole.conf|${ETCDIR}/bconsole.conf|g' ${WRKSRC}/src/console/console.c @${REINPLACE_CMD} -e 's|^MAN8 =|MAN8 ?=|g' -e 's|^MAN1 =|MAN1 ?=|g' ${WRKSRC}/manpages/Makefile.in @${REINPLACE_CMD} -e 's|_NONSHARED||g' ${WRKSRC}/src/filed/Makefile.in .if defined(WITH_CLIENT_ONLY) -# In client port only install startup script out of script dir (see below post-install) -# Dont mkdir ${PREFIX}/share/bacula cause it's empty @${REINPLACE_CMD} -e 's|^\(fd_subdirs = .*\)scripts\(.*\)|\1\2|g' ${WRKSRC}/Makefile.in ${REINPLACE_CMD} -e 's|\(.*$${MKDIR} $${DESTDIR}$${scriptdir}\)|#\1|g' ${WRKSRC}/Makefile.in .else Modified: head/sysutils/bareos-server/pkg-plist ============================================================================== --- head/sysutils/bareos-server/pkg-plist Fri Aug 14 16:31:35 2015 (r394228) +++ head/sysutils/bareos-server/pkg-plist Fri Aug 14 16:33:39 2015 (r394229) @@ -93,5 +93,3 @@ sbin/btraceback sbin/bwild sbin/chio-bareos @dir(bareos,bareos,) %%BAREOS_DIR%% -@dir(bareos,bareos,) /var/log/bareos -@dir(bareos,bareos,) /var/run/bareos Modified: head/sysutils/bareos-server/pkg-plist.client ============================================================================== --- head/sysutils/bareos-server/pkg-plist.client Fri Aug 14 16:31:35 2015 (r394228) +++ head/sysutils/bareos-server/pkg-plist.client Fri Aug 14 16:33:39 2015 (r394229) @@ -30,5 +30,5 @@ bin/bconsole @dir(,bareos,) %%ETCDIR%% @dir lib/bareos/plugins @dir lib/bareos/scripts -@dir /var/log/bareos - +@dir(bareos,bareos,) /var/log/bareos +@dir(bareos,bareos,) /var/run/bareos From owner-svn-ports-all@freebsd.org Fri Aug 14 16:34:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97A819BAA89; Fri, 14 Aug 2015 16:34:31 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 886E01950; Fri, 14 Aug 2015 16:34:31 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGYVJG034286; Fri, 14 Aug 2015 16:34:31 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGYVwd034284; Fri, 14 Aug 2015 16:34:31 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508141634.t7EGYVwd034284@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 14 Aug 2015 16:34:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394230 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:34:31 -0000 Author: feld Date: Fri Aug 14 16:34:30 2015 New Revision: 394230 URL: https://svnweb.freebsd.org/changeset/ports/394230 Log: Document freeradius3 vulnerability Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Aug 14 16:33:39 2015 (r394229) +++ head/security/vuxml/vuln.xml Fri Aug 14 16:34:30 2015 (r394230) @@ -58,6 +58,34 @@ Notes: --> + + freeradius3 -- insufficient validation on packets + + + freeradius3 + 3.0.8 + + + + +

Jouni Malinen reports:

+
+

The EAP-PWD module performed insufficient validation on + packets received from an EAP peer. This module is not enabled in the + default configuration. Administrators must manually enable it for their + server to be vulnerable. Only versions 3.0 up to 3.0.8 are affected.

+
+ +
+ + http://freeradius.org/security.html#eap-pwd-2015 + + + 2015-04-04 + 2015-08-14 + +
+ gnutls -- double free in certificate DN decoding From owner-svn-ports-all@freebsd.org Fri Aug 14 16:35:29 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D6F69BAAC7; Fri, 14 Aug 2015 16:35:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CE6B1A82; Fri, 14 Aug 2015 16:35:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGZSOj034569; Fri, 14 Aug 2015 16:35:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGZRPq034558; Fri, 14 Aug 2015 16:35:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141635.t7EGZRPq034558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 16:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394231 - in head/multimedia/libvpx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:35:29 -0000 Author: jbeich Date: Fri Aug 14 16:35:26 2015 New Revision: 394231 URL: https://svnweb.freebsd.org/changeset/ports/394231 Log: multimedia/libvpx: update to 1.4.0.488 (snapshot) Sync system libvpx with bundled libvpx in Firefox 40 in order to fix vulnerabilities in the former. While here fix other issues: - Add powerpc targets removed by upstream - Add sparc64 support [1] - Improve gcc42 workaround [2] - Strip binaries as reported by stage-qa - Drop unused -no-integrated-as hack for Clang Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.4.0..e67d45d ACC report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.4.0_to_1.4.0.488/compat_report.html PR: 202270 PR: 186394 [1] (based on) PR: 189136 [2] Exp-run by: antoine Approved by: ashish (maintainer) MFH: 2015Q3 Security: http://www.vuxml.org/freebsd/34e60332-2448-4ed6-93f0-12713749f250.html Added: head/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c (contents, props changed) Modified: head/multimedia/libvpx/Makefile head/multimedia/libvpx/distinfo head/multimedia/libvpx/files/patch-build_make_Makefile head/multimedia/libvpx/files/patch-build_make_configure.sh head/multimedia/libvpx/files/patch-configure Modified: head/multimedia/libvpx/Makefile ============================================================================== --- head/multimedia/libvpx/Makefile Fri Aug 14 16:34:30 2015 (r394230) +++ head/multimedia/libvpx/Makefile Fri Aug 14 16:35:26 2015 (r394231) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= libvpx -PORTVERSION= 1.4.0 +DISTVERSIONPREFIX= v +DISTVERSION= 1.4.0-488 # tracking www/firefox +DISTVERSIONSUFFIX= -ge67d45d CATEGORIES= multimedia -MASTER_SITES= DEBIAN -DISTNAME= ${PORTNAME}_${DISTVERSION}.orig MAINTAINER= ashish@FreeBSD.org COMMENT= VP8/VP9 Codec SDK @@ -15,7 +15,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= yasm:${PORTSDIR}/devel/yasm -USES= cpe gmake perl5 shebangfix tar:bzip2 +USE_GITHUB= yes +GH_ACCOUNT= webmproject + +USES= compiler cpe gmake perl5 shebangfix tar:bzip2 CPE_VENDOR= john_koleszar HAS_CONFIGURE= yes USE_PERL5= build @@ -28,7 +31,6 @@ POSTPROC_DESC= Enable postprocessing RUNTIME_DESC= Enable runtime CPU detection SHARED_DESC= Enable shared-library support -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} ALL_TARGET= CONFIGURE_ARGS+=--prefix=${PREFIX} \ --disable-install-docs \ @@ -51,18 +53,6 @@ SHEBANG_FILES= build/make/ads2gas.pl .include -.if ${OSVERSION} < 900000 -.if ${ARCH} == "amd64" -USE_GCC= yes -.endif -.endif - -# Workaround for GCC in 9.x post r260075 -# OSVERSION taken from r260135, the closest OSVERSION -.if ${OSVERSION} > 902505 && ${OSVERSION} < 1000000 -CFLAGS+= -flax-vector-conversions -.endif - .if ${OSVERSION} >= 1000000 CONFIGURE_ARGS+= --disable-unit-tests .endif @@ -77,6 +67,9 @@ CONFIGURE_ARGS+= --target=ia64-linux-gcc CONFIGURE_ARGS+= --target=ppc32-linux-gcc .elif ${ARCH} == "powerpc64" CONFIGURE_ARGS+= --target=ppc64-linux-gcc +.elif ${ARCH} == "sparc64" +CONFIGURE_ARGS+= --target=sparc64-linux-gcc +USES:= ${USES:Ncompiler*} compiler:c++11-lib .elif ${ARCH} == "armv6" CONFIGURE_ARGS+= --target=armv6-linux-gcc --cpu=armv6 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-build_make_Makefile @@ -84,8 +77,22 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- IGNORE= no support for ${ARCH} the moment. testing/patches are welcome .endif +.include + +# Workaround for GCC in 9.x post r260075 +# OSVERSION taken from r260135, the closest OSVERSION +.if ${OPSYS} == FreeBSD && ${OSVERSION} > 902505 +. if ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} == 42 +CFLAGS+= -flax-vector-conversions +. endif +.endif + post-patch: @${REINPLACE_CMD} 's|\(link_with_cc\)=gcc|\1=$${CC}|' \ ${WRKSRC}/build/make/configure.sh -.include +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vpx* + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvpx.so.*.*.* + +.include Modified: head/multimedia/libvpx/distinfo ============================================================================== --- head/multimedia/libvpx/distinfo Fri Aug 14 16:34:30 2015 (r394230) +++ head/multimedia/libvpx/distinfo Fri Aug 14 16:35:26 2015 (r394231) @@ -1,2 +1,2 @@ -SHA256 (libvpx_1.4.0.orig.tar.bz2) = f582d9b2d60a592a4a3d8c32965ca2d2167e9ade38c6c30bac8801ff66a118e4 -SIZE (libvpx_1.4.0.orig.tar.bz2) = 1807989 +SHA256 (webmproject-libvpx-v1.4.0-488-ge67d45d_GH0.tar.bz2) = 9ee182a81d866d92021e4cb11bc81cf0bee96d5bb53c2122eb4d3cc6b86b712b +SIZE (webmproject-libvpx-v1.4.0-488-ge67d45d_GH0.tar.bz2) = 2324228 Modified: head/multimedia/libvpx/files/patch-build_make_Makefile ============================================================================== --- head/multimedia/libvpx/files/patch-build_make_Makefile Fri Aug 14 16:34:30 2015 (r394230) +++ head/multimedia/libvpx/files/patch-build_make_Makefile Fri Aug 14 16:35:26 2015 (r394231) @@ -1,14 +1,5 @@ --- build/make/Makefile.orig +++ build/make/Makefile -@@ -158,7 +158,7 @@ - $(qexec)$(AS) $(ASFLAGS) -o $@ $< - - .PRECIOUS: %.c.S --%.c.S: CFLAGS += -DINLINE_ASM -+%.c.S: CFLAGS += -DINLINE_ASM $(CLANG_NO_IAS) - $(BUILD_PFX)%.c.S: %.c - $(if $(quiet),@echo " [GEN] $@") - $(qexec)$(CC) -S $(CFLAGS) -o $@ $< @@ -230,8 +230,8 @@ define install_map_template $(DIST_DIR)/$(1): $(2) Modified: head/multimedia/libvpx/files/patch-build_make_configure.sh ============================================================================== --- head/multimedia/libvpx/files/patch-build_make_configure.sh Fri Aug 14 16:34:30 2015 (r394230) +++ head/multimedia/libvpx/files/patch-build_make_configure.sh Fri Aug 14 16:35:26 2015 (r394231) @@ -1,13 +1,5 @@ --- build/make/configure.sh.orig 2015-04-03 18:49:19 UTC +++ build/make/configure.sh -@@ -379,6 +379,7 @@ write_common_config_banner() { - print_webm_license config.mk "##" "" - echo '# This file automatically generated by configure. Do not edit!' >> config.mk - echo "TOOLCHAIN := ${toolchain}" >> config.mk -+ echo "CLANG_NO_IAS=${CLANG_NO_IAS}" >> config.mk - - case ${toolchain} in - *-linux-rvct) @@ -831,7 +832,6 @@ process_common_toolchain() { case ${tgt_cc} in Modified: head/multimedia/libvpx/files/patch-configure ============================================================================== --- head/multimedia/libvpx/files/patch-configure Fri Aug 14 16:34:30 2015 (r394230) +++ head/multimedia/libvpx/files/patch-configure Fri Aug 14 16:35:26 2015 (r394231) @@ -1,14 +1,17 @@ --- configure.orig +++ configure -@@ -164,6 +164,7 @@ all_platforms="${all_platforms} universa - all_platforms="${all_platforms} universal-darwin12-gcc" - all_platforms="${all_platforms} universal-darwin13-gcc" - all_platforms="${all_platforms} universal-darwin14-gcc" +@@ -148,6 +148,10 @@ all_platforms="${all_platforms} x86_64-w + all_platforms="${all_platforms} x86_64-win64-vs10" + all_platforms="${all_platforms} x86_64-win64-vs11" + all_platforms="${all_platforms} x86_64-win64-vs12" +all_platforms="${all_platforms} ia64-linux-gcc" ++all_platforms="${all_platforms} ppc32-linux-gcc" ++all_platforms="${all_platforms} ppc64-linux-gcc" ++all_platforms="${all_platforms} sparc64-linux-gcc" all_platforms="${all_platforms} generic-gnu" # all_targets is a list of all targets that can be configured -@@ -611,15 +612,15 @@ +@@ -611,15 +612,14 @@ check_add_cflags -Wimplicit-function-declaration check_add_cflags -Wuninitialized check_add_cflags -Wunused-variable @@ -26,7 +29,6 @@ + # https://code.google.com/p/webm/issues/detail?id=603 + # work around them until they are fixed + check_add_cflags -fno-strict-aliasing -+ CLANG_NO_IAS=-no-integrated-as + else + check_add_cflags -Wunused-but-set-variable + fi Added: head/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c Fri Aug 14 16:35:26 2015 (r394231) @@ -0,0 +1,27 @@ +commit 33b3953c548a20c0aee705657df0440a740c28b7 +Author: James Zern +Date: Thu Jun 11 15:12:22 2015 -0700 + + vp9_filter: restore vp9_bilinear_filters alignment + + the declaration containing the alignment in vp9_filter.h was removed in: + eb88b17 Make vp9 subpixel match vp8 + + fixes a crash in 32-bit builds + + Change-Id: I9a97e6b4e8e94698e43ff79d0d8bb85043b73c61 + +diff --git a/vp9/common/vp9_filter.c b/vp9/common/vp9_filter.c +index afcdf22..b256d4a 100644 +--- vp9/common/vp9_filter.c ++++ vp9/common/vp9_filter.c +@@ -12,7 +12,8 @@ + + #include "vp9/common/vp9_filter.h" + +-const InterpKernel vp9_bilinear_filters[SUBPEL_SHIFTS] = { ++DECLARE_ALIGNED(256, const InterpKernel, ++ vp9_bilinear_filters[SUBPEL_SHIFTS]) = { + { 0, 0, 0, 128, 0, 0, 0, 0 }, + { 0, 0, 0, 120, 8, 0, 0, 0 }, + { 0, 0, 0, 112, 16, 0, 0, 0 }, From owner-svn-ports-all@freebsd.org Fri Aug 14 16:38:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 688579BAB47; Fri, 14 Aug 2015 16:38:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 593791C70; Fri, 14 Aug 2015 16:38:34 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGcY2E035040; Fri, 14 Aug 2015 16:38:34 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGcX83035039; Fri, 14 Aug 2015 16:38:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141638.t7EGcX83035039@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 16:38:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394232 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:38:34 -0000 Author: jbeich Date: Fri Aug 14 16:38:33 2015 New Revision: 394232 URL: https://svnweb.freebsd.org/changeset/ports/394232 Log: Sync libvpx check for CVE-2015-448[56] with r394231 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Aug 14 16:35:26 2015 (r394231) +++ head/security/vuxml/vuln.xml Fri Aug 14 16:38:33 2015 (r394232) @@ -424,7 +424,7 @@ Notes: libvpx - 1.5.0 + 1.4.0.488 firefox @@ -456,7 +456,7 @@ Notes: 2015-08-11 2015-08-11 - 2015-08-11 + 2015-08-14 From owner-svn-ports-all@freebsd.org Fri Aug 14 16:39:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 676F19BAB76; Fri, 14 Aug 2015 16:39:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B99A1D85; Fri, 14 Aug 2015 16:39:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGdZmI035332; Fri, 14 Aug 2015 16:39:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGdXsX035327; Fri, 14 Aug 2015 16:39:33 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141639.t7EGdXsX035327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 16:39:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394233 - in head: mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:39:35 -0000 Author: jbeich Date: Fri Aug 14 16:39:33 2015 New Revision: 394233 URL: https://svnweb.freebsd.org/changeset/ports/394233 Log: Back out r394012 after r394231 PR: 202270 Exp-run by: antoine MFH: 2015Q3 X-MFH-With: r394231 Modified: head/mail/thunderbird/Makefile head/www/firefox-esr/Makefile head/www/firefox/Makefile head/www/libxul/Makefile head/www/seamonkey/Makefile Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Fri Aug 14 16:38:33 2015 (r394232) +++ head/mail/thunderbird/Makefile Fri Aug 14 16:39:33 2015 (r394233) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -37,7 +37,7 @@ L_VERSION= 4.0.1 SSP_UNSAFE= yes USE_GECKO= gecko -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus USE_QT5= # empty QT_NONSTANDARD= yes Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Fri Aug 14 16:38:33 2015 (r394232) +++ head/www/firefox-esr/Makefile Fri Aug 14 16:39:33 2015 (r394233) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -36,7 +36,7 @@ USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= firefox-4[0-4].* firefox-3[02-9].* firefox-2[0-35-9].* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus MOZILLA_NAME= Firefox USE_QT5= # empty Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Fri Aug 14 16:38:33 2015 (r394232) +++ head/www/firefox/Makefile Fri Aug 14 16:39:33 2015 (r394233) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ @@ -20,13 +20,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -34,7 +34,7 @@ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/mult USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr-31.* firefox-esr-24.* firefox-esr-17.* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus MOZILLA_NAME= Firefox USE_QT5= # empty Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Fri Aug 14 16:38:33 2015 (r394232) +++ head/www/libxul/Makefile Fri Aug 14 16:39:33 2015 (r394233) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 38.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source @@ -19,13 +19,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -46,7 +46,7 @@ MOZ_OPTIONS?= --enable-application=xulru USE_GECKO= gecko CPE_PRODUCT= firefox_esr MOZILLA_EXEC_NAME=xulrunner -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus MOZILLA_PLIST_DIRS= bin include lib share/idl libdata MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-js \ mozilla-plugin Modified: head/www/seamonkey/Makefile ============================================================================== --- head/www/seamonkey/Makefile Fri Aug 14 16:38:33 2015 (r394232) +++ head/www/seamonkey/Makefile Fri Aug 14 16:39:33 2015 (r394233) @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.33.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.6:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.7.4:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -47,7 +47,7 @@ MOZ_EXTENSIONS= default MOZ_OPTIONS+= --program-transform-name='s/seamonkey/${MOZILLA}/' \ --enable-application=suite -USE_MOZILLA= -vpx +USE_MOZILLA= # empty MOZ_PKGCONFIG_FILES= NOT_FOR_ARCHS= ia64 From owner-svn-ports-all@freebsd.org Fri Aug 14 16:40:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14E659BABA5; Fri, 14 Aug 2015 16:40:00 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 058EB1EAD; Fri, 14 Aug 2015 16:40:00 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGdxVo035526; Fri, 14 Aug 2015 16:39:59 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGdx4d035522; Fri, 14 Aug 2015 16:39:59 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508141639.t7EGdx4d035522@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 14 Aug 2015 16:39:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394234 - head/security/gnutls X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:40:00 -0000 Author: feld Date: Fri Aug 14 16:39:58 2015 New Revision: 394234 URL: https://svnweb.freebsd.org/changeset/ports/394234 Log: - Update to 3.3.17.1 MFH: 2015Q3 Relnotes: http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/8268 Security: ec6a2a1e-429d-11e5-9daa-14dae9d210b8 Modified: head/security/gnutls/Makefile head/security/gnutls/distinfo head/security/gnutls/pkg-plist Modified: head/security/gnutls/Makefile ============================================================================== --- head/security/gnutls/Makefile Fri Aug 14 16:39:33 2015 (r394233) +++ head/security/gnutls/Makefile Fri Aug 14 16:39:58 2015 (r394234) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnutls -PORTVERSION= 3.3.16 +PORTVERSION= 3.3.17.1 CATEGORIES= security net MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R} Modified: head/security/gnutls/distinfo ============================================================================== --- head/security/gnutls/distinfo Fri Aug 14 16:39:33 2015 (r394233) +++ head/security/gnutls/distinfo Fri Aug 14 16:39:58 2015 (r394234) @@ -1,2 +1,2 @@ -SHA256 (gnutls-3.3.16.tar.xz) = 80a471c723572a43ddbe75d7825a3275f640650cc99eae42963ab39b9d0b7552 -SIZE (gnutls-3.3.16.tar.xz) = 6298460 +SHA256 (gnutls-3.3.17.1.tar.xz) = b40f158030a92f450a07b20300a3996710ca19800848d9f6fd62493170c5bbb4 +SIZE (gnutls-3.3.17.1.tar.xz) = 6339588 Modified: head/security/gnutls/pkg-plist ============================================================================== --- head/security/gnutls/pkg-plist Fri Aug 14 16:39:33 2015 (r394233) +++ head/security/gnutls/pkg-plist Fri Aug 14 16:39:58 2015 (r394234) @@ -42,7 +42,7 @@ lib/libgnutls-openssl.so.27 lib/libgnutls-openssl.so.27.0.2 lib/libgnutls.so lib/libgnutls.so.28 -lib/libgnutls.so.28.41.8 +lib/libgnutls.so.28.41.9 lib/libgnutlsxx.so lib/libgnutlsxx.so.28 lib/libgnutlsxx.so.28.1.0 From owner-svn-ports-all@freebsd.org Fri Aug 14 16:48:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A47689BAD8F; Fri, 14 Aug 2015 16:48:56 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B2761789; Fri, 14 Aug 2015 16:48:56 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGmuN1040338; Fri, 14 Aug 2015 16:48:56 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGmtv3040335; Fri, 14 Aug 2015 16:48:55 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508141648.t7EGmtv3040335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 14 Aug 2015 16:48:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394235 - branches/2015Q3/security/gnutls X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:48:56 -0000 Author: feld Date: Fri Aug 14 16:48:54 2015 New Revision: 394235 URL: https://svnweb.freebsd.org/changeset/ports/394235 Log: MFH: r394234 - Update to 3.3.17.1 Relnotes: http://permalink.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/8268 Security: ec6a2a1e-429d-11e5-9daa-14dae9d210b8 Approved by: ports-secteam (with hat) Modified: branches/2015Q3/security/gnutls/Makefile branches/2015Q3/security/gnutls/distinfo branches/2015Q3/security/gnutls/pkg-plist Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/security/gnutls/Makefile ============================================================================== --- branches/2015Q3/security/gnutls/Makefile Fri Aug 14 16:39:58 2015 (r394234) +++ branches/2015Q3/security/gnutls/Makefile Fri Aug 14 16:48:54 2015 (r394235) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnutls -PORTVERSION= 3.3.15 +PORTVERSION= 3.3.17.1 CATEGORIES= security net MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R} Modified: branches/2015Q3/security/gnutls/distinfo ============================================================================== --- branches/2015Q3/security/gnutls/distinfo Fri Aug 14 16:39:58 2015 (r394234) +++ branches/2015Q3/security/gnutls/distinfo Fri Aug 14 16:48:54 2015 (r394235) @@ -1,2 +1,2 @@ -SHA256 (gnutls-3.3.15.tar.xz) = 8961227852911a1974e15bc017ddbcd4779876c867226d199f06648d8b27ba4b -SIZE (gnutls-3.3.15.tar.xz) = 6286288 +SHA256 (gnutls-3.3.17.1.tar.xz) = b40f158030a92f450a07b20300a3996710ca19800848d9f6fd62493170c5bbb4 +SIZE (gnutls-3.3.17.1.tar.xz) = 6339588 Modified: branches/2015Q3/security/gnutls/pkg-plist ============================================================================== --- branches/2015Q3/security/gnutls/pkg-plist Fri Aug 14 16:39:58 2015 (r394234) +++ branches/2015Q3/security/gnutls/pkg-plist Fri Aug 14 16:48:54 2015 (r394235) @@ -42,7 +42,7 @@ lib/libgnutls-openssl.so.27 lib/libgnutls-openssl.so.27.0.2 lib/libgnutls.so lib/libgnutls.so.28 -lib/libgnutls.so.28.41.7 +lib/libgnutls.so.28.41.9 lib/libgnutlsxx.so lib/libgnutlsxx.so.28 lib/libgnutlsxx.so.28.1.0 From owner-svn-ports-all@freebsd.org Fri Aug 14 16:57:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDF7C9BAECE; Fri, 14 Aug 2015 16:57:56 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B457E1C2B; Fri, 14 Aug 2015 16:57:56 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGvuep045061; Fri, 14 Aug 2015 16:57:56 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGvun9045058; Fri, 14 Aug 2015 16:57:56 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508141657.t7EGvun9045058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 14 Aug 2015 16:57:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394236 - in head/ftp/vsftpd-ext: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:57:57 -0000 Author: junovitch Date: Fri Aug 14 16:57:55 2015 New Revision: 394236 URL: https://svnweb.freebsd.org/changeset/ports/394236 Log: ftp/vsftpd-ext: unbreak build on 9.x i386 and clean up port - Force clang on FreeBSD < 10.0 to resolve 9.x i386 build issues - Modernize USES with tar:tgz - Rely on USERS/GROUPS; remove pkg-install/pkg deinstall scripts - Remove direct chmod usage - Regen patch to pet portlint PR: 200791 Submitted by: Xu Jing (maintainer - original version) Approved by: delphij (mentor) MFH: 2015Q3 Deleted: head/ftp/vsftpd-ext/pkg-deinstall head/ftp/vsftpd-ext/pkg-install Modified: head/ftp/vsftpd-ext/Makefile head/ftp/vsftpd-ext/files/patch-utility Modified: head/ftp/vsftpd-ext/Makefile ============================================================================== --- head/ftp/vsftpd-ext/Makefile Fri Aug 14 16:48:54 2015 (r394235) +++ head/ftp/vsftpd-ext/Makefile Fri Aug 14 16:57:55 2015 (r394236) @@ -8,19 +8,16 @@ CATEGORIES= ftp ipv6 MASTER_SITES= http://vsftpd.devnet.ru/files/${UPSTREAMVERSION}/ext.${EXTVERSION}/ PKGNAMESUFFIX?= ${SSL_SUFFIX}${PKGNAMESUFFIX2} DISTNAME= vsFTPd-${UPSTREAMVERSION}-ext${EXTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= xjflyttp@gmail.com COMMENT= FTP daemon that aims to be "very secure". Extended build -BROKEN_FreeBSD_9_i386= does not link - LICENSE= GPLv2 UPSTREAMVERSION=3.0.2 EXTVERSION= 1 -USES= alias gmake +USES= alias gmake tar:tgz WRKSRC= ${WRKDIR}/vsFTPd-${UPSTREAMVERSION}-ext.${EXTVERSION} ALL_TARGET= vsftpd @@ -41,11 +38,12 @@ CONFLICTS= vsftpd-3* vsftpd${SSL_SUFFIX} .include -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 902001 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +.if exists(/usr/bin/clang) +CC= clang +.else BUILD_DEPENDS+= clang33:${PORTSDIR}/lang/clang33 CC= clang33 -.if ${ARCH} == i386 -BROKEN= does not build on 9.x i386 .endif .endif @@ -115,7 +113,6 @@ do-install: .for i in EXAMPLE SECURITY ${MKDIR} ${STAGEDIR}${DOCSDIR}/${i} ${CP} -p -R -L ${WRKSRC}/${i}/./ ${STAGEDIR}${DOCSDIR}/${i}/ - ${CHMOD} -R -L a+rX,go-w ${STAGEDIR}${DOCSDIR}/${i}/ .endfor .endif Modified: head/ftp/vsftpd-ext/files/patch-utility ============================================================================== --- head/ftp/vsftpd-ext/files/patch-utility Fri Aug 14 16:48:54 2015 (r394235) +++ head/ftp/vsftpd-ext/files/patch-utility Fri Aug 14 16:57:55 2015 (r394236) @@ -1,6 +1,6 @@ ---- utility.c.orig Fri Jul 2 18:26:30 2004 -+++ utility.c Mon Oct 10 01:19:02 2005 -@@ -33,6 +33,10 @@ +--- utility.c.orig 2012-10-26 20:05:38 UTC ++++ utility.c +@@ -40,6 +40,10 @@ die2(const char* p_text1, const char* p_ void bug(const char* p_text) { From owner-svn-ports-all@freebsd.org Fri Aug 14 16:58:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7F8A19BAEFB; Fri, 14 Aug 2015 16:58:13 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 55B021D26; Fri, 14 Aug 2015 16:58:13 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGwDMf045244; Fri, 14 Aug 2015 16:58:13 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGwCki045239; Fri, 14 Aug 2015 16:58:12 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508141658.t7EGwCki045239@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Fri, 14 Aug 2015 16:58:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394237 - head/ports-mgmt/freebsd-bugzilla-cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:58:13 -0000 Author: pgollucci Date: Fri Aug 14 16:58:12 2015 New Revision: 394237 URL: https://svnweb.freebsd.org/changeset/ports/394237 Log: ports-mgmt/freebsd-bugzilla-cli: update 0.10.8->0.12.0 Changes: -------- impliment bz show impliment bz attach [1] fix bz comment to do nothing when no changes are made in editor [2] do a better job of not orphaning temp files Reported by: jmg@ [1] [2] Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile head/ports-mgmt/freebsd-bugzilla-cli/distinfo head/ports-mgmt/freebsd-bugzilla-cli/pkg-plist Modified: head/ports-mgmt/freebsd-bugzilla-cli/Makefile ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/Makefile Fri Aug 14 16:57:55 2015 (r394236) +++ head/ports-mgmt/freebsd-bugzilla-cli/Makefile Fri Aug 14 16:58:12 2015 (r394237) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= freebsd-bugzilla-cli -PORTVERSION= 0.10.8 +PORTVERSION= 0.12.0 CATEGORIES= ports-mgmt MAINTAINER= pgollucci@FreeBSD.org Modified: head/ports-mgmt/freebsd-bugzilla-cli/distinfo ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/distinfo Fri Aug 14 16:57:55 2015 (r394236) +++ head/ports-mgmt/freebsd-bugzilla-cli/distinfo Fri Aug 14 16:58:12 2015 (r394237) @@ -1,2 +1,2 @@ -SHA256 (pgollucci-freebsd-bugzilla-cli-0.10.8_GH0.tar.gz) = 6f6b9ab174e64c604157329226861d6de5a82665be843879a563740329b891a9 -SIZE (pgollucci-freebsd-bugzilla-cli-0.10.8_GH0.tar.gz) = 13610 +SHA256 (pgollucci-freebsd-bugzilla-cli-0.12.0_GH0.tar.gz) = 022f55c4342164b9308b42f4d54d9f5aa4fd7ba04ad47d771723df0bb6070241 +SIZE (pgollucci-freebsd-bugzilla-cli-0.12.0_GH0.tar.gz) = 14148 Modified: head/ports-mgmt/freebsd-bugzilla-cli/pkg-plist ============================================================================== --- head/ports-mgmt/freebsd-bugzilla-cli/pkg-plist Fri Aug 14 16:57:55 2015 (r394236) +++ head/ports-mgmt/freebsd-bugzilla-cli/pkg-plist Fri Aug 14 16:58:12 2015 (r394237) @@ -1,5 +1,6 @@ %%DATADIR%%/_util.sh %%DATADIR%%/_version.sh +%%DATADIR%%/attach.sh %%DATADIR%%/close.sh %%DATADIR%%/comment.sh %%DATADIR%%/edit.sh @@ -11,6 +12,7 @@ %%DATADIR%%/overto.sh %%DATADIR%%/patch.sh %%DATADIR%%/search.sh +%%DATADIR%%/show.sh %%DATADIR%%/port_commit.sh %%DATADIR%%/port_submit.sh %%DATADIR%%/src_submit.sh From owner-svn-ports-all@freebsd.org Fri Aug 14 16:59:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C973E9BAF2A; Fri, 14 Aug 2015 16:59:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA1681E35; Fri, 14 Aug 2015 16:59:25 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EGxPKg045456; Fri, 14 Aug 2015 16:59:25 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EGxPeo045455; Fri, 14 Aug 2015 16:59:25 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141659.t7EGxPeo045455@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 16:59:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394238 - head/lang/fpc-utils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 16:59:25 -0000 Author: amdmi3 Date: Fri Aug 14 16:59:24 2015 New Revision: 394238 URL: https://svnweb.freebsd.org/changeset/ports/394238 Log: - Fix build by adding missing depends PR: 202214 Submitted by: andrey@bsdnir.info Approved by: portmgr blanket Modified: head/lang/fpc-utils/Makefile Modified: head/lang/fpc-utils/Makefile ============================================================================== --- head/lang/fpc-utils/Makefile Fri Aug 14 16:58:12 2015 (r394237) +++ head/lang/fpc-utils/Makefile Fri Aug 14 16:59:24 2015 (r394238) @@ -8,7 +8,7 @@ PKGNAMESUFFIX= -utils MAINTAINER= freebsd-fpc@FreeBSD.org COMMENT= Free Pascal Compiler utils -USE_FPC= chm fcl-base fcl-net fcl-passrc fcl-process fcl-res fppkg libcurl +USE_FPC= chm fcl-base fcl-net fcl-passrc fcl-process fcl-res fcl-xml fpmkunit fppkg libcurl paszlib MASTERDIR= ${.CURDIR}/../../lang/fpc WRKUNITDIR= ${FPCSRCDIR}/${PKGNAMESUFFIX:S/-//} From owner-svn-ports-all@freebsd.org Fri Aug 14 17:06:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6ED49B8099; Fri, 14 Aug 2015 17:06:49 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA9A3125D; Fri, 14 Aug 2015 17:06:49 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EH6n3C050128; Fri, 14 Aug 2015 17:06:49 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EH6nlS050123; Fri, 14 Aug 2015 17:06:49 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508141706.t7EH6nlS050123@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 14 Aug 2015 17:06:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394239 - in branches/2015Q3/ftp/vsftpd-ext: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 17:06:50 -0000 Author: junovitch Date: Fri Aug 14 17:06:48 2015 New Revision: 394239 URL: https://svnweb.freebsd.org/changeset/ports/394239 Log: MFH: r394236 ftp/vsftpd-ext: unbreak build on 9.x i386 and clean up port - Force clang on FreeBSD < 10.0 to resolve 9.x i386 build issues - Modernize USES with tar:tgz - Rely on USERS/GROUPS; remove pkg-install/pkg deinstall scripts - Remove direct chmod usage - Regen patch to pet portlint PR: 200791 Submitted by: Xu Jing (maintainer - original version) Approved by: ports-secteam (feld), delphij (mentor) Deleted: branches/2015Q3/ftp/vsftpd-ext/pkg-deinstall branches/2015Q3/ftp/vsftpd-ext/pkg-install Modified: branches/2015Q3/ftp/vsftpd-ext/Makefile branches/2015Q3/ftp/vsftpd-ext/files/patch-utility Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/ftp/vsftpd-ext/Makefile ============================================================================== --- branches/2015Q3/ftp/vsftpd-ext/Makefile Fri Aug 14 16:59:24 2015 (r394238) +++ branches/2015Q3/ftp/vsftpd-ext/Makefile Fri Aug 14 17:06:48 2015 (r394239) @@ -8,19 +8,16 @@ CATEGORIES= ftp ipv6 MASTER_SITES= http://vsftpd.devnet.ru/files/${UPSTREAMVERSION}/ext.${EXTVERSION}/ PKGNAMESUFFIX?= ${SSL_SUFFIX}${PKGNAMESUFFIX2} DISTNAME= vsFTPd-${UPSTREAMVERSION}-ext${EXTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= xjflyttp@gmail.com COMMENT= FTP daemon that aims to be "very secure". Extended build -BROKEN_FreeBSD_9_i386= does not link - LICENSE= GPLv2 UPSTREAMVERSION=3.0.2 EXTVERSION= 1 -USES= alias gmake +USES= alias gmake tar:tgz WRKSRC= ${WRKDIR}/vsFTPd-${UPSTREAMVERSION}-ext.${EXTVERSION} ALL_TARGET= vsftpd @@ -41,11 +38,12 @@ CONFLICTS= vsftpd-3* vsftpd${SSL_SUFFIX} .include -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 902001 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +.if exists(/usr/bin/clang) +CC= clang +.else BUILD_DEPENDS+= clang33:${PORTSDIR}/lang/clang33 CC= clang33 -.if ${ARCH} == i386 -BROKEN= does not build on 9.x i386 .endif .endif @@ -115,7 +113,6 @@ do-install: .for i in EXAMPLE SECURITY ${MKDIR} ${STAGEDIR}${DOCSDIR}/${i} ${CP} -p -R -L ${WRKSRC}/${i}/./ ${STAGEDIR}${DOCSDIR}/${i}/ - ${CHMOD} -R -L a+rX,go-w ${STAGEDIR}${DOCSDIR}/${i}/ .endfor .endif Modified: branches/2015Q3/ftp/vsftpd-ext/files/patch-utility ============================================================================== --- branches/2015Q3/ftp/vsftpd-ext/files/patch-utility Fri Aug 14 16:59:24 2015 (r394238) +++ branches/2015Q3/ftp/vsftpd-ext/files/patch-utility Fri Aug 14 17:06:48 2015 (r394239) @@ -1,6 +1,6 @@ ---- utility.c.orig Fri Jul 2 18:26:30 2004 -+++ utility.c Mon Oct 10 01:19:02 2005 -@@ -33,6 +33,10 @@ +--- utility.c.orig 2012-10-26 20:05:38 UTC ++++ utility.c +@@ -40,6 +40,10 @@ die2(const char* p_text1, const char* p_ void bug(const char* p_text) { From owner-svn-ports-all@freebsd.org Fri Aug 14 17:09:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 199509B8126; Fri, 14 Aug 2015 17:09:30 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E55B61695; Fri, 14 Aug 2015 17:09:29 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EH9TsR050564; Fri, 14 Aug 2015 17:09:29 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EH9Tsn050563; Fri, 14 Aug 2015 17:09:29 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201508141709.t7EH9Tsn050563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Fri, 14 Aug 2015 17:09:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394240 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 17:09:30 -0000 Author: junovitch Date: Fri Aug 14 17:09:29 2015 New Revision: 394240 URL: https://svnweb.freebsd.org/changeset/ports/394240 Log: Document MediaWiki multiple security vulnerabilities PR: 202328 Security: 6241b5df-42a1-11e5-93ad-002590263bf5 Approved by: feld (mentor) Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Aug 14 17:06:48 2015 (r394239) +++ head/security/vuxml/vuln.xml Fri Aug 14 17:09:29 2015 (r394240) @@ -58,6 +58,51 @@ Notes: --> + + mediawiki -- multiple vulnerabilities + + + mediawiki123 + 1.23.10 + + + mediawiki124 + 1.24.3 + + + mediawiki125 + 1.25.2 + + + + +

MediaWiki reports:

+
+

Internal review discovered that Special:DeletedContributions did + not properly protect the IP of autoblocked users. This fix makes + the functionality of Special:DeletedContributions consistent with + Special:Contributions and Special:BlockList.

+

Internal review discovered that watchlist anti-csrf tokens were not + being compared in constant time, which could allow various timing + attacks. This could allow an attacker to modify a user's watchlist + via csrf

+

John Menerick reported that MediaWiki's thumb.php failed to sanitize + various error messages, resulting in xss.

+
+ +
+ + https://lists.wikimedia.org/pipermail/mediawiki-announce/2015-August/000179.html + https://phabricator.wikimedia.org/T106893 + https://phabricator.wikimedia.org/T94116 + https://phabricator.wikimedia.org/T97391 + + + 2015-08-10 + 2015-08-14 + +
+ freeradius3 -- insufficient validation on packets From owner-svn-ports-all@freebsd.org Fri Aug 14 17:11:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 501909B8193; Fri, 14 Aug 2015 17:11:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2FBDA19F5; Fri, 14 Aug 2015 17:11:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EHBZ8h053554; Fri, 14 Aug 2015 17:11:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EHBYn9053549; Fri, 14 Aug 2015 17:11:34 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141711.t7EHBYn9053549@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 17:11:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394241 - in branches/2015Q3/security: ca_root_nss nss X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 17:11:35 -0000 Author: jbeich Date: Fri Aug 14 17:11:33 2015 New Revision: 394241 URL: https://svnweb.freebsd.org/changeset/ports/394241 Log: MFH: r394204, r394205 security/{,ca_root_}nss: update to 3.19.3 Changes: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.19.3_release_notes Approved by: portmgr (erwin) Modified: branches/2015Q3/security/ca_root_nss/Makefile branches/2015Q3/security/ca_root_nss/distinfo branches/2015Q3/security/nss/Makefile branches/2015Q3/security/nss/distinfo Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/security/ca_root_nss/Makefile ============================================================================== --- branches/2015Q3/security/ca_root_nss/Makefile Fri Aug 14 17:09:29 2015 (r394240) +++ branches/2015Q3/security/ca_root_nss/Makefile Fri Aug 14 17:11:33 2015 (r394241) @@ -32,8 +32,8 @@ PLIST_SUB+= CERTDIR=${CERTDIR} # !!! Please DO NOT submit patches for new version until it has !!! # !!! been committed there first. !!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -VERSION_NSS= 3.19.2 -#NSS_SUFFIX= .with.ckbi.1.98 +VERSION_NSS= 3.19.3 +#NSS_SUFFIX= -with-ckbi-1.98 CERTDATA_TXT_PATH= nss-${VERSION_NSS}/nss/lib/ckfw/builtins/certdata.txt BUNDLE_PROCESSOR= MAca-bundle.pl Modified: branches/2015Q3/security/ca_root_nss/distinfo ============================================================================== --- branches/2015Q3/security/ca_root_nss/distinfo Fri Aug 14 17:09:29 2015 (r394240) +++ branches/2015Q3/security/ca_root_nss/distinfo Fri Aug 14 17:11:33 2015 (r394241) @@ -1,2 +1,2 @@ -SHA256 (nss-3.19.2.tar.gz) = 1306663e8f61d8449ad8cbcffab743a604dcd9f6f34232c210847c51dce2c9ae -SIZE (nss-3.19.2.tar.gz) = 6953657 +SHA256 (nss-3.19.3.tar.gz) = c56bdad20736a8227afb3c97b25d6d2eb3982e979ddc9be1d66cb7199ae8ca8f +SIZE (nss-3.19.3.tar.gz) = 6949648 Modified: branches/2015Q3/security/nss/Makefile ============================================================================== --- branches/2015Q3/security/nss/Makefile Fri Aug 14 17:09:29 2015 (r394240) +++ branches/2015Q3/security/nss/Makefile Fri Aug 14 17:11:33 2015 (r394241) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= nss -PORTVERSION= 3.19.2 -#DISTVERSIONSUFFIX= .with.ckbi.1.93 +PORTVERSION= 3.19.3 +#DISTVERSIONSUFFIX= -with-ckbi-1.98 CATEGORIES= security MASTER_SITES= MOZILLA/security/${PORTNAME}/releases/${DISTNAME:tu:C/[-.]/_/g}_RTM/src Modified: branches/2015Q3/security/nss/distinfo ============================================================================== --- branches/2015Q3/security/nss/distinfo Fri Aug 14 17:09:29 2015 (r394240) +++ branches/2015Q3/security/nss/distinfo Fri Aug 14 17:11:33 2015 (r394241) @@ -1,2 +1,2 @@ -SHA256 (nss-3.19.2.tar.gz) = 1306663e8f61d8449ad8cbcffab743a604dcd9f6f34232c210847c51dce2c9ae -SIZE (nss-3.19.2.tar.gz) = 6953657 +SHA256 (nss-3.19.3.tar.gz) = c56bdad20736a8227afb3c97b25d6d2eb3982e979ddc9be1d66cb7199ae8ca8f +SIZE (nss-3.19.3.tar.gz) = 6949648 From owner-svn-ports-all@freebsd.org Fri Aug 14 17:27:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAC3F9B84E7; Fri, 14 Aug 2015 17:27:57 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A0F0106B; Fri, 14 Aug 2015 17:27:57 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EHRv7L060343; Fri, 14 Aug 2015 17:27:57 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EHRt0u060335; Fri, 14 Aug 2015 17:27:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141727.t7EHRt0u060335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 17:27:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394242 - in branches/2015Q3/multimedia/libvpx: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 17:27:57 -0000 Author: jbeich Date: Fri Aug 14 17:27:55 2015 New Revision: 394242 URL: https://svnweb.freebsd.org/changeset/ports/394242 Log: MFH: r394231 multimedia/libvpx: update to 1.4.0.488 (snapshot) Sync system libvpx with bundled libvpx in Firefox 40 in order to fix vulnerabilities in the former. While here fix other issues: - Add powerpc targets removed by upstream - Add sparc64 support [1] - Improve gcc42 workaround [2] - Strip binaries as reported by stage-qa - Drop unused -no-integrated-as hack for Clang Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.4.0..e67d45d ACC report: https://people.freebsd.org/~jbeich/compat_reports/libvpx/1.4.0_to_1.4.0.488/compat_report.html PR: 202270 PR: 186394 [1] (based on) PR: 189136 [2] Exp-run by: antoine Approved by: ashish (maintainer) Approved by: ports-secteam (delphij) Security: http://www.vuxml.org/freebsd/34e60332-2448-4ed6-93f0-12713749f250.html Added: branches/2015Q3/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c - copied unchanged from r394231, head/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c Modified: branches/2015Q3/multimedia/libvpx/Makefile branches/2015Q3/multimedia/libvpx/distinfo branches/2015Q3/multimedia/libvpx/files/patch-build_make_Makefile branches/2015Q3/multimedia/libvpx/files/patch-build_make_configure.sh branches/2015Q3/multimedia/libvpx/files/patch-configure Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/multimedia/libvpx/Makefile ============================================================================== --- branches/2015Q3/multimedia/libvpx/Makefile Fri Aug 14 17:11:33 2015 (r394241) +++ branches/2015Q3/multimedia/libvpx/Makefile Fri Aug 14 17:27:55 2015 (r394242) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= libvpx -PORTVERSION= 1.4.0 +DISTVERSIONPREFIX= v +DISTVERSION= 1.4.0-488 # tracking www/firefox +DISTVERSIONSUFFIX= -ge67d45d CATEGORIES= multimedia -MASTER_SITES= DEBIAN -DISTNAME= ${PORTNAME}_${DISTVERSION}.orig MAINTAINER= ashish@FreeBSD.org COMMENT= VP8/VP9 Codec SDK @@ -15,7 +15,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= yasm:${PORTSDIR}/devel/yasm -USES= cpe gmake perl5 shebangfix tar:bzip2 +USE_GITHUB= yes +GH_ACCOUNT= webmproject + +USES= compiler cpe gmake perl5 shebangfix tar:bzip2 CPE_VENDOR= john_koleszar HAS_CONFIGURE= yes USE_PERL5= build @@ -28,7 +31,6 @@ POSTPROC_DESC= Enable postprocessing RUNTIME_DESC= Enable runtime CPU detection SHARED_DESC= Enable shared-library support -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} ALL_TARGET= CONFIGURE_ARGS+=--prefix=${PREFIX} \ --disable-install-docs \ @@ -51,18 +53,6 @@ SHEBANG_FILES= build/make/ads2gas.pl .include -.if ${OSVERSION} < 900000 -.if ${ARCH} == "amd64" -USE_GCC= yes -.endif -.endif - -# Workaround for GCC in 9.x post r260075 -# OSVERSION taken from r260135, the closest OSVERSION -.if ${OSVERSION} > 902505 && ${OSVERSION} < 1000000 -CFLAGS+= -flax-vector-conversions -.endif - .if ${OSVERSION} >= 1000000 CONFIGURE_ARGS+= --disable-unit-tests .endif @@ -77,6 +67,9 @@ CONFIGURE_ARGS+= --target=ia64-linux-gcc CONFIGURE_ARGS+= --target=ppc32-linux-gcc .elif ${ARCH} == "powerpc64" CONFIGURE_ARGS+= --target=ppc64-linux-gcc +.elif ${ARCH} == "sparc64" +CONFIGURE_ARGS+= --target=sparc64-linux-gcc +USES:= ${USES:Ncompiler*} compiler:c++11-lib .elif ${ARCH} == "armv6" CONFIGURE_ARGS+= --target=armv6-linux-gcc --cpu=armv6 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-build_make_Makefile @@ -84,8 +77,22 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch- IGNORE= no support for ${ARCH} the moment. testing/patches are welcome .endif +.include + +# Workaround for GCC in 9.x post r260075 +# OSVERSION taken from r260135, the closest OSVERSION +.if ${OPSYS} == FreeBSD && ${OSVERSION} > 902505 +. if ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} == 42 +CFLAGS+= -flax-vector-conversions +. endif +.endif + post-patch: @${REINPLACE_CMD} 's|\(link_with_cc\)=gcc|\1=$${CC}|' \ ${WRKSRC}/build/make/configure.sh -.include +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vpx* + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvpx.so.*.*.* + +.include Modified: branches/2015Q3/multimedia/libvpx/distinfo ============================================================================== --- branches/2015Q3/multimedia/libvpx/distinfo Fri Aug 14 17:11:33 2015 (r394241) +++ branches/2015Q3/multimedia/libvpx/distinfo Fri Aug 14 17:27:55 2015 (r394242) @@ -1,2 +1,2 @@ -SHA256 (libvpx_1.4.0.orig.tar.bz2) = f582d9b2d60a592a4a3d8c32965ca2d2167e9ade38c6c30bac8801ff66a118e4 -SIZE (libvpx_1.4.0.orig.tar.bz2) = 1807989 +SHA256 (webmproject-libvpx-v1.4.0-488-ge67d45d_GH0.tar.bz2) = 9ee182a81d866d92021e4cb11bc81cf0bee96d5bb53c2122eb4d3cc6b86b712b +SIZE (webmproject-libvpx-v1.4.0-488-ge67d45d_GH0.tar.bz2) = 2324228 Modified: branches/2015Q3/multimedia/libvpx/files/patch-build_make_Makefile ============================================================================== --- branches/2015Q3/multimedia/libvpx/files/patch-build_make_Makefile Fri Aug 14 17:11:33 2015 (r394241) +++ branches/2015Q3/multimedia/libvpx/files/patch-build_make_Makefile Fri Aug 14 17:27:55 2015 (r394242) @@ -1,14 +1,5 @@ --- build/make/Makefile.orig +++ build/make/Makefile -@@ -158,7 +158,7 @@ - $(qexec)$(AS) $(ASFLAGS) -o $@ $< - - .PRECIOUS: %.c.S --%.c.S: CFLAGS += -DINLINE_ASM -+%.c.S: CFLAGS += -DINLINE_ASM $(CLANG_NO_IAS) - $(BUILD_PFX)%.c.S: %.c - $(if $(quiet),@echo " [GEN] $@") - $(qexec)$(CC) -S $(CFLAGS) -o $@ $< @@ -230,8 +230,8 @@ define install_map_template $(DIST_DIR)/$(1): $(2) Modified: branches/2015Q3/multimedia/libvpx/files/patch-build_make_configure.sh ============================================================================== --- branches/2015Q3/multimedia/libvpx/files/patch-build_make_configure.sh Fri Aug 14 17:11:33 2015 (r394241) +++ branches/2015Q3/multimedia/libvpx/files/patch-build_make_configure.sh Fri Aug 14 17:27:55 2015 (r394242) @@ -1,13 +1,5 @@ --- build/make/configure.sh.orig 2015-04-03 18:49:19 UTC +++ build/make/configure.sh -@@ -379,6 +379,7 @@ write_common_config_banner() { - print_webm_license config.mk "##" "" - echo '# This file automatically generated by configure. Do not edit!' >> config.mk - echo "TOOLCHAIN := ${toolchain}" >> config.mk -+ echo "CLANG_NO_IAS=${CLANG_NO_IAS}" >> config.mk - - case ${toolchain} in - *-linux-rvct) @@ -831,7 +832,6 @@ process_common_toolchain() { case ${tgt_cc} in Modified: branches/2015Q3/multimedia/libvpx/files/patch-configure ============================================================================== --- branches/2015Q3/multimedia/libvpx/files/patch-configure Fri Aug 14 17:11:33 2015 (r394241) +++ branches/2015Q3/multimedia/libvpx/files/patch-configure Fri Aug 14 17:27:55 2015 (r394242) @@ -1,14 +1,17 @@ --- configure.orig +++ configure -@@ -164,6 +164,7 @@ all_platforms="${all_platforms} universa - all_platforms="${all_platforms} universal-darwin12-gcc" - all_platforms="${all_platforms} universal-darwin13-gcc" - all_platforms="${all_platforms} universal-darwin14-gcc" +@@ -148,6 +148,10 @@ all_platforms="${all_platforms} x86_64-w + all_platforms="${all_platforms} x86_64-win64-vs10" + all_platforms="${all_platforms} x86_64-win64-vs11" + all_platforms="${all_platforms} x86_64-win64-vs12" +all_platforms="${all_platforms} ia64-linux-gcc" ++all_platforms="${all_platforms} ppc32-linux-gcc" ++all_platforms="${all_platforms} ppc64-linux-gcc" ++all_platforms="${all_platforms} sparc64-linux-gcc" all_platforms="${all_platforms} generic-gnu" # all_targets is a list of all targets that can be configured -@@ -611,15 +612,15 @@ +@@ -611,15 +612,14 @@ check_add_cflags -Wimplicit-function-declaration check_add_cflags -Wuninitialized check_add_cflags -Wunused-variable @@ -26,7 +29,6 @@ + # https://code.google.com/p/webm/issues/detail?id=603 + # work around them until they are fixed + check_add_cflags -fno-strict-aliasing -+ CLANG_NO_IAS=-no-integrated-as + else + check_add_cflags -Wunused-but-set-variable + fi Copied: branches/2015Q3/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c (from r394231, head/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q3/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c Fri Aug 14 17:27:55 2015 (r394242, copy of r394231, head/multimedia/libvpx/files/patch-vp9_common_vp9__filter.c) @@ -0,0 +1,27 @@ +commit 33b3953c548a20c0aee705657df0440a740c28b7 +Author: James Zern +Date: Thu Jun 11 15:12:22 2015 -0700 + + vp9_filter: restore vp9_bilinear_filters alignment + + the declaration containing the alignment in vp9_filter.h was removed in: + eb88b17 Make vp9 subpixel match vp8 + + fixes a crash in 32-bit builds + + Change-Id: I9a97e6b4e8e94698e43ff79d0d8bb85043b73c61 + +diff --git a/vp9/common/vp9_filter.c b/vp9/common/vp9_filter.c +index afcdf22..b256d4a 100644 +--- vp9/common/vp9_filter.c ++++ vp9/common/vp9_filter.c +@@ -12,7 +12,8 @@ + + #include "vp9/common/vp9_filter.h" + +-const InterpKernel vp9_bilinear_filters[SUBPEL_SHIFTS] = { ++DECLARE_ALIGNED(256, const InterpKernel, ++ vp9_bilinear_filters[SUBPEL_SHIFTS]) = { + { 0, 0, 0, 128, 0, 0, 0, 0 }, + { 0, 0, 0, 120, 8, 0, 0, 0 }, + { 0, 0, 0, 112, 16, 0, 0, 0 }, From owner-svn-ports-all@freebsd.org Fri Aug 14 17:30:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 190FF9B856D; Fri, 14 Aug 2015 17:30:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F17461277; Fri, 14 Aug 2015 17:30:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EHUTI3063323; Fri, 14 Aug 2015 17:30:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EHUSeQ063165; Fri, 14 Aug 2015 17:30:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508141730.t7EHUSeQ063165@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 14 Aug 2015 17:30:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394243 - in branches/2015Q3: mail/thunderbird www/firefox www/firefox-esr www/libxul www/seamonkey X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 17:30:30 -0000 Author: jbeich Date: Fri Aug 14 17:30:28 2015 New Revision: 394243 URL: https://svnweb.freebsd.org/changeset/ports/394243 Log: MFH: r394233 Back out r394012 after r394231 (use system libvpx again) PR: 202270 Exp-run by: antoine Approved by: ports-secteam (delphij) Modified: branches/2015Q3/mail/thunderbird/Makefile branches/2015Q3/www/firefox-esr/Makefile branches/2015Q3/www/firefox/Makefile branches/2015Q3/www/libxul/Makefile branches/2015Q3/www/seamonkey/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/mail/thunderbird/Makefile ============================================================================== --- branches/2015Q3/mail/thunderbird/Makefile Fri Aug 14 17:27:55 2015 (r394242) +++ branches/2015Q3/mail/thunderbird/Makefile Fri Aug 14 17:30:28 2015 (r394243) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 38.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -37,7 +37,7 @@ L_VERSION= 4.0.1 SSP_UNSAFE= yes USE_GECKO= gecko -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus USE_QT5= # empty QT_NONSTANDARD= yes Modified: branches/2015Q3/www/firefox-esr/Makefile ============================================================================== --- branches/2015Q3/www/firefox-esr/Makefile Fri Aug 14 17:27:55 2015 (r394242) +++ branches/2015Q3/www/firefox-esr/Makefile Fri Aug 14 17:30:28 2015 (r394243) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 38.2.0 DISTVERSIONSUFFIX=esr.source -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -36,7 +36,7 @@ USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= firefox-4[0-4].* firefox-3[02-9].* firefox-2[0-35-9].* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus MOZILLA_NAME= Firefox USE_QT5= # empty Modified: branches/2015Q3/www/firefox/Makefile ============================================================================== --- branches/2015Q3/www/firefox/Makefile Fri Aug 14 17:27:55 2015 (r394242) +++ branches/2015Q3/www/firefox/Makefile Fri Aug 14 17:30:28 2015 (r394243) @@ -4,7 +4,7 @@ PORTNAME= firefox DISTVERSION= 40.0 DISTVERSIONSUFFIX=.source -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ @@ -20,13 +20,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -34,7 +34,7 @@ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/mult USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr-31.* firefox-esr-24.* firefox-esr-17.* MOZ_PKGCONFIG_FILES= # empty -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus MOZILLA_NAME= Firefox USE_QT5= # empty Modified: branches/2015Q3/www/libxul/Makefile ============================================================================== --- branches/2015Q3/www/libxul/Makefile Fri Aug 14 17:27:55 2015 (r394242) +++ branches/2015Q3/www/libxul/Makefile Fri Aug 14 17:30:28 2015 (r394243) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 38.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build2/source @@ -19,13 +19,13 @@ BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.9:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ # opus>=1.1:${PORTSDIR}/audio/opus \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -46,7 +46,7 @@ MOZ_OPTIONS?= --enable-application=xulru USE_GECKO= gecko CPE_PRODUCT= firefox_esr MOZILLA_EXEC_NAME=xulrunner -USE_MOZILLA= -opus -vpx +USE_MOZILLA= -opus MOZILLA_PLIST_DIRS= bin include lib share/idl libdata MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-js \ mozilla-plugin Modified: branches/2015Q3/www/seamonkey/Makefile ============================================================================== --- branches/2015Q3/www/seamonkey/Makefile Fri Aug 14 17:27:55 2015 (r394242) +++ branches/2015Q3/www/seamonkey/Makefile Fri Aug 14 17:30:28 2015 (r394243) @@ -3,7 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.33.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source @@ -21,13 +21,13 @@ BUILD_DEPENDS= nspr>=4.10.6:${PORTSDIR}/ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ libvorbis>=1.3.5:${PORTSDIR}/audio/libvorbis \ opus>=1.1:${PORTSDIR}/audio/opus \ + libvpx>=1.3.0:${PORTSDIR}/multimedia/libvpx \ sqlite3>=3.8.7.4:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ v4l_compat>0:${PORTSDIR}/multimedia/v4l_compat \ autoconf-2.13:${PORTSDIR}/devel/autoconf213 \ zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip -# libvpx>=1.5.0:${PORTSDIR}/multimedia/libvpx \ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l @@ -47,7 +47,7 @@ MOZ_EXTENSIONS= default MOZ_OPTIONS+= --program-transform-name='s/seamonkey/${MOZILLA}/' \ --enable-application=suite -USE_MOZILLA= -vpx +USE_MOZILLA= # empty MOZ_PKGCONFIG_FILES= NOT_FOR_ARCHS= ia64 From owner-svn-ports-all@freebsd.org Fri Aug 14 17:41:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BAC29B89C4; Fri, 14 Aug 2015 17:41:04 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: from mail-qk0-x22a.google.com (mail-qk0-x22a.google.com [IPv6:2607:f8b0:400d:c09::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 058B51D43; Fri, 14 Aug 2015 17:41:04 +0000 (UTC) (envelope-from jason.unovitch@gmail.com) Received: by qkcs67 with SMTP id s67so27949911qkc.1; Fri, 14 Aug 2015 10:41:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=7Z2Q/E0NTSWIwVyxv0yWjdw1I0fkowHmdKvBV1uXhm0=; b=L96yh/oyJ7tvPKgi+M1k64QrPkfR9xWb1MkAkVdFCxPENfi8q5nabOb52RkcOyIkZb jmGIMUMKWfxlGvDlS+RrI2JvDQgcZ5QEk+5Qf+DxLiUL5DprMqkR7c7PSUhbvscpriyV /uUB2FQ1rKShBENvduU6kTYPeA0vm1v9n5fFDITsFVV2kEGGKsh0NfWtpHVAlW4ot4rX uSPKpazsVSHX9BHV1ZRuUaYmM48WjUi3f7gbuibIKe1kwBvbTquFWUhl3I+ztNemgMbM l5S1EEK2kqcpwfiZVg3wVOeXzV2U1H0BYWBxUyJ/hRnQzsCsTWdxU64z3qreSBgkDZrV I6rw== X-Received: by 10.55.31.213 with SMTP id n82mr79208298qkh.102.1439574063171; Fri, 14 Aug 2015 10:41:03 -0700 (PDT) Received: from Silverstone.nc-us.unovitch.com ([2606:a000:568e:d402:be5f:f4ff:fe5d:f28]) by smtp.gmail.com with ESMTPSA id m62sm3360032qhb.45.2015.08.14.10.41.02 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 14 Aug 2015 10:41:02 -0700 (PDT) Date: Fri, 14 Aug 2015 13:41:00 -0400 From: Jason Unovitch To: Mark Felder Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r394234 - head/security/gnutls Message-ID: <20150814174100.GA25051@Silverstone.nc-us.unovitch.com> Reply-To: junovitch@FreeBSD.org References: <201508141639.t7EGdx4d035522@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201508141639.t7EGdx4d035522@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 17:41:04 -0000 On Fri, Aug 14, 2015 at 04:39:59PM +0000, Mark Felder wrote: > Modified: head/security/gnutls/distinfo > ============================================================================== > --- head/security/gnutls/distinfo Fri Aug 14 16:39:33 2015 (r394233) > +++ head/security/gnutls/distinfo Fri Aug 14 16:39:58 2015 (r394234) > @@ -1,2 +1,2 @@ > -SHA256 (gnutls-3.3.16.tar.xz) = 80a471c723572a43ddbe75d7825a3275f640650cc99eae42963ab39b9d0b7552 > -SIZE (gnutls-3.3.16.tar.xz) = 6298460 > +SHA256 (gnutls-3.3.17.1.tar.xz) = b40f158030a92f450a07b20300a3996710ca19800848d9f6fd62493170c5bbb4 > +SIZE (gnutls-3.3.17.1.tar.xz) = 6339588 That's the most recent release on ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/ but a make fetch is failing on all the mirrors we are using. Should we add the main gnutls.org site as a MASTER_SITE? From owner-svn-ports-all@freebsd.org Fri Aug 14 17:41:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63FB89B8A0C; Fri, 14 Aug 2015 17:41:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5461C1E87; Fri, 14 Aug 2015 17:41:40 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EHfeKh069384; Fri, 14 Aug 2015 17:41:40 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EHfd0p069382; Fri, 14 Aug 2015 17:41:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141741.t7EHfd0p069382@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 17:41:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394244 - head/sysutils/hal-info X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 17:41:40 -0000 Author: amdmi3 Date: Fri Aug 14 17:41:39 2015 New Revision: 394244 URL: https://svnweb.freebsd.org/changeset/ports/394244 Log: - Add empty directories to plist - Add NO_ARCH Approved by: portmgr blanket Modified: head/sysutils/hal-info/Makefile head/sysutils/hal-info/pkg-plist Modified: head/sysutils/hal-info/Makefile ============================================================================== --- head/sysutils/hal-info/Makefile Fri Aug 14 17:30:28 2015 (r394243) +++ head/sysutils/hal-info/Makefile Fri Aug 14 17:41:39 2015 (r394244) @@ -15,8 +15,9 @@ LIB_PC_DEPENDS= hal.pc:${PORTSDIR}/sysut BUILD_DEPENDS+= ${LIB_PC_DEPENDS:C|^|${LOCALBASE}/libdata/pkgconfig/|g} RUN_DEPENDS+= ${LIB_PC_DEPENDS:C|^|${LOCALBASE}/libdata/pkgconfig/|g} -USES= gmake +USES= gmake GNU_CONFIGURE= yes +NO_ARCH= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/sysutils/hal-info/pkg-plist ============================================================================== --- head/sysutils/hal-info/pkg-plist Fri Aug 14 17:30:28 2015 (r394243) +++ head/sysutils/hal-info/pkg-plist Fri Aug 14 17:41:39 2015 (r394244) @@ -47,3 +47,5 @@ share/hal/fdi/information/10freedesktop/ share/hal/fdi/information/10freedesktop/99-video-quirk-default.fdi share/hal/fdi/preprobe/10osvendor/10-ide-drives.fdi share/hal/fdi/preprobe/10osvendor/20-broken-usb-sticks.fdi +@dir share/hal/fdi/preprobe/20thirdparty +@dir share/hal/fdi/information/20thirdparty From owner-svn-ports-all@freebsd.org Fri Aug 14 18:13:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 315959B90CD; Fri, 14 Aug 2015 18:13:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21BCC1FD7; Fri, 14 Aug 2015 18:13:04 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EID4FK083752; Fri, 14 Aug 2015 18:13:04 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EID3JP083751; Fri, 14 Aug 2015 18:13:04 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141813.t7EID3JP083751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 18:13:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394245 - head/editors/lazarus-lcl-gtk2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 18:13:04 -0000 Author: amdmi3 Date: Fri Aug 14 18:13:03 2015 New Revision: 394245 URL: https://svnweb.freebsd.org/changeset/ports/394245 Log: - Fix build by adding missing depend PR: 202214 Submitted by: andrey@bsdnir.info Approved by: portmgr blanket Modified: head/editors/lazarus-lcl-gtk2/Makefile Modified: head/editors/lazarus-lcl-gtk2/Makefile ============================================================================== --- head/editors/lazarus-lcl-gtk2/Makefile Fri Aug 14 17:41:39 2015 (r394244) +++ head/editors/lazarus-lcl-gtk2/Makefile Fri Aug 14 18:13:03 2015 (r394245) @@ -8,7 +8,7 @@ COMMENT= Lazarus components library - GT BUILD_DEPENDS= ${LCL_UNITS_DIR}/alllclunits.ppu:${PORTSDIR}/editors/lazarus-lcl-units -USE_FPC= x11 gtk2 +USE_FPC= cairo gtk2 x11 USE_FPC_RUN= yes LCL_INTERFACE= gtk2 From owner-svn-ports-all@freebsd.org Fri Aug 14 18:30:55 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5575B9B93F0; Fri, 14 Aug 2015 18:30:55 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 461561D56; Fri, 14 Aug 2015 18:30:55 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EIUt5i090531; Fri, 14 Aug 2015 18:30:55 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EIUtBX090513; Fri, 14 Aug 2015 18:30:55 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201508141830.t7EIUtBX090513@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Fri, 14 Aug 2015 18:30:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394246 - head/audio/mous X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 18:30:55 -0000 Author: sbruno Date: Fri Aug 14 18:30:54 2015 New Revision: 394246 URL: https://svnweb.freebsd.org/changeset/ports/394246 Log: Move ASSEMBLY to an i386/amd64 only OPTION_DEFAULT PR: 201598 Reviewed by: shen.elf@gmail.com (maintainer) Modified: head/audio/mous/Makefile Modified: head/audio/mous/Makefile ============================================================================== --- head/audio/mous/Makefile Fri Aug 14 18:13:03 2015 (r394245) +++ head/audio/mous/Makefile Fri Aug 14 18:30:54 2015 (r394246) @@ -18,9 +18,12 @@ USES= cmake OPTIONS_DEFINE= ALSA ASSEMBLY FAAC FAAD FLAC LAME AO CUE MAC4DECODER \ MACDECODER MPG123 NCURSES OSS QT4 SDK TAGLIB VORBIS \ WAVDECODER WAVENCODER WMA -OPTIONS_DEFAULT= ASSEMBLY FAAC FAAD FLAC LAME CUE MAC4DECODER \ +OPTIONS_DEFAULT= FAAC FAAD FLAC LAME CUE MAC4DECODER \ MPG123 NCURSES OSS QT4 TAGLIB VORBIS WAVDECODER \ WAVENCODER WMA +OPTIONS_DEFAULT_amd64= ASSEMBLY +OPTIONS_DEFAULT_i386= ASSEMBLY + OPTIONS_SUB= yes ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib From owner-svn-ports-all@freebsd.org Fri Aug 14 18:35:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65B209B9519; Fri, 14 Aug 2015 18:35:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5628110C7; Fri, 14 Aug 2015 18:35:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EIZD5Q093673; Fri, 14 Aug 2015 18:35:13 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EIZD2i093672; Fri, 14 Aug 2015 18:35:13 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508141835.t7EIZD2i093672@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 14 Aug 2015 18:35:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394247 - head/editors/lazarus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 18:35:13 -0000 Author: amdmi3 Date: Fri Aug 14 18:35:12 2015 New Revision: 394247 URL: https://svnweb.freebsd.org/changeset/ports/394247 Log: - Fix build by adding missing depend PR: 200808 Submitted by: andrey@bsdnir.info Approved by: portmgr blanket Modified: head/editors/lazarus/Makefile Modified: head/editors/lazarus/Makefile ============================================================================== --- head/editors/lazarus/Makefile Fri Aug 14 18:30:54 2015 (r394246) +++ head/editors/lazarus/Makefile Fri Aug 14 18:35:12 2015 (r394247) @@ -61,7 +61,8 @@ RUN_DEPENDS+= fpcres:${PORTSDIR}/lang/fp ${LCL_UNITS_DIR}/alllclunits.ppu:${PORTSDIR}/editors/lazarus-lcl-units \ ${LCL_UNITS_DIR}/nogui/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-nogui -USES+= gettext iconv +USES+= gettext iconv +USE_FPC+= chm MAN1S= lazarus-ide.1 lazbuild.1 startlazarus.1 SUB_FILES= pkg-message From owner-svn-ports-all@freebsd.org Fri Aug 14 18:47:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B83B69B9724; Fri, 14 Aug 2015 18:47:48 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A88A01946; Fri, 14 Aug 2015 18:47:48 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EIlmno098848; Fri, 14 Aug 2015 18:47:48 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EIlmce098846; Fri, 14 Aug 2015 18:47:48 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508141847.t7EIlmce098846@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Fri, 14 Aug 2015 18:47:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394248 - head/devel/py-weblib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 18:47:48 -0000 Author: rm Date: Fri Aug 14 18:47:47 2015 New Revision: 394248 URL: https://svnweb.freebsd.org/changeset/ports/394248 Log: devel/py-weblib: update to 0.1.15 Modified: head/devel/py-weblib/Makefile head/devel/py-weblib/distinfo Modified: head/devel/py-weblib/Makefile ============================================================================== --- head/devel/py-weblib/Makefile Fri Aug 14 18:35:12 2015 (r394247) +++ head/devel/py-weblib/Makefile Fri Aug 14 18:47:47 2015 (r394248) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= weblib -PORTVERSION= 0.1.14 +PORTVERSION= 0.1.15 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,7 +19,4 @@ NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils -post-extract: - ${RM} -rf ${WRKSRC}/test - .include Modified: head/devel/py-weblib/distinfo ============================================================================== --- head/devel/py-weblib/distinfo Fri Aug 14 18:35:12 2015 (r394247) +++ head/devel/py-weblib/distinfo Fri Aug 14 18:47:47 2015 (r394248) @@ -1,2 +1,2 @@ -SHA256 (weblib-0.1.14.tar.gz) = f9602ce66a6c5e010509d515a57b55d8c9d1eda8c4cbf5544a9ae11382618d8a -SIZE (weblib-0.1.14.tar.gz) = 36292 +SHA256 (weblib-0.1.15.tar.gz) = f62e84fe1b378274ff06e518f42bc79c53182ab00581b891482f301e7206a86c +SIZE (weblib-0.1.15.tar.gz) = 38746 From owner-svn-ports-all@freebsd.org Fri Aug 14 18:48:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B64F9B9744; Fri, 14 Aug 2015 18:48:24 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BE041A2B; Fri, 14 Aug 2015 18:48:24 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EImOqx099034; Fri, 14 Aug 2015 18:48:24 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EImNnX099030; Fri, 14 Aug 2015 18:48:23 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508141848.t7EImNnX099030@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Fri, 14 Aug 2015 18:48:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394249 - in head/devel/py-selection: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 18:48:24 -0000 Author: rm Date: Fri Aug 14 18:48:23 2015 New Revision: 394249 URL: https://svnweb.freebsd.org/changeset/ports/394249 Log: devel/py-selection: update to 0.0.10 Deleted: head/devel/py-selection/files/ Modified: head/devel/py-selection/Makefile head/devel/py-selection/distinfo Modified: head/devel/py-selection/Makefile ============================================================================== --- head/devel/py-selection/Makefile Fri Aug 14 18:47:47 2015 (r394248) +++ head/devel/py-selection/Makefile Fri Aug 14 18:48:23 2015 (r394249) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= selection -PORTVERSION= 0.0.9 +PORTVERSION= 0.0.10 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,7 +19,4 @@ NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils -post-extract: - ${RM} -rf ${WRKSRC}/test - .include Modified: head/devel/py-selection/distinfo ============================================================================== --- head/devel/py-selection/distinfo Fri Aug 14 18:47:47 2015 (r394248) +++ head/devel/py-selection/distinfo Fri Aug 14 18:48:23 2015 (r394249) @@ -1,2 +1,2 @@ -SHA256 (selection-0.0.9.tar.gz) = 2e89d6eea792447a7c23da77b81fd7df84526791f64cbff4a50edf363697759e -SIZE (selection-0.0.9.tar.gz) = 5979 +SHA256 (selection-0.0.10.tar.gz) = efebb9518bb391a819a9d73753487271ac4e23dec70387770d6b2d686bc92c43 +SIZE (selection-0.0.10.tar.gz) = 4056 From owner-svn-ports-all@freebsd.org Fri Aug 14 18:49:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F365B9B976C; Fri, 14 Aug 2015 18:49:02 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E41C11B16; Fri, 14 Aug 2015 18:49:02 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EIn2XT099218; Fri, 14 Aug 2015 18:49:02 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EIn2AT099213; Fri, 14 Aug 2015 18:49:02 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508141849.t7EIn2AT099213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Fri, 14 Aug 2015 18:49:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394250 - head/devel/py-grab X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 18:49:03 -0000 Author: rm Date: Fri Aug 14 18:49:01 2015 New Revision: 394250 URL: https://svnweb.freebsd.org/changeset/ports/394250 Log: devel/py-grab: update to 0.6.22 Modified: head/devel/py-grab/Makefile head/devel/py-grab/distinfo Modified: head/devel/py-grab/Makefile ============================================================================== --- head/devel/py-grab/Makefile Fri Aug 14 18:48:23 2015 (r394249) +++ head/devel/py-grab/Makefile Fri Aug 14 18:49:01 2015 (r394250) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= grab -PORTVERSION= 0.6.21 +PORTVERSION= 0.6.22 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,7 +20,4 @@ NO_ARCH= yes USES= python USE_PYTHON= autoplist distutils -post-extract: - ${RM} -rf ${WRKSRC}/test - .include Modified: head/devel/py-grab/distinfo ============================================================================== --- head/devel/py-grab/distinfo Fri Aug 14 18:48:23 2015 (r394249) +++ head/devel/py-grab/distinfo Fri Aug 14 18:49:01 2015 (r394250) @@ -1,2 +1,2 @@ -SHA256 (grab-0.6.21.tar.gz) = cad55287c0da16b2e303ba27a4d77a2905c1ac3e73badb83d3d143b0fe701e99 -SIZE (grab-0.6.21.tar.gz) = 89728 +SHA256 (grab-0.6.22.tar.gz) = c2d754e8ed670ea3d709357d777d355fb58e5b45e34ef9356338c392ef343454 +SIZE (grab-0.6.22.tar.gz) = 91121 From owner-svn-ports-all@freebsd.org Fri Aug 14 19:10:00 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78B4F9B9B58; Fri, 14 Aug 2015 19:10:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 547C4165F; Fri, 14 Aug 2015 19:10:00 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EJA0Un009090; Fri, 14 Aug 2015 19:10:00 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EJ9xf2009054; Fri, 14 Aug 2015 19:09:59 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508141909.t7EJ9xf2009054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 14 Aug 2015 19:09:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394251 - in head/sysutils/terraform: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 19:10:00 -0000 Author: swills Date: Fri Aug 14 19:09:58 2015 New Revision: 394251 URL: https://svnweb.freebsd.org/changeset/ports/394251 Log: sysutils/terraform: update to 0.6.3 Modified: head/sysutils/terraform/Makefile head/sysutils/terraform/distinfo head/sysutils/terraform/files/patch-src_github.com_fsouza_go-dockerclient_vendor_github.com_Sirupsen_logrus_terminal__bsd.go Modified: head/sysutils/terraform/Makefile ============================================================================== --- head/sysutils/terraform/Makefile Fri Aug 14 18:49:01 2015 (r394250) +++ head/sysutils/terraform/Makefile Fri Aug 14 19:09:58 2015 (r394251) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= terraform -PORTVERSION= 0.6.1 +PORTVERSION= 0.6.3 DISTVERSIONPREFIX= v CATEGORIES= sysutils PKGNAMEPREFIX= hashicorp- @@ -42,19 +42,19 @@ GH_PROJECT= atlas-go:atlasgo consul:cons mergo:mergo go.uuid:suuid uuid:uuid winrm:winrm \ simplexml:simplexml xmlpath:xmlpath winrmcp:winrmcp \ winrmtest:winrmtest iso8601:iso8601 -GH_TAGNAME= 785958f:atlasgo c34bcb4:consul 7554cd9:errwrap \ +GH_TAGNAME= d1d08e8:atlasgo 00e35cd:consul 7554cd9:errwrap \ 88326f6:gocheckpoint 56912fb:gomultierror 999359b:goversion \ 5486421:hcl 8e00b30:yamux 8102d0e:cli 61164e4:colorstring \ 6fc6626:copystructure 1f6da4a:gohomedir 281073e:mapstructure \ 0dd3f91:osext 45cbfd3:panicwrap 89d9b53:prefixedio \ - eecf4c7:reflectwalk 07bab5f:golinereader 2010a0c:packer \ - 18450f4:apiclient 9197765:asfg a635c06:gpkcs 2a6648c:awssdkgo \ + eecf4c7:reflectwalk 07bab5f:golinereader 60bbe85:packer \ + 0a735f7:apiclient 99b5c36:asfg a635c06:gpkcs ccb4ffd:awssdkgo \ f092b4f:circbuf 19e280b:cloudflare e966f00:digitalocean \ 2a807d1:dnsimple 5b02e7e:mailgun 0031956:cloudstack \ - 7d5b0be:crypto 8914e50:oauth2 f0cf018:net 5578a8c:dnsmadeeasy \ - 522a8ce:gcloud f6e9f53:godocker a98ad7e:goini \ - e83aa01:gophercloud 179d4d0:gouuid 594d483:heroku 61a5285:mergo \ - afe1e2d:suuid ed3ca8a:uuid 23128e7:winrm 95ba304:simplexml \ + 83f1503:crypto 8914e50:oauth2 4a71d18:net 5578a8c:dnsmadeeasy \ + e34a32f:gcloud 5c1d07d:godocker a98ad7e:goini \ + efb1971:gophercloud 179d4d0:gouuid 594d483:heroku 61a5285:mergo \ + 6b8e5b5:suuid ed3ca8a:uuid 23128e7:winrm 95ba304:simplexml \ 13f4951:xmlpath 743b1af:winrmcp 3e9661c:winrmtest \ 2075bf1:iso8601 Modified: head/sysutils/terraform/distinfo ============================================================================== --- head/sysutils/terraform/distinfo Fri Aug 14 18:49:01 2015 (r394250) +++ head/sysutils/terraform/distinfo Fri Aug 14 19:09:58 2015 (r394251) @@ -1,9 +1,9 @@ -SHA256 (hashicorp-terraform-v0.6.1_GH0.tar.gz) = dd1b3eebd680e23b0c4279226f3ef149a9e1fa36c905ab63da502c8557b719ab -SIZE (hashicorp-terraform-v0.6.1_GH0.tar.gz) = 3878025 -SHA256 (hashicorp-atlas-go-785958f_GH0.tar.gz) = 90cfb00f4e50fcca584f87c54bd76d5ccace2017df1c61bb992f2e33bb606e90 -SIZE (hashicorp-atlas-go-785958f_GH0.tar.gz) = 37246 -SHA256 (hashicorp-consul-c34bcb4_GH0.tar.gz) = e289d36e7590da32ebbba76900ea50e0e7d486cd517536b89fca2f2d6e0ee759 -SIZE (hashicorp-consul-c34bcb4_GH0.tar.gz) = 1875310 +SHA256 (hashicorp-terraform-v0.6.3_GH0.tar.gz) = 2cc1cedb7c08310f49fb1c0a382248884aa6bd4a5e35461e2fb056fe14e3e60d +SIZE (hashicorp-terraform-v0.6.3_GH0.tar.gz) = 3891783 +SHA256 (hashicorp-atlas-go-d1d08e8_GH0.tar.gz) = a7b0237a65f3ecfafb634446119ab37de9c7b511b199ccab51dc97e020cc4e57 +SIZE (hashicorp-atlas-go-d1d08e8_GH0.tar.gz) = 37499 +SHA256 (hashicorp-consul-00e35cd_GH0.tar.gz) = 37b98e8dd1420613e0e8731c377a78e163dc95b389b5fd7843415def7aea92fe +SIZE (hashicorp-consul-00e35cd_GH0.tar.gz) = 1879769 SHA256 (hashicorp-errwrap-7554cd9_GH0.tar.gz) = b800e361c15decd0ebb39a0ff02ad046a1fc81021267f8625232f3921617daa0 SIZE (hashicorp-errwrap-7554cd9_GH0.tar.gz) = 8312 SHA256 (hashicorp-go-checkpoint-88326f6_GH0.tar.gz) = 49133eeca2707d2c025219f261dd3ebd8155fe22907c412445b8ffc7a4137755 @@ -36,16 +36,16 @@ SHA256 (mitchellh-reflectwalk-eecf4c7_GH SIZE (mitchellh-reflectwalk-eecf4c7_GH0.tar.gz) = 4272 SHA256 (mitchellh-go-linereader-07bab5f_GH0.tar.gz) = b95df1b72219bcc4a8e115648d35463eee05a7b0d2d529651866d20397df8ac9 SIZE (mitchellh-go-linereader-07bab5f_GH0.tar.gz) = 2860 -SHA256 (mitchellh-packer-2010a0c_GH0.tar.gz) = fb7a50d70aef5df7d76accb2f2f2caa1840d6e3e36fa7ef41f40f6116e0b26fc -SIZE (mitchellh-packer-2010a0c_GH0.tar.gz) = 1077083 -SHA256 (google-google-api-go-client-18450f4_GH0.tar.gz) = f3bf2d0025170b1ee2d69b5521980766134b3474dd07dbf3c5865767905ce83b -SIZE (google-google-api-go-client-18450f4_GH0.tar.gz) = 2315879 -SHA256 (Azure-azure-sdk-for-go-9197765_GH0.tar.gz) = 6c2b6086de3adcd51867630423999856372903b5a40871963173fab523455c42 -SIZE (Azure-azure-sdk-for-go-9197765_GH0.tar.gz) = 359472 +SHA256 (mitchellh-packer-60bbe85_GH0.tar.gz) = c3c913025d0abd5d45563f0823eca27624692c94d6a0d4de7d7b7292e256d94c +SIZE (mitchellh-packer-60bbe85_GH0.tar.gz) = 1121764 +SHA256 (google-google-api-go-client-0a735f7_GH0.tar.gz) = c3f8589d1b8f019b657497a1dfdd7d40d13c3003cc4399d163472bb60c787530 +SIZE (google-google-api-go-client-0a735f7_GH0.tar.gz) = 2431544 +SHA256 (Azure-azure-sdk-for-go-99b5c36_GH0.tar.gz) = 102ba2d32b876d8c44d7a649c0baa710032222e862d6124ee0504fe7573456ba +SIZE (Azure-azure-sdk-for-go-99b5c36_GH0.tar.gz) = 359552 SHA256 (Azure-go-pkcs12-a635c06_GH0.tar.gz) = 8a109c2f33fe70d19abf9c5b6d16385ba330b91d7925376efbdcb7f882a9b981 SIZE (Azure-go-pkcs12-a635c06_GH0.tar.gz) = 18820 -SHA256 (aws-aws-sdk-go-2a6648c_GH0.tar.gz) = fe533313f61d75b9620b4d92c816eb9849719dc99a2f27d989cdab8ac779cc2e -SIZE (aws-aws-sdk-go-2a6648c_GH0.tar.gz) = 2010207 +SHA256 (aws-aws-sdk-go-ccb4ffd_GH0.tar.gz) = b44fbb5d6262f7f4334b229592b4da3d80db1b723937faa31bed13bb0a3db085 +SIZE (aws-aws-sdk-go-ccb4ffd_GH0.tar.gz) = 2127196 SHA256 (armon-circbuf-f092b4f_GH0.tar.gz) = e18e259eab192a3d820ed6d5a813268726ea80acd438d28f2a0cea92b7c94a6b SIZE (armon-circbuf-f092b4f_GH0.tar.gz) = 2744 SHA256 (pearkes-cloudflare-19e280b_GH0.tar.gz) = 3bd369cb77aef6dc165243d3dd0155644a85da1e9a96e5ef1b4dff6c4f4f5f0f @@ -58,30 +58,30 @@ SHA256 (pearkes-mailgun-5b02e7e_GH0.tar. SIZE (pearkes-mailgun-5b02e7e_GH0.tar.gz) = 10438 SHA256 (xanzy-go-cloudstack-0031956_GH0.tar.gz) = 66d130f296d1c17c27731909e5f1259bcc573a5d760963467072c61b267bba75 SIZE (xanzy-go-cloudstack-0031956_GH0.tar.gz) = 439984 -SHA256 (golang-crypto-7d5b0be_GH0.tar.gz) = 873c936455a17a83eb5ad94b2c9b5c6b5c593a9205f9fda8b44e57436db79d5f -SIZE (golang-crypto-7d5b0be_GH0.tar.gz) = 874638 +SHA256 (golang-crypto-83f1503_GH0.tar.gz) = ab3696c1d112be06bafd3d113ccd5fa8c06e9875d4ee121b7948c7ed4b07733d +SIZE (golang-crypto-83f1503_GH0.tar.gz) = 876788 SHA256 (golang-oauth2-8914e50_GH0.tar.gz) = 966a5e96103684ff98e2de76ab4115935ead5dd24e11cdd9f6f655bd95dbac0d SIZE (golang-oauth2-8914e50_GH0.tar.gz) = 32042 -SHA256 (golang-net-f0cf018_GH0.tar.gz) = 42c8f5f7846c359983925e3cffb91be92d9f2d48e36867a61b05be51e10edf65 -SIZE (golang-net-f0cf018_GH0.tar.gz) = 482653 +SHA256 (golang-net-4a71d18_GH0.tar.gz) = 8c0c8d4035bee850cad895ba5da589fd118cb6596579f4b384e3c54d14010df6 +SIZE (golang-net-4a71d18_GH0.tar.gz) = 543524 SHA256 (soniah-dnsmadeeasy-5578a8c_GH0.tar.gz) = 3eecf1e256b06fd8beab9c936e2fd0a8f56e1e296c6183ffcfae349d040d3433 SIZE (soniah-dnsmadeeasy-5578a8c_GH0.tar.gz) = 12549 -SHA256 (GoogleCloudPlatform-gcloud-golang-522a8ce_GH0.tar.gz) = 146b3ba89bf3ddf2558b359964fa7dcb251bb848f3c2996d4ec513de04066f40 -SIZE (GoogleCloudPlatform-gcloud-golang-522a8ce_GH0.tar.gz) = 164091 -SHA256 (fsouza-go-dockerclient-f6e9f53_GH0.tar.gz) = 027bef9370d64360a57f7a016fd61f1fe31c539ecafe6b11f75749affb3c4f1d -SIZE (fsouza-go-dockerclient-f6e9f53_GH0.tar.gz) = 188778 +SHA256 (GoogleCloudPlatform-gcloud-golang-e34a32f_GH0.tar.gz) = 884f2d60f1d0528dce4382066f1b30ae5fb9457dfd2a8781af8da1cdc8956275 +SIZE (GoogleCloudPlatform-gcloud-golang-e34a32f_GH0.tar.gz) = 168341 +SHA256 (fsouza-go-dockerclient-5c1d07d_GH0.tar.gz) = 6268645b1939d08ac29f6bf12032f8928711b1538d228e046e6936b0ddf5c1ff +SIZE (fsouza-go-dockerclient-5c1d07d_GH0.tar.gz) = 209423 SHA256 (vaughan0-go-ini-a98ad7e_GH0.tar.gz) = f8daa0afa08af1fdce4747074602078c72f49fd60c7d8dc3d07b6b7e70cd5f82 SIZE (vaughan0-go-ini-a98ad7e_GH0.tar.gz) = 3694 -SHA256 (rackspace-gophercloud-e83aa01_GH0.tar.gz) = 81b454a5b1f00bb5deae30d167eab5a8e940920c514ef1c21bf0cfa37fea9363 -SIZE (rackspace-gophercloud-e83aa01_GH0.tar.gz) = 334904 +SHA256 (rackspace-gophercloud-efb1971_GH0.tar.gz) = cfcfb2e65226596903e8c0c0a0edf12ce02f25ed2fdefc07b2174a01ecbcbad7 +SIZE (rackspace-gophercloud-efb1971_GH0.tar.gz) = 338949 SHA256 (nu7hatch-gouuid-179d4d0_GH0.tar.gz) = 8c910070e1acc74e66f727e0ff6a28f84009c941ace87be8766c13f964dab3fc SIZE (nu7hatch-gouuid-179d4d0_GH0.tar.gz) = 3737 SHA256 (cyberdelia-heroku-go-594d483_GH0.tar.gz) = 1c85a72645c4a8bfe366a4bf1e220ce31215bb7b7546c6664b0b040124785804 SIZE (cyberdelia-heroku-go-594d483_GH0.tar.gz) = 31181 SHA256 (imdario-mergo-61a5285_GH0.tar.gz) = 309d4842eb3bd734305058a92dc00749fa977940f3cd1e83c12427842256c1d3 SIZE (imdario-mergo-61a5285_GH0.tar.gz) = 8584 -SHA256 (satori-go.uuid-afe1e2d_GH0.tar.gz) = 9a7230686a99098e50ced69108ff06f84e263756f63d38604b24732839f8e436 -SIZE (satori-go.uuid-afe1e2d_GH0.tar.gz) = 6550 +SHA256 (satori-go.uuid-6b8e5b5_GH0.tar.gz) = da25eef46cf1023f155a2ee171812f550b0f109ea495bb928a6b851aa3be1d78 +SIZE (satori-go.uuid-6b8e5b5_GH0.tar.gz) = 6679 SHA256 (pborman-uuid-ed3ca8a_GH0.tar.gz) = 0030622ed5a677f6382d9cf28e69f40509855df88e82335ab589ce208ebeee58 SIZE (pborman-uuid-ed3ca8a_GH0.tar.gz) = 41014 SHA256 (masterzen-winrm-23128e7_GH0.tar.gz) = 8794416b430ea64a15c6c5b9d5b011c2766926d34ffbafc06859fa56f452b873 Modified: head/sysutils/terraform/files/patch-src_github.com_fsouza_go-dockerclient_vendor_github.com_Sirupsen_logrus_terminal__bsd.go ============================================================================== --- head/sysutils/terraform/files/patch-src_github.com_fsouza_go-dockerclient_vendor_github.com_Sirupsen_logrus_terminal__bsd.go Fri Aug 14 18:49:01 2015 (r394250) +++ head/sysutils/terraform/files/patch-src_github.com_fsouza_go-dockerclient_vendor_github.com_Sirupsen_logrus_terminal__bsd.go Fri Aug 14 19:09:58 2015 (r394251) @@ -1,5 +1,5 @@ ---- src/github.com/fsouza/go-dockerclient/vendor/github.com/Sirupsen/logrus/terminal_bsd.go.orig 2015-07-17 20:42:10 UTC -+++ src/github.com/fsouza/go-dockerclient/vendor/github.com/Sirupsen/logrus/terminal_bsd.go +--- src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_bsd.go.orig 2015-07-17 20:42:10 UTC ++++ src/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_bsd.go @@ -1,4 +1,4 @@ -// +build darwin freebsd openbsd netbsd dragonfly +// +build darwin openbsd netbsd dragonfly From owner-svn-ports-all@freebsd.org Fri Aug 14 19:13:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19A0A9B9C33; Fri, 14 Aug 2015 19:13:24 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F2E98197B; Fri, 14 Aug 2015 19:13:23 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EJDNtm013206; Fri, 14 Aug 2015 19:13:23 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EJDMn9013201; Fri, 14 Aug 2015 19:13:22 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201508141913.t7EJDMn9013201@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Fri, 14 Aug 2015 19:13:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394252 - in head/net-im/corebird: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 19:13:24 -0000 Author: olivierd Date: Fri Aug 14 19:13:21 2015 New Revision: 394252 URL: https://svnweb.freebsd.org/changeset/ports/394252 Log: Update to 1.0.1 PR: 202238 Submitted by: Carlos Puga Medina (maintainer) Modified: head/net-im/corebird/Makefile head/net-im/corebird/distinfo head/net-im/corebird/files/patch-Makefile.am head/net-im/corebird/files/patch-configure.ac head/net-im/corebird/files/patch-data__Makefile.am Modified: head/net-im/corebird/Makefile ============================================================================== --- head/net-im/corebird/Makefile Fri Aug 14 19:09:58 2015 (r394251) +++ head/net-im/corebird/Makefile Fri Aug 14 19:13:21 2015 (r394252) @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= corebird -PORTVERSION= 1.0 +PORTVERSION= 1.0.1 CATEGORIES= net-im MAINTAINER= cpm@fbsd.es COMMENT= GTK3 Twitter client written in Vala LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= valac:${PORTSDIR}/lang/vala LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/devel/libsoup \ @@ -18,17 +17,18 @@ LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/ librest-0.7.so:${PORTSDIR}/devel/librest \ libgee-0.8.so:${PORTSDIR}/devel/libgee +USE_GITHUB= yes GH_ACCOUNT= baedert -USE_GITHUB= yes USES= autoreconf gettext gmake libtool pkgconfig GNU_CONFIGURE= yes USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 intltool libxml2 pango USE_SQLITE= yes INSTALLS_ICONS= yes -OPTIONS_DEFINE= GSTREAMER +OPTIONS_DEFINE= GSTREAMER OPTIONS_DEFAULT= GSTREAMER + GSTREAMER_DESC= Gstreamer support GLIB_SCHEMAS= org.baedert.corebird.gschema.xml Modified: head/net-im/corebird/distinfo ============================================================================== --- head/net-im/corebird/distinfo Fri Aug 14 19:09:58 2015 (r394251) +++ head/net-im/corebird/distinfo Fri Aug 14 19:13:21 2015 (r394252) @@ -1,2 +1,2 @@ -SHA256 (baedert-corebird-1.0_GH0.tar.gz) = 0ca4ca20b0281b2901382810ef8bd1682bb896c3915ad3bea3f2a41461118001 -SIZE (baedert-corebird-1.0_GH0.tar.gz) = 1697452 +SHA256 (baedert-corebird-1.0.1_GH0.tar.gz) = f469250fd0f4fcdefbd496fa04ecae44ee41e154f29d4be2003ba03e64d24d81 +SIZE (baedert-corebird-1.0.1_GH0.tar.gz) = 1697506 Modified: head/net-im/corebird/files/patch-Makefile.am ============================================================================== --- head/net-im/corebird/files/patch-Makefile.am Fri Aug 14 19:09:58 2015 (r394251) +++ head/net-im/corebird/files/patch-Makefile.am Fri Aug 14 19:13:21 2015 (r394252) @@ -1,5 +1,5 @@ ---- ./Makefile.am.orig 2014-07-07 08:38:31.000000000 +0000 -+++ ./Makefile.am 2014-08-09 22:09:52.000000000 +0000 +--- Makefile.am.orig 2015-07-17 13:15:47 UTC ++++ Makefile.am @@ -1,6 +1,6 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} Modified: head/net-im/corebird/files/patch-configure.ac ============================================================================== --- head/net-im/corebird/files/patch-configure.ac Fri Aug 14 19:09:58 2015 (r394251) +++ head/net-im/corebird/files/patch-configure.ac Fri Aug 14 19:13:21 2015 (r394252) @@ -1,6 +1,6 @@ ---- configure.ac.orig 2015-03-19 18:38:24.000000000 +0100 -+++ configure.ac 2015-03-30 18:09:54.490239000 +0200 -@@ -93,8 +93,6 @@ +--- configure.ac.orig 2015-07-17 13:15:47 UTC ++++ configure.ac +@@ -93,8 +93,6 @@ GLIB_GSETTINGS GETTEXT_PACKAGE=corebird AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["$GETTEXT_PACKAGE"], [Gettext Package]) AC_SUBST(GETTEXT_PACKAGE) @@ -9,7 +9,7 @@ AM_GLIB_GNU_GETTEXT -@@ -103,7 +101,7 @@ +@@ -103,7 +101,7 @@ AC_CONFIG_FILES([Makefile src/Makefile ui/Makefile data/Makefile Modified: head/net-im/corebird/files/patch-data__Makefile.am ============================================================================== --- head/net-im/corebird/files/patch-data__Makefile.am Fri Aug 14 19:09:58 2015 (r394251) +++ head/net-im/corebird/files/patch-data__Makefile.am Fri Aug 14 19:13:21 2015 (r394252) @@ -1,5 +1,5 @@ ---- data/Makefile.am.orig 2015-03-19 18:38:24.000000000 +0100 -+++ data/Makefile.am 2015-03-30 18:12:15.956014000 +0200 +--- data/Makefile.am.orig 2015-07-17 13:15:47 UTC ++++ data/Makefile.am @@ -1,6 +1,6 @@ desktopdir = $(prefix)/share/applications From owner-svn-ports-all@freebsd.org Fri Aug 14 19:30:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42BF09B9E90; Fri, 14 Aug 2015 19:30:13 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E38A1F0E; Fri, 14 Aug 2015 19:30:13 +0000 (UTC) (envelope-from brd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EJUD1h019270; Fri, 14 Aug 2015 19:30:13 GMT (envelope-from brd@FreeBSD.org) Received: (from brd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EJUCbk019266; Fri, 14 Aug 2015 19:30:12 GMT (envelope-from brd@FreeBSD.org) Message-Id: <201508141930.t7EJUCbk019266@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brd set sender to brd@FreeBSD.org using -f From: Brad Davis Date: Fri, 14 Aug 2015 19:30:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394253 - in head/net-mgmt/collectd5: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 19:30:13 -0000 Author: brd Date: Fri Aug 14 19:30:11 2015 New Revision: 394253 URL: https://svnweb.freebsd.org/changeset/ports/394253 Log: Add native disk metrics thanks to delphij, Ruben Kerkhof , and myself. [1] Fix Python option when building with debug enabled python [2] PR: 202327 [1] PR: 201773 [2] Submitted by: brd [1] Submitted by: Suraj Ravichandran [2] Approved by: Krzysztof (maintainer), bdrewery (mentor) Modified: head/net-mgmt/collectd5/Makefile head/net-mgmt/collectd5/files/patch-configure.ac head/net-mgmt/collectd5/files/patch-src__Makefile.am head/net-mgmt/collectd5/pkg-plist Modified: head/net-mgmt/collectd5/Makefile ============================================================================== --- head/net-mgmt/collectd5/Makefile Fri Aug 14 19:13:21 2015 (r394252) +++ head/net-mgmt/collectd5/Makefile Fri Aug 14 19:30:11 2015 (r394253) @@ -3,6 +3,7 @@ PORTNAME= collectd PORTVERSION= 5.5.0 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= https://collectd.org/files/ \ http://collectd.org/files/ @@ -59,7 +60,7 @@ ROUTEROS_DESC= Enable routeros plugin RRDTOOL_DESC= Enable rrdtool plugin (also rrdcached plugin) SIGROK_DESC= Enable sigrok plugin SNMP_DESC= Enable SNMP plugin -STATGRAB_DESC= Enable statgrab-based plugins (disk, interface, etc) +STATGRAB_DESC= Enable statgrab-based plugins (interface, etc) STATSD_DESC= Enable statsd plugin TOKYOTYRANT_DESC= Enable tokyotyrant plugin VARNISH_DESC= Enable varnish 4.x cache statistics @@ -114,6 +115,7 @@ CONFIGURE_ARGS+= \ --enable-cpu \ --enable-csv \ --enable-df \ + --enable-disk \ --enable-dns \ --enable-email \ --enable-exec \ @@ -455,7 +457,6 @@ PLIST_SUB+= RRDTOOL="@comment " LIB_DEPENDS+= libstatgrab.so:${PORTSDIR}/devel/libstatgrab LIBS+= `pkg-config --libs libstatgrab` CONFIGURE_ARGS+=--with-libstatgrab=${LOCALBASE} \ - --enable-disk \ --enable-interface PLIST_SUB+= STATGRAB="" .else Modified: head/net-mgmt/collectd5/files/patch-configure.ac ============================================================================== --- head/net-mgmt/collectd5/files/patch-configure.ac Fri Aug 14 19:13:21 2015 (r394252) +++ head/net-mgmt/collectd5/files/patch-configure.ac Fri Aug 14 19:30:11 2015 (r394253) @@ -1,4 +1,4 @@ ---- configure.ac.orig 2015-02-26 11:49:16 UTC +--- configure.ac.orig 2015-05-27 07:51:35 UTC +++ configure.ac @@ -120,7 +120,7 @@ then fi @@ -9,6 +9,24 @@ AC_SUBST(pkgconfigdir) # Check for standards compliance mode +@@ -641,7 +641,7 @@ SAVE_CFLAGS="$CFLAGS" + # Emulate behavior of src/Makefile.am + if test "x$GCC" = "xyes" + then +- CFLAGS="$CFLAGS -Wall -Werror" ++ CFLAGS="$CFLAGS -Wall " + fi + + AC_CACHE_CHECK([for strtok_r], +@@ -770,7 +770,7 @@ AC_CHECK_FUNCS(getutxent, [have_getutxen + if test "x$GCC" = "xyes" + then + SAVE_CFLAGS="$CFLAGS" +- CFLAGS="$CFLAGS -Wall -Wextra -Werror" ++ CFLAGS="$CFLAGS -Wall -Wextra " + fi + + AC_CHECK_FUNCS(strptime, [have_strptime="yes"], [have_strptime="no"]) @@ -1495,6 +1495,7 @@ if test "x$with_kstat" = "xyes" then AC_CHECK_LIB(kstat, kstat_open, [with_kstat="yes"], [with_kstat="no (libkstat not found)"], []) @@ -26,6 +44,42 @@ fi AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes") AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes") +@@ -3346,7 +3349,7 @@ then + SAVE_LIBS="$LIBS" + # trigger an error if Perl_load_module*() uses __attribute__nonnull__(3) + # (see issues #41 and #42) +- CFLAGS="$CFLAGS $PERL_CFLAGS -Wall -Werror" ++ CFLAGS="$CFLAGS $PERL_CFLAGS -Wall " + LIBS="$LIBS $PERL_LIBS" + + AC_CACHE_CHECK([for broken Perl_load_module()], +@@ -3576,7 +3579,7 @@ fi + if test "x$with_python" = "xyes" + then + AC_MSG_CHECKING([for Python CPPFLAGS]) +- python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>&1` ++ python_include_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_python_inc())" | "$with_python_prog" 2>/dev/null` + python_config_status=$? + + if test "$python_config_status" -ne 0 || test "x$python_include_path" = "x" +@@ -3599,7 +3602,7 @@ fi + if test "x$with_python" = "xyes" + then + AC_MSG_CHECKING([for Python LDFLAGS]) +- python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2>&1` ++ python_library_path=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"LIBDIR\").__getitem__(0))" | "$with_python_prog" 2>/dev/null` + python_config_status=$? + + if test "$python_config_status" -ne 0 || test "x$python_library_path" = "x" +@@ -3614,7 +3617,7 @@ fi + if test "x$with_python" = "xyes" + then + AC_MSG_CHECKING([for Python LIBS]) +- python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2>&1` ++ python_library_flags=`echo "import distutils.sysconfig;import sys;sys.stdout.write(distutils.sysconfig.get_config_vars(\"BLDLIBRARY\").__getitem__(0))" | "$with_python_prog" 2>/dev/null` + python_config_status=$? + + if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x" @@ -3629,7 +3632,7 @@ fi if test "x$with_python" = "xyes" then @@ -46,3 +100,11 @@ with_libvarnish="yes" fi; fi; fi ], +@@ -5263,6 +5266,7 @@ fi + + if test "x$ac_system" = "xFreeBSD" + then ++ plugin_disk="yes" + plugin_zfs_arc="yes" + fi + Modified: head/net-mgmt/collectd5/files/patch-src__Makefile.am ============================================================================== --- head/net-mgmt/collectd5/files/patch-src__Makefile.am Fri Aug 14 19:13:21 2015 (r394252) +++ head/net-mgmt/collectd5/files/patch-src__Makefile.am Fri Aug 14 19:30:11 2015 (r394253) @@ -1,6 +1,14 @@ --- src/Makefile.am.orig 2015-05-26 19:38:14 UTC +++ src/Makefile.am -@@ -14,7 +14,7 @@ AM_CPPFLAGS = -I$(srcdir)/daemon +@@ -7,14 +7,14 @@ SUBDIRS += daemon + PLUGIN_LDFLAGS = -module -avoid-version -export-symbols-regex '\' + + if COMPILER_IS_GCC +-AM_CFLAGS = -Wall -Werror ++AM_CFLAGS = -Wall + endif + + AM_CPPFLAGS = -I$(srcdir)/daemon AM_CPPFLAGS += -DPREFIX='"${prefix}"' AM_CPPFLAGS += -DCONFIGFILE='"${sysconfdir}/${PACKAGE_NAME}.conf"' AM_CPPFLAGS += -DLOCALSTATEDIR='"${localstatedir}"' @@ -27,7 +35,17 @@ endif if BUILD_WITH_LIBDEVINFO disk_la_LIBADD += -ldevinfo -@@ -408,7 +408,7 @@ interface_la_CFLAGS += $(BUILD_WITH_LIBS +@@ -321,6 +321,9 @@ endif + if BUILD_WITH_PERFSTAT + disk_la_LIBADD += -lperfstat + endif ++if BUILD_FREEBSD ++disk_la_LIBADD += -ldevstat -lgeom ++endif + endif + + if BUILD_PLUGIN_DNS +@@ -408,7 +411,7 @@ interface_la_CFLAGS += $(BUILD_WITH_LIBS interface_la_LIBADD += $(BUILD_WITH_LIBSTATGRAB_LDFLAGS) else if BUILD_WITH_LIBKSTAT @@ -36,7 +54,7 @@ endif if BUILD_WITH_LIBDEVINFO interface_la_LIBADD += -ldevinfo -@@ -591,7 +591,7 @@ memory_la_CFLAGS = $(AM_CFLAGS) +@@ -591,7 +594,7 @@ memory_la_CFLAGS = $(AM_CFLAGS) memory_la_LDFLAGS = $(PLUGIN_LDFLAGS) memory_la_LIBADD = if BUILD_WITH_LIBKSTAT @@ -45,7 +63,7 @@ endif if BUILD_WITH_LIBDEVINFO memory_la_LIBADD += -ldevinfo -@@ -964,7 +964,7 @@ swap_la_CFLAGS = $(AM_CFLAGS) +@@ -964,7 +967,7 @@ swap_la_CFLAGS = $(AM_CFLAGS) swap_la_LDFLAGS = $(PLUGIN_LDFLAGS) swap_la_LIBADD = if BUILD_WITH_LIBKSTAT @@ -54,7 +72,7 @@ endif if BUILD_WITH_LIBDEVINFO swap_la_LIBADD += -ldevinfo -@@ -1010,7 +1010,7 @@ if BUILD_PLUGIN_TAPE +@@ -1010,7 +1013,7 @@ if BUILD_PLUGIN_TAPE pkglib_LTLIBRARIES += tape.la tape_la_SOURCES = tape.c tape_la_LDFLAGS = $(PLUGIN_LDFLAGS) @@ -63,7 +81,7 @@ endif if BUILD_PLUGIN_TARGET_NOTIFICATION -@@ -1116,7 +1116,7 @@ uptime_la_CFLAGS = $(AM_CFLAGS) +@@ -1116,7 +1119,7 @@ uptime_la_CFLAGS = $(AM_CFLAGS) uptime_la_LDFLAGS = $(PLUGIN_LDFLAGS) uptime_la_LIBADD = if BUILD_WITH_LIBKSTAT @@ -72,7 +90,7 @@ endif if BUILD_WITH_PERFSTAT uptime_la_LIBADD += -lperfstat -@@ -1275,7 +1275,7 @@ if BUILD_LINUX +@@ -1275,7 +1278,7 @@ if BUILD_LINUX # zfs_arc requires no library on linux else # solaris @@ -81,7 +99,7 @@ endif endif endif -@@ -1364,12 +1364,7 @@ endif +@@ -1364,12 +1367,7 @@ endif install-exec-hook: $(mkinstalldirs) $(DESTDIR)$(sysconfdir) Modified: head/net-mgmt/collectd5/pkg-plist ============================================================================== --- head/net-mgmt/collectd5/pkg-plist Fri Aug 14 19:13:21 2015 (r394252) +++ head/net-mgmt/collectd5/pkg-plist Fri Aug 14 19:30:11 2015 (r394253) @@ -26,7 +26,7 @@ lib/collectd/csv.so %%CURL_XML%%lib/collectd/curl_xml.so %%DBI%%lib/collectd/dbi.so lib/collectd/df.so -%%STATGRAB%%lib/collectd/disk.so +lib/collectd/disk.so lib/collectd/dns.so lib/collectd/email.so lib/collectd/exec.so From owner-svn-ports-all@freebsd.org Fri Aug 14 19:59:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E9749BA54F for ; Fri, 14 Aug 2015 19:59:32 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21D5E1D7E for ; Fri, 14 Aug 2015 19:59:31 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 3EF7121DBE for ; Fri, 14 Aug 2015 15:59:31 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute4.internal (MEProxy); Fri, 14 Aug 2015 15:59:31 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=XUv8mfpAJPpHBrR 0FjM1xIPL2Zg=; b=UN0D3qjiXm3kwXldFC55464GgdsZuk4VIPRDKPl/r3Qy7qW ymP762BwIVklJMScMHCq6PCPjctDocuV0R9H+K25VwJwAdTlpTh72k33GDZhS7Mo 9Biv4pWbadR0cvk09jju113Tvsa03xZYYWXEqUO6MXVIvprMhqfiTUkC4phE= Received: by web3.nyi.internal (Postfix, from userid 99) id 0DA511065B2; Fri, 14 Aug 2015 15:59:31 -0400 (EDT) Message-Id: <1439582370.3498509.356553569.16114743@webmail.messagingengine.com> X-Sasl-Enc: VwDobfk4X+dD1KhFPrNCjADLiHrFS5FaxCgS+SeF2NIH 1439582370 From: Mark Felder To: junovitch@FreeBSD.org Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-4fee8ba5 In-Reply-To: <20150814174100.GA25051@Silverstone.nc-us.unovitch.com> References: <201508141639.t7EGdx4d035522@repo.freebsd.org> <20150814174100.GA25051@Silverstone.nc-us.unovitch.com> Subject: Re: svn commit: r394234 - head/security/gnutls Date: Fri, 14 Aug 2015 14:59:30 -0500 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 19:59:32 -0000 On Fri, Aug 14, 2015, at 12:41, Jason Unovitch wrote: > On Fri, Aug 14, 2015 at 04:39:59PM +0000, Mark Felder wrote: > > Modified: head/security/gnutls/distinfo > > ============================================================================== > > --- head/security/gnutls/distinfo Fri Aug 14 16:39:33 2015 (r394233) > > +++ head/security/gnutls/distinfo Fri Aug 14 16:39:58 2015 (r394234) > > @@ -1,2 +1,2 @@ > > -SHA256 (gnutls-3.3.16.tar.xz) = 80a471c723572a43ddbe75d7825a3275f640650cc99eae42963ab39b9d0b7552 > > -SIZE (gnutls-3.3.16.tar.xz) = 6298460 > > +SHA256 (gnutls-3.3.17.1.tar.xz) = b40f158030a92f450a07b20300a3996710ca19800848d9f6fd62493170c5bbb4 > > +SIZE (gnutls-3.3.17.1.tar.xz) = 6339588 > > That's the most recent release on > ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/ but a make fetch is failing on > all the mirrors we are using. Should we add the main gnutls.org site as > a MASTER_SITE? > Maybe! I'm looking to this now... Thanks From owner-svn-ports-all@freebsd.org Fri Aug 14 20:18:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C94749BA930; Fri, 14 Aug 2015 20:18:17 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0E681A32; Fri, 14 Aug 2015 20:18:17 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EKIH0Q042166; Fri, 14 Aug 2015 20:18:17 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EKIGnj042161; Fri, 14 Aug 2015 20:18:16 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201508142018.t7EKIGnj042161@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Fri, 14 Aug 2015 20:18:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394254 - in head/devel: libccid pcsc-lite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 20:18:17 -0000 Author: arved Date: Fri Aug 14 20:18:15 2015 New Revision: 394254 URL: https://svnweb.freebsd.org/changeset/ports/394254 Log: Update pcsc-lite to 1.8.14 Update libccid to 1.4.20 Modified: head/devel/libccid/Makefile head/devel/libccid/distinfo head/devel/pcsc-lite/Makefile head/devel/pcsc-lite/distinfo Modified: head/devel/libccid/Makefile ============================================================================== --- head/devel/libccid/Makefile Fri Aug 14 19:30:11 2015 (r394253) +++ head/devel/libccid/Makefile Fri Aug 14 20:18:15 2015 (r394254) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= ccid -PORTVERSION= 1.4.19 +PORTVERSION= 1.4.20 CATEGORIES= devel -MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4132/ +MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4140/ MAINTAINER= arved@FreeBSD.org COMMENT= Generic USB CCID (Chip/Smart Card Interface Devices) driver Modified: head/devel/libccid/distinfo ============================================================================== --- head/devel/libccid/distinfo Fri Aug 14 19:30:11 2015 (r394253) +++ head/devel/libccid/distinfo Fri Aug 14 20:18:15 2015 (r394254) @@ -1,2 +1,2 @@ -SHA256 (ccid-1.4.19.tar.bz2) = cccb2c2bb4e56689efe34559f713102d92f94735542e58d3e4334e1459e934e1 -SIZE (ccid-1.4.19.tar.bz2) = 423238 +SHA256 (ccid-1.4.20.tar.bz2) = 400cb865bb63eed6d7668b2d971cb4644038b9b7a6cda121450d0c6cf6251cbc +SIZE (ccid-1.4.20.tar.bz2) = 567553 Modified: head/devel/pcsc-lite/Makefile ============================================================================== --- head/devel/pcsc-lite/Makefile Fri Aug 14 19:30:11 2015 (r394253) +++ head/devel/pcsc-lite/Makefile Fri Aug 14 20:18:15 2015 (r394254) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= pcsc-lite -PORTVERSION= 1.8.13 +PORTVERSION= 1.8.14 PORTEPOCH= 2 CATEGORIES= devel security -MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4126/ +MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4138/ MAINTAINER= arved@FreeBSD.org COMMENT= Smartcard development library Modified: head/devel/pcsc-lite/distinfo ============================================================================== --- head/devel/pcsc-lite/distinfo Fri Aug 14 19:30:11 2015 (r394253) +++ head/devel/pcsc-lite/distinfo Fri Aug 14 20:18:15 2015 (r394254) @@ -1,2 +1,2 @@ -SHA256 (pcsc-lite-1.8.13.tar.bz2) = f315047e808d63a3262c4a040f77548af2e04d1fd707e0c2759369b926fbbc3b -SIZE (pcsc-lite-1.8.13.tar.bz2) = 584083 +SHA256 (pcsc-lite-1.8.14.tar.bz2) = b91f97806042315a41f005e69529cb968621f73f2ddfbd1380111a175b02334e +SIZE (pcsc-lite-1.8.14.tar.bz2) = 689197 From owner-svn-ports-all@freebsd.org Fri Aug 14 20:20:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08DB79BA96F; Fri, 14 Aug 2015 20:20:04 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE1211B31; Fri, 14 Aug 2015 20:20:03 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EKK32C042489; Fri, 14 Aug 2015 20:20:03 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EKK3LM042487; Fri, 14 Aug 2015 20:20:03 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508142020.t7EKK3LM042487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Fri, 14 Aug 2015 20:20:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394255 - head/devel/R-cran-evaluate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 20:20:04 -0000 Author: tota Date: Fri Aug 14 20:20:02 2015 New Revision: 394255 URL: https://svnweb.freebsd.org/changeset/ports/394255 Log: - Update to 0.7.2 Modified: head/devel/R-cran-evaluate/Makefile head/devel/R-cran-evaluate/distinfo Modified: head/devel/R-cran-evaluate/Makefile ============================================================================== --- head/devel/R-cran-evaluate/Makefile Fri Aug 14 20:18:15 2015 (r394254) +++ head/devel/R-cran-evaluate/Makefile Fri Aug 14 20:20:02 2015 (r394255) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= evaluate -PORTVERSION= 0.7 +PORTVERSION= 0.7.2 CATEGORIES= devel DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/devel/R-cran-evaluate/distinfo ============================================================================== --- head/devel/R-cran-evaluate/distinfo Fri Aug 14 20:18:15 2015 (r394254) +++ head/devel/R-cran-evaluate/distinfo Fri Aug 14 20:20:02 2015 (r394255) @@ -1,2 +1,2 @@ -SHA256 (evaluate_0.7.tar.gz) = 731d91d8de223bab974461aea72e579fbb01b670e03e446d8ce12fa5fd45056a -SIZE (evaluate_0.7.tar.gz) = 17707 +SHA256 (evaluate_0.7.2.tar.gz) = bb9f8cba7d6873cce7f6ebf00df681e546353820421d2a0e49fc04d4c4a09264 +SIZE (evaluate_0.7.2.tar.gz) = 17928 From owner-svn-ports-all@freebsd.org Fri Aug 14 20:38:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4439E9BAC34; Fri, 14 Aug 2015 20:38:39 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3251D13D5; Fri, 14 Aug 2015 20:38:39 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EKcd7v051837; Fri, 14 Aug 2015 20:38:39 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EKcdsN051836; Fri, 14 Aug 2015 20:38:39 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508142038.t7EKcdsN051836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 14 Aug 2015 20:38:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394256 - head/security/gnutls X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 20:38:39 -0000 Author: feld Date: Fri Aug 14 20:38:38 2015 New Revision: 394256 URL: https://svnweb.freebsd.org/changeset/ports/394256 Log: Update MASTER_SITES to fix fetching problem due to abnormal version number PR: 202332 Modified: head/security/gnutls/Makefile Modified: head/security/gnutls/Makefile ============================================================================== --- head/security/gnutls/Makefile Fri Aug 14 20:20:02 2015 (r394255) +++ head/security/gnutls/Makefile Fri Aug 14 20:38:38 2015 (r394256) @@ -3,7 +3,7 @@ PORTNAME= gnutls PORTVERSION= 3.3.17.1 CATEGORIES= security net -MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R} +MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R:R} MAINTAINER= bdrewery@FreeBSD.org COMMENT= GNU Transport Layer Security library From owner-svn-ports-all@freebsd.org Fri Aug 14 20:44:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 210B69BAD46; Fri, 14 Aug 2015 20:44:21 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 10D5F18AF; Fri, 14 Aug 2015 20:44:21 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EKiKsM056258; Fri, 14 Aug 2015 20:44:20 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EKiKGh056257; Fri, 14 Aug 2015 20:44:20 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508142044.t7EKiKGh056257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 14 Aug 2015 20:44:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394257 - branches/2015Q3/security/gnutls X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 20:44:21 -0000 Author: feld Date: Fri Aug 14 20:44:20 2015 New Revision: 394257 URL: https://svnweb.freebsd.org/changeset/ports/394257 Log: MFH: r394256 Update MASTER_SITES to fix fetching problem due to abnormal version number PR: 202332 Approved by: ports-secteam (with hat) Modified: branches/2015Q3/security/gnutls/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/security/gnutls/Makefile ============================================================================== --- branches/2015Q3/security/gnutls/Makefile Fri Aug 14 20:38:38 2015 (r394256) +++ branches/2015Q3/security/gnutls/Makefile Fri Aug 14 20:44:20 2015 (r394257) @@ -3,7 +3,7 @@ PORTNAME= gnutls PORTVERSION= 3.3.17.1 CATEGORIES= security net -MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R} +MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R:R} MAINTAINER= bdrewery@FreeBSD.org COMMENT= GNU Transport Layer Security library From owner-svn-ports-all@freebsd.org Fri Aug 14 20:59:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BEFF9BAF83; Fri, 14 Aug 2015 20:59:30 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7261D1DA6; Fri, 14 Aug 2015 20:59:30 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EKxUvM061659; Fri, 14 Aug 2015 20:59:30 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EKxUbw061658; Fri, 14 Aug 2015 20:59:30 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508142059.t7EKxUbw061658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 14 Aug 2015 20:59:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394258 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 20:59:30 -0000 Author: feld Date: Fri Aug 14 20:59:29 2015 New Revision: 394258 URL: https://svnweb.freebsd.org/changeset/ports/394258 Log: Update MASTER_SITE_GNUPG I took all of the mirrors I could find and ran them against sysutils/fastest_sites from a server in a datacenter in Chicago. It removed a few dead mirrors and I have added a few new ones. Hopefully this provides a better overall experience. New order is roughly: UK, NL, IE, DE, etc PR: 202332 Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Fri Aug 14 20:44:20 2015 (r394257) +++ head/Mk/bsd.sites.mk Fri Aug 14 20:59:29 2015 (r394258) @@ -697,21 +697,26 @@ MASTER_SITE_GNU+= \ .if !defined(IGNORE_MASTER_SITE_GNUPG) MASTER_SITE_GNUPG+= \ + http://www.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ http://mirror.tje.me.uk/pub/mirrors/ftp.gnupg.org/%SUBDIR%/ \ - http://dotsrc.org/%SUBDIR%/ \ - ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ - ftp://ftp.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ - ftp://mirror.cict.fr/gnupg/%SUBDIR%/ \ - http://artfiles.org/gnupg.org/%SUBDIR%/ \ + ftp://ftp.surfnet.nl/pub/security/gnupg/%SUBDIR%/ \ + http://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ + ftp://ftp.gnupg.org/gcrypt/%SUBDIR%/ \ + ftp://ftp.bit.nl/mirror/gnupg/%SUBDIR%/ \ + ftp://mirror.switch.ch/mirror/gnupg/%SUBDIR%/ \ + http://artfiles.org/gnupg.org/%SUBDIR%/ \ + ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ ftp://ftp.crysys.hu/pub/gnupg/%SUBDIR%/ \ - ftp://ftp.hi.is/pub/mirrors/gnupg/%SUBDIR%/ \ - http://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ + http://gd.tuwien.ac.at/privacy/gnupg/%SUBDIR%/ \ + ftp://mirror.cict.fr/gnupg/%SUBDIR%/ \ + http://mirrors.dotsrc.org/%SUBDIR%/ \ + ftp://ftp.iasi.roedu.net/pub/mirrors/ftp.gnupg.org/%SUBDIR%/ \ ftp://ftp.sunet.se/pub/security/gnupg/%SUBDIR%/ \ - ftp://mirror.switch.ch/mirror/gnupg/%SUBDIR%/ \ - http://www.mirrorservice.org/sites/ftp.gnupg.org/gcrypt/%SUBDIR%/ \ - http://www.ring.gr.jp/pub/net/gnupg/%SUBDIR%/ \ - ftp://ftp.gnupg.org/gcrypt/%SUBDIR%/ + ftp://ftp.hi.is/pub/mirrors/gnupg/%SUBDIR%/ \ + ftp://ftp.jyu.fi/pub/crypt/gcrypt/%SUBDIR%/ \ + http://dist.gnupg.pt/%SUBDIR%/ \ + http://gnupg.org.favoritelinks.net/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_GNUSTEP) From owner-svn-ports-all@freebsd.org Fri Aug 14 21:02:59 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A92479B9072; Fri, 14 Aug 2015 21:02:59 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7A02310BF; Fri, 14 Aug 2015 21:02:59 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EL2xoL065653; Fri, 14 Aug 2015 21:02:59 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EL2xBF065649; Fri, 14 Aug 2015 21:02:59 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201508142102.t7EL2xBF065649@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Fri, 14 Aug 2015 21:02:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r394259 - branches/2015Q3/www/linux-c6-flashplugin11 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 21:02:59 -0000 Author: kwm Date: Fri Aug 14 21:02:58 2015 New Revision: 394259 URL: https://svnweb.freebsd.org/changeset/ports/394259 Log: Manual merge r394008: linux c6 and f10 flash update to 11.2r202.508. This was done this way because HEAD ports diverged after the 64bit linux emulation ports update. Security: f3778328-d288-4b39-86a4-65877331eaf7 Approved by: ports-secteam@ (feld@) Modified: branches/2015Q3/www/linux-c6-flashplugin11/Makefile branches/2015Q3/www/linux-c6-flashplugin11/distinfo Modified: branches/2015Q3/www/linux-c6-flashplugin11/Makefile ============================================================================== --- branches/2015Q3/www/linux-c6-flashplugin11/Makefile Fri Aug 14 20:59:29 2015 (r394258) +++ branches/2015Q3/www/linux-c6-flashplugin11/Makefile Fri Aug 14 21:02:58 2015 (r394259) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplugin -PORTVERSION= 11.2r202.491 +PORTVERSION= 11.2r202.508 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:S/r/./}/:plugin \ LOCAL/nox:suplib Modified: branches/2015Q3/www/linux-c6-flashplugin11/distinfo ============================================================================== --- branches/2015Q3/www/linux-c6-flashplugin11/distinfo Fri Aug 14 20:59:29 2015 (r394258) +++ branches/2015Q3/www/linux-c6-flashplugin11/distinfo Fri Aug 14 21:02:58 2015 (r394259) @@ -1,4 +1,4 @@ -SHA256 (flashplugin/11.2r202.491/install_flash_player_11_linux.i386.tar.gz) = be3f277fe1a15e4b082938019b4e0f9fac4336b460b2eb08d8f22bf90c718e53 -SIZE (flashplugin/11.2r202.491/install_flash_player_11_linux.i386.tar.gz) = 6942060 -SHA256 (flashplugin/11.2r202.491/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.491/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +SHA256 (flashplugin/11.2r202.508/install_flash_player_11_linux.i386.tar.gz) = 2a263957676a1d5f3f7ff28fc119e41bc24c6187fc948759d890554f465c0391 +SIZE (flashplugin/11.2r202.508/install_flash_player_11_linux.i386.tar.gz) = 6947080 +SHA256 (flashplugin/11.2r202.508/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.508/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 From owner-svn-ports-all@freebsd.org Fri Aug 14 21:20:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 963FA9B927B; Fri, 14 Aug 2015 21:20:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8713816F5; Fri, 14 Aug 2015 21:20:11 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ELKBjR070325; Fri, 14 Aug 2015 21:20:11 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ELKBKu070324; Fri, 14 Aug 2015 21:20:11 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201508142120.t7ELKBKu070324@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 14 Aug 2015 21:20:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394260 - head/archivers/libarchive X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 21:20:11 -0000 Author: antoine Date: Fri Aug 14 21:20:10 2015 New Revision: 394260 URL: https://svnweb.freebsd.org/changeset/ports/394260 Log: Add explicit USES=iconv, libarchive was linking against libiconv/libcharset when they were found and dependency was not registered Modified: head/archivers/libarchive/Makefile Modified: head/archivers/libarchive/Makefile ============================================================================== --- head/archivers/libarchive/Makefile Fri Aug 14 21:02:58 2015 (r394259) +++ head/archivers/libarchive/Makefile Fri Aug 14 21:20:10 2015 (r394260) @@ -2,7 +2,7 @@ PORTNAME= libarchive PORTVERSION= 3.1.2 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= archivers MASTER_SITES= http://libarchive.org/downloads/ @@ -18,7 +18,7 @@ OPTIONS_DEFAULT=LZO LZO_DESC= Support lzo compression via liblzo2 NETTLE_DESC= Use Nettle instead of OpenSSL -USES= cpe libtool pathfix +USES= cpe iconv libtool pathfix GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_LDCONFIG= yes @@ -88,7 +88,15 @@ NETTLE_CONFIGURE_ON= --without-openssl NETTLE_USE_OFF= OPENSSL=yes NETTLE_CONFIGURE_OFF= --with-openssl +.include + +.if empty(ICONV_LIB) +CONFIGURE_ENV+= ac_cv_header_localcharset_h=no \ + ac_cv_func_locale_charset=no \ + ac_cv_lib_charset_locale_charset=no +.endif + check: @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} check) -.include +.include From owner-svn-ports-all@freebsd.org Fri Aug 14 21:33:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD9979B94EE for ; Fri, 14 Aug 2015 21:33:28 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from mail-io0-f173.google.com (mail-io0-f173.google.com [209.85.223.173]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AFCB61D3F for ; Fri, 14 Aug 2015 21:33:28 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: by iodb91 with SMTP id b91so97807204iod.1 for ; Fri, 14 Aug 2015 14:33:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=A++aKWzyS/glIEU3WXqLQRVW+oMSKTSaK25K9xck8v4=; b=lrwOmMlVdq+PoSE01OVwlWuMmQl2GG39UfmlRqEjQID0rL08Q8F1hKPwEZNSmBshhg /JhomRO+1Db3KdUWVkoa8ktH3j0JQIuVohprrk+ZFu9La7ebUg+Z/w4bVM8TCV7sDgPy SS6wxwLHlnNJosXA5Xs2MP8/hQMIWLGzRDp2+F/oPVLZYB9eociXeXJpgGKlVIvEvf7N VVkeEGPNnQqFMFHndKseJUs8yZH6H9LZdg4YC0KKxkou1uIoUdg0Bj0u2JPhvw3tOLYU 1ZrjfZ/wHQ4iuzUlIK3PYAjLD0caAmfBkMmctelqBrVuSiXBJl2KIeF5DWo6TB2AnLd6 4slQ== X-Gm-Message-State: ALoCoQn/rGFrqBNxHEhAWOI2jOroFRQQEZ2RoqXRGkEEOcxbZxNs28fjrJ94kGuAGcmel9S/iMDT X-Received: by 10.107.34.75 with SMTP id i72mr53623158ioi.56.1439588002192; Fri, 14 Aug 2015 14:33:22 -0700 (PDT) MIME-Version: 1.0 Received: by 10.50.195.230 with HTTP; Fri, 14 Aug 2015 14:32:42 -0700 (PDT) X-Originating-IP: [68.101.40.130] In-Reply-To: <201508142044.t7EKiKGh056257@repo.freebsd.org> References: <201508142044.t7EKiKGh056257@repo.freebsd.org> From: "Philip M. Gollucci" Date: Fri, 14 Aug 2015 17:32:42 -0400 Message-ID: Subject: Re: svn commit: r394257 - branches/2015Q3/security/gnutls To: Mark Felder Cc: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , svn-ports-branches@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 21:33:29 -0000 Horray! On Fri, Aug 14, 2015 at 4:44 PM, Mark Felder wrote: > Author: feld > Date: Fri Aug 14 20:44:20 2015 > New Revision: 394257 > URL: https://svnweb.freebsd.org/changeset/ports/394257 > > Log: > MFH: r394256 > > Update MASTER_SITES to fix fetching problem due to abnormal version > number > > PR: 202332 > Approved by: ports-secteam (with hat) > > Modified: > branches/2015Q3/security/gnutls/Makefile > Directory Properties: > branches/2015Q3/ (props changed) > > Modified: branches/2015Q3/security/gnutls/Makefile > > ============================================================================== > --- branches/2015Q3/security/gnutls/Makefile Fri Aug 14 20:38:38 2015 > (r394256) > +++ branches/2015Q3/security/gnutls/Makefile Fri Aug 14 20:44:20 2015 > (r394257) > @@ -3,7 +3,7 @@ > PORTNAME= gnutls > PORTVERSION= 3.3.17.1 > CATEGORIES= security net > -MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R} > +MASTER_SITES= GNUPG/gnutls/v${PORTVERSION:R:R} > > MAINTAINER= bdrewery@FreeBSD.org > COMMENT= GNU Transport Layer Security library > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" > -- --------------------------------------------------------------------------------- Curb: Your ride is here 4096R/D21D2752 ECDF B597 B54B 7F92 753E E0EA F699 A450 D21D 2752 Philip M. Gollucci (pgollucci@p6m7g8.com) c: 703.336.9354 Member, Apache Software Foundation Committer, FreeBSD Foundation Consultant, P6M7G8 Inc. Sr. Director IT Operations, Curb What doesn't kill us can only make us stronger; Except it almost kills you. From owner-svn-ports-all@freebsd.org Fri Aug 14 22:04:37 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1304C9B9B81; Fri, 14 Aug 2015 22:04:37 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 03B2B1F5D; Fri, 14 Aug 2015 22:04:37 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EM4aLN090380; Fri, 14 Aug 2015 22:04:36 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EM4adc090379; Fri, 14 Aug 2015 22:04:36 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201508142204.t7EM4adc090379@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Fri, 14 Aug 2015 22:04:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394261 - head/security/afl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 22:04:37 -0000 Author: pgollucci Date: Fri Aug 14 22:04:36 2015 New Revision: 394261 URL: https://svnweb.freebsd.org/changeset/ports/394261 Log: security/afl: cannonicalize MAINTAINER Modified: head/security/afl/Makefile Modified: head/security/afl/Makefile ============================================================================== --- head/security/afl/Makefile Fri Aug 14 21:20:10 2015 (r394260) +++ head/security/afl/Makefile Fri Aug 14 22:04:36 2015 (r394261) @@ -6,7 +6,7 @@ PORTVERSION= 1.83b CATEGORIES= security MASTER_SITES= http://lcamtuf.coredump.cx/afl/releases/ -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org COMMENT= Fast instrumented fuzzer LICENSE= APACHE20 From owner-svn-ports-all@freebsd.org Fri Aug 14 22:58:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E69AD9BA546; Fri, 14 Aug 2015 22:58:03 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D795819CC; Fri, 14 Aug 2015 22:58:03 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7EMw347011193; Fri, 14 Aug 2015 22:58:03 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7EMw37n011191; Fri, 14 Aug 2015 22:58:03 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201508142258.t7EMw37n011191@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Fri, 14 Aug 2015 22:58:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394262 - head/www/nginx-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 22:58:04 -0000 Author: osa Date: Fri Aug 14 22:58:02 2015 New Revision: 394262 URL: https://svnweb.freebsd.org/changeset/ports/394262 Log: Upgrade HTTP/2 patch from v.1 to v.2. Modified: head/www/nginx-devel/Makefile head/www/nginx-devel/distinfo Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Fri Aug 14 22:04:36 2015 (r394261) +++ head/www/nginx-devel/Makefile Fri Aug 14 22:58:02 2015 (r394262) @@ -835,7 +835,7 @@ NGINX_OPENSSL= yes USE_HTTP_SSL= yes CONFIGURE_ARGS+=--with-http_v2_module USE_OPENSSL_PORT= yes -NGINX_HTTPV2_VERSION= 1 +NGINX_HTTPV2_VERSION= 2 PATCH_SITES+= http://nginx.org/patches/http2/:httpv2 PATCHFILES+= patch.http2-v${NGINX_HTTPV2_VERSION}_${PORTVERSION}.txt:httpv2 PATCH_DIST_STRIP= -p1 Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Fri Aug 14 22:04:36 2015 (r394261) +++ head/www/nginx-devel/distinfo Fri Aug 14 22:58:02 2015 (r394262) @@ -114,5 +114,5 @@ SHA256 (calio-form-input-nginx-module-v0 SIZE (calio-form-input-nginx-module-v0.07_GH0.tar.gz) = 10563 SHA256 (calio-iconv-nginx-module-v0.10_GH0.tar.gz) = 88e326eba7fdf9fd2376b1ba033b48cb0eee45136528cf5430ac9340088ce324 SIZE (calio-iconv-nginx-module-v0.10_GH0.tar.gz) = 12513 -SHA256 (patch.http2-v1_1.9.3.txt) = 14e37643c43e24ed7de9cc57bd4a082ff3b5d85423a998dc1a3226c9d00b1d6e -SIZE (patch.http2-v1_1.9.3.txt) = 308749 +SHA256 (patch.http2-v2_1.9.3.txt) = 8fe4d8ca0301370902123136b401e8bd7112ed6c36e92a8fd8a0d9277dc870cb +SIZE (patch.http2-v2_1.9.3.txt) = 312150 From owner-svn-ports-all@freebsd.org Fri Aug 14 23:46:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 236389BAB45; Fri, 14 Aug 2015 23:46:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 134A51B71; Fri, 14 Aug 2015 23:46:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7ENknw6031764; Fri, 14 Aug 2015 23:46:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7ENknas031763; Fri, 14 Aug 2015 23:46:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508142346.t7ENknas031763@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 14 Aug 2015 23:46:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394263 - head/ftp/curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Aug 2015 23:46:50 -0000 Author: sunpoet Date: Fri Aug 14 23:46:49 2015 New Revision: 394263 URL: https://svnweb.freebsd.org/changeset/ports/394263 Log: - Adjust default GSSAPI option: - GSSAPI_NONE if OpenSSL/LibreSSL from ports will be used instead of OpenSSL from base system - GSSAPI_BASE if otherwise - Bump PORTREVISION for package change Suggested by: tijl Modified: head/ftp/curl/Makefile Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Fri Aug 14 22:58:02 2015 (r394262) +++ head/ftp/curl/Makefile Fri Aug 14 23:46:49 2015 (r394263) @@ -3,7 +3,7 @@ PORTNAME= curl PORTVERSION= 7.43.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet @@ -19,7 +19,7 @@ OPTIONS_SINGLE= GSSAPI OPTIONS_RADIO_RESOLV= CARES THREADED_RESOLVER OPTIONS_RADIO_SSL= GNUTLS NSS OPENSSL POLARSSL WOLFSSL OPTIONS_SINGLE_GSSAPI= GSSAPI_BASE GSSAPI_HEIMDAL GSSAPI_MIT GSSAPI_NONE -OPTIONS_DEFAULT= CA_BUNDLE COOKIES GSSAPI_BASE IPV6 OPENSSL PROXY RESOLV THREADED_RESOLVER TLS_SRP +OPTIONS_DEFAULT= CA_BUNDLE COOKIES IPV6 OPENSSL PROXY RESOLV THREADED_RESOLVER TLS_SRP CA_BUNDLE_DESC= Install CA bundle for OpenSSL COOKIES_DESC= Cookies support CURL_DEBUG_DESC= cURL debug memory tracking @@ -32,6 +32,13 @@ RESOLV_DESC= DNS resolving options THREADED_RESOLVER_DESC= Threaded DNS resolver TLS_SRP_DESC= TLS-SRP (Secure Remote Password) support +LOCALBASE?= /usr/local +.if defined(WITH_OPENSSL_PORT) || (!defined(WITH_OPENSSL_BASE) && exists(${LOCALBASE}/lib/libcrypto.so)) +OPTIONS_DEFAULT+= GSSAPI_NONE +.else +OPTIONS_DEFAULT+= GSSAPI_BASE +.endif + CONFIGURE_ARGS+=--disable-werror \ --enable-imap --enable-pop3 --enable-rtsp --enable-smtp \ --without-axtls From owner-svn-ports-all@freebsd.org Sat Aug 15 01:14:01 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4C659B7A05; Sat, 15 Aug 2015 01:14:01 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD907197C; Sat, 15 Aug 2015 01:14:01 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F1E1S9068057; Sat, 15 Aug 2015 01:14:01 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F1E1WV068055; Sat, 15 Aug 2015 01:14:01 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201508150114.t7F1E1WV068055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Sat, 15 Aug 2015 01:14:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394264 - head/security/afl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 01:14:02 -0000 Author: delphij Date: Sat Aug 15 01:14:00 2015 New Revision: 394264 URL: https://svnweb.freebsd.org/changeset/ports/394264 Log: Update to 1.86b. Modified: head/security/afl/Makefile head/security/afl/distinfo Modified: head/security/afl/Makefile ============================================================================== --- head/security/afl/Makefile Fri Aug 14 23:46:49 2015 (r394263) +++ head/security/afl/Makefile Sat Aug 15 01:14:00 2015 (r394264) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= afl -PORTVERSION= 1.83b +PORTVERSION= 1.86b CATEGORIES= security MASTER_SITES= http://lcamtuf.coredump.cx/afl/releases/ Modified: head/security/afl/distinfo ============================================================================== --- head/security/afl/distinfo Fri Aug 14 23:46:49 2015 (r394263) +++ head/security/afl/distinfo Sat Aug 15 01:14:00 2015 (r394264) @@ -1,2 +1,2 @@ -SHA256 (afl-1.83b.tgz) = 5b1083537b549c74250acb43023d4bf0551508afcb07daa90330d40adb4e6efe -SIZE (afl-1.83b.tgz) = 799736 +SHA256 (afl-1.86b.tgz) = 19588e43d14d3f76c5970f7e64ab314d13b325198a7a8eff8a9e3d6a1cb3c9af +SIZE (afl-1.86b.tgz) = 801376 From owner-svn-ports-all@freebsd.org Sat Aug 15 02:22:56 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92AE79B9303; Sat, 15 Aug 2015 02:22:56 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 633281FCD; Sat, 15 Aug 2015 02:22:56 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F2MuX4096245; Sat, 15 Aug 2015 02:22:56 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F2Mt64096243; Sat, 15 Aug 2015 02:22:55 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201508150222.t7F2Mt64096243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sat, 15 Aug 2015 02:22:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394265 - head/www/mediawiki123 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 02:22:56 -0000 Author: wen Date: Sat Aug 15 02:22:55 2015 New Revision: 394265 URL: https://svnweb.freebsd.org/changeset/ports/394265 Log: - Update to 1.23.10 - Fix file permission - Update options Modified: head/www/mediawiki123/Makefile head/www/mediawiki123/distinfo Modified: head/www/mediawiki123/Makefile ============================================================================== --- head/www/mediawiki123/Makefile Sat Aug 15 01:14:00 2015 (r394264) +++ head/www/mediawiki123/Makefile Sat Aug 15 02:22:55 2015 (r394265) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.23.9 -PORTREVISION= 1 +PORTVERSION= 1.23.10 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 123 @@ -31,12 +30,11 @@ PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message SUB_LIST= MEDIAWIKIDIR=${PREFIX}/${MEDIAWIKIDIR} -OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC EACCEL XCACHE IMAGICK +OPTIONS_DEFINE= MYSQL PGSQL SQLITE LDAP MEMCACHED APC XCACHE IMAGICK OPTIONS_DEFAULT=MYSQL MEMCACHED_DESC= Use memcached APC_DESC= Use pecl-APC (Mediawiki recommended) -EACCEL_DESC= Use eAccelerator (instead of pecl-APC) XCACHE_DESC= Use xCache (instead of pecl-APC) IMAGICK_DESC= Use ImageMagick @@ -76,12 +74,8 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP .endif pre-install: - @${ECHO_CMD} "@owner ${WWWOWN}" >> ${PLIST} - @${ECHO_CMD} "@group ${WWWGRP}" >> ${PLIST} @${FIND} -s -d ${WRKSRC} -not -type d | ${SED} "s?${WRKSRC}?${MEDIAWIKIDIR}?g" >>${PLIST} @${ECHO} @dir ${MEDIAWIKIDIR} >> ${PLIST} - @${ECHO_CMD} "@group" >> ${PLIST} - @${ECHO_CMD} "@owner" >> ${PLIST} do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${MEDIAWIKIDIR} Modified: head/www/mediawiki123/distinfo ============================================================================== --- head/www/mediawiki123/distinfo Sat Aug 15 01:14:00 2015 (r394264) +++ head/www/mediawiki123/distinfo Sat Aug 15 02:22:55 2015 (r394265) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.23.9.tar.gz) = 14af72b5b01b8c08e62d893db08519440372ba115c94ecf2f622fd77c123f3d0 -SIZE (mediawiki-1.23.9.tar.gz) = 20979505 +SHA256 (mediawiki-1.23.10.tar.gz) = d25a5cfaeb78abe2b86c10404d321f18cfd573754e1e3eaeeea4fa2b41fefda0 +SIZE (mediawiki-1.23.10.tar.gz) = 21044267 From owner-svn-ports-all@freebsd.org Sat Aug 15 04:04:47 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4FD9F9BA198; Sat, 15 Aug 2015 04:04:47 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 312841493; Sat, 15 Aug 2015 04:04:47 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F44l3m038090; Sat, 15 Aug 2015 04:04:47 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F44kgt038087; Sat, 15 Aug 2015 04:04:46 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201508150404.t7F44kgt038087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Sat, 15 Aug 2015 04:04:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394266 - in head/comms/fldigi: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 04:04:47 -0000 Author: shurd Date: Sat Aug 15 04:04:45 2015 New Revision: 394266 URL: https://svnweb.freebsd.org/changeset/ports/394266 Log: Update to 3.22.13, fix portlint warnings. This release adds the FSQ modem. Fix the following two portline warnings: WARN: Makefile: [25]: the options to USES are not sorted. Please consider sorting them. WARN: Makefile: you should only use ".if ${PORT_OPTIONS:MDOCS}" to wrap installation of files into /usr/local/share/doc if the collection of files is large and it takes considerable time to copy. Added: head/comms/fldigi/files/patch-src_fsq_fsq.cxx (contents, props changed) Modified: head/comms/fldigi/Makefile head/comms/fldigi/distinfo Modified: head/comms/fldigi/Makefile ============================================================================== --- head/comms/fldigi/Makefile Sat Aug 15 02:22:55 2015 (r394265) +++ head/comms/fldigi/Makefile Sat Aug 15 04:04:45 2015 (r394266) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= fldigi -PORTVERSION= 3.22.10 +PORTVERSION= 3.22.13 CATEGORIES= comms hamradio MASTER_SITES= http://www.w1hkj.com/downloads/fldigi/\ LOCAL/shurd @@ -22,7 +22,7 @@ LIB_DEPENDS= libexecinfo.so:${PORTSDIR}/ USE_CXXSTD= gnu++0x GNU_CONFIGURE= yes -USES= gmake pkgconfig compiler:c++11-lib perl5 shebangfix +USES= compiler:c++11-lib gmake perl5 pkgconfig shebangfix CONFIGURE_ENV= FLTK_CONFIG="${LOCALBASE}/bin/fltk-config" \ EXTRA_LIBS="-lexecinfo" @@ -79,10 +79,8 @@ post-configure: ${RM} ${WRKSRC}/doc/*.1 post-install: -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/guide.html ${STAGEDIR}${DOCSDIR} -.endif .include Modified: head/comms/fldigi/distinfo ============================================================================== --- head/comms/fldigi/distinfo Sat Aug 15 02:22:55 2015 (r394265) +++ head/comms/fldigi/distinfo Sat Aug 15 04:04:45 2015 (r394266) @@ -1,2 +1,2 @@ -SHA256 (fldigi-3.22.10.tar.gz) = 5b31d111b7158936ad7cf5317c91c99ef811686cafbb73ab2f26a044676a6a39 -SIZE (fldigi-3.22.10.tar.gz) = 2876358 +SHA256 (fldigi-3.22.13.tar.gz) = f055b607dd28bde847541bd4518e5ceac49e0eccf4bda97c4c589d598c4a3baf +SIZE (fldigi-3.22.13.tar.gz) = 2909523 Added: head/comms/fldigi/files/patch-src_fsq_fsq.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/fldigi/files/patch-src_fsq_fsq.cxx Sat Aug 15 04:04:45 2015 (r394266) @@ -0,0 +1,14 @@ +--- src/fsq/fsq.cxx.orig 2015-08-15 03:43:43 UTC ++++ src/fsq/fsq.cxx +@@ -1198,8 +1198,9 @@ int fsq::rx_process(const double *buf, i + BLOCK_SIZE*sizeof(*rx_stream)); // # bytes + memset(fft_data, 0, sizeof(fft_data)); + for (int i = 0; i < BLOCK_SIZE; i++) +- fft_data[i].real() = fft_data[i].imag() = +- rx_stream[i] * a_blackman[i]; ++ fft_data[i] = complex ++ (rx_stream[i] * a_blackman[i], ++ rx_stream[i] * a_blackman[i]); + fft->ComplexFFT(fft_data); + process_tones(); + } From owner-svn-ports-all@freebsd.org Sat Aug 15 04:15:34 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E02B39BA2C9; Sat, 15 Aug 2015 04:15:34 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CEB901BD1; Sat, 15 Aug 2015 04:15:34 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F4FYPl047037; Sat, 15 Aug 2015 04:15:34 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F4FTUM047017; Sat, 15 Aug 2015 04:15:29 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201508150415.t7F4FTUM047017@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Sat, 15 Aug 2015 04:15:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394267 - in head/comms/qsstv: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 04:15:35 -0000 Author: shurd Date: Sat Aug 15 04:15:28 2015 New Revision: 394267 URL: https://svnweb.freebsd.org/changeset/ports/394267 Log: Update to 8.2.12 Maintenance release. Deleted: head/comms/qsstv/pkg-plist Modified: head/comms/qsstv/Makefile head/comms/qsstv/distinfo head/comms/qsstv/files/patch-qsstv_configform.ui head/comms/qsstv/files/patch-qsstv_drmrx_channeldecode.cpp head/comms/qsstv/files/patch-qsstv_drmrx_deinterleaver.cpp head/comms/qsstv/files/patch-qsstv_drmrx_demodulator.cpp head/comms/qsstv/files/patch-qsstv_drmrx_getmode.cpp head/comms/qsstv/files/patch-qsstv_drmrx_mkfacmap.cpp head/comms/qsstv/files/patch-qsstv_drmrx_mkmscmap.cpp head/comms/qsstv/files/patch-qsstv_drmrx_psdcmean.cpp head/comms/qsstv/files/patch-qsstv_drmrx_psdmean.cpp head/comms/qsstv/files/patch-qsstv_qsstv.pro head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.cpp head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.h head/comms/qsstv/files/patch-qsstv_sound_soundio.cpp head/comms/qsstv/files/patch-qsstv_widgets_freqform.ui head/comms/qsstv/files/patch-qsstv_widgets_sweepform.ui head/comms/qsstv/files/patch-qwt_qwt.pro Modified: head/comms/qsstv/Makefile ============================================================================== --- head/comms/qsstv/Makefile Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/Makefile Sat Aug 15 04:15:28 2015 (r394267) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= qsstv -PORTVERSION= 8.2.11 -PORTREVISION= 1 +PORTVERSION= 8.2.12 CATEGORIES= comms hamradio MASTER_SITES= http://users.telenet.be/on4qz/qsstv/downloads/ \ LOCAL/shurd @@ -22,7 +21,6 @@ BUILD_DEPENDS= v4l_compat>=0:${PORTSDIR} USES= qmake USE_QT4= gui network xml moc_build rcc_build uic_build - -.include +PLIST_FILES= bin/qsstv .include Modified: head/comms/qsstv/distinfo ============================================================================== --- head/comms/qsstv/distinfo Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/distinfo Sat Aug 15 04:15:28 2015 (r394267) @@ -1,2 +1,2 @@ -SHA256 (qsstv_8.2.11.tar.gz) = c948c104e58664f4da8001f7a14c76cfeb46664ae0bbdfb7f5e22cac9de1aa77 -SIZE (qsstv_8.2.11.tar.gz) = 1055598 +SHA256 (qsstv_8.2.12.tar.gz) = 3bb6cff072747981d387196780de4414f8766a5a620dc1629cb4ba4de1d3bc4d +SIZE (qsstv_8.2.12.tar.gz) = 942737 Modified: head/comms/qsstv/files/patch-qsstv_configform.ui ============================================================================== --- head/comms/qsstv/files/patch-qsstv_configform.ui Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_configform.ui Sat Aug 15 04:15:28 2015 (r394267) @@ -1,6 +1,6 @@ ---- qsstv/configform.ui.orig 2014-04-10 15:00:46.000000000 -0700 -+++ qsstv/configform.ui 2014-04-10 15:00:52.000000000 -0700 -@@ -2293,7 +2293,6 @@ +--- qsstv/configform.ui.orig 2014-12-06 14:41:00 UTC ++++ qsstv/configform.ui +@@ -2611,7 +2611,6 @@ Modified: head/comms/qsstv/files/patch-qsstv_drmrx_channeldecode.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_channeldecode.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_channeldecode.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/drmrx/channeldecode.cpp.orig 2014-04-08 02:02:06.000000000 -0700 -+++ qsstv/drmrx/channeldecode.cpp 2014-04-08 02:03:28.000000000 -0700 +--- qsstv/drmrx/channeldecode.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/channeldecode.cpp @@ -29,7 +29,6 @@ #include #include Modified: head/comms/qsstv/files/patch-qsstv_drmrx_deinterleaver.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_deinterleaver.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_deinterleaver.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/drmrx/deinterleaver.cpp.orig 2014-04-08 02:02:11.000000000 -0700 -+++ qsstv/drmrx/deinterleaver.cpp 2014-04-08 02:03:30.000000000 -0700 +--- qsstv/drmrx/deinterleaver.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/deinterleaver.cpp @@ -30,7 +30,6 @@ #include Modified: head/comms/qsstv/files/patch-qsstv_drmrx_demodulator.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_demodulator.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_demodulator.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,6 +1,6 @@ ---- qsstv/drmrx/demodulator.cpp.orig 2014-04-10 14:48:35.000000000 -0700 -+++ qsstv/drmrx/demodulator.cpp 2014-04-10 14:49:48.000000000 -0700 -@@ -941,7 +941,7 @@ +--- qsstv/drmrx/demodulator.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/demodulator.cpp +@@ -941,7 +941,7 @@ bool demodulator::channelEstimation() temp2 += actual_pilots[2 * j] * next_pilots[2 * j + 1] -actual_pilots[2 * j + 1] * next_pilots[2 * j]; } Modified: head/comms/qsstv/files/patch-qsstv_drmrx_getmode.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_getmode.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_getmode.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/drmrx/getmode.cpp.orig 2014-04-08 02:02:16.000000000 -0700 -+++ qsstv/drmrx/getmode.cpp 2014-04-08 02:03:32.000000000 -0700 +--- qsstv/drmrx/getmode.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/getmode.cpp @@ -34,7 +34,6 @@ #include #include Modified: head/comms/qsstv/files/patch-qsstv_drmrx_mkfacmap.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_mkfacmap.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_mkfacmap.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/drmrx/mkfacmap.cpp.orig 2014-04-08 02:02:22.000000000 -0700 -+++ qsstv/drmrx/mkfacmap.cpp 2014-04-08 02:03:34.000000000 -0700 +--- qsstv/drmrx/mkfacmap.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/mkfacmap.cpp @@ -27,7 +27,6 @@ #include Modified: head/comms/qsstv/files/patch-qsstv_drmrx_mkmscmap.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_mkmscmap.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_mkmscmap.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/drmrx/mkmscmap.cpp.orig 2014-04-08 02:02:32.000000000 -0700 -+++ qsstv/drmrx/mkmscmap.cpp 2014-04-08 02:03:36.000000000 -0700 +--- qsstv/drmrx/mkmscmap.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/mkmscmap.cpp @@ -32,7 +32,6 @@ #include #include Modified: head/comms/qsstv/files/patch-qsstv_drmrx_psdcmean.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_psdcmean.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_psdcmean.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/drmrx/psdcmean.cpp.orig 2014-04-08 02:02:38.000000000 -0700 -+++ qsstv/drmrx/psdcmean.cpp 2014-04-08 02:03:38.000000000 -0700 +--- qsstv/drmrx/psdcmean.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/psdcmean.cpp @@ -36,7 +36,6 @@ #include #include Modified: head/comms/qsstv/files/patch-qsstv_drmrx_psdmean.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_drmrx_psdmean.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_drmrx_psdmean.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/drmrx/psdmean.cpp.orig 2014-04-08 02:02:47.000000000 -0700 -+++ qsstv/drmrx/psdmean.cpp 2014-04-08 02:03:40.000000000 -0700 +--- qsstv/drmrx/psdmean.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/drmrx/psdmean.cpp @@ -36,7 +36,6 @@ #include #include Modified: head/comms/qsstv/files/patch-qsstv_qsstv.pro ============================================================================== --- head/comms/qsstv/files/patch-qsstv_qsstv.pro Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_qsstv.pro Sat Aug 15 04:15:28 2015 (r394267) @@ -1,6 +1,6 @@ ---- qsstv/qsstv.pro.orig 2014-12-06 06:41:00.000000000 -0800 -+++ qsstv/qsstv.pro 2014-12-07 16:17:46.000000000 -0800 -@@ -420,20 +420,17 @@ +--- qsstv/qsstv.pro.orig 2014-12-06 14:41:00 UTC ++++ qsstv/qsstv.pro +@@ -420,20 +420,17 @@ HEADERS += scope/scopeoffset.h \ FORMS += scope/scopeoffset.ui \ scope/plotform.ui Modified: head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,6 +1,6 @@ ---- qsstv/sound/soundcontrol.cpp.orig 2014-04-09 10:27:08.000000000 -0700 -+++ qsstv/sound/soundcontrol.cpp 2014-04-09 10:27:28.000000000 -0700 -@@ -53,8 +53,8 @@ +--- qsstv/sound/soundcontrol.cpp.orig 2014-12-06 14:41:00 UTC ++++ qsstv/sound/soundcontrol.cpp +@@ -53,8 +53,8 @@ void soundControl::readSettings() txClock=qSettings.value("txclock",BASESAMPLERATE).toDouble(); if(fabs(1-rxClock/BASESAMPLERATE)>0.002) rxClock=BASESAMPLERATE; if(fabs(1-txClock/BASESAMPLERATE)>0.002) txClock=BASESAMPLERATE; @@ -11,7 +11,7 @@ soundIOPtr->soundRoutingInput= (soundIO::edataSrc)qSettings.value("soundRoutingInput", 0 ).toInt(); soundIOPtr->soundRoutingOutput= (soundIO::edataDst)qSettings.value("soundRoutingOutput", 0 ).toInt(); soundIOPtr->recordingSize= qSettings.value("recordingSize", 100 ).toInt(); -@@ -69,8 +69,8 @@ +@@ -69,8 +69,8 @@ void soundControl::writeSettings() qSettings.beginGroup("Sound"); qSettings.setValue("rxclock",rxClock); qSettings.setValue("txclock",txClock); @@ -22,7 +22,7 @@ qSettings.setValue ("soundRoutingInput", soundIOPtr->soundRoutingInput ); qSettings.setValue ("soundRoutingOutput",soundIOPtr->soundRoutingOutput ); qSettings.setValue ("recordingSize",soundIOPtr->recordingSize ); -@@ -82,8 +82,8 @@ +@@ -82,8 +82,8 @@ void soundControl::setParams() { setValue(rxClock,ui->inputClockLineEdit,9); setValue(txClock,ui->outputClockLineEdit,9); @@ -33,7 +33,7 @@ soundIOPtr->inputAudioDevice=ui->inputPCMNameComboBox->currentText(); soundIOPtr->outputAudioDevice=ui->outputPCMNameComboBox->currentText(); -@@ -99,13 +99,13 @@ +@@ -99,13 +99,13 @@ void soundControl::setParams() void soundControl::getParams() { changed=false; @@ -51,7 +51,7 @@ if (ui->inFromCard->isChecked()) soundIOPtr->soundRoutingInput=soundIO::SNDINCARD; else if(ui->inFromFile->isChecked()) soundIOPtr->soundRoutingInput=soundIO::SNDINFILE; -@@ -114,7 +114,7 @@ +@@ -114,7 +114,7 @@ void soundControl::getParams() if (ui->outToCard->isChecked()) soundIOPtr->soundRoutingOutput=soundIO::SNDOUTCARD; else soundIOPtr->soundRoutingOutput=soundIO::SNDOUTTOFILE; getValue(soundIOPtr->recordingSize,ui->mbSpinBox); Modified: head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.h ============================================================================== --- head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.h Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_sound_soundcontrol.h Sat Aug 15 04:15:28 2015 (r394267) @@ -1,6 +1,6 @@ ---- qsstv/sound/soundcontrol.h.orig 2014-04-09 10:27:16.000000000 -0700 -+++ qsstv/sound/soundcontrol.h 2014-04-09 10:27:28.000000000 -0700 -@@ -22,8 +22,8 @@ +--- qsstv/sound/soundcontrol.h.orig 2014-12-06 14:41:00 UTC ++++ qsstv/sound/soundcontrol.h +@@ -22,8 +22,8 @@ public: private: Ui::soundControl *ui; Modified: head/comms/qsstv/files/patch-qsstv_sound_soundio.cpp ============================================================================== --- head/comms/qsstv/files/patch-qsstv_sound_soundio.cpp Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_sound_soundio.cpp Sat Aug 15 04:15:28 2015 (r394267) @@ -1,6 +1,6 @@ ---- qsstv/sound/soundio.cpp.orig 2014-04-03 11:15:08.000000000 -0700 -+++ qsstv/sound/soundio.cpp 2014-04-09 21:47:59.000000000 -0700 -@@ -328,7 +328,9 @@ +--- qsstv/sound/soundio.cpp.orig 2015-02-28 15:05:28 UTC ++++ qsstv/sound/soundio.cpp +@@ -328,7 +328,9 @@ int soundIO::capture() if ( count == -EPIPE ) { // Overrun @@ -11,7 +11,7 @@ snd_pcm_start (captureHandle); qDebug()<< "Overrun"; } -@@ -573,8 +575,6 @@ +@@ -573,8 +575,6 @@ bool soundIO::listCards() // int totalDevices; snd_pcm_info_t *pcmInfo; snd_ctl_t *cardHandle; @@ -20,7 +20,7 @@ // No cards found yet totalCards = 0; -@@ -582,6 +582,11 @@ +@@ -582,6 +582,11 @@ bool soundIO::listCards() // Start with first card cardNum = -1; @@ -32,7 +32,7 @@ for (;;) { -@@ -599,8 +604,6 @@ +@@ -599,8 +604,6 @@ bool soundIO::listCards() qDebug() << "Can't open card "<< cardNum << snd_strerror(err); continue; } @@ -41,7 +41,7 @@ // Tell ALSA to fill in our snd_ctl_card_info_t with info about this card if ((err = snd_ctl_card_info(cardHandle, cardInfo)) >= 0) -@@ -619,9 +622,6 @@ +@@ -619,9 +622,6 @@ bool soundIO::listCards() // NOTE: It's possible that this sound card may have no wave devices on it // at all, for example if it's only a MIDI card if (devNum < 0) break; @@ -51,7 +51,7 @@ memset(pcmInfo, 0, snd_pcm_info_sizeof()); // Tell ALSA which device (number) we want info about -@@ -636,6 +636,22 @@ +@@ -636,6 +636,22 @@ bool soundIO::listCards() // qDebug() << "Found:" << totalDevices << " digital audio devices on card " << cardNum; } Modified: head/comms/qsstv/files/patch-qsstv_widgets_freqform.ui ============================================================================== --- head/comms/qsstv/files/patch-qsstv_widgets_freqform.ui Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_widgets_freqform.ui Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/widgets/freqform.ui.orig 2014-04-10 14:59:37.000000000 -0700 -+++ qsstv/widgets/freqform.ui 2014-04-10 14:59:45.000000000 -0700 +--- qsstv/widgets/freqform.ui.orig 2014-12-06 14:41:00 UTC ++++ qsstv/widgets/freqform.ui @@ -242,7 +242,6 @@ Modified: head/comms/qsstv/files/patch-qsstv_widgets_sweepform.ui ============================================================================== --- head/comms/qsstv/files/patch-qsstv_widgets_sweepform.ui Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qsstv_widgets_sweepform.ui Sat Aug 15 04:15:28 2015 (r394267) @@ -1,5 +1,5 @@ ---- qsstv/widgets/sweepform.ui.orig 2014-04-10 15:00:13.000000000 -0700 -+++ qsstv/widgets/sweepform.ui 2014-04-10 15:00:18.000000000 -0700 +--- qsstv/widgets/sweepform.ui.orig 2014-12-06 14:41:00 UTC ++++ qsstv/widgets/sweepform.ui @@ -248,7 +248,6 @@ Modified: head/comms/qsstv/files/patch-qwt_qwt.pro ============================================================================== --- head/comms/qsstv/files/patch-qwt_qwt.pro Sat Aug 15 04:04:45 2015 (r394266) +++ head/comms/qsstv/files/patch-qwt_qwt.pro Sat Aug 15 04:15:28 2015 (r394267) @@ -1,6 +1,6 @@ ---- qwt/qwt.pro.orig 2014-11-22 18:51:18.000000000 -0800 -+++ qwt/qwt.pro 2014-11-22 18:51:34.000000000 -0800 -@@ -209,5 +209,4 @@ +--- qwt/qwt.pro.orig 2014-12-06 14:41:00 UTC ++++ qwt/qwt.pro +@@ -209,5 +209,4 @@ unix:!symbian { } else { target.path = /usr/lib } From owner-svn-ports-all@freebsd.org Sat Aug 15 04:23:47 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C00119BA3D9; Sat, 15 Aug 2015 04:23:47 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B01C41025; Sat, 15 Aug 2015 04:23:47 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F4NlEp051068; Sat, 15 Aug 2015 04:23:47 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F4NlnS051065; Sat, 15 Aug 2015 04:23:47 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201508150423.t7F4NlnS051065@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Sat, 15 Aug 2015 04:23:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394268 - head/comms/quisk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 04:23:47 -0000 Author: shurd Date: Sat Aug 15 04:23:46 2015 New Revision: 394268 URL: https://svnweb.freebsd.org/changeset/ports/394268 Log: Update to 3.7.4 Major changes since 3.6.22: - Added support for the HermesLite radio. - Add repeater offset and CTCSS tone to favourites screen. - Support for full-screen mode. Modified: head/comms/quisk/Makefile head/comms/quisk/distinfo Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Sat Aug 15 04:15:28 2015 (r394267) +++ head/comms/quisk/Makefile Sat Aug 15 04:23:46 2015 (r394268) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= quisk -PORTVERSION= 3.6.22 -PORTREVISION= 1 +PORTVERSION= 3.7.4 CATEGORIES= comms hamradio MASTER_SITES= http://james.ahlstrom.name/quisk/ \ LOCAL/shurd Modified: head/comms/quisk/distinfo ============================================================================== --- head/comms/quisk/distinfo Sat Aug 15 04:15:28 2015 (r394267) +++ head/comms/quisk/distinfo Sat Aug 15 04:23:46 2015 (r394268) @@ -1,2 +1,2 @@ -SHA256 (quisk-3.6.22.tar.gz) = 909427e525a78b31f17175fce2a14f5536194ab66aa3e41fdd0468c3b8ceb6e7 -SIZE (quisk-3.6.22.tar.gz) = 1678143 +SHA256 (quisk-3.7.4.tar.gz) = 18b1895d098b0e087d6ae9fa38859fc46e6f5d3c92b2efbe40d1d79719ad4c59 +SIZE (quisk-3.7.4.tar.gz) = 2207348 From owner-svn-ports-all@freebsd.org Sat Aug 15 04:29:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 716449BA48C; Sat, 15 Aug 2015 04:29:24 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47AC411A3; Sat, 15 Aug 2015 04:29:24 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F4TOua051420; Sat, 15 Aug 2015 04:29:24 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F4TN8B051414; Sat, 15 Aug 2015 04:29:23 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201508150429.t7F4TN8B051414@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Sat, 15 Aug 2015 04:29:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394269 - in head/comms/unixcw: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 04:29:24 -0000 Author: shurd Date: Sat Aug 15 04:29:22 2015 New Revision: 394269 URL: https://svnweb.freebsd.org/changeset/ports/394269 Log: Update to 3.4.2 (also updates comms/xcwcp). Use makepatch for files/* Modified: head/comms/unixcw/Makefile head/comms/unixcw/distinfo head/comms/unixcw/files/patch-src_libcw_Makefile.in head/comms/unixcw/pkg-plist Modified: head/comms/unixcw/Makefile ============================================================================== --- head/comms/unixcw/Makefile Sat Aug 15 04:23:46 2015 (r394268) +++ head/comms/unixcw/Makefile Sat Aug 15 04:29:22 2015 (r394269) @@ -4,7 +4,7 @@ # it still works as well. PORTNAME?= unixcw -PORTVERSION= 3.4.1 +PORTVERSION= 3.4.2 CATEGORIES= comms hamradio MASTER_SITES= SF/unixcw/unixcw-${PORTVERSION} DISTNAME= unixcw_${PORTVERSION}.orig @@ -28,6 +28,6 @@ USE_CSTD= gnu99 WRKSRC= ${WRKDIR}/unixcw-${PORTVERSION} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcw.so.6.3.1 + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcw.so.6.4.1 .include Modified: head/comms/unixcw/distinfo ============================================================================== --- head/comms/unixcw/distinfo Sat Aug 15 04:23:46 2015 (r394268) +++ head/comms/unixcw/distinfo Sat Aug 15 04:29:22 2015 (r394269) @@ -1,2 +1,2 @@ -SHA256 (unixcw_3.4.1.orig.tar.gz) = dc948b495fe76654cede5cd607ea0e3be73959f7af8e6ba8a0c57e314a7637e0 -SIZE (unixcw_3.4.1.orig.tar.gz) = 673658 +SHA256 (unixcw_3.4.2.orig.tar.gz) = 8c26f80861cb88de7554f1d693fb6288cf49ab5c7a6af31ee727860f56d76075 +SIZE (unixcw_3.4.2.orig.tar.gz) = 710813 Modified: head/comms/unixcw/files/patch-src_libcw_Makefile.in ============================================================================== --- head/comms/unixcw/files/patch-src_libcw_Makefile.in Sat Aug 15 04:23:46 2015 (r394268) +++ head/comms/unixcw/files/patch-src_libcw_Makefile.in Sat Aug 15 04:29:22 2015 (r394269) @@ -1,6 +1,6 @@ ---- src/libcw/Makefile.in.orig 2014-12-12 03:00:52.000000000 -0800 -+++ src/libcw/Makefile.in 2014-12-12 03:04:21.000000000 -0800 -@@ -663,7 +663,7 @@ +--- src/libcw/Makefile.in.orig 2015-06-10 20:55:54 UTC ++++ src/libcw/Makefile.in +@@ -690,7 +690,7 @@ libcw_test_simple_gen_LDADD = -lm -lpthr libcw_test_simple_gen_CFLAGS = -rdynamic # target: libcw.pc Modified: head/comms/unixcw/pkg-plist ============================================================================== --- head/comms/unixcw/pkg-plist Sat Aug 15 04:23:46 2015 (r394268) +++ head/comms/unixcw/pkg-plist Sat Aug 15 04:29:22 2015 (r394269) @@ -6,7 +6,7 @@ include/libcw_debug.h lib/libcw.a lib/libcw.so lib/libcw.so.6 -lib/libcw.so.6.3.1 +lib/libcw.so.6.4.1 libdata/pkgconfig/libcw.pc man/man1/cw.1.gz man/man1/cwgen.1.gz From owner-svn-ports-all@freebsd.org Sat Aug 15 04:36:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A44CB9BA596; Sat, 15 Aug 2015 04:36:11 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72D8D1623; Sat, 15 Aug 2015 04:36:11 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F4aBbB055502; Sat, 15 Aug 2015 04:36:11 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F4aAjF055498; Sat, 15 Aug 2015 04:36:10 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201508150436.t7F4aAjF055498@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Sat, 15 Aug 2015 04:36:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394270 - in head/comms/xnec2c: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 04:36:11 -0000 Author: shurd Date: Sat Aug 15 04:36:09 2015 New Revision: 394270 URL: https://svnweb.freebsd.org/changeset/ports/394270 Log: Update to 3.4 Use makepatch for files/* Modified: head/comms/xnec2c/Makefile head/comms/xnec2c/distinfo head/comms/xnec2c/files/patch-src_common.h (contents, props changed) head/comms/xnec2c/files/patch-src_somnec.c (contents, props changed) Modified: head/comms/xnec2c/Makefile ============================================================================== --- head/comms/xnec2c/Makefile Sat Aug 15 04:29:22 2015 (r394269) +++ head/comms/xnec2c/Makefile Sat Aug 15 04:36:09 2015 (r394270) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xnec2c -PORTVERSION= 3.3 -PORTEVISION= 1 +PORTVERSION= 3.4 CATEGORIES= comms hamradio MASTER_SITES= http://www.qsl.net/5b4az/pkg/nec2/xnec2c/ \ LOCAL/shurd Modified: head/comms/xnec2c/distinfo ============================================================================== --- head/comms/xnec2c/distinfo Sat Aug 15 04:29:22 2015 (r394269) +++ head/comms/xnec2c/distinfo Sat Aug 15 04:36:09 2015 (r394270) @@ -1,2 +1,2 @@ -SHA256 (xnec2c-3.3.tar.bz2) = 53914ea4ddf9d349551c2ce52693621e87dde0c8a9df7807fae99d6e02630242 -SIZE (xnec2c-3.3.tar.bz2) = 921522 +SHA256 (xnec2c-3.4.tar.bz2) = 92f25ee844d58109f99839854afacc14c37f4fdbc79f9d00c3a6c5f56248e537 +SIZE (xnec2c-3.4.tar.bz2) = 922548 Modified: head/comms/xnec2c/files/patch-src_common.h ============================================================================== --- head/comms/xnec2c/files/patch-src_common.h Sat Aug 15 04:29:22 2015 (r394269) +++ head/comms/xnec2c/files/patch-src_common.h Sat Aug 15 04:36:09 2015 (r394270) @@ -1,5 +1,5 @@ ---- src/common.h.orig 2014-06-08 17:50:43.000000000 -0700 -+++ src/common.h 2014-06-08 17:50:53.000000000 -0700 +--- src/common.h.orig 2015-04-10 07:22:25 UTC ++++ src/common.h @@ -37,6 +37,7 @@ #include #include Modified: head/comms/xnec2c/files/patch-src_somnec.c ============================================================================== --- head/comms/xnec2c/files/patch-src_somnec.c Sat Aug 15 04:29:22 2015 (r394269) +++ head/comms/xnec2c/files/patch-src_somnec.c Sat Aug 15 04:36:09 2015 (r394270) @@ -1,5 +1,5 @@ ---- src/somnec.c.orig 2013-12-01 23:01:31.000000000 -0800 -+++ src/somnec.c 2014-06-08 17:51:47.000000000 -0700 +--- src/somnec.c.orig 2015-02-18 05:31:10 UTC ++++ src/somnec.c @@ -38,6 +38,9 @@ #include "somnec.h" #include "shared.h" From owner-svn-ports-all@freebsd.org Sat Aug 15 05:49:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DE389BADBA; Sat, 15 Aug 2015 05:49:38 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 66F401CB0; Sat, 15 Aug 2015 05:49:38 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F5ncUq083801; Sat, 15 Aug 2015 05:49:38 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F5nbPP083799; Sat, 15 Aug 2015 05:49:37 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508150549.t7F5nbPP083799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 15 Aug 2015 05:49:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394271 - head/print/R-cran-knitr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 05:49:38 -0000 Author: tota Date: Sat Aug 15 05:49:37 2015 New Revision: 394271 URL: https://svnweb.freebsd.org/changeset/ports/394271 Log: - Update to 1.11 Modified: head/print/R-cran-knitr/Makefile head/print/R-cran-knitr/distinfo Modified: head/print/R-cran-knitr/Makefile ============================================================================== --- head/print/R-cran-knitr/Makefile Sat Aug 15 04:36:09 2015 (r394270) +++ head/print/R-cran-knitr/Makefile Sat Aug 15 05:49:37 2015 (r394271) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= knitr -PORTVERSION= 1.10.5 +PORTVERSION= 1.11 CATEGORIES= print DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -12,7 +12,7 @@ COMMENT= General-Purpose Package for Dyn LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -RUN_DEPENDS= R-cran-evaluate>=0.6:${PORTSDIR}/devel/R-cran-evaluate \ +RUN_DEPENDS= R-cran-evaluate>=0.7.2:${PORTSDIR}/devel/R-cran-evaluate \ R-cran-digest>0:${PORTSDIR}/security/R-cran-digest \ R-cran-formatR>0:${PORTSDIR}/textproc/R-cran-formatR \ R-cran-highr>0:${PORTSDIR}/textproc/R-cran-highr \ Modified: head/print/R-cran-knitr/distinfo ============================================================================== --- head/print/R-cran-knitr/distinfo Sat Aug 15 04:36:09 2015 (r394270) +++ head/print/R-cran-knitr/distinfo Sat Aug 15 05:49:37 2015 (r394271) @@ -1,2 +1,2 @@ -SHA256 (knitr_1.10.5.tar.gz) = 471d1725fbd28e79578da44b8b82c40aef6b7f76f4d93109c16d91c5a5d5b7e3 -SIZE (knitr_1.10.5.tar.gz) = 688176 +SHA256 (knitr_1.11.tar.gz) = ad6925896269364d9261c87a4be2fa312ac0aec710e2e6579b4e5e0b81a272c6 +SIZE (knitr_1.11.tar.gz) = 688792 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:27:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D49509A09CC; Sat, 15 Aug 2015 07:27:33 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BACF01B29; Sat, 15 Aug 2015 07:27:33 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7RXV7024225; Sat, 15 Aug 2015 07:27:33 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7RXmb024223; Sat, 15 Aug 2015 07:27:33 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508150727.t7F7RXmb024223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 15 Aug 2015 07:27:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394272 - head/www/p5-Mojolicious X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:27:33 -0000 Author: adamw Date: Sat Aug 15 07:27:32 2015 New Revision: 394272 URL: https://svnweb.freebsd.org/changeset/ports/394272 Log: Update to 6.15. Changes: https://metacpan.org/changes/distribution/Mojolicious Modified: head/www/p5-Mojolicious/Makefile head/www/p5-Mojolicious/distinfo Modified: head/www/p5-Mojolicious/Makefile ============================================================================== --- head/www/p5-Mojolicious/Makefile Sat Aug 15 05:49:37 2015 (r394271) +++ head/www/p5-Mojolicious/Makefile Sat Aug 15 07:27:32 2015 (r394272) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojolicious -PORTVERSION= 6.14 +PORTVERSION= 6.15 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Mojolicious/distinfo ============================================================================== --- head/www/p5-Mojolicious/distinfo Sat Aug 15 05:49:37 2015 (r394271) +++ head/www/p5-Mojolicious/distinfo Sat Aug 15 07:27:32 2015 (r394272) @@ -1,2 +1,2 @@ -SHA256 (Mojolicious-6.14.tar.gz) = 9808871b24ee8c9709fc1bd0473a64a54d99fc8c4d6334f503256ae90130b05a -SIZE (Mojolicious-6.14.tar.gz) = 646992 +SHA256 (Mojolicious-6.15.tar.gz) = 60d4cf764c29144d1626231f046ac42423b88d3e2647c11bd969c6412c11f273 +SIZE (Mojolicious-6.15.tar.gz) = 645374 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F16ED9A0B70; Sat, 15 Aug 2015 07:37:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E23F21E8A; Sat, 15 Aug 2015 07:37:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7b96D028323; Sat, 15 Aug 2015 07:37:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7b9Mn028322; Sat, 15 Aug 2015 07:37:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7b9Mn028322@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394273 - head/math/p5-Math-GMPf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:10 -0000 Author: sunpoet Date: Sat Aug 15 07:37:09 2015 New Revision: 394273 URL: https://svnweb.freebsd.org/changeset/ports/394273 Log: - Remove MASTER_SITE_SUBDIR Modified: head/math/p5-Math-GMPf/Makefile Modified: head/math/p5-Math-GMPf/Makefile ============================================================================== --- head/math/p5-Math-GMPf/Makefile Sat Aug 15 07:27:32 2015 (r394272) +++ head/math/p5-Math-GMPf/Makefile Sat Aug 15 07:37:09 2015 (r394273) @@ -6,7 +6,6 @@ PORTVERSION= 0.39 PORTREVISION= 1 CATEGORIES= math perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:SISYPHUS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:14 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3A3E9A0B94; Sat, 15 Aug 2015 07:37:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B245A1EB6; Sat, 15 Aug 2015 07:37:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bEw4028426; Sat, 15 Aug 2015 07:37:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7bEwX028425; Sat, 15 Aug 2015 07:37:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7bEwX028425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394274 - head/math/p5-Math-GMPq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:14 -0000 Author: sunpoet Date: Sat Aug 15 07:37:13 2015 New Revision: 394274 URL: https://svnweb.freebsd.org/changeset/ports/394274 Log: - Remove MASTER_SITE_SUBDIR Modified: head/math/p5-Math-GMPq/Makefile Modified: head/math/p5-Math-GMPq/Makefile ============================================================================== --- head/math/p5-Math-GMPq/Makefile Sat Aug 15 07:37:09 2015 (r394273) +++ head/math/p5-Math-GMPq/Makefile Sat Aug 15 07:37:13 2015 (r394274) @@ -6,7 +6,6 @@ PORTVERSION= 0.37 PORTREVISION= 1 CATEGORIES= math perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:SISYPHUS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 51C099A0BB9; Sat, 15 Aug 2015 07:37:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42A491F8E; Sat, 15 Aug 2015 07:37:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bJ16028529; Sat, 15 Aug 2015 07:37:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7bJng028528; Sat, 15 Aug 2015 07:37:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7bJng028528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394275 - head/math/p5-Math-GMPz X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:19 -0000 Author: sunpoet Date: Sat Aug 15 07:37:18 2015 New Revision: 394275 URL: https://svnweb.freebsd.org/changeset/ports/394275 Log: - Remove MASTER_SITE_SUBDIR Modified: head/math/p5-Math-GMPz/Makefile Modified: head/math/p5-Math-GMPz/Makefile ============================================================================== --- head/math/p5-Math-GMPz/Makefile Sat Aug 15 07:37:13 2015 (r394274) +++ head/math/p5-Math-GMPz/Makefile Sat Aug 15 07:37:18 2015 (r394275) @@ -5,7 +5,6 @@ PORTNAME= Math-GMPz PORTVERSION= 0.40 CATEGORIES= math perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:SISYPHUS PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:25 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0723A9A0BE4; Sat, 15 Aug 2015 07:37:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BFB0210DE; Sat, 15 Aug 2015 07:37:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bOHq028690; Sat, 15 Aug 2015 07:37:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7bNlU028687; Sat, 15 Aug 2015 07:37:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7bNlU028687@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394276 - in head/ftp/curl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:25 -0000 Author: sunpoet Date: Sat Aug 15 07:37:23 2015 New Revision: 394276 URL: https://svnweb.freebsd.org/changeset/ports/394276 Log: - Update to 7.44.0 Changes: http://curl.haxx.se/changes.html Deleted: head/ftp/curl/files/patch-lib-multi.c head/ftp/curl/files/patch-lib-transfer.c Modified: head/ftp/curl/Makefile head/ftp/curl/distinfo head/ftp/curl/pkg-plist Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Sat Aug 15 07:37:18 2015 (r394275) +++ head/ftp/curl/Makefile Sat Aug 15 07:37:23 2015 (r394276) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= curl -PORTVERSION= 7.43.0 -PORTREVISION= 3 +PORTVERSION= 7.44.0 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet Modified: head/ftp/curl/distinfo ============================================================================== --- head/ftp/curl/distinfo Sat Aug 15 07:37:18 2015 (r394275) +++ head/ftp/curl/distinfo Sat Aug 15 07:37:23 2015 (r394276) @@ -1,2 +1,2 @@ -SHA256 (curl-7.43.0.tar.lzma) = e2b8d84d9c7d85f81cc8477ea3ec757e4c9908eca116be8764b7d158aa7677fa -SIZE (curl-7.43.0.tar.lzma) = 2765536 +SHA256 (curl-7.44.0.tar.lzma) = e7aab6b92fb30f88f9150090f6fa04f1e4358809ca8642d4e79cd79db652563e +SIZE (curl-7.44.0.tar.lzma) = 2792083 Modified: head/ftp/curl/pkg-plist ============================================================================== --- head/ftp/curl/pkg-plist Sat Aug 15 07:37:18 2015 (r394275) +++ head/ftp/curl/pkg-plist Sat Aug 15 07:37:23 2015 (r394276) @@ -12,7 +12,7 @@ include/curl/typecheck-gcc.h lib/libcurl.a lib/libcurl.so lib/libcurl.so.4 -lib/libcurl.so.4.3.0 +lib/libcurl.so.4.4.0 lib/libcurl.so.7 libdata/pkgconfig/libcurl.pc man/man1/curl-config.1.gz @@ -26,6 +26,8 @@ man/man3/CURLMOPT_MAX_TOTAL_CONNECTIONS. man/man3/CURLMOPT_PIPELINING.3.gz man/man3/CURLMOPT_PIPELINING_SERVER_BL.3.gz man/man3/CURLMOPT_PIPELINING_SITE_BL.3.gz +man/man3/CURLMOPT_PUSHDATA.3.gz +man/man3/CURLMOPT_PUSHFUNCTION.3.gz man/man3/CURLMOPT_SOCKETDATA.3.gz man/man3/CURLMOPT_SOCKETFUNCTION.3.gz man/man3/CURLMOPT_TIMERDATA.3.gz @@ -301,6 +303,7 @@ man/man3/libcurl-errors.3.gz man/man3/libcurl-multi.3.gz man/man3/libcurl-share.3.gz man/man3/libcurl-symbols.3.gz +man/man3/libcurl-thread.3.gz man/man3/libcurl-tutorial.3.gz man/man3/libcurl.3.gz share/aclocal/libcurl.m4 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E11699A0C0C; Sat, 15 Aug 2015 07:37:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B04DA11A3; Sat, 15 Aug 2015 07:37:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bUKN028807; Sat, 15 Aug 2015 07:37:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7bUEq028803; Sat, 15 Aug 2015 07:37:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7bUEq028803@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394277 - head/devel/p5-Devel-OverloadInfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:31 -0000 Author: sunpoet Date: Sat Aug 15 07:37:29 2015 New Revision: 394277 URL: https://svnweb.freebsd.org/changeset/ports/394277 Log: - Update to 0.004 Changes: http://search.cpan.org/dist/Devel-OverloadInfo/Changes Modified: head/devel/p5-Devel-OverloadInfo/Makefile head/devel/p5-Devel-OverloadInfo/distinfo Modified: head/devel/p5-Devel-OverloadInfo/Makefile ============================================================================== --- head/devel/p5-Devel-OverloadInfo/Makefile Sat Aug 15 07:37:23 2015 (r394276) +++ head/devel/p5-Devel-OverloadInfo/Makefile Sat Aug 15 07:37:29 2015 (r394277) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Devel-OverloadInfo -PORTVERSION= 0.003 +PORTVERSION= 0.004 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Devel-OverloadInfo/distinfo ============================================================================== --- head/devel/p5-Devel-OverloadInfo/distinfo Sat Aug 15 07:37:23 2015 (r394276) +++ head/devel/p5-Devel-OverloadInfo/distinfo Sat Aug 15 07:37:29 2015 (r394277) @@ -1,2 +1,2 @@ -SHA256 (Devel-OverloadInfo-0.003.tar.gz) = bc79613ff8948dfc9be508c49276698bc42d6b92da4e33c8e961c42b765dfe01 -SIZE (Devel-OverloadInfo-0.003.tar.gz) = 11485 +SHA256 (Devel-OverloadInfo-0.004.tar.gz) = 83e88450064b0b0bbfd520cc9d7997fc7bed14ae257894eeadda28dc3e94937d +SIZE (Devel-OverloadInfo-0.004.tar.gz) = 12013 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C20749A0C33; Sat, 15 Aug 2015 07:37:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 943A61281; Sat, 15 Aug 2015 07:37:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bZFv028921; Sat, 15 Aug 2015 07:37:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7bZNp028919; Sat, 15 Aug 2015 07:37:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7bZNp028919@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394278 - head/www/rubygem-http X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:35 -0000 Author: sunpoet Date: Sat Aug 15 07:37:34 2015 New Revision: 394278 URL: https://svnweb.freebsd.org/changeset/ports/394278 Log: - Update to 0.9.1 Changes: https://github.com/tarcieri/http/blob/master/CHANGES.md Modified: head/www/rubygem-http/Makefile head/www/rubygem-http/distinfo Modified: head/www/rubygem-http/Makefile ============================================================================== --- head/www/rubygem-http/Makefile Sat Aug 15 07:37:29 2015 (r394277) +++ head/www/rubygem-http/Makefile Sat Aug 15 07:37:34 2015 (r394278) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= http -PORTVERSION= 0.9.0 +PORTVERSION= 0.9.1 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-http/distinfo ============================================================================== --- head/www/rubygem-http/distinfo Sat Aug 15 07:37:29 2015 (r394277) +++ head/www/rubygem-http/distinfo Sat Aug 15 07:37:34 2015 (r394278) @@ -1,2 +1,2 @@ -SHA256 (rubygem/http-0.9.0.gem) = 1c24039281a60d6f072748e733a0540be6764e5a31d1d29fb6f8db3e9b67fe1d -SIZE (rubygem/http-0.9.0.gem) = 64000 +SHA256 (rubygem/http-0.9.1.gem) = 549e27dcf9fece445ba785dfa108898b46f5d89b3db21afacc08e0ab193b04c2 +SIZE (rubygem/http-0.9.1.gem) = 64512 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:41 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15F359A0C62; Sat, 15 Aug 2015 07:37:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C37DB135B; Sat, 15 Aug 2015 07:37:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7beES029038; Sat, 15 Aug 2015 07:37:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7be8k029036; Sat, 15 Aug 2015 07:37:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7be8k029036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394279 - head/databases/p5-Mojo-Pg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:41 -0000 Author: sunpoet Date: Sat Aug 15 07:37:39 2015 New Revision: 394279 URL: https://svnweb.freebsd.org/changeset/ports/394279 Log: - Update to 2.08 Changes: http://search.cpan.org/dist/Mojo-Pg/Changes Modified: head/databases/p5-Mojo-Pg/Makefile head/databases/p5-Mojo-Pg/distinfo Modified: head/databases/p5-Mojo-Pg/Makefile ============================================================================== --- head/databases/p5-Mojo-Pg/Makefile Sat Aug 15 07:37:34 2015 (r394278) +++ head/databases/p5-Mojo-Pg/Makefile Sat Aug 15 07:37:39 2015 (r394279) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojo-Pg -PORTVERSION= 2.07 +PORTVERSION= 2.08 CATEGORIES= databases www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/databases/p5-Mojo-Pg/distinfo ============================================================================== --- head/databases/p5-Mojo-Pg/distinfo Sat Aug 15 07:37:34 2015 (r394278) +++ head/databases/p5-Mojo-Pg/distinfo Sat Aug 15 07:37:39 2015 (r394279) @@ -1,2 +1,2 @@ -SHA256 (Mojo-Pg-2.07.tar.gz) = 5d4584cc15a315ac909c6b81cd905ddacf175c41b8f1bf8d9568b1fb73b73cd5 -SIZE (Mojo-Pg-2.07.tar.gz) = 23500 +SHA256 (Mojo-Pg-2.08.tar.gz) = 9d0b0e183ae07183e6095dba7849285a07611ca9bc897f4a97bcfc4fc999a26b +SIZE (Mojo-Pg-2.08.tar.gz) = 23651 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6F109A0C86; Sat, 15 Aug 2015 07:37:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7287E1464; Sat, 15 Aug 2015 07:37:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bkPx029171; Sat, 15 Aug 2015 07:37:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7bjcp029168; Sat, 15 Aug 2015 07:37:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7bjcp029168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394280 - head/devel/p5-Data-Object X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:46 -0000 Author: sunpoet Date: Sat Aug 15 07:37:44 2015 New Revision: 394280 URL: https://svnweb.freebsd.org/changeset/ports/394280 Log: - Update to 0.40 Changes: http://search.cpan.org/dist/Data-Object/CHANGES Modified: head/devel/p5-Data-Object/Makefile head/devel/p5-Data-Object/distinfo head/devel/p5-Data-Object/pkg-plist Modified: head/devel/p5-Data-Object/Makefile ============================================================================== --- head/devel/p5-Data-Object/Makefile Sat Aug 15 07:37:39 2015 (r394279) +++ head/devel/p5-Data-Object/Makefile Sat Aug 15 07:37:44 2015 (r394280) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Data-Object -PORTVERSION= 0.37 +PORTVERSION= 0.40 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Data-Object/distinfo ============================================================================== --- head/devel/p5-Data-Object/distinfo Sat Aug 15 07:37:39 2015 (r394279) +++ head/devel/p5-Data-Object/distinfo Sat Aug 15 07:37:44 2015 (r394280) @@ -1,2 +1,2 @@ -SHA256 (Data-Object-0.37.tar.gz) = 7555d0aa7b355471fe432b1f941f3e45654bf6870b35edf75b69dd4a05b66dd4 -SIZE (Data-Object-0.37.tar.gz) = 67498 +SHA256 (Data-Object-0.40.tar.gz) = 3dbcfbd195bc85975f7f3d8a70ecf9a0f9b9d48ea27c66be7c9a8768a225205b +SIZE (Data-Object-0.40.tar.gz) = 68379 Modified: head/devel/p5-Data-Object/pkg-plist ============================================================================== --- head/devel/p5-Data-Object/pkg-plist Sat Aug 15 07:37:39 2015 (r394279) +++ head/devel/p5-Data-Object/pkg-plist Sat Aug 15 07:37:44 2015 (r394280) @@ -68,6 +68,7 @@ %%PERL5_MAN3%%/Data::Object::Role::Undef.3.gz %%PERL5_MAN3%%/Data::Object::Role::Universal.3.gz %%PERL5_MAN3%%/Data::Object::Scalar.3.gz +%%PERL5_MAN3%%/Data::Object::Singleton.3.gz %%PERL5_MAN3%%/Data::Object::String.3.gz %%PERL5_MAN3%%/Data::Object::Undef.3.gz %%PERL5_MAN3%%/Data::Object::Universal.3.gz From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:51 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77D049A0CA5; Sat, 15 Aug 2015 07:37:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 688021619; Sat, 15 Aug 2015 07:37:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bpd0029288; Sat, 15 Aug 2015 07:37:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7boP7029286; Sat, 15 Aug 2015 07:37:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7boP7029286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394281 - head/www/p5-Catalyst-View-TT X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:51 -0000 Author: sunpoet Date: Sat Aug 15 07:37:50 2015 New Revision: 394281 URL: https://svnweb.freebsd.org/changeset/ports/394281 Log: - Update to 0.43 - Add NO_ARCH Changes: http://search.cpan.org/dist/Catalyst-View-TT/Changes Modified: head/www/p5-Catalyst-View-TT/Makefile head/www/p5-Catalyst-View-TT/distinfo Modified: head/www/p5-Catalyst-View-TT/Makefile ============================================================================== --- head/www/p5-Catalyst-View-TT/Makefile Sat Aug 15 07:37:44 2015 (r394280) +++ head/www/p5-Catalyst-View-TT/Makefile Sat Aug 15 07:37:50 2015 (r394281) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Catalyst-View-TT -PORTVERSION= 0.42 +PORTVERSION= 0.43 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -21,6 +21,7 @@ BUILD_DEPENDS= p5-Catalyst-Runtime>=5.70 p5-Template-Toolkit>=0:${PORTSDIR}/www/p5-Template-Toolkit RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/www/p5-Catalyst-View-TT/distinfo ============================================================================== --- head/www/p5-Catalyst-View-TT/distinfo Sat Aug 15 07:37:44 2015 (r394280) +++ head/www/p5-Catalyst-View-TT/distinfo Sat Aug 15 07:37:50 2015 (r394281) @@ -1,2 +1,2 @@ -SHA256 (Catalyst-View-TT-0.42.tar.gz) = e804ca8ab0ea1417f390eaf7129884f20daab35c2cf2a4b472122becd28c91a1 -SIZE (Catalyst-View-TT-0.42.tar.gz) = 50541 +SHA256 (Catalyst-View-TT-0.43.tar.gz) = 6d97a4031fb638aed2ed3b9e3410c0d50ab98b6d1c691de705dd0dbaf1a9d76f +SIZE (Catalyst-View-TT-0.43.tar.gz) = 26829 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:37:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C43C9A0CCD; Sat, 15 Aug 2015 07:37:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17F3E177C; Sat, 15 Aug 2015 07:37:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7bu7C029405; Sat, 15 Aug 2015 07:37:56 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7buLo029403; Sat, 15 Aug 2015 07:37:56 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150737.t7F7buLo029403@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:37:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394282 - head/devel/rubygem-tins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:37:57 -0000 Author: sunpoet Date: Sat Aug 15 07:37:55 2015 New Revision: 394282 URL: https://svnweb.freebsd.org/changeset/ports/394282 Log: - Update to 1.6.0 Changes: https://github.com/flori/tins/blob/master/README.md#changes https://github.com/flori/tins/commits/master Modified: head/devel/rubygem-tins/Makefile head/devel/rubygem-tins/distinfo Modified: head/devel/rubygem-tins/Makefile ============================================================================== --- head/devel/rubygem-tins/Makefile Sat Aug 15 07:37:50 2015 (r394281) +++ head/devel/rubygem-tins/Makefile Sat Aug 15 07:37:55 2015 (r394282) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tins -PORTVERSION= 1.5.4 +PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-tins/distinfo ============================================================================== --- head/devel/rubygem-tins/distinfo Sat Aug 15 07:37:50 2015 (r394281) +++ head/devel/rubygem-tins/distinfo Sat Aug 15 07:37:55 2015 (r394282) @@ -1,2 +1,2 @@ -SHA256 (rubygem/tins-1.5.4.gem) = 3ad92211a4169e82bb67dff370224624c9008314f54654ad28fd80b8bc0d68c6 -SIZE (rubygem/tins-1.5.4.gem) = 299008 +SHA256 (rubygem/tins-1.6.0.gem) = 1f82e41851f343147e8acda8b02a67e990e38d4755e1e7a8de7cd913fcce0a0b +SIZE (rubygem/tins-1.6.0.gem) = 299008 From owner-svn-ports-all@freebsd.org Sat Aug 15 07:38:02 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA6039A0CF1; Sat, 15 Aug 2015 07:38:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1FC41887; Sat, 15 Aug 2015 07:38:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7c298029555; Sat, 15 Aug 2015 07:38:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7c1WQ029552; Sat, 15 Aug 2015 07:38:01 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150738.t7F7c1WQ029552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:38:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394283 - in head/sysutils/rubygem-r10k: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:38:03 -0000 Author: sunpoet Date: Sat Aug 15 07:38:01 2015 New Revision: 394283 URL: https://svnweb.freebsd.org/changeset/ports/394283 Log: - Update to 2.0.3 - Rename gemspec patch to patch-gemspec Changes: https://github.com/puppetlabs/r10k/blob/master/CHANGELOG.mkd Added: head/sysutils/rubygem-r10k/files/patch-gemspec - copied unchanged from r394266, head/sysutils/rubygem-r10k/files/patch-r10k.gemspec Deleted: head/sysutils/rubygem-r10k/files/patch-r10k.gemspec Modified: head/sysutils/rubygem-r10k/Makefile head/sysutils/rubygem-r10k/distinfo Modified: head/sysutils/rubygem-r10k/Makefile ============================================================================== --- head/sysutils/rubygem-r10k/Makefile Sat Aug 15 07:37:55 2015 (r394282) +++ head/sysutils/rubygem-r10k/Makefile Sat Aug 15 07:38:01 2015 (r394283) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= r10k -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-r10k/distinfo ============================================================================== --- head/sysutils/rubygem-r10k/distinfo Sat Aug 15 07:37:55 2015 (r394282) +++ head/sysutils/rubygem-r10k/distinfo Sat Aug 15 07:38:01 2015 (r394283) @@ -1,2 +1,2 @@ -SHA256 (rubygem/r10k-2.0.2.gem) = 9461bff7877575b6544f085919b2ec8b82c783c7c6330f33dc6fff8a6cb5052c -SIZE (rubygem/r10k-2.0.2.gem) = 160256 +SHA256 (rubygem/r10k-2.0.3.gem) = ef28c179d30c6908021320ae835cb4431ed939423369853b2d890de2ffea54f8 +SIZE (rubygem/r10k-2.0.3.gem) = 160256 Copied: head/sysutils/rubygem-r10k/files/patch-gemspec (from r394266, head/sysutils/rubygem-r10k/files/patch-r10k.gemspec) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-r10k/files/patch-gemspec Sat Aug 15 07:38:01 2015 (r394283, copy of r394266, head/sysutils/rubygem-r10k/files/patch-r10k.gemspec) @@ -0,0 +1,15 @@ +--- r10k.gemspec.orig 2015-06-10 21:34:18 UTC ++++ r10k.gemspec +@@ -24,9 +24,9 @@ Gem::Specification.new do |s| + s.specification_version = 4 + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then +- s.add_runtime_dependency(%q, ["= 1.2"]) +- s.add_runtime_dependency(%q, ["~> 2.6.1"]) +- s.add_runtime_dependency(%q, ["= 1.1.10"]) ++ s.add_runtime_dependency(%q, [">= 1.2"]) ++ s.add_runtime_dependency(%q, [">= 2.6.1"]) ++ s.add_runtime_dependency(%q, [">= 1.1.10"]) + s.add_runtime_dependency(%q, ["~> 1.10"]) + s.add_runtime_dependency(%q, ["~> 0.9.0"]) + s.add_runtime_dependency(%q, ["~> 0.9.0"]) From owner-svn-ports-all@freebsd.org Sat Aug 15 07:42:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C5769B8049; Sat, 15 Aug 2015 07:42:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17DB11BAF; Sat, 15 Aug 2015 07:42:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7g7R1033484; Sat, 15 Aug 2015 07:42:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7g6iY033478; Sat, 15 Aug 2015 07:42:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150742.t7F7g6iY033478@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:42:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394284 - in head/devel: . p5-List-Objects-WithUtils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:42:08 -0000 Author: sunpoet Date: Sat Aug 15 07:42:05 2015 New Revision: 394284 URL: https://svnweb.freebsd.org/changeset/ports/394284 Log: - Add p5-List-Objects-WithUtils 2.022001 A set of roles and classes defining an object-oriented interface to Perl hashes and arrays with useful utility methods, junctions, type-checking ability, and optional autoboxing. Originally derived from Data::Perl. WWW: http://search.cpan.org/dist/List-Objects-WithUtils/ Added: head/devel/p5-List-Objects-WithUtils/ head/devel/p5-List-Objects-WithUtils/Makefile (contents, props changed) head/devel/p5-List-Objects-WithUtils/distinfo (contents, props changed) head/devel/p5-List-Objects-WithUtils/pkg-descr (contents, props changed) head/devel/p5-List-Objects-WithUtils/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Aug 15 07:38:01 2015 (r394283) +++ head/devel/Makefile Sat Aug 15 07:42:05 2015 (r394284) @@ -2434,6 +2434,7 @@ SUBDIR += p5-List-Flatten SUBDIR += p5-List-Gen SUBDIR += p5-List-Group + SUBDIR += p5-List-Objects-WithUtils SUBDIR += p5-List-Permutor SUBDIR += p5-List-PowerSet SUBDIR += p5-List-Rotation-Cycle Added: head/devel/p5-List-Objects-WithUtils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-WithUtils/Makefile Sat Aug 15 07:42:05 2015 (r394284) @@ -0,0 +1,36 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= List-Objects-WithUtils +PORTVERSION= 2.022001 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= List objects, kitchen sink included + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Class-Method-Modifiers>=0:${PORTSDIR}/devel/p5-Class-Method-Modifiers \ + p5-List-UtilsBy>=0.09:${PORTSDIR}/devel/p5-List-UtilsBy \ + p5-Module-Runtime>=0.013:${PORTSDIR}/devel/p5-Module-Runtime \ + p5-Role-Tiny>=1.003:${PORTSDIR}/devel/p5-Role-Tiny \ + p5-Type-Tie>=0.004:${PORTSDIR}/devel/p5-Type-Tie \ + p5-autobox>=0:${PORTSDIR}/devel/p5-autobox \ + p5-strictures>=2:${PORTSDIR}/devel/p5-strictures +RUN_DEPENDS:= ${BUILD_DEPENDS} + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + +.include + +.if ${PERL_LEVEL} < 502000 +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.33:${PORTSDIR}/lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.33:${PORTSDIR}/lang/p5-Scalar-List-Utils +.endif + +.include Added: head/devel/p5-List-Objects-WithUtils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-WithUtils/distinfo Sat Aug 15 07:42:05 2015 (r394284) @@ -0,0 +1,2 @@ +SHA256 (List-Objects-WithUtils-2.022001.tar.gz) = a020a484e9604af5fe0f0b73f77ba30258a645220cc96c7ce5ab4a1395c59a5d +SIZE (List-Objects-WithUtils-2.022001.tar.gz) = 72369 Added: head/devel/p5-List-Objects-WithUtils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-WithUtils/pkg-descr Sat Aug 15 07:42:05 2015 (r394284) @@ -0,0 +1,5 @@ +A set of roles and classes defining an object-oriented interface to Perl hashes +and arrays with useful utility methods, junctions, type-checking ability, and +optional autoboxing. Originally derived from Data::Perl. + +WWW: http://search.cpan.org/dist/List-Objects-WithUtils/ Added: head/devel/p5-List-Objects-WithUtils/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-WithUtils/pkg-plist Sat Aug 15 07:42:05 2015 (r394284) @@ -0,0 +1,44 @@ +%%SITE_PERL%%/List/Objects/WithUtils.pm +%%SITE_PERL%%/List/Objects/WithUtils/Array.pm +%%SITE_PERL%%/List/Objects/WithUtils/Array/Immutable.pm +%%SITE_PERL%%/List/Objects/WithUtils/Array/Immutable/Typed.pm +%%SITE_PERL%%/List/Objects/WithUtils/Array/Junction.pm +%%SITE_PERL%%/List/Objects/WithUtils/Array/Typed.pm +%%SITE_PERL%%/List/Objects/WithUtils/Autobox.pm +%%SITE_PERL%%/List/Objects/WithUtils/Hash.pm +%%SITE_PERL%%/List/Objects/WithUtils/Hash/Immutable.pm +%%SITE_PERL%%/List/Objects/WithUtils/Hash/Immutable/Typed.pm +%%SITE_PERL%%/List/Objects/WithUtils/Hash/Inflated.pm +%%SITE_PERL%%/List/Objects/WithUtils/Hash/Inflated/RW.pm +%%SITE_PERL%%/List/Objects/WithUtils/Hash/Typed.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Array.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Array/Immutable.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Array/TiedRO.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Array/Typed.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Array/WithJunctions.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Hash.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Hash/Immutable.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Hash/TiedRO.pm +%%SITE_PERL%%/List/Objects/WithUtils/Role/Hash/Typed.pm +%%SITE_PERL%%/Lowu.pm +%%PERL5_MAN3%%/List::Objects::WithUtils.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Array.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Array::Immutable.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Array::Immutable::Typed.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Array::Junction.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Array::Typed.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Autobox.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Hash.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Hash::Immutable.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Hash::Immutable::Typed.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Hash::Inflated.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Hash::Inflated::RW.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Hash::Typed.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Role::Array.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Role::Array::Immutable.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Role::Array::Typed.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Role::Array::WithJunctions.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Role::Hash.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Role::Hash::Immutable.3.gz +%%PERL5_MAN3%%/List::Objects::WithUtils::Role::Hash::Typed.3.gz +%%PERL5_MAN3%%/Lowu.3.gz From owner-svn-ports-all@freebsd.org Sat Aug 15 07:43:52 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A663A9B8095; Sat, 15 Aug 2015 07:43:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9662F1CAA; Sat, 15 Aug 2015 07:43:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F7hqb5033718; Sat, 15 Aug 2015 07:43:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F7hptZ033713; Sat, 15 Aug 2015 07:43:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508150743.t7F7hptZ033713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 07:43:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394285 - in head/devel: . p5-List-Objects-Types X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 07:43:52 -0000 Author: sunpoet Date: Sat Aug 15 07:43:50 2015 New Revision: 394285 URL: https://svnweb.freebsd.org/changeset/ports/394285 Log: - Add p5-List-Objects-Types 1.003001 A set of Type::Tiny-based types & coercions matching the list objects found in List::Objects::WithUtils. WWW: http://search.cpan.org/dist/List-Objects-Types/ Added: head/devel/p5-List-Objects-Types/ head/devel/p5-List-Objects-Types/Makefile (contents, props changed) head/devel/p5-List-Objects-Types/distinfo (contents, props changed) head/devel/p5-List-Objects-Types/pkg-descr (contents, props changed) head/devel/p5-List-Objects-Types/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Aug 15 07:42:05 2015 (r394284) +++ head/devel/Makefile Sat Aug 15 07:43:50 2015 (r394285) @@ -2434,6 +2434,7 @@ SUBDIR += p5-List-Flatten SUBDIR += p5-List-Gen SUBDIR += p5-List-Group + SUBDIR += p5-List-Objects-Types SUBDIR += p5-List-Objects-WithUtils SUBDIR += p5-List-Permutor SUBDIR += p5-List-PowerSet Added: head/devel/p5-List-Objects-Types/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-Types/Makefile Sat Aug 15 07:43:50 2015 (r394285) @@ -0,0 +1,24 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= List-Objects-Types +PORTVERSION= 1.003001 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Type::Tiny-based types for List::Objects::WithUtils + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-List-Objects-WithUtils>=2:${PORTSDIR}/devel/p5-List-Objects-WithUtils \ + p5-Type-Tiny>=0.022:${PORTSDIR}/devel/p5-Type-Tiny +RUN_DEPENDS:= ${BUILD_DEPENDS} + +NO_ARCH= yes +USE_PERL5= configure +USES= perl5 + +.include Added: head/devel/p5-List-Objects-Types/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-Types/distinfo Sat Aug 15 07:43:50 2015 (r394285) @@ -0,0 +1,2 @@ +SHA256 (List-Objects-Types-1.003001.tar.gz) = a24c48598435eda5e06d9759fcc58d4984dbb3dcc27c9ccc6854856c38ab8e91 +SIZE (List-Objects-Types-1.003001.tar.gz) = 17622 Added: head/devel/p5-List-Objects-Types/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-Types/pkg-descr Sat Aug 15 07:43:50 2015 (r394285) @@ -0,0 +1,4 @@ +A set of Type::Tiny-based types & coercions matching the list objects found in +List::Objects::WithUtils. + +WWW: http://search.cpan.org/dist/List-Objects-Types/ Added: head/devel/p5-List-Objects-Types/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-List-Objects-Types/pkg-plist Sat Aug 15 07:43:50 2015 (r394285) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/List/Objects/Types.pm +%%PERL5_MAN3%%/List::Objects::Types.3.gz From owner-svn-ports-all@freebsd.org Sat Aug 15 08:12:13 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20DE19B8772; Sat, 15 Aug 2015 08:12:13 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 088C716F9; Sat, 15 Aug 2015 08:12:13 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F8CC4b045849; Sat, 15 Aug 2015 08:12:12 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F8CCFa045847; Sat, 15 Aug 2015 08:12:12 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201508150812.t7F8CCFa045847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Sat, 15 Aug 2015 08:12:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394286 - head/lang/php56 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 08:12:13 -0000 Author: ale Date: Sat Aug 15 08:12:11 2015 New Revision: 394286 URL: https://svnweb.freebsd.org/changeset/ports/394286 Log: Update to 5.6.12 release. Modified: head/lang/php56/Makefile head/lang/php56/distinfo Modified: head/lang/php56/Makefile ============================================================================== --- head/lang/php56/Makefile Sat Aug 15 07:43:50 2015 (r394285) +++ head/lang/php56/Makefile Sat Aug 15 08:12:11 2015 (r394286) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php56 -PORTVERSION= 5.6.11 +PORTVERSION= 5.6.12 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: head/lang/php56/distinfo ============================================================================== --- head/lang/php56/distinfo Sat Aug 15 07:43:50 2015 (r394285) +++ head/lang/php56/distinfo Sat Aug 15 08:12:11 2015 (r394286) @@ -1,4 +1,4 @@ -SHA256 (php-5.6.11.tar.bz2) = bd6b260816764c267244749ead07482120dbf8d1920ebbbb0dcb2aa411033866 -SIZE (php-5.6.11.tar.bz2) = 14081292 +SHA256 (php-5.6.12.tar.bz2) = 6f27104272af7b2a996f85e4100fac627630fbdaf39d7bd263f16cf529c8853a +SIZE (php-5.6.12.tar.bz2) = 14094148 SHA256 (php-5.5.x-mail-header.patch) = b0b5a7c961b2052eb14d9528e76155cbeaa881fb9b4a49f452f9dab07b6fb1c4 SIZE (php-5.5.x-mail-header.patch) = 3379 From owner-svn-ports-all@freebsd.org Sat Aug 15 08:17:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BC5C9B87AE; Sat, 15 Aug 2015 08:17:45 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42C5617FE; Sat, 15 Aug 2015 08:17:45 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F8Hj8t046196; Sat, 15 Aug 2015 08:17:45 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F8HiFv046194; Sat, 15 Aug 2015 08:17:44 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201508150817.t7F8HiFv046194@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Sat, 15 Aug 2015 08:17:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394287 - head/databases/mysql56-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 08:17:45 -0000 Author: ale Date: Sat Aug 15 08:17:44 2015 New Revision: 394287 URL: https://svnweb.freebsd.org/changeset/ports/394287 Log: Update to 5.6.26 release. Modified: head/databases/mysql56-server/Makefile head/databases/mysql56-server/distinfo Modified: head/databases/mysql56-server/Makefile ============================================================================== --- head/databases/mysql56-server/Makefile Sat Aug 15 08:12:11 2015 (r394286) +++ head/databases/mysql56-server/Makefile Sat Aug 15 08:17:44 2015 (r394287) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.6.25 +PORTVERSION= 5.6.26 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= MYSQL/MySQL-5.6 Modified: head/databases/mysql56-server/distinfo ============================================================================== --- head/databases/mysql56-server/distinfo Sat Aug 15 08:12:11 2015 (r394286) +++ head/databases/mysql56-server/distinfo Sat Aug 15 08:17:44 2015 (r394287) @@ -1,2 +1,2 @@ -SHA256 (mysql-5.6.25.tar.gz) = 15079c0b83d33a092649cbdf402c9225bcd3f33e87388407be5cdbf1432c7fbd -SIZE (mysql-5.6.25.tar.gz) = 33203321 +SHA256 (mysql-5.6.26.tar.gz) = b44c6ce5f95172c56c73edfa8b710b39242ec7af0ab182c040208c41866e5070 +SIZE (mysql-5.6.26.tar.gz) = 33278710 From owner-svn-ports-all@freebsd.org Sat Aug 15 08:18:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A7A59B87DB; Sat, 15 Aug 2015 08:18:32 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFC0318ED; Sat, 15 Aug 2015 08:18:31 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F8IVvj046340; Sat, 15 Aug 2015 08:18:31 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F8IVrL046339; Sat, 15 Aug 2015 08:18:31 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201508150818.t7F8IVrL046339@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Sat, 15 Aug 2015 08:18:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394288 - head/databases/mysql56-client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 08:18:32 -0000 Author: ale Date: Sat Aug 15 08:18:31 2015 New Revision: 394288 URL: https://svnweb.freebsd.org/changeset/ports/394288 Log: Drop PORTREVISION. Modified: head/databases/mysql56-client/Makefile Modified: head/databases/mysql56-client/Makefile ============================================================================== --- head/databases/mysql56-client/Makefile Sat Aug 15 08:17:44 2015 (r394287) +++ head/databases/mysql56-client/Makefile Sat Aug 15 08:18:31 2015 (r394288) @@ -2,7 +2,6 @@ # $FreeBSD$ PORTNAME= mysql -PORTREVISION= 2 PKGNAMESUFFIX= 56-client COMMENT= Multithreaded SQL database (client) From owner-svn-ports-all@freebsd.org Sat Aug 15 08:29:15 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 101B09B8953; Sat, 15 Aug 2015 08:29:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 016AF1C92; Sat, 15 Aug 2015 08:29:15 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F8TEuT050622; Sat, 15 Aug 2015 08:29:14 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F8TEqk050620; Sat, 15 Aug 2015 08:29:14 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201508150829.t7F8TEqk050620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Sat, 15 Aug 2015 08:29:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394289 - head/lang/php55 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 08:29:15 -0000 Author: ale Date: Sat Aug 15 08:29:13 2015 New Revision: 394289 URL: https://svnweb.freebsd.org/changeset/ports/394289 Log: Update to 5.5.28 release. Modified: head/lang/php55/Makefile head/lang/php55/distinfo Modified: head/lang/php55/Makefile ============================================================================== --- head/lang/php55/Makefile Sat Aug 15 08:18:31 2015 (r394288) +++ head/lang/php55/Makefile Sat Aug 15 08:29:13 2015 (r394289) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php55 -PORTVERSION= 5.5.27 +PORTVERSION= 5.5.28 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: head/lang/php55/distinfo ============================================================================== --- head/lang/php55/distinfo Sat Aug 15 08:18:31 2015 (r394288) +++ head/lang/php55/distinfo Sat Aug 15 08:29:13 2015 (r394289) @@ -1,4 +1,4 @@ -SHA256 (php-5.5.27.tar.bz2) = c4b4c6a534c0ca67a9ae39bec4f51e52d13e820135dd016eae230e15337e1f70 -SIZE (php-5.5.27.tar.bz2) = 13692811 +SHA256 (php-5.5.28.tar.bz2) = 197d2c572e030c177e53d3763d59ac6d363d7c78dc22e6cc1e2ac65573d9c2f3 +SIZE (php-5.5.28.tar.bz2) = 13249927 SHA256 (php-5.5.x-mail-header.patch) = b0b5a7c961b2052eb14d9528e76155cbeaa881fb9b4a49f452f9dab07b6fb1c4 SIZE (php-5.5.x-mail-header.patch) = 3379 From owner-svn-ports-all@freebsd.org Sat Aug 15 08:37:27 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7B209B8B27; Sat, 15 Aug 2015 08:37:27 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A891E114C; Sat, 15 Aug 2015 08:37:27 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7F8bRq4054707; Sat, 15 Aug 2015 08:37:27 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7F8bQo4054703; Sat, 15 Aug 2015 08:37:26 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201508150837.t7F8bQo4054703@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Sat, 15 Aug 2015 08:37:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394290 - in head: graphics/php5-gd lang/php5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 08:37:27 -0000 Author: ale Date: Sat Aug 15 08:37:26 2015 New Revision: 394290 URL: https://svnweb.freebsd.org/changeset/ports/394290 Log: Update to 5.4.44 release. Modified: head/graphics/php5-gd/Makefile head/lang/php5/Makefile head/lang/php5/distinfo Modified: head/graphics/php5-gd/Makefile ============================================================================== --- head/graphics/php5-gd/Makefile Sat Aug 15 08:29:13 2015 (r394289) +++ head/graphics/php5-gd/Makefile Sat Aug 15 08:37:26 2015 (r394290) @@ -1,7 +1,6 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTREVISION= 1 CATEGORIES= graphics MASTERDIR= ${.CURDIR}/../../lang/php5 Modified: head/lang/php5/Makefile ============================================================================== --- head/lang/php5/Makefile Sat Aug 15 08:29:13 2015 (r394289) +++ head/lang/php5/Makefile Sat Aug 15 08:37:26 2015 (r394290) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php5 -PORTVERSION= 5.4.43 +PORTVERSION= 5.4.44 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions Modified: head/lang/php5/distinfo ============================================================================== --- head/lang/php5/distinfo Sat Aug 15 08:29:13 2015 (r394289) +++ head/lang/php5/distinfo Sat Aug 15 08:37:26 2015 (r394290) @@ -1,4 +1,4 @@ -SHA256 (php-5.4.43.tar.bz2) = 25d7724fb00ad1b520f5bad2173717031153d0a8e3de2c75e7a084c76f8ecd6b -SIZE (php-5.4.43.tar.bz2) = 12708452 +SHA256 (php-5.4.44.tar.bz2) = 8dd59e5ce9248cf36ac3de5412a518b8b24c01ace6c46ce3d12e4ce981a3856d +SIZE (php-5.4.44.tar.bz2) = 12705644 SHA256 (php-5.4.x-mail-header.patch) = 005ae1cd8ed17c72d7b09dee9c4466e8b16d4ecba7fe11276731ed6ff9fbb344 SIZE (php-5.4.x-mail-header.patch) = 3379 From owner-svn-ports-all@freebsd.org Sat Aug 15 10:27:30 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C19279BA312; Sat, 15 Aug 2015 10:27:30 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B279018D0; Sat, 15 Aug 2015 10:27:30 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FARUVS099322; Sat, 15 Aug 2015 10:27:30 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FARU4C099320; Sat, 15 Aug 2015 10:27:30 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201508151027.t7FARU4C099320@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 15 Aug 2015 10:27:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394291 - in head: . sysutils sysutils/fpkg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 10:27:30 -0000 Author: rene Date: Sat Aug 15 10:27:29 2015 New Revision: 394291 URL: https://svnweb.freebsd.org/changeset/ports/394291 Log: Remove expired port: 2015-08-15 sysutils/fpkg: Does not support pkg(8) Deleted: head/sysutils/fpkg/ Modified: head/MOVED head/sysutils/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sat Aug 15 08:37:26 2015 (r394290) +++ head/MOVED Sat Aug 15 10:27:29 2015 (r394291) @@ -7822,3 +7822,4 @@ net-p2p/py-kenosis||2015-08-07|Has expir graphics/skencil||2015-08-08|Has expired: Project is abandoned and was overtaken by sK1 fork www/ismail||2015-08-08|Has expired: Development has been discontinued for many years sysutils/rubygem-bundler17||2015-08-13|Has expired: not used by other ports anymore +sysutils/fpkg||2015-08-15|Has expired: Does not support pkg(8) Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Aug 15 08:37:26 2015 (r394290) +++ head/sysutils/Makefile Sat Aug 15 10:27:29 2015 (r394291) @@ -280,7 +280,6 @@ SUBDIR += fpc-users SUBDIR += fpc-utmp SUBDIR += fpc-uuid - SUBDIR += fpkg SUBDIR += freebsd-snapshot SUBDIR += freecolor SUBDIR += freedt From owner-svn-ports-all@freebsd.org Sat Aug 15 10:33:04 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C210D9BA4FC; Sat, 15 Aug 2015 10:33:04 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2E531CD6; Sat, 15 Aug 2015 10:33:04 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FAX4T8003413; Sat, 15 Aug 2015 10:33:04 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FAX4sN003410; Sat, 15 Aug 2015 10:33:04 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201508151033.t7FAX4sN003410@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Sat, 15 Aug 2015 10:33:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394292 - head/comms/syncterm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 10:33:05 -0000 Author: shurd Date: Sat Aug 15 10:33:03 2015 New Revision: 394292 URL: https://svnweb.freebsd.org/changeset/ports/394292 Log: Update to version 1.0 Clean up Makefile to use new options format Remove incorrect INSTALLS_ICONS usage Modified: head/comms/syncterm/Makefile head/comms/syncterm/distinfo Modified: head/comms/syncterm/Makefile ============================================================================== --- head/comms/syncterm/Makefile Sat Aug 15 10:27:29 2015 (r394291) +++ head/comms/syncterm/Makefile Sat Aug 15 10:33:03 2015 (r394292) @@ -2,63 +2,43 @@ # $FreeBSD$ PORTNAME= syncterm -PORTVERSION= 0.9.${PORTVER} -PORTREVISION= 2 +PORTVERSION= 1.0 CATEGORIES= comms -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-0.9.5 -DISTNAME= syncterm-src-${PORTVER} +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= shurd@FreeBSD.org COMMENT= ANSI-BBS terminal which supports telnet, rlogin, and SSH LICENSE= GPLv2 -WRKSRC= ${WRKDIR}/syncterm-${PORTVER}/src/syncterm +WRKSRC= ${WRKDIR}/syncterm-${PORTVERSION}/src/syncterm USES= gmake tar:tgz MAKEFILE= GNUmakefile -MAKE_ARGS+= DONT_CLOBBER_CC=please -PORTVER= 20140603 -INSTALLS_ICONS= yes PLIST_FILES= bin/syncterm \ man/man1/syncterm.1.gz \ share/applications/syncterm.desktop \ share/icons/hicolor/64x64/apps/syncterm.png +DISABLE_MAKE_JOBS= yes +MAKE_ARGS+= WITHOUT_PORTAUDIO=yes +MAKE_ARGS+= -C ${WRKSRC} +MAKE_ARGS+= PREFIX="${PREFIX}" +MAKE_ARGS+= INSTALL_EXE="${INSTALL_PROGRAM}" + OPTIONS_DEFINE= X11 SDL DEBUG OPTIONS_DEFAULT= X11 SDL -.include +X11_USE= xorg=x11 +X11_MAKE_ARGS_OFF= NO_X=1 -ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= does not configure except on i386 amd64 +SDL_USE= SDL=sdl +SDL_MAKE_ARGS= USE_SDL=1 +SDL_MAKE_ARGS_OFF= WITHOUT_SDL=1 -.if ${ARCH} == "i386" || ${ARCH} == "amd64" - LIB_DEPENDS+= libcl.so:${PORTSDIR}/security/cryptlib - MAKE_ARGS+= CRYPTLIBINCLUDE=${LOCALBASE}/include - MAKE_ARGS+= CRYPTLIBDIR=${LOCALBASE}/lib -.else - MAKE_ARGS+= WITHOUT_CRYPTLIB=yes -.endif -MAKE_ARGS+= WITHOUT_PORTAUDIO=yes -MAKE_ARGS+= -C ${WRKSRC} -MAKE_ARGS+= PREFIX="${PREFIX}" -MAKE_ARGS+= INSTALL_EXE="${INSTALL_PROGRAM}" -.if ${PORT_OPTIONS:MX11} -USE_XORG= x11 -.else -MAKE_ARGS+= NO_X=1 -.endif -.if ${PORT_OPTIONS:MSDL} -USE_SDL= sdl -MAKE_ARGS+= USE_SDL=1 -.endif -.if ${PORT_OPTIONS:MDEBUG} -MAKE_ARGS+= DEBUG=1 -.else -MAKE_ARGS+= RELEASE=1 -.endif +DEBUG_MAKE_ARGS= DEBUG=1 +DEBUG_MAKE_ARGS_OFF= RELEASE=1 -pre-build: - if ( nm -D ${LOCALBASE}/lib/libcl.so | ${GREP} 'U __stack_chk_fail_local' ) then echo "LDFLAGS+=-fstack-protector" >> ${WRKSRC}/localdefs.mk ; fi +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= does not configure except on i386 amd64 .include Modified: head/comms/syncterm/distinfo ============================================================================== --- head/comms/syncterm/distinfo Sat Aug 15 10:27:29 2015 (r394291) +++ head/comms/syncterm/distinfo Sat Aug 15 10:33:03 2015 (r394292) @@ -1,2 +1,2 @@ -SHA256 (syncterm-src-20140603.tgz) = 6ef3a36ab1c106b7f1a390630d937f63371b3806243cfe49dee5658ad230db7e -SIZE (syncterm-src-20140603.tgz) = 8153746 +SHA256 (syncterm-1.0.tgz) = e77f28580b22b6ea077ab377be15a35b5a965adb731cec9a71573647fe824b37 +SIZE (syncterm-1.0.tgz) = 8310619 From owner-svn-ports-all@freebsd.org Sat Aug 15 10:36:05 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7A659BA53C; Sat, 15 Aug 2015 10:36:05 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0C691DBF; Sat, 15 Aug 2015 10:36:05 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FAa5lX003637; Sat, 15 Aug 2015 10:36:05 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FAa5A2003636; Sat, 15 Aug 2015 10:36:05 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201508151036.t7FAa5A2003636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Sat, 15 Aug 2015 10:36:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394293 - head/comms/syncterm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 10:36:05 -0000 Author: shurd Date: Sat Aug 15 10:36:04 2015 New Revision: 394293 URL: https://svnweb.freebsd.org/changeset/ports/394293 Log: Remove the DEBUG option. Modified: head/comms/syncterm/Makefile Modified: head/comms/syncterm/Makefile ============================================================================== --- head/comms/syncterm/Makefile Sat Aug 15 10:33:03 2015 (r394292) +++ head/comms/syncterm/Makefile Sat Aug 15 10:36:04 2015 (r394293) @@ -24,8 +24,9 @@ MAKE_ARGS+= WITHOUT_PORTAUDIO=yes MAKE_ARGS+= -C ${WRKSRC} MAKE_ARGS+= PREFIX="${PREFIX}" MAKE_ARGS+= INSTALL_EXE="${INSTALL_PROGRAM}" +MAKE_ARGS+= RELEASE=1 -OPTIONS_DEFINE= X11 SDL DEBUG +OPTIONS_DEFINE= X11 SDL OPTIONS_DEFAULT= X11 SDL X11_USE= xorg=x11 @@ -35,9 +36,6 @@ SDL_USE= SDL=sdl SDL_MAKE_ARGS= USE_SDL=1 SDL_MAKE_ARGS_OFF= WITHOUT_SDL=1 -DEBUG_MAKE_ARGS= DEBUG=1 -DEBUG_MAKE_ARGS_OFF= RELEASE=1 - ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= does not configure except on i386 amd64 From owner-svn-ports-all@freebsd.org Sat Aug 15 11:05:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F75A9BAAAC; Sat, 15 Aug 2015 11:05:07 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9061C181F; Sat, 15 Aug 2015 11:05:07 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FB57N0016387; Sat, 15 Aug 2015 11:05:07 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FB570D016386; Sat, 15 Aug 2015 11:05:07 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201508151105.t7FB570D016386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sat, 15 Aug 2015 11:05:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394294 - head/multimedia/spotify-websocket-api X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 11:05:07 -0000 Author: rene Date: Sat Aug 15 11:05:06 2015 New Revision: 394294 URL: https://svnweb.freebsd.org/changeset/ports/394294 Log: multimedia/spotify-websocket-api: as discussed with the author, mark this port as IGNORE because login fails and set expiration date to 2016-01-01. While here pet portlint. Modified: head/multimedia/spotify-websocket-api/Makefile Modified: head/multimedia/spotify-websocket-api/Makefile ============================================================================== --- head/multimedia/spotify-websocket-api/Makefile Sat Aug 15 10:36:04 2015 (r394293) +++ head/multimedia/spotify-websocket-api/Makefile Sat Aug 15 11:05:06 2015 (r394294) @@ -10,6 +10,10 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= rene@FreeBSD.org COMMENT= Websocket API and client for Spotify +IGNORE= login fails due to protocol changes +DEPRECATED= ${IGNORE} +EXPIRATION_DATE=2016-01-01 + NO_ARCH= yes USE_GITHUB= yes @@ -17,7 +21,7 @@ GH_ACCOUNT= Hexxeh GH_PROJECT= spotify-websocket-api GH_TAGNAME= d397ed2 -USES= shebangfix python +USES= python shebangfix SHEBANG_FILES= spotify_web/spotify.py ${CLIENTFILES} USE_PYTHON= autoplist concurrent distutils @@ -51,13 +55,13 @@ post-patch: post-install: .for f in ${CLIENTFILES} - @${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor - @${LN} -s ${PREFIX}/bin/respotify.py ${STAGEDIR}${PREFIX}/bin/respotify + ${LN} -s ${PREFIX}/bin/respotify.py ${STAGEDIR}${PREFIX}/bin/respotify - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${PORTEXAMPLES} - @${INSTALL_SCRIPT} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .include From owner-svn-ports-all@freebsd.org Sat Aug 15 11:12:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 110319BADDB; Sat, 15 Aug 2015 11:12:45 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F3CEF1E72; Sat, 15 Aug 2015 11:12:44 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FBCiaC020588; Sat, 15 Aug 2015 11:12:44 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FBCiZB020587; Sat, 15 Aug 2015 11:12:44 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201508151112.t7FBCiZB020587@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 15 Aug 2015 11:12:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394295 - head/multimedia/ffmpeg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 11:12:45 -0000 Author: riggs Date: Sat Aug 15 11:12:44 2015 New Revision: 394295 URL: https://svnweb.freebsd.org/changeset/ports/394295 Log: Add non-default OPTION to support multimedia/openh264 PR: 202313 Submitted by: jbeich@FreeBSD.org Modified: head/multimedia/ffmpeg/Makefile Modified: head/multimedia/ffmpeg/Makefile ============================================================================== --- head/multimedia/ffmpeg/Makefile Sat Aug 15 11:05:06 2015 (r394294) +++ head/multimedia/ffmpeg/Makefile Sat Aug 15 11:12:44 2015 (r394295) @@ -25,7 +25,7 @@ WANT_SDL= yes OPTIONS_DEFINE= AACPLUS ALSA AMR_NB AMR_WB ASS CDIO CELT DEBUG DOCS FAAC \ FDK_AAC FFSERVER FONTCONFIG FREETYPE FREI0R GSM ICONV \ - JACK LAME LIBBLURAY LIBV4L MODPLUG OPENAL OPENCV OPENJPEG \ + JACK LAME LIBBLURAY LIBV4L MODPLUG OPENAL OPENCV OPENH264 OPENJPEG \ OPTIMIZED_CFLAGS OPUS PULSEAUDIO RTMP SCHROEDINGER SDL SPEEX \ THEORA VAAPI VDPAU VO_AACENC VO_AMRWBENC VORBIS VPX \ X11GRAB X264 X265 XVID @@ -41,6 +41,7 @@ CDIO_DESC= Audio CD grabbing with libcdi FDK_AAC_DESC= AAC audio encoding via Fraunhofer FDK FFSERVER_DESC= Build and install ffserver LIBV4L_DESC= Video for Linux support +OPENH264_DESC= H.264 video codec support via OpenH264 X11GRAB_DESC= Enable x11 grabbing OPTIONS_SUB= yes @@ -140,6 +141,10 @@ OPENAL_CONFIGURE_OFF= --disable-indev=o OPENCV_LIB_DEPENDS= libopencv_imgproc.so:${PORTSDIR}/graphics/opencv-core OPENCV_CONFIGURE_ENABLE= libopencv +# openh264 +OPENH264_LIB_DEPENDS= libopenh264.so:${PORTSDIR}/multimedia/openh264 +OPENH264_CONFIGURE_ENABLE= libopenh264 + # openjpeg OPENJPEG_LIB_DEPENDS= libopenjpeg.so:${PORTSDIR}/graphics/openjpeg15 OPENJPEG_CONFIGURE_ENABLE= libopenjpeg From owner-svn-ports-all@freebsd.org Sat Aug 15 11:34:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A60EA9B91CE; Sat, 15 Aug 2015 11:34:46 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7DF7016A5; Sat, 15 Aug 2015 11:34:46 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FBYkIR028937; Sat, 15 Aug 2015 11:34:46 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FBYkKW028934; Sat, 15 Aug 2015 11:34:46 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201508151134.t7FBYkKW028934@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Sat, 15 Aug 2015 11:34:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394296 - in head/devel/py-Jinja2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 11:34:46 -0000 Author: rm Date: Sat Aug 15 11:34:45 2015 New Revision: 394296 URL: https://svnweb.freebsd.org/changeset/ports/394296 Log: devel/py-Jinja2: update to 2.8 - update to 2.8 - add LICENSE_FILE, add NO_ARCH - running 2to3 tool is not needed anymore, except the examples - remove patch that's not applicable anymore Changelog: http://jinja.pocoo.org/docs/dev/changelog/#version-2-8 Approved by: nivit (maintainer, by email) Deleted: head/devel/py-Jinja2/files/ Modified: head/devel/py-Jinja2/Makefile head/devel/py-Jinja2/distinfo Modified: head/devel/py-Jinja2/Makefile ============================================================================== --- head/devel/py-Jinja2/Makefile Sat Aug 15 11:12:44 2015 (r394295) +++ head/devel/py-Jinja2/Makefile Sat Aug 15 11:34:45 2015 (r394296) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Jinja2 -PORTVERSION= 2.7.3 -PORTREVISION= 0 +PORTVERSION= 2.8 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,20 +12,22 @@ MAINTAINER= nivit@FreeBSD.org COMMENT?= Fast and easy to use stand-alone template engine LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=0.18:${PORTSDIR}/textproc/py-MarkupSafe TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MarkupSafe>=0.18:${PORTSDIR}/textproc/py-MarkupSafe +NO_ARCH= yes USES= python .if empty(PKGNAMESUFFIX) -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils .endif EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} OPTIONS_DEFINE?= BABEL EXAMPLES OPTIONS_DEFAULT?= BABEL -BABEL_DESC= Enable Babel extension +BABEL_DESC= Enable Babel extension BABEL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=1.3:${PORTSDIR}/devel/py-babel @@ -44,17 +45,8 @@ PORTDOCS= * PORT_OPTIONS:= ${PORT_OPTIONS:NEXAMPLES} .endif -# no problem with Python > 3.2 -.if ${PYTHON_REL} >= 3200 -pre-build: - ${PY2TO3_CMD} ${PY2TO3_ARGS} ${WRKSRC}/jinja2 -.endif - .if ${PKGNAMESUFFIX} == "-doc" do-build: -. if ${PYTHON_REL} >= 3000 - @${PY2TO3_CMD} ${PY2TO3_ARGS} ${WRKSRC}/docs -. endif (cd ${WRKSRC}/docs && ${MAKE} html) do-install: Modified: head/devel/py-Jinja2/distinfo ============================================================================== --- head/devel/py-Jinja2/distinfo Sat Aug 15 11:12:44 2015 (r394295) +++ head/devel/py-Jinja2/distinfo Sat Aug 15 11:34:45 2015 (r394296) @@ -1,2 +1,2 @@ -SHA256 (Jinja2-2.7.3.tar.gz) = 2e24ac5d004db5714976a04ac0e80c6df6e47e98c354cb2c0d82f8879d4f8fdb -SIZE (Jinja2-2.7.3.tar.gz) = 378470 +SHA256 (Jinja2-2.8.tar.gz) = bc1ff2ff88dbfacefde4ddde471d1417d3b304e8df103a7a9437d47269201bf4 +SIZE (Jinja2-2.8.tar.gz) = 357055 From owner-svn-ports-all@freebsd.org Sat Aug 15 11:39:09 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E4C89B922C; Sat, 15 Aug 2015 11:39:09 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F2B117B0; Sat, 15 Aug 2015 11:39:09 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FBd9JE029278; Sat, 15 Aug 2015 11:39:09 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FBd8gT029274; Sat, 15 Aug 2015 11:39:08 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201508151139.t7FBd8gT029274@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 15 Aug 2015 11:39:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394297 - in head/textproc: . R-cran-rmarkdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 11:39:09 -0000 Author: tota Date: Sat Aug 15 11:39:07 2015 New Revision: 394297 URL: https://svnweb.freebsd.org/changeset/ports/394297 Log: - Add new port: textproc/R-cran-rmarkdown Convert R Markdown documents into a variety of formats. WWW: https://cran.r-project.org/web/packages/rmarkdown/ Added: head/textproc/R-cran-rmarkdown/ head/textproc/R-cran-rmarkdown/Makefile (contents, props changed) head/textproc/R-cran-rmarkdown/distinfo (contents, props changed) head/textproc/R-cran-rmarkdown/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Aug 15 11:34:45 2015 (r394296) +++ head/textproc/Makefile Sat Aug 15 11:39:07 2015 (r394297) @@ -12,6 +12,7 @@ SUBDIR += R-cran-htmltools SUBDIR += R-cran-markdown SUBDIR += R-cran-pystr + SUBDIR += R-cran-rmarkdown SUBDIR += R-cran-stringi SUBDIR += R-cran-stringr SUBDIR += R-cran-xtable Added: head/textproc/R-cran-rmarkdown/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-rmarkdown/Makefile Sat Aug 15 11:39:07 2015 (r394297) @@ -0,0 +1,22 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= rmarkdown +PORTVERSION= 0.7 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Dynamic Documents for R + +LICENSE= GPLv3 + +RUN_DEPENDS= hs-pandoc>=1.12.3:${PORTSDIR}/textproc/hs-pandoc \ + R-cran-knitr>=1.6:${PORTSDIR}/print/R-cran-knitr \ + R-cran-yaml>=2.1.5:${PORTSDIR}/textproc/R-cran-yaml \ + R-cran-htmltools>=0.2.4:${PORTSDIR}/textproc/R-cran-htmltools \ + R-cran-caTools>0:${PORTSDIR}/devel/R-cran-caTools + +USES= cran:auto-plist + +.include Added: head/textproc/R-cran-rmarkdown/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-rmarkdown/distinfo Sat Aug 15 11:39:07 2015 (r394297) @@ -0,0 +1,2 @@ +SHA256 (rmarkdown_0.7.tar.gz) = 8f2150fcb9de433a5c26f70d80c6f036389c956a1cdbfd281d07f07fe31477a7 +SIZE (rmarkdown_0.7.tar.gz) = 1179156 Added: head/textproc/R-cran-rmarkdown/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/R-cran-rmarkdown/pkg-descr Sat Aug 15 11:39:07 2015 (r394297) @@ -0,0 +1,3 @@ +Convert R Markdown documents into a variety of formats. + +WWW: https://cran.r-project.org/web/packages/rmarkdown/ From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:24 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 043B89B9AC8; Sat, 15 Aug 2015 12:09:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8CB11410; Sat, 15 Aug 2015 12:09:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9NLL041464; Sat, 15 Aug 2015 12:09:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9NQV041463; Sat, 15 Aug 2015 12:09:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9NQV041463@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394298 - head/devel/p5-Module-CheckDeps X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:24 -0000 Author: sunpoet Date: Sat Aug 15 12:09:23 2015 New Revision: 394298 URL: https://svnweb.freebsd.org/changeset/ports/394298 Log: - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Modified: head/devel/p5-Module-CheckDeps/Makefile Modified: head/devel/p5-Module-CheckDeps/Makefile ============================================================================== --- head/devel/p5-Module-CheckDeps/Makefile Sat Aug 15 11:39:07 2015 (r394297) +++ head/devel/p5-Module-CheckDeps/Makefile Sat Aug 15 12:09:23 2015 (r394298) @@ -6,7 +6,6 @@ PORTVERSION= 0.08 PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:ALEXBIO PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org @@ -15,6 +14,7 @@ COMMENT= Very simple dependencies checke BUILD_DEPENDS= p5-PPI>=0:${PORTSDIR}/textproc/p5-PPI RUN_DEPENDS:= ${BUILD_DEPENDS} +NO_ARCH= yes USE_PERL5= configure USES= perl5 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 627B99B9AEC; Sat, 15 Aug 2015 12:09:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52F9A1447; Sat, 15 Aug 2015 12:09:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9SGf041564; Sat, 15 Aug 2015 12:09:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9SKZ041563; Sat, 15 Aug 2015 12:09:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9SKZ041563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394299 - head/textproc/p5-Text-Prefix-XS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:28 -0000 Author: sunpoet Date: Sat Aug 15 12:09:27 2015 New Revision: 394299 URL: https://svnweb.freebsd.org/changeset/ports/394299 Log: - Strip shared library - Bump PORTREVISION for package change Modified: head/textproc/p5-Text-Prefix-XS/Makefile Modified: head/textproc/p5-Text-Prefix-XS/Makefile ============================================================================== --- head/textproc/p5-Text-Prefix-XS/Makefile Sat Aug 15 12:09:23 2015 (r394298) +++ head/textproc/p5-Text-Prefix-XS/Makefile Sat Aug 15 12:09:27 2015 (r394299) @@ -3,7 +3,7 @@ PORTNAME= Text-Prefix-XS PORTVERSION= 0.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -18,8 +18,12 @@ BUILD_DEPENDS= p5-Digest-SHA1>=1:${PORTS RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Deep>=0.108:${PORTSDIR}/devel/p5-Test-Deep -SHEBANG_FILES= trie.pl USE_PERL5= configure USES= perl5 shebangfix +SHEBANG_FILES= trie.pl + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Text/Prefix/XS/XS.so + .include From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C27009B9B0F; Sat, 15 Aug 2015 12:09:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B34C71667; Sat, 15 Aug 2015 12:09:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9X1U041681; Sat, 15 Aug 2015 12:09:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9XHJ041679; Sat, 15 Aug 2015 12:09:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9XHJ041679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394300 - head/devel/rubygem-execjs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:33 -0000 Author: sunpoet Date: Sat Aug 15 12:09:32 2015 New Revision: 394300 URL: https://svnweb.freebsd.org/changeset/ports/394300 Log: - Update to 2.6.0 Changes: https://github.com/rails/execjs/commits/master Modified: head/devel/rubygem-execjs/Makefile head/devel/rubygem-execjs/distinfo Modified: head/devel/rubygem-execjs/Makefile ============================================================================== --- head/devel/rubygem-execjs/Makefile Sat Aug 15 12:09:27 2015 (r394299) +++ head/devel/rubygem-execjs/Makefile Sat Aug 15 12:09:32 2015 (r394300) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= execjs -PORTVERSION= 2.5.2 +PORTVERSION= 2.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-execjs/distinfo ============================================================================== --- head/devel/rubygem-execjs/distinfo Sat Aug 15 12:09:27 2015 (r394299) +++ head/devel/rubygem-execjs/distinfo Sat Aug 15 12:09:32 2015 (r394300) @@ -1,2 +1,2 @@ -SHA256 (rubygem/execjs-2.5.2.gem) = 80fa2d824404d9a7097a41664a35024bb6cfb7557cbc534f72e97b06fd484178 -SIZE (rubygem/execjs-2.5.2.gem) = 16896 +SHA256 (rubygem/execjs-2.6.0.gem) = 5cba38cc40755b35e6c45e86adec2cfada3ec43b70643074a7ce2ec622ef343f +SIZE (rubygem/execjs-2.6.0.gem) = 16896 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:38 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A727E9B9B38; Sat, 15 Aug 2015 12:09:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 94E741723; Sat, 15 Aug 2015 12:09:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9cC0041798; Sat, 15 Aug 2015 12:09:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9cWX041796; Sat, 15 Aug 2015 12:09:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9cWX041796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394301 - head/textproc/rubygem-autoprefixer-rails X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:38 -0000 Author: sunpoet Date: Sat Aug 15 12:09:37 2015 New Revision: 394301 URL: https://svnweb.freebsd.org/changeset/ports/394301 Log: - Update to 5.2.1.2 Changes: https://github.com/ai/autoprefixer-rails/blob/master/CHANGELOG.md Modified: head/textproc/rubygem-autoprefixer-rails/Makefile head/textproc/rubygem-autoprefixer-rails/distinfo Modified: head/textproc/rubygem-autoprefixer-rails/Makefile ============================================================================== --- head/textproc/rubygem-autoprefixer-rails/Makefile Sat Aug 15 12:09:32 2015 (r394300) +++ head/textproc/rubygem-autoprefixer-rails/Makefile Sat Aug 15 12:09:37 2015 (r394301) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= autoprefixer-rails -PORTVERSION= 5.2.1.1 +PORTVERSION= 5.2.1.2 CATEGORIES= textproc ruby MASTER_SITES= RG Modified: head/textproc/rubygem-autoprefixer-rails/distinfo ============================================================================== --- head/textproc/rubygem-autoprefixer-rails/distinfo Sat Aug 15 12:09:32 2015 (r394300) +++ head/textproc/rubygem-autoprefixer-rails/distinfo Sat Aug 15 12:09:37 2015 (r394301) @@ -1,2 +1,2 @@ -SHA256 (rubygem/autoprefixer-rails-5.2.1.1.gem) = b1776704ad585a8bedb4c90be3b704d8156e190b26f3333687f0d0041cd015f5 -SIZE (rubygem/autoprefixer-rails-5.2.1.1.gem) = 237056 +SHA256 (rubygem/autoprefixer-rails-5.2.1.2.gem) = 0ffd972c8908df2fdd8920993676d297e9e3ceb596043b3a91967d1f21ca3389 +SIZE (rubygem/autoprefixer-rails-5.2.1.2.gem) = 234496 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:43 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A1019B9B58; Sat, 15 Aug 2015 12:09:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3AD9C1813; Sat, 15 Aug 2015 12:09:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9hMF041901; Sat, 15 Aug 2015 12:09:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9hl0041900; Sat, 15 Aug 2015 12:09:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9hl0041900@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394302 - head/devel/p5-Package-Variant X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:43 -0000 Author: sunpoet Date: Sat Aug 15 12:09:42 2015 New Revision: 394302 URL: https://svnweb.freebsd.org/changeset/ports/394302 Log: - Add NO_ARCH Modified: head/devel/p5-Package-Variant/Makefile Modified: head/devel/p5-Package-Variant/Makefile ============================================================================== --- head/devel/p5-Package-Variant/Makefile Sat Aug 15 12:09:37 2015 (r394301) +++ head/devel/p5-Package-Variant/Makefile Sat Aug 15 12:09:42 2015 (r394302) @@ -20,6 +20,7 @@ TEST_DEPENDS= p5-Moo>=0:${PORTSDIR}/deve p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-strictures>=2:${PORTSDIR}/devel/p5-strictures +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF0369B9B7F; Sat, 15 Aug 2015 12:09:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9FFAA18F8; Sat, 15 Aug 2015 12:09:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9m9e042015; Sat, 15 Aug 2015 12:09:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9mO1042013; Sat, 15 Aug 2015 12:09:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9mO1042013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394303 - head/devel/p5-Perl-Tidy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:48 -0000 Author: sunpoet Date: Sat Aug 15 12:09:47 2015 New Revision: 394303 URL: https://svnweb.freebsd.org/changeset/ports/394303 Log: - Update to 20150815 - Add NO_ARCH Changes: http://search.cpan.org/dist/Perl-Tidy/CHANGES Modified: head/devel/p5-Perl-Tidy/Makefile head/devel/p5-Perl-Tidy/distinfo Modified: head/devel/p5-Perl-Tidy/Makefile ============================================================================== --- head/devel/p5-Perl-Tidy/Makefile Sat Aug 15 12:09:42 2015 (r394302) +++ head/devel/p5-Perl-Tidy/Makefile Sat Aug 15 12:09:47 2015 (r394303) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Perl-Tidy -PORTVERSION= 20140711 -PORTREVISION= 1 +PORTVERSION= 20150815 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,6 +12,7 @@ COMMENT= Indents and reformats Perl scri LICENSE= GPLv2 +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Perl-Tidy/distinfo ============================================================================== --- head/devel/p5-Perl-Tidy/distinfo Sat Aug 15 12:09:42 2015 (r394302) +++ head/devel/p5-Perl-Tidy/distinfo Sat Aug 15 12:09:47 2015 (r394303) @@ -1,2 +1,2 @@ -SHA256 (Perl-Tidy-20140711.tar.gz) = 1576ceb3fd9f592d0285affbe7192685963dc1d0411968cc0587d6ac0d7b3ad8 -SIZE (Perl-Tidy-20140711.tar.gz) = 422397 +SHA256 (Perl-Tidy-20150815.tar.gz) = 0a969d9e6c0428fab394aa66b716ca2ca052fe4aa2ef144f7dacc3355c13ebd7 +SIZE (Perl-Tidy-20150815.tar.gz) = 425224 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 798239B9BA9; Sat, 15 Aug 2015 12:09:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A52619D2; Sat, 15 Aug 2015 12:09:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9r4T042118; Sat, 15 Aug 2015 12:09:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9r1E042117; Sat, 15 Aug 2015 12:09:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9r1E042117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394304 - head/devel/p5-System-Command X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:53 -0000 Author: sunpoet Date: Sat Aug 15 12:09:52 2015 New Revision: 394304 URL: https://svnweb.freebsd.org/changeset/ports/394304 Log: - Add NO_ARCH Modified: head/devel/p5-System-Command/Makefile Modified: head/devel/p5-System-Command/Makefile ============================================================================== --- head/devel/p5-System-Command/Makefile Sat Aug 15 12:09:47 2015 (r394303) +++ head/devel/p5-System-Command/Makefile Sat Aug 15 12:09:52 2015 (r394304) @@ -16,6 +16,7 @@ LICENSE_COMB= dual TEST_DEPENDS= p5-Test-Command>=0:${PORTSDIR}/devel/p5-Test-Command \ p5-Test-Output>=0:${PORTSDIR}/devel/p5-Test-Output +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-all@freebsd.org Sat Aug 15 12:09:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B12789B9BCB; Sat, 15 Aug 2015 12:09:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9AC101AAF; Sat, 15 Aug 2015 12:09:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FC9wgH042237; Sat, 15 Aug 2015 12:09:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FC9wQm042235; Sat, 15 Aug 2015 12:09:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151209.t7FC9wQm042235@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:09:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394305 - head/devel/p5-Test-Cmd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:09:58 -0000 Author: sunpoet Date: Sat Aug 15 12:09:57 2015 New Revision: 394305 URL: https://svnweb.freebsd.org/changeset/ports/394305 Log: - Add NO_ARCH - Sort PLIST Modified: head/devel/p5-Test-Cmd/Makefile head/devel/p5-Test-Cmd/pkg-plist Modified: head/devel/p5-Test-Cmd/Makefile ============================================================================== --- head/devel/p5-Test-Cmd/Makefile Sat Aug 15 12:09:52 2015 (r394304) +++ head/devel/p5-Test-Cmd/Makefile Sat Aug 15 12:09:57 2015 (r394305) @@ -13,6 +13,7 @@ COMMENT= Portable testing of commands an LICENSE= ART10 GPLv1 LICENSE_COMB= dual +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Test-Cmd/pkg-plist ============================================================================== --- head/devel/p5-Test-Cmd/pkg-plist Sat Aug 15 12:09:52 2015 (r394304) +++ head/devel/p5-Test-Cmd/pkg-plist Sat Aug 15 12:09:57 2015 (r394305) @@ -1,4 +1,4 @@ -%%PERL5_MAN3%%/Test::Cmd.3.gz -%%PERL5_MAN3%%/Test::Cmd::Common.3.gz %%SITE_PERL%%/Test/Cmd.pm %%SITE_PERL%%/Test/Cmd/Common.pm +%%PERL5_MAN3%%/Test::Cmd.3.gz +%%PERL5_MAN3%%/Test::Cmd::Common.3.gz From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:03 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 473AE9B9BF9; Sat, 15 Aug 2015 12:10:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3814E1B8B; Sat, 15 Aug 2015 12:10:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCA3hm042388; Sat, 15 Aug 2015 12:10:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCA2k9042386; Sat, 15 Aug 2015 12:10:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCA2k9042386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394306 - head/ftp/p5-Net-FTPSSL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:03 -0000 Author: sunpoet Date: Sat Aug 15 12:10:02 2015 New Revision: 394306 URL: https://svnweb.freebsd.org/changeset/ports/394306 Log: - Update to 0.30 Changes: http://search.cpan.org/dist/Net-FTPSSL/Changes Modified: head/ftp/p5-Net-FTPSSL/Makefile head/ftp/p5-Net-FTPSSL/distinfo Modified: head/ftp/p5-Net-FTPSSL/Makefile ============================================================================== --- head/ftp/p5-Net-FTPSSL/Makefile Sat Aug 15 12:09:57 2015 (r394305) +++ head/ftp/p5-Net-FTPSSL/Makefile Sat Aug 15 12:10:02 2015 (r394306) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-FTPSSL -PORTVERSION= 0.29 +PORTVERSION= 0.30 CATEGORIES= ftp perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/ftp/p5-Net-FTPSSL/distinfo ============================================================================== --- head/ftp/p5-Net-FTPSSL/distinfo Sat Aug 15 12:09:57 2015 (r394305) +++ head/ftp/p5-Net-FTPSSL/distinfo Sat Aug 15 12:10:02 2015 (r394306) @@ -1,2 +1,2 @@ -SHA256 (Net-FTPSSL-0.29.tar.gz) = 17b653752459d87c40a5a9d12cda9bd824ea79137ff3f7bf05530178f9434c4e -SIZE (Net-FTPSSL-0.29.tar.gz) = 84229 +SHA256 (Net-FTPSSL-0.30.tar.gz) = 8526f2ced2cc3cd17308fd703f8127740ecd23870bd2025480ec533dbb2b08f2 +SIZE (Net-FTPSSL-0.30.tar.gz) = 87069 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A8F39B9C1F; Sat, 15 Aug 2015 12:10:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8B60B1C82; Sat, 15 Aug 2015 12:10:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCA7Zv042490; Sat, 15 Aug 2015 12:10:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCA7Td042489; Sat, 15 Aug 2015 12:10:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCA7Td042489@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394307 - head/net-im/p5-Net-XMPP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:07 -0000 Author: sunpoet Date: Sat Aug 15 12:10:06 2015 New Revision: 394307 URL: https://svnweb.freebsd.org/changeset/ports/394307 Log: - Add LICENSE - Remove MASTER_SITE_SUBDIR - Add NO_ARCH Modified: head/net-im/p5-Net-XMPP/Makefile Modified: head/net-im/p5-Net-XMPP/Makefile ============================================================================== --- head/net-im/p5-Net-XMPP/Makefile Sat Aug 15 12:10:02 2015 (r394306) +++ head/net-im/p5-Net-XMPP/Makefile Sat Aug 15 12:10:06 2015 (r394307) @@ -5,12 +5,14 @@ PORTNAME= Net-XMPP DISTVERSION= 1.05 CATEGORIES= net-im perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:DAPATRICK +#MASTER_SITE_SUBDIR= CPAN:DAPATRICK PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Net::XMPP provides Perl Developer access to the XMPP protocol +LICENSE= LGPL21 + BUILD_DEPENDS= p5-Authen-SASL>=2.12:${PORTSDIR}/security/p5-Authen-SASL \ p5-Digest-SHA>=5.95:${PORTSDIR}/security/p5-Digest-SHA \ p5-XML-Stream>=1.24:${PORTSDIR}/textproc/p5-XML-Stream @@ -18,6 +20,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-LWP-Online>=1.07:${PORTSDIR}/www/p5-LWP-Online \ p5-YAML-Tiny>=1.41:${PORTSDIR}/textproc/p5-YAML-Tiny +NO_ARCH= yes USES= perl5 USE_PERL5= modbuild From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 713C39B9C40; Sat, 15 Aug 2015 12:10:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4919B1DA1; Sat, 15 Aug 2015 12:10:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCACtO042609; Sat, 15 Aug 2015 12:10:12 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCABJj042607; Sat, 15 Aug 2015 12:10:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCABJj042607@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394308 - head/sysutils/p5-File-Listing X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:12 -0000 Author: sunpoet Date: Sat Aug 15 12:10:11 2015 New Revision: 394308 URL: https://svnweb.freebsd.org/changeset/ports/394308 Log: - Use CONFLICTS_INSTALL instead of CONFLICTS - Add NO_ARCH - Sort PLIST Modified: head/sysutils/p5-File-Listing/Makefile head/sysutils/p5-File-Listing/pkg-plist Modified: head/sysutils/p5-File-Listing/Makefile ============================================================================== --- head/sysutils/p5-File-Listing/Makefile Sat Aug 15 12:10:06 2015 (r394307) +++ head/sysutils/p5-File-Listing/Makefile Sat Aug 15 12:10:11 2015 (r394308) @@ -14,11 +14,12 @@ COMMENT= Parse directory listings LICENSE= ART10 GPLv1 LICENSE_COMB= dual -RUN_DEPENDS= p5-HTTP-Date>=6:${PORTSDIR}/www/p5-HTTP-Date -BUILD_DEPENDS:= ${RUN_DEPENDS} +BUILD_DEPENDS= p5-HTTP-Date>=6:${PORTSDIR}/www/p5-HTTP-Date +RUN_DEPENDS:= ${BUILD_DEPENDS} -CONFLICTS= p5-libwww-5* +CONFLICTS_INSTALL= p5-libwww-5* +NO_ARCH= yes USES= perl5 USE_PERL5= configure Modified: head/sysutils/p5-File-Listing/pkg-plist ============================================================================== --- head/sysutils/p5-File-Listing/pkg-plist Sat Aug 15 12:10:06 2015 (r394307) +++ head/sysutils/p5-File-Listing/pkg-plist Sat Aug 15 12:10:11 2015 (r394308) @@ -1,2 +1,2 @@ -%%PERL5_MAN3%%/File::Listing.3.gz %%SITE_PERL%%/File/Listing.pm +%%PERL5_MAN3%%/File::Listing.3.gz From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:16 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E8049B9C69; Sat, 15 Aug 2015 12:10:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8EE411EF0; Sat, 15 Aug 2015 12:10:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAGCv042714; Sat, 15 Aug 2015 12:10:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCAG9e042713; Sat, 15 Aug 2015 12:10:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCAG9e042713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394309 - head/www/p5-HTML-Template-Compiled X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:16 -0000 Author: sunpoet Date: Sat Aug 15 12:10:15 2015 New Revision: 394309 URL: https://svnweb.freebsd.org/changeset/ports/394309 Log: - Add NO_ARCH Modified: head/www/p5-HTML-Template-Compiled/Makefile Modified: head/www/p5-HTML-Template-Compiled/Makefile ============================================================================== --- head/www/p5-HTML-Template-Compiled/Makefile Sat Aug 15 12:10:11 2015 (r394308) +++ head/www/p5-HTML-Template-Compiled/Makefile Sat Aug 15 12:10:15 2015 (r394309) @@ -19,6 +19,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage +NO_ARCH= yes USES= perl5 USE_PERL5= configure From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DB5E9B9C8A; Sat, 15 Aug 2015 12:10:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E6511FF1; Sat, 15 Aug 2015 12:10:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAL9M042831; Sat, 15 Aug 2015 12:10:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCALmF042829; Sat, 15 Aug 2015 12:10:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCALmF042829@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394310 - head/graphics/rubygem-rmagick X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:21 -0000 Author: sunpoet Date: Sat Aug 15 12:10:20 2015 New Revision: 394310 URL: https://svnweb.freebsd.org/changeset/ports/394310 Log: - Update to 2.15.4 Changes: https://github.com/rmagick/rmagick/blob/master/CHANGELOG.md Modified: head/graphics/rubygem-rmagick/Makefile head/graphics/rubygem-rmagick/distinfo Modified: head/graphics/rubygem-rmagick/Makefile ============================================================================== --- head/graphics/rubygem-rmagick/Makefile Sat Aug 15 12:10:15 2015 (r394309) +++ head/graphics/rubygem-rmagick/Makefile Sat Aug 15 12:10:20 2015 (r394310) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rmagick -PORTVERSION= 2.15.3 +PORTVERSION= 2.15.4 CATEGORIES= graphics rubygems MASTER_SITES= RG Modified: head/graphics/rubygem-rmagick/distinfo ============================================================================== --- head/graphics/rubygem-rmagick/distinfo Sat Aug 15 12:10:15 2015 (r394309) +++ head/graphics/rubygem-rmagick/distinfo Sat Aug 15 12:10:20 2015 (r394310) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rmagick-2.15.3.gem) = f7141b8f8da1d24427756c9304b5cffcaa25038070a1be85d1f58e56e9f74e26 -SIZE (rubygem/rmagick-2.15.3.gem) = 1545216 +SHA256 (rubygem/rmagick-2.15.4.gem) = 69db6635c2630ffd63c1858646cbc280226f31a7bc34e1c9d1322c2c73e1e386 +SIZE (rubygem/rmagick-2.15.4.gem) = 1545216 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:26 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B3C09B9CB2; Sat, 15 Aug 2015 12:10:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21FF010D9; Sat, 15 Aug 2015 12:10:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAQLP042955; Sat, 15 Aug 2015 12:10:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCAPG7042953; Sat, 15 Aug 2015 12:10:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCAPG7042953@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394311 - in head/sysutils/rubygem-puppet_forge: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:26 -0000 Author: sunpoet Date: Sat Aug 15 12:10:24 2015 New Revision: 394311 URL: https://svnweb.freebsd.org/changeset/ports/394311 Log: - Update to 2.0.0 Changes: https://github.com/puppetlabs/forge-ruby/commits/2.0.x Deleted: head/sysutils/rubygem-puppet_forge/files/ Modified: head/sysutils/rubygem-puppet_forge/Makefile head/sysutils/rubygem-puppet_forge/distinfo Modified: head/sysutils/rubygem-puppet_forge/Makefile ============================================================================== --- head/sysutils/rubygem-puppet_forge/Makefile Sat Aug 15 12:10:20 2015 (r394310) +++ head/sysutils/rubygem-puppet_forge/Makefile Sat Aug 15 12:10:24 2015 (r394311) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= puppet_forge -PORTVERSION= 1.0.5 +PORTVERSION= 2.0.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG @@ -11,7 +11,10 @@ COMMENT= Ruby client for the Puppet Forg LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= rubygem-her>=0.6.8:${PORTSDIR}/databases/rubygem-her +RUN_DEPENDS= rubygem-faraday>=0.9.0:${PORTSDIR}/www/rubygem-faraday \ + rubygem-faraday_middleware>=0.9.0:${PORTSDIR}/www/rubygem-faraday_middleware \ + rubygem-minitar>=0:${PORTSDIR}/archivers/rubygem-minitar \ + rubygem-semantic_puppet>=0.1.0:${PORTSDIR}/devel/rubygem-semantic_puppet NO_ARCH= yes USE_RUBY= yes Modified: head/sysutils/rubygem-puppet_forge/distinfo ============================================================================== --- head/sysutils/rubygem-puppet_forge/distinfo Sat Aug 15 12:10:20 2015 (r394310) +++ head/sysutils/rubygem-puppet_forge/distinfo Sat Aug 15 12:10:24 2015 (r394311) @@ -1,2 +1,2 @@ -SHA256 (rubygem/puppet_forge-1.0.5.gem) = 9f778a5d9f4ce88f82189e29030d0e65427dfe1cfd5e3f329e3bcc1e35ac0855 -SIZE (rubygem/puppet_forge-1.0.5.gem) = 760832 +SHA256 (rubygem/puppet_forge-2.0.0.gem) = 063a9f1c5dd21c0785ff3144e3f17be66cebba08d4fcf7ba0b56948643c4208b +SIZE (rubygem/puppet_forge-2.0.0.gem) = 773632 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:31 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E8B79B9CD5; Sat, 15 Aug 2015 12:10:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA23A11B3; Sat, 15 Aug 2015 12:10:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAUUo044986; Sat, 15 Aug 2015 12:10:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCAUTZ044984; Sat, 15 Aug 2015 12:10:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCAUTZ044984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394312 - head/textproc/rubygem-compass-rails X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:31 -0000 Author: sunpoet Date: Sat Aug 15 12:10:29 2015 New Revision: 394312 URL: https://svnweb.freebsd.org/changeset/ports/394312 Log: - Update to 2.0.5 - Update RUN_DEPENDS: use newer rubygem-sass-rails Changes: https://github.com/Compass/compass-rails/blob/master/CHANGELOG.md https://github.com/Compass/compass-rails/commits/master Modified: head/textproc/rubygem-compass-rails/Makefile head/textproc/rubygem-compass-rails/distinfo Modified: head/textproc/rubygem-compass-rails/Makefile ============================================================================== --- head/textproc/rubygem-compass-rails/Makefile Sat Aug 15 12:10:24 2015 (r394311) +++ head/textproc/rubygem-compass-rails/Makefile Sat Aug 15 12:10:29 2015 (r394312) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= compass-rails -PORTVERSION= 2.0.4 +PORTVERSION= 2.0.5 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -11,7 +11,7 @@ COMMENT= Integrate Compass into Rails 2. LICENSE= MIT RUN_DEPENDS= rubygem-compass>=1.0.0:${PORTSDIR}/textproc/rubygem-compass \ - rubygem-sass-rails>=0:${PORTSDIR}/textproc/rubygem-sass-rails \ + rubygem-sass-rails5>=0:${PORTSDIR}/textproc/rubygem-sass-rails5 \ rubygem-sprockets>=0:${PORTSDIR}/devel/rubygem-sprockets NO_ARCH= yes Modified: head/textproc/rubygem-compass-rails/distinfo ============================================================================== --- head/textproc/rubygem-compass-rails/distinfo Sat Aug 15 12:10:24 2015 (r394311) +++ head/textproc/rubygem-compass-rails/distinfo Sat Aug 15 12:10:29 2015 (r394312) @@ -1,2 +1,2 @@ -SHA256 (rubygem/compass-rails-2.0.4.gem) = 843339299ff5812db46611f968ef60193674af555e8fb4dd9b29252c2605618e -SIZE (rubygem/compass-rails-2.0.4.gem) = 17920 +SHA256 (rubygem/compass-rails-2.0.5.gem) = fe331fb032ebe447e97c982657b4bf90cc8d243475c06b2747811abb80d2981d +SIZE (rubygem/compass-rails-2.0.5.gem) = 17920 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:35 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 722E79B9CFD; Sat, 15 Aug 2015 12:10:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62CDC129C; Sat, 15 Aug 2015 12:10:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAZiP045252; Sat, 15 Aug 2015 12:10:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCAZtZ045242; Sat, 15 Aug 2015 12:10:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCAZtZ045242@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394313 - head/www/rubygem-chosen-rails X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:35 -0000 Author: sunpoet Date: Sat Aug 15 12:10:34 2015 New Revision: 394313 URL: https://svnweb.freebsd.org/changeset/ports/394313 Log: - Update RUN_DEPENDS: use Rails 4 and newer rubygem-sass-rails - Bump PORTREVISION for dependency change Modified: head/www/rubygem-chosen-rails/Makefile Modified: head/www/rubygem-chosen-rails/Makefile ============================================================================== --- head/www/rubygem-chosen-rails/Makefile Sat Aug 15 12:10:29 2015 (r394312) +++ head/www/rubygem-chosen-rails/Makefile Sat Aug 15 12:10:34 2015 (r394313) @@ -2,6 +2,7 @@ PORTNAME= chosen-rails PORTVERSION= 1.4.2 +PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG @@ -10,10 +11,10 @@ COMMENT= Box enhancer for jQuery and Pro LICENSE= MIT -RUN_DEPENDS= rubygem-coffee-rails>=3.2:${PORTSDIR}/devel/rubygem-coffee-rails \ +RUN_DEPENDS= rubygem-coffee-rails4>=3.2:${PORTSDIR}/devel/rubygem-coffee-rails4 \ rubygem-compass-rails>=2.0.4:${PORTSDIR}/textproc/rubygem-compass-rails \ - rubygem-railties>=3.0:${PORTSDIR}/www/rubygem-railties \ - rubygem-sass-rails>=3.2:${PORTSDIR}/textproc/rubygem-sass-rails + rubygem-railties4>=3.0:${PORTSDIR}/www/rubygem-railties4 \ + rubygem-sass-rails5>=3.2:${PORTSDIR}/textproc/rubygem-sass-rails5 NO_ARCH= yes From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:40 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24ADA9B9D21; Sat, 15 Aug 2015 12:10:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15434138B; Sat, 15 Aug 2015 12:10:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAdow046276; Sat, 15 Aug 2015 12:10:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCAdx8046043; Sat, 15 Aug 2015 12:10:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCAdx8046043@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394314 - head/textproc/rubygem-rails-dom-testing X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:40 -0000 Author: sunpoet Date: Sat Aug 15 12:10:38 2015 New Revision: 394314 URL: https://svnweb.freebsd.org/changeset/ports/394314 Log: - Update to 1.0.7 Changes: https://github.com/rails/rails-dom-testing/releases Modified: head/textproc/rubygem-rails-dom-testing/Makefile head/textproc/rubygem-rails-dom-testing/distinfo Modified: head/textproc/rubygem-rails-dom-testing/Makefile ============================================================================== --- head/textproc/rubygem-rails-dom-testing/Makefile Sat Aug 15 12:10:34 2015 (r394313) +++ head/textproc/rubygem-rails-dom-testing/Makefile Sat Aug 15 12:10:38 2015 (r394314) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rails-dom-testing -PORTVERSION= 1.0.6 +PORTVERSION= 1.0.7 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/rubygem-rails-dom-testing/distinfo ============================================================================== --- head/textproc/rubygem-rails-dom-testing/distinfo Sat Aug 15 12:10:34 2015 (r394313) +++ head/textproc/rubygem-rails-dom-testing/distinfo Sat Aug 15 12:10:38 2015 (r394314) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rails-dom-testing-1.0.6.gem) = a7b69cc95c84b5eb8e3fc6cd77726e409475415223c298647b61ffa33d849dd7 -SIZE (rubygem/rails-dom-testing-1.0.6.gem) = 17408 +SHA256 (rubygem/rails-dom-testing-1.0.7.gem) = 6813821425ff44ae3188162d0bae1a2ae08080fc1a584860bf78d50190a112ed +SIZE (rubygem/rails-dom-testing-1.0.7.gem) = 17408 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7424C9B9D43; Sat, 15 Aug 2015 12:10:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B9B11613; Sat, 15 Aug 2015 12:10:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAigl046477; Sat, 15 Aug 2015 12:10:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCAiIU046475; Sat, 15 Aug 2015 12:10:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCAiIU046475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394315 - head/www/rubygem-puma X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:45 -0000 Author: sunpoet Date: Sat Aug 15 12:10:43 2015 New Revision: 394315 URL: https://svnweb.freebsd.org/changeset/ports/394315 Log: - Update to 2.13.0 Changes: https://github.com/puma/puma/blob/master/History.txt Modified: head/www/rubygem-puma/Makefile head/www/rubygem-puma/distinfo Modified: head/www/rubygem-puma/Makefile ============================================================================== --- head/www/rubygem-puma/Makefile Sat Aug 15 12:10:38 2015 (r394314) +++ head/www/rubygem-puma/Makefile Sat Aug 15 12:10:43 2015 (r394315) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= puma -PORTVERSION= 2.12.3 +PORTVERSION= 2.13.0 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-puma/distinfo ============================================================================== --- head/www/rubygem-puma/distinfo Sat Aug 15 12:10:38 2015 (r394314) +++ head/www/rubygem-puma/distinfo Sat Aug 15 12:10:43 2015 (r394315) @@ -1,2 +1,2 @@ -SHA256 (rubygem/puma-2.12.3.gem) = 88b70ab3f7fdd38950f6527ce46ae69f9272eaf94b0bb88c2bf2e06a0d4debc9 -SIZE (rubygem/puma-2.12.3.gem) = 96768 +SHA256 (rubygem/puma-2.13.0.gem) = 9053627293e0859e33aa608f703667615d19db8416e6b22d941e58c2332dbc2a +SIZE (rubygem/puma-2.13.0.gem) = 96768 From owner-svn-ports-all@freebsd.org Sat Aug 15 12:10:49 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 454869B9E15; Sat, 15 Aug 2015 12:10:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3621F16BA; Sat, 15 Aug 2015 12:10:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCAnm4046567; Sat, 15 Aug 2015 12:10:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCAn4J046566; Sat, 15 Aug 2015 12:10:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201508151210.t7FCAn4J046566@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 15 Aug 2015 12:10:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394316 - head/sysutils/rubygem-winrm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:10:49 -0000 Author: sunpoet Date: Sat Aug 15 12:10:48 2015 New Revision: 394316 URL: https://svnweb.freebsd.org/changeset/ports/394316 Log: - Fix PLIST - Bump PORTREVISION for package change Approved by: portmgr (blanket) Modified: head/sysutils/rubygem-winrm/Makefile Modified: head/sysutils/rubygem-winrm/Makefile ============================================================================== --- head/sysutils/rubygem-winrm/Makefile Sat Aug 15 12:10:43 2015 (r394315) +++ head/sysutils/rubygem-winrm/Makefile Sat Aug 15 12:10:48 2015 (r394316) @@ -3,6 +3,7 @@ PORTNAME= winrm PORTVERSION= 1.3.3 +PORTREVISION= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG @@ -27,4 +28,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +PLIST_FILES= bin/rwinrm + .include From owner-svn-ports-all@freebsd.org Sat Aug 15 12:22:57 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 430B09BA263; Sat, 15 Aug 2015 12:22:57 +0000 (UTC) (envelope-from vg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19D301C40; Sat, 15 Aug 2015 12:22:57 +0000 (UTC) (envelope-from vg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FCMuIx051514; Sat, 15 Aug 2015 12:22:56 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FCMuhp051511; Sat, 15 Aug 2015 12:22:56 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201508151222.t7FCMuhp051511@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Sat, 15 Aug 2015 12:22:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394317 - in head/sysutils/cbsd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 12:22:57 -0000 Author: vg Date: Sat Aug 15 12:22:55 2015 New Revision: 394317 URL: https://svnweb.freebsd.org/changeset/ports/394317 Log: - Update to 10.2.0 - Start of integration with libxo - jimport: opportunity to set alternative IP for imported jail via newip= argument - fixes for resource leaks in cbsdsh/cbsd_fwatch - bhyve: when you create FreeBSD VM via FreeBSD-from-jail profile, you can specify a size of swap partition - bhyve: opportunity to create a virtual machine through FreeBSD-from-jail profile on ZFS filesystem - Initial XEN support PR: ports/202344 Submitted by: (maintainer) Deleted: head/sysutils/cbsd/files/patch-bin-cbsdsh-cbsd_fwatch.c Modified: head/sysutils/cbsd/Makefile head/sysutils/cbsd/distinfo Modified: head/sysutils/cbsd/Makefile ============================================================================== --- head/sysutils/cbsd/Makefile Sat Aug 15 12:10:48 2015 (r394316) +++ head/sysutils/cbsd/Makefile Sat Aug 15 12:22:55 2015 (r394317) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= cbsd -PORTVERSION= 10.1.4 +PORTVERSION= 10.2.0 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= olevole@olevole.ru @@ -20,6 +19,7 @@ LIB_DEPENDS= libssh2.so:${PORTSDIR}/secu USE_GITHUB= yes GH_ACCOUNT= olevole +USES= libedit USE_RC_SUBR= cbsdd cbsdrsyncd SUB_FILES= pkg-message @@ -36,6 +36,10 @@ GROUPS= ${PORTNAME} IGNORE= does not support FreeBSD versions < 10.0 .endif +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 +LIB_DEPENDS+= libxo.so:${PORTSDIR}/devel/libxo +.endif + do-install: @${ECHO} "Installing in ${CBSD_HOME}" ${MKDIR} ${STAGEDIR}${CBSD_HOME} Modified: head/sysutils/cbsd/distinfo ============================================================================== --- head/sysutils/cbsd/distinfo Sat Aug 15 12:10:48 2015 (r394316) +++ head/sysutils/cbsd/distinfo Sat Aug 15 12:22:55 2015 (r394317) @@ -1,2 +1,2 @@ -SHA256 (olevole-cbsd-v10.1.4_GH0.tar.gz) = 5f43b415ee0d6ff805e0af83b2f1c1fb5cc84573f06f5900ee3721fe552ef3ec -SIZE (olevole-cbsd-v10.1.4_GH0.tar.gz) = 486257 +SHA256 (olevole-cbsd-v10.2.0_GH0.tar.gz) = dc545eec5e999d9fd5dc8753a9c6f57c76cc26ff1e2e6d7b9f0db7b56bbadeb7 +SIZE (olevole-cbsd-v10.2.0_GH0.tar.gz) = 519467 From owner-svn-ports-all@freebsd.org Sat Aug 15 13:53:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF6A19BAF6A; Sat, 15 Aug 2015 13:53:32 +0000 (UTC) (envelope-from mmoll@darkthrone.kvedulv.de) Received: from darkthrone.kvedulv.de (darkthrone.kvedulv.de [IPv6:2001:1578:400:101::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "darkthrone.kvedulv.de", Issuer "StartCom Class 1 Primary Intermediate Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 845CC13B2; Sat, 15 Aug 2015 13:53:32 +0000 (UTC) (envelope-from mmoll@darkthrone.kvedulv.de) Received: by darkthrone.kvedulv.de (Postfix, from userid 666) id 54AB818F7; Sat, 15 Aug 2015 15:53:27 +0200 (CEST) Date: Sat, 15 Aug 2015 15:53:27 +0200 From: Michael Moll To: Sunpoet Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r394311 - in head/sysutils/rubygem-puppet_forge: . files Message-ID: <20150815135327.GA78901@darkthrone.kvedulv.de> References: <201508151210.t7FCAPG7042953@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <201508151210.t7FCAPG7042953@repo.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 13:53:32 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Sat, Aug 15, 2015 at 12:10:25PM +0000, Sunpoet Po-Chuan Hsieh wrote: > Author: sunpoet > Date: Sat Aug 15 12:10:24 2015 > New Revision: 394311 > URL: https://svnweb.freebsd.org/changeset/ports/394311 >=20 > Log: > - Update to 2.0.0 This incompatible update does break sysutils/rubygem-librarian-puppet, which is the only dependent package of rubygem-puppet_forge in the ports tree. IMHO it would be good to revert this update until librarian-puppet is compatible with newer puppet_forge versions. Best Regards --=20 Michael Moll --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCgAGBQJVz0RWAAoJEHSbfGivsRbHwK0QAJaLPNKEJo1hl0tGNmQHW8eR eMf5rLVeWaNXa3YoNSpD+1T7WI0YqSvZ66KR7z916kLr9vgIDGbiTAPNd6RjlUe8 7WH5GFgGyykcFjjwOocNu2i/h8BqzewQQ5ogzEuE9cuElBH5n9v691SXIyAdd8S2 nPlqIzMTexsmrZjcnAjB/bmwLBdlHRR0m0mb6zM197X8b63TaW0nTcuEt9rUijg2 cf43qePKV+A1l7okYPcolQjzv9YRtpuHqyvgLEu0MXp/Fmz4ioerb79wbnKg9n6E 2p4wWgLILZKI5foZaLyFjo2eELxnMCyoDzrlJ/aqygXtPqyQUGGEmX1UEwH1EWus 6ibFk2qCT7xb2Kym7Qsd2QB+vio71lO23KUC2h50v+XF982IF8R3zUZFwaCWuDJM oP9tBO95Dy0i9TyzU36TN4JHrdU4kJiwPZyqgV5n3I5wTjtfc8TA8gXbtqU5F3A4 fDJwQG2AmSxhCnAi+j1dITt4fxJsZ+7n4W0NRRDmSsIkLQ7nXGNeOEIaCe+U8L7a mKSnAaO1TCQFqg9dM5t5FtJQqhKFtScvAwJWJiG2RfIJCwNHDPnHdfGU/t9+ThMk TsP3U4BwmufFocEYUl2t847XHvaXBQcZBimyfvXq39zwh0JHVt/3TI0pSWm0UsPr x0UcvUSG96n00oySw4qW =ZxF0 -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From owner-svn-ports-all@freebsd.org Sat Aug 15 14:15:08 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 623229BA25C; Sat, 15 Aug 2015 14:15:08 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A3F51CEB; Sat, 15 Aug 2015 14:15:08 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FEF8Ri096324; Sat, 15 Aug 2015 14:15:08 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FEF8wq096323; Sat, 15 Aug 2015 14:15:08 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201508151415.t7FEF8wq096323@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sat, 15 Aug 2015 14:15:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394318 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 14:15:08 -0000 Author: danfe Date: Sat Aug 15 14:15:07 2015 New Revision: 394318 URL: https://svnweb.freebsd.org/changeset/ports/394318 Log: Fix numerous issues with "Broken for more than 6 months" phrase: - do not scream out BROKEN: make(1) knobs are uppercased, but it looks bad (and even rude) in regular English text - Pluralize "month" as needed (months) - s/then/than/ in few cases Modified: head/MOVED Modified: head/MOVED ============================================================================== --- head/MOVED Sat Aug 15 12:22:55 2015 (r394317) +++ head/MOVED Sat Aug 15 14:15:07 2015 (r394318) @@ -2386,7 +2386,7 @@ deskutils/sshmenu||2011-08-02|Has expire science/gave||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies x11-themes/gnome-art||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies x11-themes/gnome-splashscreen-manager||2011-08-02|Has expired: Upcoming ruby-gnome removes dependencies -databases/mysql-gui-tools||2011-08-02|Removed BROKEN for more than 6 months +databases/mysql-gui-tools||2011-08-02|Removed; broken for more than 6 months www/adblock|www/xpi-adblock|2011-08-02|Depends on obsolete SeaMonkey 1.1 www/bugmenot|www/bugmenot-firefox|2011-08-02|Depends on obsolete SeaMonkey 1.1 www/mozex|www/xpi-mozex|2011-08-02|Depends on obsolete SeaMonkey 1.1 @@ -2494,7 +2494,7 @@ astro/gkrellmoon||2011-09-01|Has expired astro/spacechart||2011-09-01|Has expired: Abandonware audio/adpcm||2011-09-01|Has expired: No more public distfiles audio/aube||2011-09-01|Has expired: Abandonware -audio/festvox-aec||2011-09-01|Has expired: BROKEN for more than 6 months +audio/festvox-aec||2011-09-01|Has expired: Broken for more than 6 months audio/gtkgep||2011-09-01|Has expired: Abandonware audio/gtkhirad||2011-09-01|Has expired: No more public distfiles audio/opmixer||2011-09-01|Has expired: No more upstream @@ -2512,7 +2512,7 @@ deskutils/gkrellm-gtodo||2011-09-01|Has deskutils/xopps||2011-09-01|Has expired: No more public distfiles devel/adocman||2011-09-01|Has expired: No more public distfiles devel/bisongen||2011-09-01|Has expired: No more public distfiles -devel/crow||2011-09-01|Has expired: BROKEN for more than 6 months +devel/crow||2011-09-01|Has expired: Broken for more than 6 months devel/p5-Config-INI-MVP||2011-09-01|Has expired: Disappear from CPAN devel/p5-Date-Set||2011-09-01|Has expired: Disappear from CPAN devel/p5-File-FTS||2011-09-01|Has expired: No more public distfiles @@ -2523,7 +2523,7 @@ devel/ruby-rbtree||2011-09-01|Has expire dns/host||2011-09-01|Has expired: No more public distfiles emulators/linux-padjoy||2011-09-01|Has expired: No more public distfiles emulators/mame-extras||2011-09-01|Has expired: No more public distfiles -emulators/snespp||2011-09-01|Has expired: BROKEN for more than 6 months +emulators/snespp||2011-09-01|Has expired: Broken for more than 6 months emulators/xgs||2011-09-01|Has expired: No more public distfiles ftp/gproftpd||2011-09-01|Has expired: No more public distfiles ftp/muddleftpd||2011-09-01|Has expired: No more public distfiles @@ -2556,7 +2556,7 @@ www/mmosaic||2011-09-07|Has expired: No www/ljsm||2011-09-07|Has expired: No more public distfiles www/ljpms||2011-09-07|Has expired: No more public distfiles www/ashe||2011-09-07|Has expired: No more public distfiles -textproc/europass-xsl||2011-09-07|Has expired: BROKEN for more than 6 months +textproc/europass-xsl||2011-09-07|Has expired: Broken for more than 6 months textproc/carthage||2011-09-07|Has expired: No more public distfiles korean/hlatexfonts-ocf||2011-09-07|Has expired: No more public distfiles korean/pgp.language||2011-09-07|Has expired: No more public distfiles @@ -2583,22 +2583,22 @@ games/wmtimebomb||2011-09-07|Has expired net-mgmt/cfgstoragemk||2011-09-07|Has expired: No more public distfiles mail/libspf2-10||2011-09-09|Vulnerable, use mail/libspf2 instead mail/postfix-policyd-spf||2011-09-09|Relies on vulnerable mail/libspf2-10 -multimedia/bmpx||2011-09-11|Has expired: BROKEN for more than 6 months +multimedia/bmpx||2011-09-11|Has expired: Broken for more than 6 months editors/openoffice.org-2|editors/openoffice.org-3|2011-09-20|Unsupported upstream and vulnerable devel/monodevelop-boo||2011-09-21|Removed www/ruby-http-access||2011-09-22|Has expired: Deprecated upstream, please use www/rubygem-httpclient sysutils/wots||2011-09-22|Has expired: No more public distfiles sysutils/plod||2011-09-22|Has expired: No more public distfiles -sysutils/checkservice||2011-09-22|Has expired: BROKEN for more than 6 months -security/nsm-console||2011-09-22|Has expired: BROKEN for more than 6 months +sysutils/checkservice||2011-09-22|Has expired: Broken for more than 6 months +security/nsm-console||2011-09-22|Has expired: Broken for more than 6 months security/fressh||2011-09-22|Has expired: No more public distfiles palm/pose||2011-09-22|Has expired: No more public distfiles palm/isilo||2011-09-22|Has expired: No more public distfiles -news/ija||2011-09-22|Has expired: BROKEN for more than 6 months +news/ija||2011-09-22|Has expired: Broken for more than 6 months news/PicMonger||2011-09-22|Has expired: Abandonware net/py-zopeproxy|net/py-zope.proxy|2011-09-23|Removed: please use net/py-zope.proxy instead devel/libnotifymm||2011-09-23|Has expired: Doesn't build and isn't used by anything -games/abuse||2011-09-23|Has expired: BROKEN after games/abuse_sdl update +games/abuse||2011-09-23|Has expired: Broken after games/abuse_sdl update security/donkey||2011-09-23|Has expired: No more public distfiles graphics/moth||2011-09-23|Has expired: No more public distfiles net-mgmt/aguri||2011-09-23|Has expired: No more public distfiles @@ -2679,7 +2679,7 @@ games/xword||2011-10-08|Abandonware games/kslide||2011-10-08|No more public distfiles graphics/xmrm||2011-10-08|No more public distfiles, does not compile on amd64 or sparc64 graphics/giftrans||2011-10-08|Upstream disappeared and distfile is not available -graphics/wildmagic||2011-10-08|BROKEN for more than 6 months, does not fetch +graphics/wildmagic||2011-10-08|Broken for more than 6 months, does not fetch irc/ircd-rusnet||2011-10-08|No more public distfiles irc/tkirc||2011-10-08|No more public distfiles korean/mizifont||2011-10-08|No more public distfiles @@ -2693,7 +2693,7 @@ net-im/newsbot||2011-10-08|No more publi net-im/libicq2000||2011-10-08|Abandonware net-im/gossip||2011-10-08|No longer maintained upstream, use net-im/empathy instead net-im/ickle||2011-10-08|Abandonware -net-mgmt/nipper||2011-10-08|BROKEN for more than 6 months, does not fetch +net-mgmt/nipper||2011-10-08|Broken for more than 6 months, does not fetch net-p2p/mldonkey-serverspy||2011-10-08|No more public distfiles news/p5-Gateway||2011-10-08|No more public distfiles print/epsmerge||2011-10-08|No more public distfiles @@ -3334,30 +3334,30 @@ mail/thunderbird3|mail/thunderbird-esr|2 mail/thunderbird3-i18n|mail/thunderbird-esr-i18n|2012-05-12|Upstream support dropped databases/php5-sqlite||2012-05-16|Removed from core php www/py-django-css|www/py-django_compressor|2012-05-16|Upstream development stopped. Use www/py-django_compressor instead -net-p2p/py-bittorrent-core||2012-05-16|BROKEN for more than 6 months, there are no upstream distfiles anymore -net-p2p/py-bittorrent||2012-05-16|BROKEN for more than 6 months, there are no upstream distfiles anymore +net-p2p/py-bittorrent-core||2012-05-16|Broken for more than 6 months, there are no upstream distfiles anymore +net-p2p/py-bittorrent||2012-05-16|Broken for more than 6 months, there are no upstream distfiles anymore astro/boinc-einsteinathome||2012-05-16|Not usable with current project -x11/avant-window-navigator-xfce4||2012-05-18|Has expired: BROKEN for more than 6 months -deskutils/xfce4-volstatus-icon||2012-05-18|Has expired: BROKEN for more than 6 months -multimedia/xfmedia-remote-plugin||2012-05-18|Has expired: BROKEN for more than 6 months -sysutils/thunar-volman-plugin||2012-05-18|Has expired: BROKEN for more than 6 months +x11/avant-window-navigator-xfce4||2012-05-18|Has expired: Broken for more than 6 months +deskutils/xfce4-volstatus-icon||2012-05-18|Has expired: Broken for more than 6 months +multimedia/xfmedia-remote-plugin||2012-05-18|Has expired: Broken for more than 6 months +sysutils/thunar-volman-plugin||2012-05-18|Has expired: Broken for more than 6 months databases/sqlite34||2012-05-18|Has expired: No longer supported, please use databases/sqlite3 instead graphics/long-exposure-tools||2012-05-18|Has expired: broken for more than 6 months, unmaintained upstream -misc/kde3-i18n-hsb||2012-05-18|Has expired: BROKEN for more than 6 months -misc/kde3-i18n-mt||2012-05-18|Has expired: BROKEN for more than 6 months -misc/kde3-i18n-nso||2012-05-18|Has expired: BROKEN for more than 6 months +misc/kde3-i18n-hsb||2012-05-18|Has expired: Broken for more than 6 months +misc/kde3-i18n-mt||2012-05-18|Has expired: Broken for more than 6 months +misc/kde3-i18n-nso||2012-05-18|Has expired: Broken for more than 6 months net-im/pino||2012-05-18|Has expired: broken for more than 6 months, unmaintained upstream print/perlftlib||2012-05-18|Has expired: No more upstream, no longer used in the ports tree editors/libreoffice-legacy||2012-05-18|Has expired: not supported upstream, maintaining two versions of LibreOffice is really painful devel/p5-POE-Exceptions||2012-05-18|Has expired: included in devel/p5-POE and not needed according to configure message net/p5-Net-Services||2012-05-18|Has expired: Removed from CPAN -net/perldap||2012-05-18|Has expired: BROKEN for more than 6 months +net/perldap||2012-05-18|Has expired: Broken for more than 6 months security/p5-Crypt-Cryptix||2012-05-18|Has expired: Gone from CPAN, project site says project is dead www/p5-HTML-Sanitizer||2012-05-18|Has expired: no longer in CPAN www/p5-IMDB-Movie||2012-05-18|Has expired: Removed from CPAN net/ng_car||2012-05-19|In base for all supported versions of FreeBSD -palm/coldsync||2012-05-19|BROKEN for more than 6 months, does not compile -graphics/linux-ac3d||2012-05-19|Has expired: BROKEN for more than 6 months +palm/coldsync||2012-05-19|Broken for more than 6 months, does not compile +graphics/linux-ac3d||2012-05-19|Has expired: Broken for more than 6 months archivers/pecl-bz2|archivers/php5-bz2|2012-05-20|bz2 is included in core php misc/freshmeat-submit|misc/freecode-submit|2012-05-20|Project renamed devel/kdebindings4-kross-interpreters||2012-05-25|kdebindings4 ports have been refactored @@ -3468,25 +3468,25 @@ mail/kavmilter||2012-06-06|Removed: secu sysutils/linux-megacli|sysutils/megacli|2012-06-06|Removed: native version available ftp/wu-ftpd+ipv6||2012-06-07|Removed: Upstream disappeared and distfile is no longer available sysutils/pwgen2|sysutils/pwgen|2012-06-07|pwgen2 is a continuation of pwgen that fixes several serious bugs -x11-toolkits/xforms-i18n||2012-06-08|Has expired: BROKEN for more than 6 months +x11-toolkits/xforms-i18n||2012-06-08|Has expired: Broken for more than 6 months security/ifd-devkit||2012-06-08|Conflicts with dependency, not useful -www/kazehakase||2012-06-10|Has expired: BROKEN for more than 6 months +www/kazehakase||2012-06-10|Has expired: Broken for more than 6 months x11/trayer-srg|x11/trayer|2012-06-11|Merged into x11/trayer games/flightgear-atlas||2012-06-12|Unmaintained upstream deskutils/sciplore-mindmapping||2012-06-12|Has expired: Discontinued, use deskutils/docear instead devel/libtool-fixed||2012-06-12|Has expired: libtool has been fixed, no more need of this version devel/p5-Devel-ObjectTracker||2012-06-12|Has expired: removed from CPAN -devel/rubygem-vmc||2012-06-12|Has expired: BROKEN for more than 6 months +devel/rubygem-vmc||2012-06-12|Has expired: Broken for more than 6 months games/antrix||2012-06-12|Has expired: no more public distfiles, abandoned upstream -games/sfbol||2012-06-12|Has expired: BROKEN for more than 6 months +games/sfbol||2012-06-12|Has expired: Broken for more than 6 months java/eclipseme||2012-06-12|Has expired: depends on java/sun-wtk -mail/lmtpd||2012-06-12|Has expired: BROKEN for more than 6 months -print/cups-magicolor||2012-06-12|Has expired: BROKEN for more than 6 months -security/pantera||2012-06-12|Has expired: BROKEN for more than 6 months +mail/lmtpd||2012-06-12|Has expired: Broken for more than 6 months +print/cups-magicolor||2012-06-12|Has expired: Broken for more than 6 months +security/pantera||2012-06-12|Has expired: Broken for more than 6 months graphics/djvulibre-nox11|graphics/djvulibre|2012-06-13|Merged back into graphics/djvulibre -games/wesnoth-devel||2012-06-13|Has expired: BROKEN for more than 6 month +games/wesnoth-devel||2012-06-13|Has expired: Broken for more than 6 months www/trac-ticketdelete||2012-06-14|Has expired: Functionality of this plugin has been incorporated into Trac 0.12 -x11-themes/gtk-qt-engine||2012-06-16|Has expired: BROKEN for more than 6 month +x11-themes/gtk-qt-engine||2012-06-16|Has expired: Broken for more than 6 months devel/bazaar|devel/baz|2012-06-17|Project renamed devel/bazaar-ng|devel/bzr|2012-06-17|Project renamed ftp/IglooFTP||2012-06-18|Has expired: No longer supported @@ -3511,7 +3511,7 @@ mail/sympa5|mail/sympa|2012-07-07|Has ex science/ics||2012-07-07|ICS is no more a part of Code_Saturne mail/postfix25||2012-07-07|Has expired: no further upstream development; please consider upgrading misc/alevt||2012-07-16|Has expired: No more upstream -multimedia/moonlight||2012-07-16|Has expired: BROKEN for more than 6 month +multimedia/moonlight||2012-07-16|Has expired: Broken for more than 6 months lang/python24||2012-07-16|End Of Life reached lang/python25||2012-07-16|End Of Life reached www/zope||2012-07-16|End Of Life reached @@ -3694,9 +3694,9 @@ math/guppi||2012-10-15|Not developed any x11-toolkits/gal||2012-10-15|Development ceased, nothing in the ports tree uses it anymore math/octave-forge-physicalconstants||2012-10-15|Incorporated upstream into math/octave-forge-miscellaneous math/octave-forge-combinatorics||2012-10-15|Incorporated upstream into math/octave-forge-miscellaneous -games/8kingdoms||2012-10-16|Has expired: BROKEN for more than 6 month -games/freeorion||2012-10-16|Has expired: BROKEN for more than 6 month -games/rigsofrods||2012-10-16|Has expired: BROKEN for more than 6 month +games/8kingdoms||2012-10-16|Has expired: Broken for more than 6 months +games/freeorion||2012-10-16|Has expired: Broken for more than 6 months +games/rigsofrods||2012-10-16|Has expired: Broken for more than 6 months sysutils/bacula2-client||2012-10-20|No longer supported upstream and may contain vulnerabilities. Use sysutils/bacula-client instead sysutils/bacula2-server||2012-10-20|No longer supported upstream and may contain vulnerabilities. Use sysutils/bacula-server instead x11-wm/wmcp||2012-10-25|Has expired: No more public distfiles @@ -3798,7 +3798,7 @@ deskutils/gnuwash||2012-10-26|Has expire devel/p5-Class-MOP||2012-10-27|Has expired: distribution has been merged with devel/p5-Moose x11-toolkits/ocaml-lablgtk||2012-10-27|Has expired: Abandoned upstream, consider using x11-toolkit/ocaml-lablgtk2 audio/xmms-arts_output||2012-10-28|Has expired: Outdated and distfile no longer available -databases/pear-MDB2_Driver_ibase||2012-10-28|Has expired: BROKEN for more than 6 month +databases/pear-MDB2_Driver_ibase||2012-10-28|Has expired: Broken for more than 6 months textproc/xerces-c||2012-11-05|Has expired: No more supported upstream, consider using xerces-c2 or xerces-c3 x11-wm/wampager||2012-11-05|Has expired: Development ceased x11-wm/waimea||2012-11-05|Has expired: Development ceased @@ -3930,7 +3930,7 @@ www/horde-meta|www/horde3-meta|2012-12-1 x11-toolkits/fltk-threads|x11-toolkits/fltk|2012-12-12|Threads are on by default x11-fonts/gentium|x11-fonts/gentium-plus|2012-12-15|Track upstream name changes devel/pear-Horde_DataTree||2012-12-16|Obsolete in horde5 -deskutils/doodle||2012-12-17|Has expired: BROKEN for more than 6 month +deskutils/doodle||2012-12-17|Has expired: Broken for more than 6 months www/horde4-ansel|www/horde-ansel|2012-12-18|Move horde4-* apps to horde-* www/horde4-base|www/horde-base|2012-12-18|Move horde4-* apps to horde-* www/horde4-passwd|www/horde-passwd|2012-12-18|Move horde4-* apps to horde-* @@ -3954,12 +3954,12 @@ ports-mgmt/portmanager||2013-01-06|Has e net-im/openfetion||2013-01-06|Has expired: Abandoned upstream textproc/libpathan||2013-01-06|Has expired: Does not build and upstream has discontinued the project and advises that it has been replaced by textproc/xqilla java/sun-wtk||2013-01-06|Has expired: no more public distfiles, merged with Java ME SDK 3.0 upstream -databases/hypertable||2013-01-06|Has expired: BROKEN for more than 6 month +databases/hypertable||2013-01-06|Has expired: Broken for more than 6 months graphics/autopano-sift||2013-01-06|Has expired: Disappeared from vendor site. No longer required by graphics/hugin -misc/airoflash||2013-01-06|Has expired: BROKEN for more than 6 month -x11-themes/kde-icons-krystaline||2013-01-06|Has expired: BROKEN for more than 6 month -x11-themes/kde-icons-amaranth||2013-01-06|Has expired: BROKEN for more than 6 month -x11-themes/kde-icons-realistic||2013-01-06|Has expired: BROKEN for more than 6 month +misc/airoflash||2013-01-06|Has expired: Broken for more than 6 months +x11-themes/kde-icons-krystaline||2013-01-06|Has expired: Broken for more than 6 months +x11-themes/kde-icons-amaranth||2013-01-06|Has expired: Broken for more than 6 months +x11-themes/kde-icons-realistic||2013-01-06|Has expired: Broken for more than 6 months x11/Terminal|x11/xfce4-terminal|2013-01-06|Project was renamed textproc/p5-ack|textproc/ack|2013-01-06|Not just a perl module sysutils/syslog-ng-rc|sysutils/syslog-ng-devel|2013-01-08|No longer used by our upline, use syslog-ng-devel instead @@ -3974,8 +3974,8 @@ devel/p4v||2013-01-22|No longer publishe multimedia/libdvdplay||2013-01-27|Has expired: No more public_distfiles www/p5-Bundle-Sledge||2013-01-27|Removed devel/p5-Class-Fields||2013-01-27|Has expired: considered obsolete by upstream -databases/ruby-kyotocabinet||2013-01-27|Has expired: BROKEN for more than 6 month -x11-themes/kde-icons-amaranth-althaea||2013-01-27|Has expired: BROKEN for more than 6 month +databases/ruby-kyotocabinet||2013-01-27|Has expired: Broken for more than 6 months +x11-themes/kde-icons-amaranth-althaea||2013-01-27|Has expired: Broken for more than 6 months net/bpfstat||2013-01-27|Has expired: Merge in netstat on all supported version of FreeBSD x11-toolkits/fltk11||2013-01-27|Has expired: new code should use /x11-toolkits/fltk sysutils/salt|sysutils/py-salt|2013-01-27|Rename to consistency with other Python ports @@ -4028,9 +4028,9 @@ x11-toolkits/tk85-thread||2013-02-06|Thr x11-toolkits/tk86-thread||2013-02-06|Threads are now enabled by default x11-fm/fsv||2013-02-14|Depends on expired x11-toolkits/gtkglarea x11-toolkits/gtkglarea||2013-02-14|Has expired: No more public distfiles -graphics/solang||2013-02-14|Has expired: BROKEN for more than 6 month -math/octave-devel||2013-02-14|Has expired: BROKEN for more than 6 month -net/spnetkit||2013-02-14|Has expired: BROKEN for more than 6 month +graphics/solang||2013-02-14|Has expired: Broken for more than 6 months +math/octave-devel||2013-02-14|Has expired: Broken for more than 6 months +net/spnetkit||2013-02-14|Has expired: Broken for more than 6 months devel/py-flakes|devel/py-pyflakes|2013-02-18|Renamed to correct upstream name net/samba4-devel|net/samba4|2013-02-18|Renamed to reflect maturity of upstream version net/libnet-devel|net/libnet|2013-02-18|Renamed to stable branch @@ -4084,26 +4084,26 @@ x11-themes/e17-theme-darkness||2013-03-0 x11-themes/e17-theme-cthulhain||2013-03-03|Has expired: Dead upstream since 2008 x11-servers/driglide||2013-03-03|Has expired: 3dfx is dead, fails to compile on recent versions of FreeBSD mail/gmime||2013-03-03|Has expired: superseded with version 2.4 -archivers/bsdar||2013-03-03|Has expired: part of the base system +archivers/bsdar||2013-03-03|Has expired: part of the base system now misc/instant-server||2013-03-04|Removed: Non-essential meta port sysutils/sge60||2013-03-06|Has expired: Ancient and unsupported release sysutils/sge61||2013-03-06|Has expired: Ancient and unsupported release -x11-themes/sapphire-themes||2013-03-06|Has expired: Broken for more than 6 month -misc/fep||2013-03-06|Has expired: Broken for more than 6 month -devel/gauche-gaunit||2013-03-06|Has expired: Broken for more than 6 month -games/tuxracer_golf||2013-03-06|Has expired: Broken for more than 6 month -net/bfilter||2013-03-06|Has expired: Broken for more than 6 month -graphics/fnlib||2013-03-06|Has expired: Broken for more than 6 month -print/gfontview||2013-03-06|Has expired: Broken for more than 6 month -print/hugelatex||2013-03-06|Has expired: Broken for more than 6 month -misc/gtktalog||2013-03-06|Has expired: Broken for more than 6 month -x11/wterm||2013-03-06|Has expired: Broken for more than 6 month -databases/xapian-bindings10||2013-03-06|Has expired: Broken for more than 6 month -databases/adstudio||2013-03-06|Has expired: Broken for more than 6 month -misc/splitvt||2013-03-06|Has expired: Broken for more than 6 month -sysutils/udesc_dump||2013-03-06|Has expired: Broken for more than 6 month -textproc/gxditview||2013-03-06|Has expired: Broken for more than 6 month -x11/powershell||2013-03-06|Has expired: Broken for more then 6 month +x11-themes/sapphire-themes||2013-03-06|Has expired: Broken for more than 6 months +misc/fep||2013-03-06|Has expired: Broken for more than 6 months +devel/gauche-gaunit||2013-03-06|Has expired: Broken for more than 6 months +games/tuxracer_golf||2013-03-06|Has expired: Broken for more than 6 months +net/bfilter||2013-03-06|Has expired: Broken for more than 6 months +graphics/fnlib||2013-03-06|Has expired: Broken for more than 6 months +print/gfontview||2013-03-06|Has expired: Broken for more than 6 months +print/hugelatex||2013-03-06|Has expired: Broken for more than 6 months +misc/gtktalog||2013-03-06|Has expired: Broken for more than 6 months +x11/wterm||2013-03-06|Has expired: Broken for more than 6 months +databases/xapian-bindings10||2013-03-06|Has expired: Broken for more than 6 months +databases/adstudio||2013-03-06|Has expired: Broken for more than 6 months +misc/splitvt||2013-03-06|Has expired: Broken for more than 6 months +sysutils/udesc_dump||2013-03-06|Has expired: Broken for more than 6 months +textproc/gxditview||2013-03-06|Has expired: Broken for more than 6 months +x11/powershell||2013-03-06|Has expired: Broken for more than 6 months devel/ZendOptimizer|www/pecl-zendoptimizerplus|2013-03-07|Replaced with supported open-source release net-im/jreen|net-im/libjreen|2013-03-07|Duplicate of net-im/libjreen databases/ruby-dbdbd||2013-03-08|Dead project, no known users @@ -4115,14 +4115,14 @@ net-p2p/transmission25-gtk2|net-p2p/tran net-p2p/transmission25-qt4|net-p2p/transmission-qt4|2013-03-09|gtk version is now fine www/transmission25-web|www/transmission-web|2013-03-09|gtk version is now fine net-p2p/transmission-gtk2|net-p2p/transmission-gtk|2013-03-09|Now uses GTK 3 -ftp/proma||2013-03-09|Has expired: Broken for more than 6 month -vietnamese/vnelvis||2013-03-09|Has expired: Broken for more than 6 month -devel/rubygem-ncursesw||2013-03-09|Has expired: Broken for more than 6 month -www/wyvern||2013-03-09|Has expired: Broken for more than 6 month -devel/xlslib||2013-03-09|Has expired: Broken for more than 6 month -mail/firetray||2013-03-09|Has expired: Broken for more than 6 month -vietnamese/vnterm||2013-03-09|Has expired: Broken for more than 6 month -graphics/vid||2013-03-09|Has expired: Broken for more than 6 month +ftp/proma||2013-03-09|Has expired: Broken for more than 6 months +vietnamese/vnelvis||2013-03-09|Has expired: Broken for more than 6 months +devel/rubygem-ncursesw||2013-03-09|Has expired: Broken for more than 6 months +www/wyvern||2013-03-09|Has expired: Broken for more than 6 months +devel/xlslib||2013-03-09|Has expired: Broken for more than 6 months +mail/firetray||2013-03-09|Has expired: Broken for more than 6 months +vietnamese/vnterm||2013-03-09|Has expired: Broken for more than 6 months +graphics/vid||2013-03-09|Has expired: Broken for more than 6 months games/kye-data||2013-03-12|Deleted: Merged with games/kye misc/gopod||2013-03-13|Has expired: does not work with modern iPods anymore misc/gtk-gopod||2013-03-13|Has expired: does not work with modern iPods anymore @@ -4162,7 +4162,7 @@ math/hs-Agda-executable||2013-03-29|Remo mail/thunderbird-esr|mail/thunderbird|2013-04-03|Removed: Mozilla stopped providing 2 versions of thunderbird mail/thunderbird-esr-i18n|mail/thunderbird-i18n|2013-04-03|Removed: Mozilla stopped providing 2 versions of thunderbird www/mod_security21|www/mod_security|2013-04-16|Removed: outdated and had a vulnerability, consider using a newer version -www/linux-flashplugin9||2013-04-16|Has expired: Vulnerable, BROKEN for more than six months +www/linux-flashplugin9||2013-04-16|Has expired: Vulnerable, Broken for more than 6 months www/p5-Apache-GopherHandler||2013-04-16|Has expired: Depends on p5-Net-Gopher which is deprecated and expired net/p5-Gopher-Server||2013-04-16|Has expired: Depends on p5-Net-Gopher which is deprecated and expired net/p5-Net-Gopher||2013-04-16|Has expired: gone from CPAN @@ -4170,7 +4170,7 @@ x11-drivers/xf86-video-radeonhd-devel||2 devel/ros-image_common||2013-04-16|Has expired: Depends on devel/ros_common which is broken for more than 6 months devel/ros-laser_pipeline||2013-04-16|Has expired: Depends on devel/ros_common which is broken for more than 6 months databases/php52-rrdtool||2013-04-16|Has expired: PHP 5.2 series is strongly discouraged for new installations, migrate now -devel/ros-common||2013-04-16|Has expired: Broken for more than 6 month +devel/ros-common||2013-04-16|Has expired: Broken for more than 6 months devel/goffice04||2013-04-16|Removed: No users, blocking libgsf update devel/goffice06||2013-04-16|Removed: No users, blocking libgsf update devel/goffice1||2013-04-16|Removed: Only one port user which has no user itself. blocking libgsf update @@ -4311,7 +4311,7 @@ x11-toolkits/linux-pango||2013-05-30|Has x11-toolkits/linux-qt33||2013-05-30|Has expired: Only used on FreeBSD 7, which is end-of-life irc/bitchx-devel|irc/bitchx|2013-05-31|Release finally cut www/rubygem-selnium-webdriver|www/rubygem-selenium-webdriver|2013-06-01|Fix typo in port name -mail/p5-vpopmail||2013-06-03|Has expired: Broken for more than 6 month +mail/p5-vpopmail||2013-06-03|Has expired: Broken for more than 6 months mail/vodmr||2013-06-03|Has expired: depends on expired mail/p5-vpopmail devel/libzrtp||2013-06-03|Has expired: No more public distfiles mail/postfix26||2013-06-03|Has expired: No longer supported by upstream @@ -4353,7 +4353,7 @@ www/hs-yesod-default||2013-06-04|Removed www/hs-yesod-json||2013-06-04|Removed: This package is obsoleted since Yesod 1.2 security/fwtk||2013-06-04|Removed: No more public distfiles net/samba34|net/samba36|2013-06-04|Removed: Unmaintained by upstream -devel/linux-js||2013-06-04|Has expired: Broken for more than 6 month +devel/linux-js||2013-06-04|Has expired: Broken for more than 6 months emulators/osmose||2013-06-04|Removed: depends on expired devel/linux-js security/pam_authsrv||2013-06-04|Removed: depends on expired and removed security/fwtk emulators/linux-xjoypad||2013-06-05|Removed: depend on expired devel/linux-js, consider using emulators/joytran instead @@ -4363,17 +4363,17 @@ x11-toolkits/ruby-wx||2013-06-07|Has exp sysutils/userspace-rcu|sysutils/liburcu|2013-06-07|Renamed correctly according to upstream mail/mixminion||2013-06-07|Has expired: This port requires python version, we haven't in the ports tree already devel/gprbuild-aux|devel/gprbuild|2013-06-10|Has expired: Deprecated in favor of devel/gprbuild -devel/linuxthreads||2013-06-10|Has expired: Broken for more than 6 month +devel/linuxthreads||2013-06-10|Has expired: Broken for more than 6 months mail/claws-mail-gtkhtml2_viewer|mail/claws-mail-fancy|2013-06-11|Has expired: No longer maintained, please use mail/claws-mail-fancy instead mail/claws-mail-cachesaver||2013-06-11|Has expired: No longer maintained by Claws Mail team deskutils/contacts||2013-06-13|Has expired: upstream project discontinued for years, upstream sources are gone www/libxul19|www/libxul|2013-06-15|Has been vulnerable for a long time, unsupported upstream chinese/cxterm||2013-06-17|Has expired: does not compile games/rtcw|games/linux-rtcw|2013-06-18|Renamed (Linux binary port) -multimedia/p5-Video-Info||2013-06-19|Has expired: Broken for more than 6 month +multimedia/p5-Video-Info||2013-06-19|Has expired: Broken for more than 6 months net-p2p/p5-pdonkey||2013-06-19|Removed: depends on expired multimedia/p5-Video-Info -lang/boo||2013-06-19|Has expired: BROKEN for more than 6 month -math/petsc-mpich||2013-06-19|Has expired: BROKEN for more than 6 month +lang/boo||2013-06-19|Has expired: Broken for more than 6 months +math/petsc-mpich||2013-06-19|Has expired: Broken for more than 6 months databases/py-MySQLdb41||2013-06-19|Depends on databases/mysql41-client, which was removed databases/py-MySQLdb50||2013-06-19|Depends on databases/mysql50-client, which was removed devel/bugzilla|devel/bugzilla40|2013-06-20|Renamed @@ -4821,31 +4821,31 @@ www/moodle22||2013-08-20|Has expired: Un www/w3m-m17n|www/w3m|2013-08-22|Unified to www/w3m www/w3m-m17n-img|www/w3m-img|2013-08-22|Unified to www/w3m-img security/sfs||2013-08-23|Has expired: Broken on FreeBSD 8 and newer -mail/p5-Mail-CClient||2013-08-26|Has expired: Broken for more than 6 month +mail/p5-Mail-CClient||2013-08-26|Has expired: Broken for more than 6 months net/slbd||2013-08-26|Has expired: Broken on FreeBSD 8 and newer comms/hso-kmod||2013-08-26|Has expired: Broken on FreeBSD 8 and newer -lang/ldc-devel||2013-08-27|Has expired: Broken for more than 6 month -www/mod_smooth_streaming||2013-08-27|Has expired: Broken for more than 6 month -www/p5-Apache2-Scoreboard||2013-08-27|Has expired: Broken for more than 6 month -multimedia/mp4split||2013-08-27|Has expired: Broken for more than 6 month -net-mgmt/noc||2013-08-27|Has expired: Broken for more than 6 month -sysutils/empower||2013-08-27|Has expired: Broken for more than 6 month -emulators/xgngeo||2013-08-27|Has expired: Broken for more than 6 month -graphics/geglmm||2013-08-27|Has expired: Broken for more than 6 month -sysutils/libumberlog||2013-08-27|Has expired: Broken for more than 6 month -net-p2p/nicotine-plus||2013-08-27|Has expired: Broken for more than 6 month -palm/barry||2013-08-27|Has expired: Broken for more than 6 month -x11-themes/kde-icons-noia-warm||2013-08-27|Has expired: Broken for more than 6 month -news/lottanzb||2013-08-27|Has expired: Broken for more than 6 month -textproc/xaira||2013-08-27|Has expired: Broken for more than 6 month -graphics/f90gl||2013-08-27|Has expired: Broken for more than 6 month -multimedia/linux-gspca-kmod||2013-08-27|Has expired: Broken for more than 6 month -x11/cl-clx-sbcl||2013-08-27|Has expired: Broken for more than 6 month -math/dislin||2013-08-27|Has expired: Broken for more than 6 month -irc/smuxi||2013-08-27|Has expired: Broken for more than 6 month -java/icedtea6-stubs||2013-08-27|Has expired: Broken for more than 6 month -math/octave-forge-es||2013-08-27|Has expired: Broken for more than 6 month -math/octave-forge-java||2013-08-27|Has expired: Broken for more than 6 month +lang/ldc-devel||2013-08-27|Has expired: Broken for more than 6 months +www/mod_smooth_streaming||2013-08-27|Has expired: Broken for more than 6 months +www/p5-Apache2-Scoreboard||2013-08-27|Has expired: Broken for more than 6 months +multimedia/mp4split||2013-08-27|Has expired: Broken for more than 6 months +net-mgmt/noc||2013-08-27|Has expired: Broken for more than 6 months +sysutils/empower||2013-08-27|Has expired: Broken for more than 6 months +emulators/xgngeo||2013-08-27|Has expired: Broken for more than 6 months +graphics/geglmm||2013-08-27|Has expired: Broken for more than 6 months +sysutils/libumberlog||2013-08-27|Has expired: Broken for more than 6 months +net-p2p/nicotine-plus||2013-08-27|Has expired: Broken for more than 6 months +palm/barry||2013-08-27|Has expired: Broken for more than 6 months +x11-themes/kde-icons-noia-warm||2013-08-27|Has expired: Broken for more than 6 months +news/lottanzb||2013-08-27|Has expired: Broken for more than 6 months +textproc/xaira||2013-08-27|Has expired: Broken for more than 6 months +graphics/f90gl||2013-08-27|Has expired: Broken for more than 6 months +multimedia/linux-gspca-kmod||2013-08-27|Has expired: Broken for more than 6 months +x11/cl-clx-sbcl||2013-08-27|Has expired: Broken for more than 6 months +math/dislin||2013-08-27|Has expired: Broken for more than 6 months +irc/smuxi||2013-08-27|Has expired: Broken for more than 6 months +java/icedtea6-stubs||2013-08-27|Has expired: Broken for more than 6 months +math/octave-forge-es||2013-08-27|Has expired: Broken for more than 6 months +math/octave-forge-java||2013-08-27|Has expired: Broken for more than 6 months net/gatekeeper||2013-08-28|Has expired: Vulnerable for than 2 month audio/mp3towav-bundle||2013-08-28|Does not build with recent GNUstep biology/adun||2013-08-28|Does not build with recent GNUstep @@ -4877,7 +4877,7 @@ japanese/bugzilla3|japanese/bugzilla42|2 russian/bugzilla3|russian/bugzilla42|2013-08-30|EOL: Please update to a supported version net-im/licq-console||2013-08-30|No longer maintained upstream databases/py-migrate|databases/py-sqlalchemy-migrate|2013-09-01|Rename to reflect official project name -lang/gdc||2013-09-01|Has expired: Broken for more than 6 month +lang/gdc||2013-09-01|Has expired: Broken for more than 6 months net-im/cli-msn||2013-09-01|Has expired: MSN Messenger service terminated 30 APR 2013 x11-toolkits/wxd||2013-09-01|Has expired: Depends on deprecated lang/gdc security/openvpn22||2013-09-01|Has expired: Please migrate to a newer OpenVPN version @@ -5181,36 +5181,36 @@ x11/libgnomemm|x11/libgnomemm26|2013-11- devel/gconfmm|devel/gconfmm26|2013-11-18|Older version; has no consumers in the ports tree sysutils/dircomp||2013-11-18|Removed: unmaintained and depends on expired devel/libXGP sysutils/iextract||2013-11-18|Removed: unmaintained and depends on expired devel/libYGP -devel/libXGP||2013-11-18|Has expired: Broken for more than 6 month -deskutils/google-gadgets||2013-11-18|Has expired: Broken for more than 6 month -palm/synce-trayicon||2013-11-18|Has expired: Broken for more than 6 month -security/linux-pam-docs||2013-11-18|Has expired: Broken for more than 6 month -net-p2p/mooseekd||2013-11-18|Has expired: Broken for more than 6 month -textproc/p5-Lucene||2013-11-18|Has expired: Broken for more than 6 month -net-mgmt/zenpack-dellmonitor||2013-11-18|Has expired: Broken for more than 6 month -x11-wm/fbpager||2013-11-18|Has expired: Broken for more than 6 month -net/hf6to4||2013-11-18|Has expired: Broken for more than 6 month -x11-themes/kde-icons-exquisite||2013-11-18|Has expired: Broken for more than 6 month -x11-themes/kde-icons-marbles-translucent||2013-11-18|Has expired: Broken for more than 6 month +devel/libXGP||2013-11-18|Has expired: Broken for more than 6 months +deskutils/google-gadgets||2013-11-18|Has expired: Broken for more than 6 months +palm/synce-trayicon||2013-11-18|Has expired: Broken for more than 6 months +security/linux-pam-docs||2013-11-18|Has expired: Broken for more than 6 months +net-p2p/mooseekd||2013-11-18|Has expired: Broken for more than 6 months +textproc/p5-Lucene||2013-11-18|Has expired: Broken for more than 6 months +net-mgmt/zenpack-dellmonitor||2013-11-18|Has expired: Broken for more than 6 months +x11-wm/fbpager||2013-11-18|Has expired: Broken for more than 6 months +net/hf6to4||2013-11-18|Has expired: Broken for more than 6 months +x11-themes/kde-icons-exquisite||2013-11-18|Has expired: Broken for more than 6 months +x11-themes/kde-icons-marbles-translucent||2013-11-18|Has expired: Broken for more than 6 months security/dissembler||2013-11-18|Has expired: Broken for more than 6 months, upstream disappeared -net-mgmt/zenpack-apachemonitor||2013-11-18|Has expired: Broken for more than 6 month -textproc/rst.el||2013-11-18|Has expired: Broken for more than 6 month -net-mgmt/zenpack-ntpmonitor||2013-11-18|Has expired: Broken for more than 6 month -x11-themes/kde-icons-steel||2013-11-18|Has expired: Broken for more than 6 month -databases/drizzle||2013-11-18|Has expired: Broken for more than 6 month -devel/p5-File-Lock||2013-11-18|Has expired: Broken for more than 6 month -devel/valide||2013-11-18|Has expired: Broken for more than 6 month -databases/gomysql||2013-11-18|Has expired: Broken for more than 6 month -databases/p5-DBZ_File||2013-11-18|Has expired: Broken for more than 6 month -devel/monodevelop-vala||2013-11-18|Has expired: Broken for more than 6 month -devel/gonzui||2013-11-18|Has expired: Broken for more than 6 month -devel/monodevelop-java||2013-11-18|Has expired: Broken for more than 6 month -lang/objc||2013-11-18|Has expired: Broken for more than 6 month -devel/klee||2013-11-18|Has expired: Broken for more than 6 month -devel/simulavr||2013-11-18|Has expired: Broken for more than 6 month -japanese/mobileimap||2013-11-18|Has expired: Broken for more than 6 month -devel/libYGP||2013-11-18|Has expired: Broken for more than 6 month -devel/monodevelop-python||2013-11-18|Has expired: Broken for more than 6 month +net-mgmt/zenpack-apachemonitor||2013-11-18|Has expired: Broken for more than 6 months +textproc/rst.el||2013-11-18|Has expired: Broken for more than 6 months +net-mgmt/zenpack-ntpmonitor||2013-11-18|Has expired: Broken for more than 6 months +x11-themes/kde-icons-steel||2013-11-18|Has expired: Broken for more than 6 months +databases/drizzle||2013-11-18|Has expired: Broken for more than 6 months +devel/p5-File-Lock||2013-11-18|Has expired: Broken for more than 6 months +devel/valide||2013-11-18|Has expired: Broken for more than 6 months +databases/gomysql||2013-11-18|Has expired: Broken for more than 6 months +databases/p5-DBZ_File||2013-11-18|Has expired: Broken for more than 6 months +devel/monodevelop-vala||2013-11-18|Has expired: Broken for more than 6 months +devel/gonzui||2013-11-18|Has expired: Broken for more than 6 months +devel/monodevelop-java||2013-11-18|Has expired: Broken for more than 6 months +lang/objc||2013-11-18|Has expired: Broken for more than 6 months +devel/klee||2013-11-18|Has expired: Broken for more than 6 months +devel/simulavr||2013-11-18|Has expired: Broken for more than 6 months +japanese/mobileimap||2013-11-18|Has expired: Broken for more than 6 months +devel/libYGP||2013-11-18|Has expired: Broken for more than 6 months +devel/monodevelop-python||2013-11-18|Has expired: Broken for more than 6 months devel/lua50-app||2013-11-18|Removed, lua50 is EOLed devel/lua50-dfui||2013-11-18|Removed, lua50 is EOLed devel/lua50-filename||2013-11-18|Removed, lua50 is EOLed @@ -5267,7 +5267,7 @@ comms/uhso-kmod||2013-12-01|Has expired: deskutils/ecru||2013-12-01|Has expired: No longer maintained upstream editors/gphpedit||2013-12-01|Has expired: No longer maintained upstream irc/inspircd12|irc/inspircd|2013-12-01|Has expired: No upstream support; known vulnerable. Please use irc/inspircd -graphics/py-clutter||2013-12-01|Has expired: Broken for more than 6 month +graphics/py-clutter||2013-12-01|Has expired: Broken for more than 6 months graphics/py-clutter-gtk||2013-12-01|Has expired: depends on expired graphics/py-clutter devel/zmq|net/libzmq2|2013-12-05|Rename according to upstream and move to more suitable category devel/rubygem-ruby-statsd|devel/rubygem-statsd|2013-12-05|Rename to match upstream naming @@ -5288,34 +5288,34 @@ sysutils/hammerhead||2013-12-15|Has expi net-p2p/libtorrent-rasterbar-15-python||2013-12-15|Has expired: Unusable, development ceased graphics/openexr_ctl||2013-12-15|Has expired: Now distributed with ampasCTL-1.5 net-p2p/libtorrent-rasterbar-15||2013-12-16|Has expired: Unusable, development ceased -x11-fonts/ppantsfonts||2013-12-20|Has expired: Broken for more than 6 month +x11-fonts/ppantsfonts||2013-12-20|Has expired: Broken for more than 6 months x11-toolkits/gtksourceview-sharp||2013-12-20|Has expired: Depends on expired devel/mono-tools -devel/mono-tools||2013-12-20|Has expired: Broken for more than 6 month +devel/mono-tools||2013-12-20|Has expired: Broken for more than 6 months textproc/p5-XML-SAXDriver-Sablotron||2013-12-20|Has expired: Depends on expired textproc/p5-XML-Sablotron -textproc/p5-XML-Sablotron||2013-12-20|Has expired: Broken for more than 6 month -net/freeswitch-core||2013-12-20|Has expired: Broken for more than 6 month +textproc/p5-XML-Sablotron||2013-12-20|Has expired: Broken for more than 6 months +net/freeswitch-core||2013-12-20|Has expired: Broken for more than 6 months misc/freeswitch-pizzademo||2013-12-20|Has expired: Depends on expired net/freeswitch-core misc/freeswitch-scripts||2013-12-20|Has expired: Depends on expired net/freeswitch-core www/p5-HTML-Webmake||2013-12-20|Has expired: Depends on expired textproc/p5-XML-Sablotron net/freeswitch||2013-12-20|Has expired: Depends on expired net/freeswitch-core games/blue|games/bluemoon|2013-12-21|Rename to match upstream naming -devel/ruby-cvs||2013-12-22|Has expired: Broken for more than 6 month -devel/hs-reactive||2013-12-22|Has expired: Broken for more than 6 month -databases/rubygem-delayed_job_data_mapper||2013-12-22|Has expired: Broken for more than 6 month -graphics/xmagv||2013-12-22|Has expired: Broken for more than 6 month -lang/slib-gauche||2013-12-22|Has expired: Broken for more than 6 month -graphics/f-spot||2013-12-22|Has expired: Broken for more than 6 month -sysutils/linux-megamgr||2013-12-22|Has expired: Broken for more than 6 month -games/linux-savage-samuraiwars||2013-12-22|Has expired: Broken for more than 6 month -devel/hs-DeepArrow||2013-12-22|Has expired: Broken for more than 6 month -converters/py-svglib||2013-12-22|Has expired: Broken for more than 6 month -converters/p5-Unicode-Lite||2013-12-22|Has expired: Broken for more than 6 month -mail/squirrelmail-calendar_sql_backend-plugin||2013-12-22|Has expired: Broken for more than 6 month -finance/quantlib||2013-12-22|Has expired: Broken for more than 6 month -games/xkobo||2013-12-22|Has expired: Broken for more than 6 month -games/quake3-rq3||2013-12-22|Has expired: Broken for more than 6 month +devel/ruby-cvs||2013-12-22|Has expired: Broken for more than 6 months +devel/hs-reactive||2013-12-22|Has expired: Broken for more than 6 months +databases/rubygem-delayed_job_data_mapper||2013-12-22|Has expired: Broken for more than 6 months +graphics/xmagv||2013-12-22|Has expired: Broken for more than 6 months +lang/slib-gauche||2013-12-22|Has expired: Broken for more than 6 months +graphics/f-spot||2013-12-22|Has expired: Broken for more than 6 months +sysutils/linux-megamgr||2013-12-22|Has expired: Broken for more than 6 months +games/linux-savage-samuraiwars||2013-12-22|Has expired: Broken for more than 6 months +devel/hs-DeepArrow||2013-12-22|Has expired: Broken for more than 6 months +converters/py-svglib||2013-12-22|Has expired: Broken for more than 6 months +converters/p5-Unicode-Lite||2013-12-22|Has expired: Broken for more than 6 months +mail/squirrelmail-calendar_sql_backend-plugin||2013-12-22|Has expired: Broken for more than 6 months +finance/quantlib||2013-12-22|Has expired: Broken for more than 6 months +games/xkobo||2013-12-22|Has expired: Broken for more than 6 months +games/quake3-rq3||2013-12-22|Has expired: Broken for more than 6 months math/fbm||2013-12-22|Has expired: No new release since 2004, new supported upstream -deskutils/libopensync-plugin-python-devel||2013-12-22|Has expired: Broken for more than 6 month +deskutils/libopensync-plugin-python-devel||2013-12-22|Has expired: Broken for more than 6 months deskutils/libopensync-plugin-synce-devel||2013-12-22|Removed, unmaintained, depends on deskutils/libopensync-plugin-python-devel net-im/libmsn||2013-12-22|Has expired: Primary MSN Messenger service terminated 30 APR 2013 lang/clang||2013-12-22|Has expired: Migrate to lang/clang32 or newer @@ -5477,24 +5477,24 @@ lang/ruby-man||2014-02-25|Has expired: D lang/ruby-usersguide||2014-02-25|Has expired: Documents EOLd version of Ruby and unmaintained graphics/wmgrabimage||2014-02-25|Has expired: No more public distfiles www/trac-hierwiki||2014-02-27|Has expired: Runtime is broken, doesn't support Trac>0.11 -www/openvrml||2014-02-27|Has expired: Broken for more than 6 month -science/peekabot||2014-02-27|Has expired: Broken for more than 6 month -misc/xbiso||2014-02-27|Has expired: Broken for more than 6 month -net/hornetq||2014-02-27|Has expired: Broken for more than 6 month -sysutils/slmon||2014-02-27|Has expired: Broken for more than 6 month +www/openvrml||2014-02-27|Has expired: Broken for more than 6 months +science/peekabot||2014-02-27|Has expired: Broken for more than 6 months +misc/xbiso||2014-02-27|Has expired: Broken for more than 6 months +net/hornetq||2014-02-27|Has expired: Broken for more than 6 months +sysutils/slmon||2014-02-27|Has expired: Broken for more than 6 months www/trac-revtree||2014-02-27|Has expired: Broken for more than 6 months -security/crack||2014-02-27|Has expired: Broken for more than 6 month -sysutils/graphicboot||2014-02-27|Has expired: Broken for more then 6 month -graphics/kgraphviewer||2014-02-27|Has expired: Broken for more than 6 month -sysutils/ckl||2014-02-27|Has expired: Broken for more than 6 month -japanese/trac||2014-02-27|Has expired: Broken for more than 6 month -lang/opa||2014-02-27|Has expired: Broken for more than 6 month -sysutils/mmore||2014-02-27|Has expired: Broken for more than 6 month -www/trac-announcer||2014-02-27|Has expired: Broken for more than 6 month +security/crack||2014-02-27|Has expired: Broken for more than 6 months +sysutils/graphicboot||2014-02-27|Has expired: Broken for more than 6 months, upstream disappeared +graphics/kgraphviewer||2014-02-27|Has expired: Broken for more than 6 months +sysutils/ckl||2014-02-27|Has expired: Broken for more than 6 months +japanese/trac||2014-02-27|Has expired: Broken for more than 6 months +lang/opa||2014-02-27|Has expired: Broken for more than 6 months +sysutils/mmore||2014-02-27|Has expired: Broken for more than 6 months +www/trac-announcer||2014-02-27|Has expired: Broken for more than 6 months lang/expect-devel||2014-02-28|No longer relevant. Use lang/expect instead x11-drivers/xf86-video-radeonhd|x11-drivers/xf86-video-ati|2014-02-28|Has expired: Abandoned upstream since 2010 net/asterisk10||2014-02-28|Has expired: asterisk 10 reached EOL on 2013-12-15 -textproc/py-lucene||2014-02-28|Has expired: Broken for more than 6 month +textproc/py-lucene||2014-02-28|Has expired: Broken for more than 6 months lang/gcc44|lang/gcc|2014-02-28|Superseded by GCC 4.6 or later archivers/php52-bz2||2014-03-01|PHP 5.2 is end-of-life archivers/php52-zip||2014-03-01|PHP 5.2 is end-of-life @@ -5837,7 +5837,7 @@ www/trac-remind||2014-03-30|Has expired: www/trac-macropost||2014-03-30|Has expired: No more public distfiles lang/rscheme||2014-03-30|Has expired: No more public distfiles emulators/xmame||2014-03-30|Has expired: No more public distfiles -devel/hyena||2014-04-01|Has expired: Broken for more than 6 month +devel/hyena||2014-04-01|Has expired: Broken for more than 6 months print/pdfmod||2014-04-01|Has expired: Depends on expired devel/hyena, unstaged, uses old standards security/gnutls-devel||2014-04-01|Has expired: Stale, broken and vulnerable sysutils/epylog||2014-04-01|Has expired: distfiles no longer fetchable From owner-svn-ports-all@freebsd.org Sat Aug 15 14:21:17 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 312169BA362; Sat, 15 Aug 2015 14:21:17 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1BEAC1EEA; Sat, 15 Aug 2015 14:21:17 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FELGLv099750; Sat, 15 Aug 2015 14:21:16 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FELGNZ099749; Sat, 15 Aug 2015 14:21:16 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201508151421.t7FELGNZ099749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 15 Aug 2015 14:21:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394319 - head/comms/chirp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 14:21:17 -0000 Author: feld Date: Sat Aug 15 14:21:16 2015 New Revision: 394319 URL: https://svnweb.freebsd.org/changeset/ports/394319 Log: Add missing RUN_DEPENDS Sort USES PR: 202338 Modified: head/comms/chirp/Makefile Modified: head/comms/chirp/Makefile ============================================================================== --- head/comms/chirp/Makefile Sat Aug 15 14:15:07 2015 (r394318) +++ head/comms/chirp/Makefile Sat Aug 15 14:21:16 2015 (r394319) @@ -2,20 +2,21 @@ PORTNAME= chirp PORTVERSION= 0.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms hamradio MASTER_SITES= http://chirp.danplanet.com/download/${PORTVERSION}/ \ LOCAL/db MAINTAINER= hamradio@FreeBSD.org -COMMENT= Chirp is a free, open-source tool for programming your amateur radio +COMMENT= Free, open-source tool for programming your amateur radio LICENSE= GPLv3 -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/serial:${PORTSDIR}/comms/py-serial \ - ${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libxml2>0:${PORTSDIR}/textproc/py-libxml2 \ + ${PYTHON_PKGNAMEPREFIX}serial>0:${PORTSDIR}/comms/py-serial +RUN_DEPENDS= ${BUILD_DEPENDS} -USES= gettext python desktop-file-utils +USES= desktop-file-utils gettext python USE_PYTHON= distutils OPTIONS_DEFINE= DOCS From owner-svn-ports-all@freebsd.org Sat Aug 15 14:22:22 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E19F9BA38A for ; Sat, 15 Aug 2015 14:22:22 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 251081132 for ; Sat, 15 Aug 2015 14:22:22 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id A44CF20FAF for ; Sat, 15 Aug 2015 10:22:20 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute2.internal (MEProxy); Sat, 15 Aug 2015 10:22:20 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=hZvZ22GV9EHxHm+ VZj85KlCnNWM=; b=nEB84E8scMUGbADrd54QaKJubsEKf0ilSUAh4ThQWCF4mrb BkWF9KMODLOpANYvURuPUdOyFYTZqrrci2hd5tgU1mS4ddPp6qHbFEHnd4ufuTe5 YGESl6xX8/49O3QQrKrcBPgHY54DTEJqTgzlxwi8JMecALe0dP7pwAAYhJjw= Received: by web3.nyi.internal (Postfix, from userid 99) id 81538110E54; Sat, 15 Aug 2015 10:22:20 -0400 (EDT) Message-Id: <1439648540.236096.356977553.29B7D072@webmail.messagingengine.com> X-Sasl-Enc: tdERx/SItecYOs4YdDAZ64F5401jiDt85xIXB7adibVM 1439648540 From: Mark Felder To: "Philip M. Gollucci" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-4fee8ba5 In-Reply-To: References: <201508142044.t7EKiKGh056257@repo.freebsd.org> Subject: Re: svn commit: r394257 - branches/2015Q3/security/gnutls Date: Sat, 15 Aug 2015 09:22:20 -0500 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 14:22:22 -0000 On Fri, Aug 14, 2015, at 16:32, Philip M. Gollucci wrote: > Horray! > Don't cheer my mistakes :) From owner-svn-ports-all@freebsd.org Sat Aug 15 14:53:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B30B9BA7C2; Sat, 15 Aug 2015 14:53:58 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A7B21D91; Sat, 15 Aug 2015 14:53:58 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FErwPc012870; Sat, 15 Aug 2015 14:53:58 GMT (envelope-from bsam@FreeBSD.org) Received: (from bsam@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FErulI012864; Sat, 15 Aug 2015 14:53:56 GMT (envelope-from bsam@FreeBSD.org) Message-Id: <201508151453.t7FErulI012864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bsam set sender to bsam@FreeBSD.org using -f From: Boris Samorodov Date: Sat, 15 Aug 2015 14:53:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394320 - in head/editors/codelite: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 14:53:58 -0000 Author: bsam Date: Sat Aug 15 14:53:55 2015 New Revision: 394320 URL: https://svnweb.freebsd.org/changeset/ports/394320 Log: editors/codelite: Up to version 8.1. Added: head/editors/codelite/files/patch-sdk_codelite_cppcheck_CMakeLists.txt (contents, props changed) Deleted: head/editors/codelite/files/patch-clang head/editors/codelite/files/patch-commit-7ebf3e0 head/editors/codelite/files/patch-commit-b618667 Modified: head/editors/codelite/Makefile head/editors/codelite/distinfo head/editors/codelite/files/patch-CMakeLists.txt head/editors/codelite/files/patch-Runtime_codelite_xterm head/editors/codelite/pkg-plist Modified: head/editors/codelite/Makefile ============================================================================== --- head/editors/codelite/Makefile Sat Aug 15 14:21:16 2015 (r394319) +++ head/editors/codelite/Makefile Sat Aug 15 14:53:55 2015 (r394320) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= codelite -DISTVERSION= 6.1.1 -PORTREVISION= 1 +DISTVERSION= 8.1 CATEGORIES= editors devel MAINTAINER= ports@FreeBSD.org @@ -27,12 +26,13 @@ GH_ACCOUNT= eranif USE_WX= 3.0 WX_UNICODE= yes -USES= gettext cmake:outsource dos2unix shebangfix +USES= gettext cmake:outsource dos2unix execinfo shebangfix DOS2UNIX_GLOB= *.cpp *.txt USE_LDCONFIG= ${PREFIX}/lib/codelite -SHEBANG_FILES= Runtime/clg++ Runtime/clgcc +SHEBANG_FILES= Runtime/clg++ Runtime/clgcc Runtime/codelite_xterm +bash_CMD= /bin/sh +INSTALLS_ICONS= yes -CXXFLAGS+= -I${LOCALBASE}/include CMAKE_ARGS+= -DIS_FREEBSD=1 \ -DENABLE_LLDB=0 \ -DPREFIX=${PREFIX} Modified: head/editors/codelite/distinfo ============================================================================== --- head/editors/codelite/distinfo Sat Aug 15 14:21:16 2015 (r394319) +++ head/editors/codelite/distinfo Sat Aug 15 14:53:55 2015 (r394320) @@ -1,2 +1,2 @@ -SHA256 (eranif-codelite-6.1.1_GH0.tar.gz) = 2cea7b43a1a060529ee0d8f25d0e82b4c52eef8c98f12716c334c0cccd973006 -SIZE (eranif-codelite-6.1.1_GH0.tar.gz) = 100814996 +SHA256 (eranif-codelite-8.1_GH0.tar.gz) = 3d43e5a5b504937d6137311417447eabdc8398dccaad4eef1ccba4080e920270 +SIZE (eranif-codelite-8.1_GH0.tar.gz) = 72812631 Modified: head/editors/codelite/files/patch-CMakeLists.txt ============================================================================== --- head/editors/codelite/files/patch-CMakeLists.txt Sat Aug 15 14:21:16 2015 (r394319) +++ head/editors/codelite/files/patch-CMakeLists.txt Sat Aug 15 14:53:55 2015 (r394320) @@ -22,16 +22,3 @@ if ( UNIX ) execute_process(COMMAND pwd OUTPUT_VARIABLE BUILD_DIRECTORY OUTPUT_STRIP_TRAILING_WHITESPACE) -@@ -329,9 +329,9 @@ - set( CLANG_BINARY "${CL_SRC_ROOT}/sdk/clang/lib/libclang.dylib") - - elseif (UNIX) -- set( CLANG_INCLUDE "${CL_SRC_ROOT}/sdk/clang/Linux/${ARCH_NAME}/include" ) -- set( CLANG_LIBRARY "-L${CL_SRC_ROOT}/sdk/clang/Linux/${ARCH_NAME}/lib -lclang" ) -- set( CLANG_BINARY "${CL_SRC_ROOT}/sdk/clang/Linux/${ARCH_NAME}/lib/libclang.so") -+ set( CLANG_INCLUDE "%%LOCALBASE%%/llvm34/include" ) -+ set( CLANG_LIBRARY "-L%%LOCALBASE%%/llvm34/lib/ -lclang" ) -+ set( CLANG_BINARY "%%LOCALBASE%%/llvm34/lib/libclang.so") - endif() - - message( "-- clang link line ${CLANG_LIBRARY} ") Modified: head/editors/codelite/files/patch-Runtime_codelite_xterm ============================================================================== --- head/editors/codelite/files/patch-Runtime_codelite_xterm Sat Aug 15 14:21:16 2015 (r394319) +++ head/editors/codelite/files/patch-Runtime_codelite_xterm Sat Aug 15 14:53:55 2015 (r394320) @@ -1,17 +1,11 @@ --- Runtime/codelite_xterm.orig 2012-06-18 14:05:30.000000000 +0200 +++ Runtime/codelite_xterm 2012-06-18 14:05:45.000000000 +0200 -@@ -1,4 +1,4 @@ --#!/bin/bash -+#!/bin/sh - - ## A wrapper script around the xterm utility - ## which allows codelite to export LD_LIBRARY_PATH into the exterm @@ -17,7 +17,7 @@ ## Run xterm without the bash wrapper - xterm -T "$program_title" -e $2 2> /dev/null + ${terminal} -T "$program_title" -e $2 2> /dev/null else -- xterm -T "$program_title" -e /bin/bash -c 'export LD_LIBRARY_PATH=$0;shift;$@' $LD_LIBRARY_PATH "$@" 2> /dev/null -+ xterm -T "$program_title" -e /bin/sh -c 'export LD_LIBRARY_PATH=$0;shift;$@' $LD_LIBRARY_PATH "$@" 2> /dev/null +- ${terminal} -T "$program_title" -e /bin/bash -c 'export LD_LIBRARY_PATH=$0;shift;$@' $LD_LIBRARY_PATH "$@" 2> /dev/null ++ ${terminal} -T "$program_title" -e /bin/sh -c 'export LD_LIBRARY_PATH=$0;shift;$@' $LD_LIBRARY_PATH "$@" 2> /dev/null fi fi Added: head/editors/codelite/files/patch-sdk_codelite_cppcheck_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/codelite/files/patch-sdk_codelite_cppcheck_CMakeLists.txt Sat Aug 15 14:53:55 2015 (r394320) @@ -0,0 +1,11 @@ +--- sdk/codelite_cppcheck/CMakeLists.txt.orig 2015-08-12 19:34:10.488143000 +0300 ++++ sdk/codelite_cppcheck/CMakeLists.txt 2015-08-12 19:34:37.287109000 +0300 +@@ -8,7 +8,7 @@ + # Include paths + include_directories("${CL_SRC_ROOT}/sdk/codelite_cppcheck/lib" "${CL_SRC_ROOT}/sdk/codelite_cppcheck/cli") + +-set( ADDITIONAL_LIBRARIES "" ) ++set( ADDITIONAL_LIBRARIES "-lexecinfo" ) + + if(WIN32) + set(ADDITIONAL_LIBRARIES "-lshlwapi") Modified: head/editors/codelite/pkg-plist ============================================================================== --- head/editors/codelite/pkg-plist Sat Aug 15 14:21:16 2015 (r394319) +++ head/editors/codelite/pkg-plist Sat Aug 15 14:53:55 2015 (r394320) @@ -22,6 +22,7 @@ lib/codelite/ContinuousBuild.so lib/codelite/Copyright.so lib/codelite/DatabaseExplorer.so lib/codelite/ExternalTools.so +lib/codelite/HelpPlugin.so lib/codelite/MemCheck.so lib/codelite/Outline.so lib/codelite/QMakePlugin.so @@ -30,9 +31,12 @@ lib/codelite/SpellCheck.so lib/codelite/Subversion.so lib/codelite/Tweaks.so lib/codelite/UnitTestsPP.so +lib/codelite/WebTools.so lib/codelite/Wizards.so +lib/codelite/WordCompletion.so lib/codelite/ZoomNavigator.so lib/codelite/abbreviation.so +lib/codelite/codelitephp.so lib/codelite/cppchecker.so lib/codelite/cscope.so lib/codelite/debuggers/DebuggerGDB.so @@ -43,12 +47,9 @@ lib/codelite/libplugin.so lib/codelite/libwxshapeframework.so lib/codelite/libwxsqlite3.so lib/codelite/resources/abbrev.png -lib/codelite/resources/abbreviation.accelerators lib/codelite/resources/compfile.png lib/codelite/resources/connect_no.png lib/codelite/resources/cppcheck.png -lib/codelite/resources/cscope.accelerators -lib/codelite/resources/external_tools.accelerators lib/codelite/resources/qt16_new.png lib/codelite/resources/qt16_preferences.png lib/codelite/resources/qt24_new.png @@ -64,15 +65,18 @@ man/man1/codelite-make.1.gz man/man1/codelite.1.gz man/man1/codelite_fix_files.1.gz %%DATADIR%%/LICENSE +%%DATADIR%%/PHP.zip %%DATADIR%%/astyle.sample %%DATADIR%%/codelite-icons-dark.zip %%DATADIR%%/codelite-icons-fresh-farm.zip %%DATADIR%%/codelite-icons.zip %%DATADIR%%/config/accelerators.conf.default %%DATADIR%%/config/build_settings.xml.default +%%DATADIR%%/config/cfg/avr.cfg %%DATADIR%%/config/cfg/gtk.cfg %%DATADIR%%/config/cfg/posix.cfg %%DATADIR%%/config/cfg/qt.cfg +%%DATADIR%%/config/cfg/sdl.cfg %%DATADIR%%/config/cfg/std.cfg %%DATADIR%%/config/cfg/windows.cfg %%DATADIR%%/config/codelite.xml.default @@ -81,6 +85,9 @@ man/man1/codelite_fix_files.1.gz %%DATADIR%%/dics/en_GB.dic %%DATADIR%%/dics/en_US.aff %%DATADIR%%/dics/en_US.dic +%%DATADIR%%/gdb_printers/boost/__init__.py +%%DATADIR%%/gdb_printers/boost/printers.py +%%DATADIR%%/gdb_printers/helper.py %%DATADIR%%/gdb_printers/libstdcxx/__init__.py %%DATADIR%%/gdb_printers/libstdcxx/v6/__init__.py %%DATADIR%%/gdb_printers/libstdcxx/v6/printers.py @@ -94,128 +101,8 @@ man/man1/codelite_fix_files.1.gz %%DATADIR%%/images/recent_files.png %%DATADIR%%/images/recent_workspaces.png %%DATADIR%%/images/splashscreen.png -%%DATADIR%%/lexers/lexer_assembly_darktheme.xml -%%DATADIR%%/lexers/lexer_assembly_default.xml -%%DATADIR%%/lexers/lexer_assembly_zmrok-like.xml -%%DATADIR%%/lexers/lexer_batch_darktheme.xml -%%DATADIR%%/lexers/lexer_batch_default.xml -%%DATADIR%%/lexers/lexer_batch_zmrok-like.xml -%%DATADIR%%/lexers/lexer_c++_ambients.xml -%%DATADIR%%/lexers/lexer_c++_android_developer.xml -%%DATADIR%%/lexers/lexer_c++_back_to_school__green_chalkboard_.xml -%%DATADIR%%/lexers/lexer_c++_black_background.xml -%%DATADIR%%/lexers/lexer_c++_blackboard.xml -%%DATADIR%%/lexers/lexer_c++_brightnight.xml -%%DATADIR%%/lexers/lexer_c++_c++_theme.xml -%%DATADIR%%/lexers/lexer_c++_cobalt.xml -%%DATADIR%%/lexers/lexer_c++_codding_horror.xml -%%DATADIR%%/lexers/lexer_c++_code_blocks_dark.xml -%%DATADIR%%/lexers/lexer_c++_colorcode.xml -%%DATADIR%%/lexers/lexer_c++_dark_flash_builder.xml -%%DATADIR%%/lexers/lexer_c++_dark_pastel.xml -%%DATADIR%%/lexers/lexer_c++_darktheme.xml -%%DATADIR%%/lexers/lexer_c++_default.xml -%%DATADIR%%/lexers/lexer_c++_desert.xml -%%DATADIR%%/lexers/lexer_c++_dracula.xml -%%DATADIR%%/lexers/lexer_c++_dresden__python__c++_.xml -%%DATADIR%%/lexers/lexer_c++_dusk__xcode_.xml -%%DATADIR%%/lexers/lexer_c++_easy_for_eyes.xml -%%DATADIR%%/lexers/lexer_c++_easyontheeyes.xml -%%DATADIR%%/lexers/lexer_c++_ergo.xml -%%DATADIR%%/lexers/lexer_c++_gedit_original_oblivion.xml -%%DATADIR%%/lexers/lexer_c++_gedit_original_obsidian_variant.xml -%%DATADIR%%/lexers/lexer_c++_github.xml -%%DATADIR%%/lexers/lexer_c++_google_code_browser_like.xml -%%DATADIR%%/lexers/lexer_c++_havenjark_slight_return.xml -%%DATADIR%%/lexers/lexer_c++_humane-ist.xml -%%DATADIR%%/lexers/lexer_c++_intellij_dracula.xml -%%DATADIR%%/lexers/lexer_c++_intellij_idea_dark.xml -%%DATADIR%%/lexers/lexer_c++_jonel.xml -%%DATADIR%%/lexers/lexer_c++_monokai_2.xml -%%DATADIR%%/lexers/lexer_c++_monokai__textmate_.xml -%%DATADIR%%/lexers/lexer_c++_mr-10.xml -%%DATADIR%%/lexers/lexer_c++_netbeans_6++.xml -%%DATADIR%%/lexers/lexer_c++_netbeans_7_0.xml -%%DATADIR%%/lexers/lexer_c++_new_zenburn.xml -%%DATADIR%%/lexers/lexer_c++_nightlion_aptana_theme.xml -%%DATADIR%%/lexers/lexer_c++_obisidian-notepad++_style.xml -%%DATADIR%%/lexers/lexer_c++_oblivion.xml -%%DATADIR%%/lexers/lexer_c++_oblivion_v2.xml -%%DATADIR%%/lexers/lexer_c++_obsidian.xml -%%DATADIR%%/lexers/lexer_c++_orionxa.xml -%%DATADIR%%/lexers/lexer_c++_papaconductor.xml -%%DATADIR%%/lexers/lexer_c++_pydev_oblivion.xml -%%DATADIR%%/lexers/lexer_c++_relax_your_eyes.xml -%%DATADIR%%/lexers/lexer_c++_retta.xml -%%DATADIR%%/lexers/lexer_c++_roboticket.xml -%%DATADIR%%/lexers/lexer_c++_schuss.xml -%%DATADIR%%/lexers/lexer_c++_sharvi.xml -%%DATADIR%%/lexers/lexer_c++_solarized-light-aptana.xml -%%DATADIR%%/lexers/lexer_c++_son_of_obsidian.xml -%%DATADIR%%/lexers/lexer_c++_sublime_text_2.xml -%%DATADIR%%/lexers/lexer_c++_sunburst.xml -%%DATADIR%%/lexers/lexer_c++_textmate_twilight.xml -%%DATADIR%%/lexers/lexer_c++_twilight_iii.xml -%%DATADIR%%/lexers/lexer_c++_vibrant_ink.xml -%%DATADIR%%/lexers/lexer_c++_vim_dark.xml -%%DATADIR%%/lexers/lexer_c++_webstorm_dark_3.xml -%%DATADIR%%/lexers/lexer_c++_wombat.xml -%%DATADIR%%/lexers/lexer_c++_zenburn.xml -%%DATADIR%%/lexers/lexer_c++_zend_5_5_1_default.xml -%%DATADIR%%/lexers/lexer_c++_zmonodevelop.xml -%%DATADIR%%/lexers/lexer_c++_zmrok-like.xml -%%DATADIR%%/lexers/lexer_cmake_darktheme.xml -%%DATADIR%%/lexers/lexer_cmake_default.xml -%%DATADIR%%/lexers/lexer_cmake_zmrok-like.xml -%%DATADIR%%/lexers/lexer_cobra_darktheme.xml -%%DATADIR%%/lexers/lexer_cobra_default.xml -%%DATADIR%%/lexers/lexer_cobra_zmrok-like.xml -%%DATADIR%%/lexers/lexer_cobraalt_default.xml -%%DATADIR%%/lexers/lexer_css_darktheme.xml -%%DATADIR%%/lexers/lexer_css_default.xml -%%DATADIR%%/lexers/lexer_css_zmrok-like.xml -%%DATADIR%%/lexers/lexer_diff_darktheme.xml -%%DATADIR%%/lexers/lexer_diff_default.xml -%%DATADIR%%/lexers/lexer_diff_zmrok-like.xml -%%DATADIR%%/lexers/lexer_fortran_darktheme.xml -%%DATADIR%%/lexers/lexer_fortran_default.xml -%%DATADIR%%/lexers/lexer_fortran_zmrok-like.xml -%%DATADIR%%/lexers/lexer_html_darktheme.xml -%%DATADIR%%/lexers/lexer_html_default.xml -%%DATADIR%%/lexers/lexer_html_zmrok-like.xml -%%DATADIR%%/lexers/lexer_innosetup_darktheme.xml -%%DATADIR%%/lexers/lexer_innosetup_default.xml -%%DATADIR%%/lexers/lexer_innosetup_zmrok-like.xml -%%DATADIR%%/lexers/lexer_java_darktheme.xml -%%DATADIR%%/lexers/lexer_java_default.xml -%%DATADIR%%/lexers/lexer_java_zmrok-like.xml -%%DATADIR%%/lexers/lexer_lua_darktheme.xml -%%DATADIR%%/lexers/lexer_lua_default.xml -%%DATADIR%%/lexers/lexer_lua_zmrok-like.xml -%%DATADIR%%/lexers/lexer_makefile_darktheme.xml -%%DATADIR%%/lexers/lexer_makefile_default.xml -%%DATADIR%%/lexers/lexer_makefile_zmrok-like.xml -%%DATADIR%%/lexers/lexer_perl_darktheme.xml -%%DATADIR%%/lexers/lexer_perl_default.xml -%%DATADIR%%/lexers/lexer_perl_zmrok-like.xml -%%DATADIR%%/lexers/lexer_properties_darktheme.xml -%%DATADIR%%/lexers/lexer_properties_default.xml -%%DATADIR%%/lexers/lexer_properties_zmrok-like.xml -%%DATADIR%%/lexers/lexer_python_darktheme.xml -%%DATADIR%%/lexers/lexer_python_default.xml -%%DATADIR%%/lexers/lexer_python_zmrok-like.xml -%%DATADIR%%/lexers/lexer_script_darktheme.xml -%%DATADIR%%/lexers/lexer_script_default.xml -%%DATADIR%%/lexers/lexer_script_zmrok-like.xml -%%DATADIR%%/lexers/lexer_sql_darktheme.xml -%%DATADIR%%/lexers/lexer_sql_default.xml -%%DATADIR%%/lexers/lexer_sql_zmrok-like.xml -%%DATADIR%%/lexers/lexer_text_darktheme.xml -%%DATADIR%%/lexers/lexer_text_default.xml -%%DATADIR%%/lexers/lexer_text_zmrok-like.xml -%%DATADIR%%/lexers/lexer_xml_darktheme.xml -%%DATADIR%%/lexers/lexer_xml_default.xml -%%DATADIR%%/lexers/lexer_xml_zmrok-like.xml +%%DATADIR%%/javascript.zip +%%DATADIR%%/lexers/lexers.json %%DATADIR%%/rc/menu.xrc %%DATADIR%%/templates/codedesigner/CDTemplate.cdp %%DATADIR%%/templates/codedesigner/HSCHTemplate.cdp @@ -242,6 +129,7 @@ man/man1/codelite_fix_files.1.gz %%DATADIR%%/templates/formbuilder/DialogTemplateWithButtons.fbp %%DATADIR%%/templates/formbuilder/FrameTemplate.fbp %%DATADIR%%/templates/formbuilder/PanelTemplate.fbp +%%DATADIR%%/templates/gizmos/CMakeLists.txt.plugin.wizard %%DATADIR%%/templates/gizmos/app.cpp.wizard %%DATADIR%%/templates/gizmos/app.h.wizard %%DATADIR%%/templates/gizmos/gui-dialog.cpp.wizard @@ -390,3 +278,6 @@ man/man1/codelite_fix_files.1.gz %%NLS%%share/locale/cs/LC_MESSAGES/codelite.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/codelite.mo share/applications/codelite.desktop +share/icons/hicolor/32x32/apps/codelite.png +share/locale/cs/LC_MESSAGES/codelite.mo +share/locale/zh_CN/LC_MESSAGES/codelite.mo From owner-svn-ports-all@freebsd.org Sat Aug 15 15:16:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BC9E9BAA55; Sat, 15 Aug 2015 15:16:39 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 022301820; Sat, 15 Aug 2015 15:16:39 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FFGc2T021229; Sat, 15 Aug 2015 15:16:38 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FFGcuM021228; Sat, 15 Aug 2015 15:16:38 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201508151516.t7FFGcuM021228@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sat, 15 Aug 2015 15:16:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394321 - head/lang/scm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 15:16:39 -0000 Author: danfe Date: Sat Aug 15 15:16:38 2015 New Revision: 394321 URL: https://svnweb.freebsd.org/changeset/ports/394321 Log: - Get rid of MASTER_SITE_SUBDIR (in fact, OLD subdirectory does not carry current distfiles) - Expand Makefile header while here Modified: head/lang/scm/Makefile Modified: head/lang/scm/Makefile ============================================================================== --- head/lang/scm/Makefile Sat Aug 15 14:53:55 2015 (r394320) +++ head/lang/scm/Makefile Sat Aug 15 15:16:38 2015 (r394321) @@ -1,11 +1,10 @@ -# Created by: hsu +# Created by: Jeffrey Hsu # $FreeBSD$ PORTNAME= scm PORTVERSION= 5f2 CATEGORIES= lang scheme -MASTER_SITES= http://groups.csail.mit.edu/mac/ftpdir/scm/%SUBDIR%/ -MASTER_SITE_SUBDIR= . OLD +MASTER_SITES= http://groups.csail.mit.edu/mac/ftpdir/scm/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} slib-3b5.zip slib-psd1-3.tar.gz EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} From owner-svn-ports-all@freebsd.org Sat Aug 15 15:28:50 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 086E19BAC1D; Sat, 15 Aug 2015 15:28:50 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED61A1EB4; Sat, 15 Aug 2015 15:28:49 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FFSnml025421; Sat, 15 Aug 2015 15:28:49 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FFSnMW025420; Sat, 15 Aug 2015 15:28:49 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201508151528.t7FFSnMW025420@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Sat, 15 Aug 2015 15:28:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394322 - head/www/owncloud X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 15:28:50 -0000 Author: kevlo Date: Sat Aug 15 15:28:49 2015 New Revision: 394322 URL: https://svnweb.freebsd.org/changeset/ports/394322 Log: - Use base OpenSSL on FreeBSD 10.2 - Fix permission of occ PR: 202266, 202320 Submitted by: theraven Modified: head/www/owncloud/Makefile Modified: head/www/owncloud/Makefile ============================================================================== --- head/www/owncloud/Makefile Sat Aug 15 15:16:38 2015 (r394321) +++ head/www/owncloud/Makefile Sat Aug 15 15:28:49 2015 (r394322) @@ -2,6 +2,7 @@ PORTNAME= owncloud PORTVERSION= 8.1.1 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://download.owncloud.org/community/ @@ -16,6 +17,7 @@ USE_PHP= bz2 ctype curl dom fileinfo fil mbstring pdo posix session simplexml xml xmlreader xmlwriter \ xsl wddx zip zlib WANT_PHP_WEB= yes +USE_OPENSSL= yes OWNCLOUD_USERNAME?= ${WWWOWN} OWNCLOUD_GROUPNAME?= ${WWWGRP} @@ -44,11 +46,18 @@ PGSQL_USE= PHP=pdo_pgsql,pgsql SQLITE_USE= PHP=pdo_sqlite,sqlite3 SSL_USE= PHP=openssl +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1002000 +WITH_OPENSSL_PORT= yes +.endif + do-install: @${MKDIR} -m 0755 ${STAGEDIR}${WWWDIR} @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} post-install: @${MKDIR} ${STAGEDIR}${WWWDIR}/data + ${CHMOD} +x ${STAGEDIR}${WWWDIR}/occ .include From owner-svn-ports-all@freebsd.org Sat Aug 15 15:45:11 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88FC59BAF23; Sat, 15 Aug 2015 15:45:11 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 799C81A50; Sat, 15 Aug 2015 15:45:11 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FFjBFL033677; Sat, 15 Aug 2015 15:45:11 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FFjBsF033675; Sat, 15 Aug 2015 15:45:11 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201508151545.t7FFjBsF033675@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 15 Aug 2015 15:45:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394323 - in head/net/py-libcloud: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 15:45:11 -0000 Author: novel Date: Sat Aug 15 15:45:10 2015 New Revision: 394323 URL: https://svnweb.freebsd.org/changeset/ports/394323 Log: - Update to 0.18.0. - Drop backports.ssl-match-hostname related patches as it's only used now for Python versions that we do not ship Deleted: head/net/py-libcloud/files/ Modified: head/net/py-libcloud/Makefile head/net/py-libcloud/distinfo Modified: head/net/py-libcloud/Makefile ============================================================================== --- head/net/py-libcloud/Makefile Sat Aug 15 15:28:49 2015 (r394322) +++ head/net/py-libcloud/Makefile Sat Aug 15 15:45:10 2015 (r394323) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libcloud -PORTVERSION= 0.17.0 -PORTREVISION= 2 +PORTVERSION= 0.18.0 CATEGORIES= net python MASTER_SITES= APACHE/${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-libcloud/distinfo ============================================================================== --- head/net/py-libcloud/distinfo Sat Aug 15 15:28:49 2015 (r394322) +++ head/net/py-libcloud/distinfo Sat Aug 15 15:45:10 2015 (r394323) @@ -1,2 +1,2 @@ -SHA256 (apache-libcloud-0.17.0.tar.bz2) = 22a6360fccbd956398e3236dceacc469c397d0d8c0caad33352f224b352bd943 -SIZE (apache-libcloud-0.17.0.tar.bz2) = 663406 +SHA256 (apache-libcloud-0.18.0.tar.bz2) = af87e9ccd5577f7a7cf8b0f642889c40738561eb7ab2f23039c0d3d648b80d2a +SIZE (apache-libcloud-0.18.0.tar.bz2) = 764395 From owner-svn-ports-all@freebsd.org Sat Aug 15 15:48:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE02F9BAF53; Sat, 15 Aug 2015 15:48:06 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B62851B89; Sat, 15 Aug 2015 15:48:06 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FFm6Gd033898; Sat, 15 Aug 2015 15:48:06 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FFm6hN033896; Sat, 15 Aug 2015 15:48:06 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201508151548.t7FFm6hN033896@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 15 Aug 2015 15:48:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394324 - in head/multimedia/libv4l: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 15:48:06 -0000 Author: riggs Date: Sat Aug 15 15:48:05 2015 New Revision: 394324 URL: https://svnweb.freebsd.org/changeset/ports/394324 Log: - Don't always depend on devel/argp-standalone - it is used only by v4l-utils - Bump PORTREVISION - Pet portlint PR: 202280 Submitted by: s3erios@gmail.com Added: head/multimedia/libv4l/files/extra-patch-configure (contents, props changed) Modified: head/multimedia/libv4l/Makefile Modified: head/multimedia/libv4l/Makefile ============================================================================== --- head/multimedia/libv4l/Makefile Sat Aug 15 15:45:10 2015 (r394323) +++ head/multimedia/libv4l/Makefile Sat Aug 15 15:48:05 2015 (r394324) @@ -4,7 +4,7 @@ PORTNAME?= libv4l PORTVERSION= 1.6.3 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= multimedia MASTER_SITES= http://linuxtv.org/downloads/v4l-utils/:master \ LOCAL/kwm:local @@ -24,7 +24,6 @@ WRKSRC= ${WRKDIR}/v4l-utils-${PORTVERSI .if ${LIBV4L_SLAVE} != compat BUILD_DEPENDS+= v4l_compat>=${PORTVERSION}:${PORTSDIR}/multimedia/v4l_compat -LIB_DEPENDS+= libargp.so:${PORTSDIR}/devel/argp-standalone GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -38,12 +37,14 @@ INSTALL_TARGET= install-strip . if ${LIBV4L_SLAVE} == utils BUILD_DEPENDS+= libv4l>=${PORTVERSION}:${PORTSDIR}/multimedia/libv4l -LIB_DEPENDS+= libv4l2.so:${PORTSDIR}/multimedia/libv4l -# Disabling building libv4l in the utils slave is too much hackery +LIB_DEPENDS+= libargp.so:${PORTSDIR}/devel/argp-standalone \ + libv4l2.so:${PORTSDIR}/multimedia/libv4l +# Disabling building libv4l in the utils slave is too much hackery # Lets wait for subpackages -CONFIGURE_ARGS+=--enable-v4l-utils +CONFIGURE_ARGS+=--enable-v4l-utils . else CONFIGURE_ARGS+=--disable-v4l-utils --enable-libv4l +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-configure . endif .endif Added: head/multimedia/libv4l/files/extra-patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/libv4l/files/extra-patch-configure Sat Aug 15 15:48:05 2015 (r394324) @@ -0,0 +1,78 @@ +--- configure.orig 2015-08-12 21:40:16 UTC ++++ configure +@@ -18563,75 +18563,6 @@ fi + + LIBS=$dl_saved_libs + +-ac_fn_c_check_header_mongrel "$LINENO" "argp.h" "ac_cv_header_argp_h" "$ac_includes_default" +-if test "x$ac_cv_header_argp_h" = xyes; then : +- +-else +- as_fn_error $? "Cannot continue: argp.h not found" "$LINENO" 5 +-fi +- +- +-argp_saved_libs=$LIBS +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing argp_parse" >&5 +-$as_echo_n "checking for library containing argp_parse... " >&6; } +-if ${ac_cv_search_argp_parse+:} false; then : +- $as_echo_n "(cached) " >&6 +-else +- ac_func_search_save_LIBS=$LIBS +-cat confdefs.h - <<_ACEOF >conftest.$ac_ext +-/* end confdefs.h. */ +- +-/* Override any GCC internal prototype to avoid an error. +- Use char because int might match the return type of a GCC +- builtin and then its argument prototype would still apply. */ +-#ifdef __cplusplus +-extern "C" +-#endif +-char argp_parse (); +-int +-main () +-{ +-return argp_parse (); +- ; +- return 0; +-} +-_ACEOF +-for ac_lib in '' argp; do +- if test -z "$ac_lib"; then +- ac_res="none required" +- else +- ac_res=-l$ac_lib +- LIBS="-l$ac_lib $ac_func_search_save_LIBS" +- fi +- if ac_fn_c_try_link "$LINENO"; then : +- ac_cv_search_argp_parse=$ac_res +-fi +-rm -f core conftest.err conftest.$ac_objext \ +- conftest$ac_exeext +- if ${ac_cv_search_argp_parse+:} false; then : +- break +-fi +-done +-if ${ac_cv_search_argp_parse+:} false; then : +- +-else +- ac_cv_search_argp_parse=no +-fi +-rm conftest.$ac_ext +-LIBS=$ac_func_search_save_LIBS +-fi +-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_argp_parse" >&5 +-$as_echo "$ac_cv_search_argp_parse" >&6; } +-ac_res=$ac_cv_search_argp_parse +-if test "$ac_res" != no; then : +- test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" +- test "$ac_cv_search_argp_parse" = "none required" || ARGP_LIBS=$ac_cv_search_argp_parse +-else +- as_fn_error $? "unable to find the argp_parse() function" "$LINENO" 5 +-fi +- +- +-LIBS=$argp_saved_libs + + ac_fn_c_check_header_mongrel "$LINENO" "linux/i2c-dev.h" "ac_cv_header_linux_i2c_dev_h" "$ac_includes_default" + if test "x$ac_cv_header_linux_i2c_dev_h" = xyes; then : From owner-svn-ports-all@freebsd.org Sat Aug 15 15:50:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26B619BAFF1; Sat, 15 Aug 2015 15:50:53 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17A471E35; Sat, 15 Aug 2015 15:50:53 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FFoqLq034657; Sat, 15 Aug 2015 15:50:52 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FFoqmj034501; Sat, 15 Aug 2015 15:50:52 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508151550.t7FFoqmj034501@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 15 Aug 2015 15:50:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394325 - head/net/GeoIP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 15:50:53 -0000 Author: adamw Date: Sat Aug 15 15:50:51 2015 New Revision: 394325 URL: https://svnweb.freebsd.org/changeset/ports/394325 Log: Update to 1.6.6. Modified: head/net/GeoIP/Makefile head/net/GeoIP/distinfo Modified: head/net/GeoIP/Makefile ============================================================================== --- head/net/GeoIP/Makefile Sat Aug 15 15:48:05 2015 (r394324) +++ head/net/GeoIP/Makefile Sat Aug 15 15:50:51 2015 (r394325) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= GeoIP -PORTVERSION= 1.6.5 +PORTVERSION= 1.6.6 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= net geography MAINTAINER= adamw@FreeBSD.org Modified: head/net/GeoIP/distinfo ============================================================================== --- head/net/GeoIP/distinfo Sat Aug 15 15:48:05 2015 (r394324) +++ head/net/GeoIP/distinfo Sat Aug 15 15:50:51 2015 (r394325) @@ -1,2 +1,2 @@ -SHA256 (maxmind-geoip-api-c-v1.6.5_GH0.tar.gz) = 4a151b35e9d9db976b82645c758662a6cb778c669b2c65635d5834e4f885942e -SIZE (maxmind-geoip-api-c-v1.6.5_GH0.tar.gz) = 156441 +SHA256 (maxmind-geoip-api-c-v1.6.6_GH0.tar.gz) = db8ed5d07292c75cb3018738e6411037f15cc2a517f38ee04c1232cbe3d30b46 +SIZE (maxmind-geoip-api-c-v1.6.6_GH0.tar.gz) = 156796 From owner-svn-ports-all@freebsd.org Sat Aug 15 15:59:42 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAE9D9BA196; Sat, 15 Aug 2015 15:59:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BBA2D119A; Sat, 15 Aug 2015 15:59:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FFxgRu038259; Sat, 15 Aug 2015 15:59:42 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FFxfwH038252; Sat, 15 Aug 2015 15:59:41 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201508151559.t7FFxfwH038252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sat, 15 Aug 2015 15:59:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394326 - in head: . lang lang/quack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 15:59:42 -0000 Author: danfe Date: Sat Aug 15 15:59:40 2015 New Revision: 394326 URL: https://svnweb.freebsd.org/changeset/ports/394326 Log: - Resurrect lang/quack port, unbreak, and update to the latest version (0.47) - Remove BROKEN on ia64 statement, it was never a first-class architecture and officially killed in -CURRENT already - Modernize and clean up the port while here, define LICENSE (GPLv2) Added: head/lang/quack/ - copied from r227570, head/lang/quack/ Modified: head/MOVED head/lang/Makefile head/lang/quack/Makefile (contents, props changed) head/lang/quack/distinfo (contents, props changed) Modified: head/MOVED ============================================================================== --- head/MOVED Sat Aug 15 15:50:51 2015 (r394325) +++ head/MOVED Sat Aug 15 15:59:40 2015 (r394326) @@ -454,7 +454,6 @@ net-mgmt/NeTraMet||2009-02-03|Has expire net-im/sulci||2009-02-03|Has expired: has been broken for more than 6 months multimedia/mjpegtools-yuvfilters||2009-02-03|Has expired: has been broken for more than 6 months multimedia/helixplayer||2009-02-03|Has expired: has been broken for more than 6 months -lang/quack||2009-02-03|Has expired: has been broken for more than 6 months misc/pybliographer||2009-02-03|Has expired: has been broken for more than 6 months net/versuch||2009-02-03|Has expired: has been broken for more than 6 months net/py-mantissa||2009-02-03|Has expired: has been broken for more than 6 months Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Sat Aug 15 15:50:51 2015 (r394325) +++ head/lang/Makefile Sat Aug 15 15:59:40 2015 (r394326) @@ -266,6 +266,7 @@ SUBDIR += qore SUBDIR += qscheme SUBDIR += qt5-qml + SUBDIR += quack SUBDIR += racket SUBDIR += racket-minimal SUBDIR += ratfor Modified: head/lang/quack/Makefile ============================================================================== --- head/lang/quack/Makefile Tue Feb 3 22:26:25 2009 (r227570) +++ head/lang/quack/Makefile Sat Aug 15 15:59:40 2015 (r394326) @@ -1,13 +1,8 @@ -# New ports collection makefile for: Quack -# Date created: 24 October 2003 -# Whom: Kimura Fuyuki -# +# Created by: Kimura Fuyuki # $FreeBSD$ -# PORTNAME= quack -PORTVERSION= 0.28 -PORTREVISION= 2 +PORTVERSION= 0.47 CATEGORIES= lang scheme elisp MASTER_SITES= http://www.neilvandyke.org/quack/ DISTNAME= ${PORTNAME} @@ -17,14 +12,11 @@ DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Enhanced support for editing and running Scheme code -RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget +LICENSE= GPLv2 -BROKEN= Size mismatch -DEPRECATED= has been broken for more than 6 months -EXPIRATION_DATE=2009-01-19 +RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget USE_EMACS= yes -EMACS_PORT_NAME?= emacs21 NO_WRKSUBDIR= yes EXTRACT_CMD= ${CP} @@ -37,20 +29,11 @@ PLIST_DIRS= ${EMACS_VERSION_SITE_LISPDIR ELISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} -.include - -.if ${ARCH} == "ia64" -BROKEN= "does not build on ia64" -.endif - do-build: - cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile quack.el + cd ${WRKSRC} && ${EMACS_CMD} -batch -q -f batch-byte-compile quack.el do-install: - ${MKDIR} ${ELISPDIR} - ${INSTALL_DATA} ${WRKSRC}/quack.* ${ELISPDIR} - -post-install: - @${CAT} ${PKGMESSAGE} + ${MKDIR} ${STAGEDIR}${ELISPDIR} + ${INSTALL_DATA} ${WRKSRC}/quack.* ${STAGEDIR}${ELISPDIR} -.include +.include Modified: head/lang/quack/distinfo ============================================================================== --- head/lang/quack/distinfo Tue Feb 3 22:26:25 2009 (r227570) +++ head/lang/quack/distinfo Sat Aug 15 15:59:40 2015 (r394326) @@ -1,3 +1,2 @@ -MD5 (quack-0.28/quack.el) = 48bc0157711bdf9cd5b3f9b75a3ddd13 -SHA256 (quack-0.28/quack.el) = f6b392fb69660e6d0a141bb1944819cecb4575bb2bc61b800114a30a6732f591 -SIZE (quack-0.28/quack.el) = 185898 +SHA256 (quack-0.47/quack.el) = 454a7229dd0a18a166f9785deb9c6243a38aa933608871796b71c5d929d5abe0 +SIZE (quack-0.47/quack.el) = 199403 From owner-svn-ports-all@freebsd.org Sat Aug 15 16:02:48 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF5069BA2E8; Sat, 15 Aug 2015 16:02:48 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B00AF1657; Sat, 15 Aug 2015 16:02:48 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FG2mBi042192; Sat, 15 Aug 2015 16:02:48 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FG2mb1042190; Sat, 15 Aug 2015 16:02:48 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508151602.t7FG2mb1042190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 15 Aug 2015 16:02:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394327 - in head/games/bsdgames: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 16:02:48 -0000 Author: adamw Date: Sat Aug 15 16:02:47 2015 New Revision: 394327 URL: https://svnweb.freebsd.org/changeset/ports/394327 Log: Update to sources from DragonFlyBSD 4.2.4. Deleted: head/games/bsdgames/files/patch-68420e59f12cf9c9fc14db0c493426150dd9ed95 head/games/bsdgames/files/patch-890b6f4a25a31acb7bb5b8c16193dc5d404b0805 head/games/bsdgames/files/patch-cribbage_instr.c head/games/bsdgames/files/patch-sail_pl_1.c head/games/bsdgames/files/patch-trek_computer.c Modified: head/games/bsdgames/Makefile head/games/bsdgames/distinfo Modified: head/games/bsdgames/Makefile ============================================================================== --- head/games/bsdgames/Makefile Sat Aug 15 15:59:40 2015 (r394326) +++ head/games/bsdgames/Makefile Sat Aug 15 16:02:47 2015 (r394327) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bsdgames -PORTVERSION= 4.0.6 +PORTVERSION= 4.2.4 PORTEPOCH= 1 CATEGORIES= games MASTER_SITES= LOCAL/adamw Modified: head/games/bsdgames/distinfo ============================================================================== --- head/games/bsdgames/distinfo Sat Aug 15 15:59:40 2015 (r394326) +++ head/games/bsdgames/distinfo Sat Aug 15 16:02:47 2015 (r394327) @@ -1,2 +1,2 @@ -SHA256 (bsdgames-4.0.6.tar.xz) = 9115e2dab94e67f8ba1179f08dc95377c19e97be58d61d497c8b40f83c37466b -SIZE (bsdgames-4.0.6.tar.xz) = 1753600 +SHA256 (bsdgames-4.2.4.tar.xz) = e482b385976e22423adf6242db1e8822bf5278967b8c29345b48b37470f2ed23 +SIZE (bsdgames-4.2.4.tar.xz) = 1750904 From owner-svn-ports-all@freebsd.org Sat Aug 15 16:07:28 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D385E9BA340; Sat, 15 Aug 2015 16:07:28 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC4A7178B; Sat, 15 Aug 2015 16:07:28 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FG7S9R042494; Sat, 15 Aug 2015 16:07:28 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FG7SJa042492; Sat, 15 Aug 2015 16:07:28 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508151607.t7FG7SJa042492@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 15 Aug 2015 16:07:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394328 - in head/mail/squirrelmail: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 16:07:28 -0000 Author: adamw Date: Sat Aug 15 16:07:27 2015 New Revision: 394328 URL: https://svnweb.freebsd.org/changeset/ports/394328 Log: Remove the suggestion to add session.auto_start=1 to php.ini if logging in fails. On modern PHP, it *makes* logging in fail. PORTREVISION bump to be on the safe side. PR: 202226 Submitted by: freebsd@alexus.org Modified: head/mail/squirrelmail/Makefile head/mail/squirrelmail/files/pkg-message.in Modified: head/mail/squirrelmail/Makefile ============================================================================== --- head/mail/squirrelmail/Makefile Sat Aug 15 16:02:47 2015 (r394327) +++ head/mail/squirrelmail/Makefile Sat Aug 15 16:07:27 2015 (r394328) @@ -3,6 +3,7 @@ PORTNAME= squirrelmail PORTVERSION= 20150324 +PORTREVISION= 1 CATEGORIES= mail www MASTER_SITES= LOCAL/adamw/squirrelmail DISTNAME= ${PORTNAME}-${PORTVERSION}_0200-SVN.stable Modified: head/mail/squirrelmail/files/pkg-message.in ============================================================================== --- head/mail/squirrelmail/files/pkg-message.in Sat Aug 15 16:02:47 2015 (r394327) +++ head/mail/squirrelmail/files/pkg-message.in Sat Aug 15 16:07:27 2015 (r394328) @@ -6,13 +6,10 @@ To activate SquirrelMail, you must compl 2) Make sure the following is set in your php.ini: file_uploads = On -3) If you have trouble logging in, add the following to your php.ini: - session.auto_start = 1 - -4) Configure your installation. +3) Configure your installation. SQUIRRELMAIL WILL NOT WORK UNTIL THIS HAS BEEN DONE. cd %%SQUIRRELDIR%% && ./configure -5) It is best practice to change the data/user preference directory +4) It is best practice to change the data/user preference directory (under General Options) to somewhere outside of %%SQUIRRELDIR%%. From owner-svn-ports-all@freebsd.org Sat Aug 15 16:25:12 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4EB029BA61B; Sat, 15 Aug 2015 16:25:12 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25627D1; Sat, 15 Aug 2015 16:25:12 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FGPC3G050679; Sat, 15 Aug 2015 16:25:12 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FGPBjN050676; Sat, 15 Aug 2015 16:25:11 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508151625.t7FGPBjN050676@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 15 Aug 2015 16:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394329 - in head/mail/spamassassin: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 16:25:12 -0000 Author: adamw Date: Sat Aug 15 16:25:10 2015 New Revision: 394329 URL: https://svnweb.freebsd.org/changeset/ports/394329 Log: Add a patch for SpamAssassin bug #7231 that resolves an incompatibility with the output of the new Net::DNS version. See https://svn.apache.org/viewvc/spamassassin/branches/3.4/lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm?r1=1694126&r2=1694125&pathrev=1694126&view=patch for more information. PR: 202281 Submitted by: Mark Martinec, author of the upstream patch Added: head/mail/spamassassin/files/patch-bug7231 (contents, props changed) Modified: head/mail/spamassassin/Makefile Modified: head/mail/spamassassin/Makefile ============================================================================== --- head/mail/spamassassin/Makefile Sat Aug 15 16:07:27 2015 (r394328) +++ head/mail/spamassassin/Makefile Sat Aug 15 16:25:10 2015 (r394329) @@ -3,7 +3,7 @@ PORTNAME= spamassassin PORTVERSION= 3.4.1 -PORTREVISION?= 2 # also bump japanese/spamassassin +PORTREVISION?= 3 # also bump japanese/spamassassin CATEGORIES?= mail perl5 MASTER_SITES= APACHE/spamassassin/source CPAN/Mail DISTNAME= Mail-SpamAssassin-${PORTVERSION} Added: head/mail/spamassassin/files/patch-bug7231 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/spamassassin/files/patch-bug7231 Sat Aug 15 16:25:10 2015 (r394329) @@ -0,0 +1,27 @@ +--- lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm 2015/08/04 23:14:23 1694125 ++++ lib/Mail/SpamAssassin/Plugin/URIDNSBL.pm 2015/08/04 23:16:38 1694126 +@@ -942,9 +942,8 @@ + next unless (defined($str) && defined($dom)); + dbg("uridnsbl: got($j) NS for $dom: $str"); + +- if ($str =~ /IN\s+NS\s+(\S+)/) { +- my $nsmatch = lc $1; +- $nsmatch =~ s/\.$//; ++ if ($rr->type eq 'NS') { ++ my $nsmatch = lc $rr->nsdname; # available since at least Net::DNS 0.14 + my $nsrhblstr = $nsmatch; + my $fullnsrhblstr = $nsmatch; + +@@ -1025,9 +1024,9 @@ + } + dbg("uridnsbl: complete_a_lookup got(%d) A for %s: %s", $j,$hname,$str); + +- local $1; +- if ($str =~ /IN\s+A\s+(\S+)/) { +- $self->lookup_dnsbl_for_ip($pms, $ent->{obj}, $1); ++ if ($rr->type eq 'A') { ++ my $ip_address = $rr->rdatastr; ++ $self->lookup_dnsbl_for_ip($pms, $ent->{obj}, $ip_address); + } + } + } From owner-svn-ports-all@freebsd.org Sat Aug 15 16:39:06 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C9F79BA762; Sat, 15 Aug 2015 16:39:06 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 623287B1; Sat, 15 Aug 2015 16:39:06 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FGd6pm055175; Sat, 15 Aug 2015 16:39:06 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FGd4HH055167; Sat, 15 Aug 2015 16:39:04 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508151639.t7FGd4HH055167@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 15 Aug 2015 16:39:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394330 - in head/www/awstats: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 16:39:06 -0000 Author: adamw Date: Sat Aug 15 16:39:03 2015 New Revision: 394330 URL: https://svnweb.freebsd.org/changeset/ports/394330 Log: Update to 7.4. Also included: - Fix warnings in perl 5.22 - Honour ${WWWDIR} in plist - Sort USES - Fix some trailing spaces in the Makefile PR: 200953 Submitted by: takefu@airport.fm Approved by: maintainer timeout Added: head/www/awstats/files/patch-wwwroot_cgi-bin_awstats.pl (contents, props changed) Modified: head/www/awstats/Makefile head/www/awstats/distinfo head/www/awstats/files/patch-awstats.model.conf head/www/awstats/files/patch-tools-awstats_buildstaticpages.pl head/www/awstats/files/patch-tools-awstats_configure.pl head/www/awstats/files/patch-tools-awstats_updateall.pl head/www/awstats/pkg-plist Modified: head/www/awstats/Makefile ============================================================================== --- head/www/awstats/Makefile Sat Aug 15 16:25:10 2015 (r394329) +++ head/www/awstats/Makefile Sat Aug 15 16:39:03 2015 (r394330) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= awstats -PORTVERSION= 7.3 +PORTVERSION= 7.4 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/AWStats/${PORTVERSION} @@ -14,7 +14,7 @@ LICENSE= GPLv2 RUN_DEPENDS= p5-Net-XWhois>=0:${PORTSDIR}/net/p5-Net-XWhois -USES= dos2unix cpe perl5 shebangfix +USES= cpe dos2unix perl5 shebangfix CPE_VENDOR= laurent_destailleur SHEBANG_FILES= tools/*.pl wwwroot/cgi-bin/*.pl wwwroot/cgi-bin/plugins/*.pm @@ -55,7 +55,7 @@ do-install: logresolvemerge.pl maillogconvert.pl urlaliasbuilder.pl \ ${STAGEDIR}${WWWDIR}/tools) (cd ${WRKSRC}/tools && ${COPYTREE_SHARE} xslt ${STAGEDIR}${WWWDIR}/tools) - @${MKDIR} ${STAGEDIR}${WWWDIR}/cgi-bin + @${MKDIR} ${STAGEDIR}${WWWDIR}/cgi-bin (cd ${WRKSRC}/wwwroot/cgi-bin && ${INSTALL_SCRIPT} awredir.pl awstats.pl \ awstats.model.conf ${STAGEDIR}${WWWDIR}/cgi-bin) @${MKDIR} ${STAGEDIR}${WWWDIR}/cgi-bin/lang/tooltips_f @@ -85,7 +85,7 @@ do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} images ${STAGEDIR}${DOCSDIR}) ${INSTALL_DATA} ${WRKSRC}/docs/*.* ${STAGEDIR}${DOCSDIR} - + @${ECHO_CMD} "" @${ECHO_CMD} "* Use ${WWWDIR}/tools/awstats_configure.pl to setup your hosts." @${ECHO_CMD} "" Modified: head/www/awstats/distinfo ============================================================================== --- head/www/awstats/distinfo Sat Aug 15 16:25:10 2015 (r394329) +++ head/www/awstats/distinfo Sat Aug 15 16:39:03 2015 (r394330) @@ -1,2 +1,2 @@ -SHA256 (awstats-7.3.tar.gz) = 642da01c4482c99f68076c02b9a6e0c6de803303597be4ee4d0c8fce69bd1ad4 -SIZE (awstats-7.3.tar.gz) = 2897463 +SHA256 (awstats-7.4.tar.gz) = 43abfe7341c2be64f55bb89557347475640ca7ba4473ff30412a3d44358dab55 +SIZE (awstats-7.4.tar.gz) = 2936102 Modified: head/www/awstats/files/patch-awstats.model.conf ============================================================================== --- head/www/awstats/files/patch-awstats.model.conf Sat Aug 15 16:25:10 2015 (r394329) +++ head/www/awstats/files/patch-awstats.model.conf Sat Aug 15 16:39:03 2015 (r394330) @@ -1,5 +1,5 @@ ---- wwwroot/cgi-bin/awstats.model.conf.orig 2008-07-23 11:57:04.000000000 -0400 -+++ wwwroot/cgi-bin/awstats.model.conf 2008-07-23 11:57:19.000000000 -0400 +--- wwwroot/cgi-bin/awstats.model.conf.orig 2015-05-04 07:23:28 UTC ++++ wwwroot/cgi-bin/awstats.model.conf @@ -219,7 +219,7 @@ # Example: "../icon" # Default: "/icon" (means you must copy icon directories in "/mywwwroot/icon") Modified: head/www/awstats/files/patch-tools-awstats_buildstaticpages.pl ============================================================================== --- head/www/awstats/files/patch-tools-awstats_buildstaticpages.pl Sat Aug 15 16:25:10 2015 (r394329) +++ head/www/awstats/files/patch-tools-awstats_buildstaticpages.pl Sat Aug 15 16:39:03 2015 (r394330) @@ -1,6 +1,6 @@ ---- tools/awstats_buildstaticpages.pl.orig Sun Feb 20 11:11:06 2005 -+++ tools/awstats_buildstaticpages.pl Thu Sep 22 20:33:32 2005 -@@ -293,8 +293,8 @@ +--- tools/awstats_buildstaticpages.pl.orig 2015-07-21 07:55:55 UTC ++++ tools/awstats_buildstaticpages.pl +@@ -299,8 +299,8 @@ # Check if AWSTATS prog is found my $AwstatsFound=0; if (-s "$Awstats") { $AwstatsFound=1; } @@ -10,4 +10,4 @@ + $Awstats="%%PREFIX%%/www/awstats/cgi-bin/awstats.pl"; $AwstatsFound=1; } - if (! $AwstatsFound) { + elsif (-s "/usr/lib/cgi-bin/awstats.pl") { Modified: head/www/awstats/files/patch-tools-awstats_configure.pl ============================================================================== --- head/www/awstats/files/patch-tools-awstats_configure.pl Sat Aug 15 16:25:10 2015 (r394329) +++ head/www/awstats/files/patch-tools-awstats_configure.pl Sat Aug 15 16:39:03 2015 (r394330) @@ -1,6 +1,6 @@ ---- tools/awstats_configure.pl.old 2010-12-25 19:25:49.000000000 -0600 -+++ tools/awstats_configure.pl 2010-12-25 19:33:43.000000000 -0600 -@@ -28,12 +28,13 @@ +--- tools/awstats_configure.pl.orig 2015-07-21 07:55:55 UTC ++++ tools/awstats_configure.pl +@@ -27,12 +27,13 @@ $AWSTATS_MODEL_CONFIG $AWSTATS_DIRDATA_PATH /; @@ -20,25 +20,25 @@ $AWSTATS_DIRDATA_PATH='/var/lib/awstats'; # Used only when configure ran on linux -@@ -64,6 +65,7 @@ +@@ -63,6 +64,7 @@ '/etc/httpd/httpd.conf', '/usr/local/apache/conf/httpd.conf', '/usr/local/apache2/conf/httpd.conf', -+'/usr/local/etc/apache(13/22)/httpd.conf', ++'%%PREFIX%%/etc/apache(13/22)/httpd.conf', ); use vars qw/ -@@ -309,7 +311,8 @@ +@@ -308,7 +310,8 @@ $AWSTATS_PATH=`pwd`; $AWSTATS_PATH =~ s/[\r\n]//; $AWSTATS_PATH=~s/tools[\\\/]?$//; $AWSTATS_PATH=~s/[\\\/]$//; - if ($AWSTATS_PATH ne '/usr/local/awstats') { +#freebsd default %%PREFIX%%/www/awstats -+ if ($AWSTATS_PATH ne '/usr/local/www/awstats') { ++ if ($AWSTATS_PATH ne '%%PREFIX%%/www/awstats') { print "Warning: AWStats standard directory on Linux OS is '/usr/local/awstats'.\n"; print "If you want to use standard directory, you should first move all content\n"; print "of AWStats distribution from current directory:\n"; -@@ -324,10 +327,10 @@ +@@ -323,10 +326,10 @@ print "configure.pl aborted.\n"; exit 1; } @@ -53,15 +53,15 @@ } } elsif ($OS eq 'macosx') { -@@ -420,6 +423,7 @@ +@@ -419,6 +422,7 @@ print "\n".($bidon?"Now, enter":"Enter")." full config file path of your Web server.\n"; print "Example: /etc/httpd/httpd.conf\n"; -+ print "Example: %%PREFIX%%/etc/apache(13/22)/httpd.conf"; ++ print "Example: %%PREFIX%%/etc/apache(22/24)/httpd.conf"; print "Example: /usr/local/apache2/conf/httpd.conf\n"; print "Example: c:\\Program files\\apache group\\apache\\conf\\httpd.conf\n"; $bidon=''; -@@ -527,7 +531,7 @@ +@@ -526,7 +530,7 @@ # # This is to permit URL access to scripts/files in AWStats directory. # @@ -70,7 +70,7 @@ Options None AllowOverride None Order allow,deny -@@ -546,12 +550,12 @@ +@@ -545,12 +549,12 @@ # ----------------------------- my $modelfile=''; if ($OS eq 'linux') { Modified: head/www/awstats/files/patch-tools-awstats_updateall.pl ============================================================================== --- head/www/awstats/files/patch-tools-awstats_updateall.pl Sat Aug 15 16:25:10 2015 (r394329) +++ head/www/awstats/files/patch-tools-awstats_updateall.pl Sat Aug 15 16:39:03 2015 (r394330) @@ -1,6 +1,6 @@ ---- tools/awstats_updateall.pl.orig Mon Jun 7 08:27:26 2004 -+++ tools/awstats_updateall.pl Thu Sep 22 01:30:15 2005 -@@ -121,8 +121,8 @@ +--- tools/awstats_updateall.pl.orig 2015-07-21 07:55:55 UTC ++++ tools/awstats_updateall.pl +@@ -129,8 +129,8 @@ # Check if AWSTATS prog is found my $AwstatsFound=0; if (-s "$Awstats") { $AwstatsFound=1; } Added: head/www/awstats/files/patch-wwwroot_cgi-bin_awstats.pl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/awstats/files/patch-wwwroot_cgi-bin_awstats.pl Sat Aug 15 16:39:03 2015 (r394330) @@ -0,0 +1,21 @@ +--- wwwroot/cgi-bin/awstats.pl.orig 2015-06-18 14:35:12 UTC ++++ wwwroot/cgi-bin/awstats.pl +@@ -8983,12 +8983,12 @@ sub DefinePerlParsingFormat { + $LogFormatString =~ s/%>s/%code/g; + $LogFormatString =~ s/%b(\s)/%bytesd$1/g; + $LogFormatString =~ s/%b$/%bytesd/g; +- $LogFormatString =~ s/\"%{Referer}i\"/%refererquot/g; +- $LogFormatString =~ s/\"%{User-Agent}i\"/%uaquot/g; +- $LogFormatString =~ s/%{mod_gzip_input_size}n/%gzipin/g; +- $LogFormatString =~ s/%{mod_gzip_output_size}n/%gzipout/g; +- $LogFormatString =~ s/%{mod_gzip_compression_ratio}n/%gzipratio/g; +- $LogFormatString =~ s/\(%{ratio}n\)/%deflateratio/g; ++ $LogFormatString =~ s/\"%\{Referer\}i\"/%refererquot/g; ++ $LogFormatString =~ s/\"%\{User-Agent\}i\"/%uaquot/g; ++ $LogFormatString =~ s/%\{mod_gzip_input_size\}n/%gzipin/g; ++ $LogFormatString =~ s/%\{mod_gzip_output_size\}n/%gzipout/g; ++ $LogFormatString =~ s/%\{mod_gzip_compression_ratio\}n/%gzipratio/g; ++ $LogFormatString =~ s/\(%\{ratio\}n\)/%deflateratio/g; + + # Replacement for a IIS and ISA format string + $LogFormatString =~ s/cs-uri-query/%query/g; # Must be before cs-uri Modified: head/www/awstats/pkg-plist ============================================================================== --- head/www/awstats/pkg-plist Sat Aug 15 16:25:10 2015 (r394329) +++ head/www/awstats/pkg-plist Sat Aug 15 16:39:03 2015 (r394330) @@ -23,6 +23,7 @@ %%PORTDOCS%%%%DOCSDIR%%/images/awstats.ico %%PORTDOCS%%%%DOCSDIR%%/images/awstats.svg %%PORTDOCS%%%%DOCSDIR%%/images/awstats_250x250.png +%%PORTDOCS%%%%DOCSDIR%%/images/awstats_ban_460x270.jpg %%PORTDOCS%%%%DOCSDIR%%/images/awstats_ban_460x270.png %%PORTDOCS%%%%DOCSDIR%%/images/awstats_ban_800x160.svg %%PORTDOCS%%%%DOCSDIR%%/images/awstats_ban_960x540.jpg @@ -60,735 +61,719 @@ %%PORTDOCS%%%%DOCSDIR%%/index.html %%PORTDOCS%%%%DOCSDIR%%/pad_awstats.xml %%PORTDOCS%%%%DOCSDIR%%/styles.css -www/awstats/cgi-bin/awredir.pl -www/awstats/cgi-bin/awstats.model.conf -www/awstats/cgi-bin/awstats.pl -www/awstats/cgi-bin/lang/awstats-al.txt -www/awstats/cgi-bin/lang/awstats-ar.txt -www/awstats/cgi-bin/lang/awstats-ba.txt -www/awstats/cgi-bin/lang/awstats-be.txt -www/awstats/cgi-bin/lang/awstats-bg.txt -www/awstats/cgi-bin/lang/awstats-br.txt -www/awstats/cgi-bin/lang/awstats-bzg.txt -www/awstats/cgi-bin/lang/awstats-ca.txt -www/awstats/cgi-bin/lang/awstats-cn.txt -www/awstats/cgi-bin/lang/awstats-cy.txt -www/awstats/cgi-bin/lang/awstats-cz.txt -www/awstats/cgi-bin/lang/awstats-de.txt -www/awstats/cgi-bin/lang/awstats-dk.txt -www/awstats/cgi-bin/lang/awstats-en.txt -www/awstats/cgi-bin/lang/awstats-es.txt -www/awstats/cgi-bin/lang/awstats-et.txt -www/awstats/cgi-bin/lang/awstats-eu.txt -www/awstats/cgi-bin/lang/awstats-fi.txt -www/awstats/cgi-bin/lang/awstats-fr.txt -www/awstats/cgi-bin/lang/awstats-gl.txt -www/awstats/cgi-bin/lang/awstats-gr.txt -www/awstats/cgi-bin/lang/awstats-he.txt -www/awstats/cgi-bin/lang/awstats-hr.txt -www/awstats/cgi-bin/lang/awstats-hu.txt -www/awstats/cgi-bin/lang/awstats-id.txt -www/awstats/cgi-bin/lang/awstats-is.txt -www/awstats/cgi-bin/lang/awstats-it.txt -www/awstats/cgi-bin/lang/awstats-jp.txt -www/awstats/cgi-bin/lang/awstats-ko.txt -www/awstats/cgi-bin/lang/awstats-lv.txt -www/awstats/cgi-bin/lang/awstats-mk.txt -www/awstats/cgi-bin/lang/awstats-nb.txt -www/awstats/cgi-bin/lang/awstats-nl.txt -www/awstats/cgi-bin/lang/awstats-nn.txt -www/awstats/cgi-bin/lang/awstats-pl.txt -www/awstats/cgi-bin/lang/awstats-pt.txt -www/awstats/cgi-bin/lang/awstats-ro.txt -www/awstats/cgi-bin/lang/awstats-ru.txt -www/awstats/cgi-bin/lang/awstats-se.txt -www/awstats/cgi-bin/lang/awstats-si.txt -www/awstats/cgi-bin/lang/awstats-sk.txt -www/awstats/cgi-bin/lang/awstats-sr.txt -www/awstats/cgi-bin/lang/awstats-th.txt -www/awstats/cgi-bin/lang/awstats-tr.txt -www/awstats/cgi-bin/lang/awstats-tw.txt -www/awstats/cgi-bin/lang/awstats-ua.txt -www/awstats/cgi-bin/lang/awstats-lt.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-br.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-cz.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-en.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-gl.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-gr.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-is.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-it.txt -www/awstats/cgi-bin/lang/tooltips_f/awstats-tt-ru.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-br.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-cz.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-en.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-fr.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-gl.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-gr.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-is.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-it.txt -www/awstats/cgi-bin/lang/tooltips_m/awstats-tt-ru.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-al.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-ba.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-bg.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-br.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-ca.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-cn.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-cz.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-de.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-dk.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-en.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-es.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-fi.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-fr.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-gl.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-gr.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-hu.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-is.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-it.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-jp.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-kr.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-nb.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-nl.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-nn.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-pl.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-ro.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-ru.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-se.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-sk.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-sr.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-tr.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-tw.txt -www/awstats/cgi-bin/lang/tooltips_w/awstats-tt-ua.txt -www/awstats/cgi-bin/lib/blacklist.txt -www/awstats/cgi-bin/lib/browsers.pm -www/awstats/cgi-bin/lib/browsers_phone.pm -www/awstats/cgi-bin/lib/domains.pm -www/awstats/cgi-bin/lib/mime.pm -www/awstats/cgi-bin/lib/operating_systems.pm -www/awstats/cgi-bin/lib/referer_spam.pm -www/awstats/cgi-bin/lib/robots.pm -www/awstats/cgi-bin/lib/search_engines.pm -www/awstats/cgi-bin/lib/status_http.pm -www/awstats/cgi-bin/lib/status_smtp.pm -www/awstats/cgi-bin/lib/worms.pm -www/awstats/cgi-bin/plugins/clusterinfo.pm -www/awstats/cgi-bin/plugins/decodeutfkeys.pm -www/awstats/cgi-bin/plugins/example/example.pm -www/awstats/cgi-bin/plugins/export_to_csv.pm -www/awstats/cgi-bin/plugins/geoip.pm -www/awstats/cgi-bin/plugins/geoip_asn_maxmind.pm -www/awstats/cgi-bin/plugins/geoip_city_maxmind.pm -www/awstats/cgi-bin/plugins/geoip_isp_maxmind.pm -www/awstats/cgi-bin/plugins/geoip_org_maxmind.pm -www/awstats/cgi-bin/plugins/geoip_region_maxmind.pm -www/awstats/cgi-bin/plugins/geoipfree.pm -www/awstats/cgi-bin/plugins/graphapplet.pm -www/awstats/cgi-bin/plugins/graphgooglechartapi.pm -www/awstats/cgi-bin/plugins/hashfiles.pm -www/awstats/cgi-bin/plugins/hostinfo.pm -www/awstats/cgi-bin/plugins/ipv6.pm -www/awstats/cgi-bin/plugins/rawlog.pm -www/awstats/cgi-bin/plugins/timehires.pm -www/awstats/cgi-bin/plugins/timezone.pm -www/awstats/cgi-bin/plugins/tooltips.pm -www/awstats/cgi-bin/plugins/urlalias.pm -www/awstats/cgi-bin/plugins/userinfo.pm -www/awstats/classes/awgraphapplet.jar -www/awstats/css/awstats_bw.css -www/awstats/css/awstats_default.css -www/awstats/icons/browser/adobe.png -www/awstats/icons/browser/alcatel.png -www/awstats/icons/browser/amaya.png -www/awstats/icons/browser/amigavoyager.png -www/awstats/icons/browser/android.png -www/awstats/icons/browser/apt.png -www/awstats/icons/browser/avant.png -www/awstats/icons/browser/aweb.png -www/awstats/icons/browser/bpftp.png -www/awstats/icons/browser/bytel.png -www/awstats/icons/browser/chimera.png -www/awstats/icons/browser/chrome.png -www/awstats/icons/browser/cyberdog.png -www/awstats/icons/browser/da.png -www/awstats/icons/browser/dillo.png -www/awstats/icons/browser/dreamcast.png -www/awstats/icons/browser/ecatch.png -www/awstats/icons/browser/encompass.png -www/awstats/icons/browser/epiphany.png -www/awstats/icons/browser/ericsson.png -www/awstats/icons/browser/feeddemon.png -www/awstats/icons/browser/feedreader.png -www/awstats/icons/browser/firefox.png -www/awstats/icons/browser/flock.png -www/awstats/icons/browser/fpexpress.png -www/awstats/icons/browser/fresco.png -www/awstats/icons/browser/galeon.png -www/awstats/icons/browser/getright.png -www/awstats/icons/browser/gozilla.png -www/awstats/icons/browser/hotjava.png -www/awstats/icons/browser/ibrowse.png -www/awstats/icons/browser/icab.png -www/awstats/icons/browser/icecat.png -www/awstats/icons/browser/iceweasel.png -www/awstats/icons/browser/java.png -www/awstats/icons/browser/jetbrains_omea.png -www/awstats/icons/browser/kmeleon.png -www/awstats/icons/browser/konqueror.png -www/awstats/icons/browser/lg.png -www/awstats/icons/browser/lotusnotes.png -www/awstats/icons/browser/lynx.png -www/awstats/icons/browser/macweb.png -www/awstats/icons/browser/mediaplayer.png -www/awstats/icons/browser/mozilla.png -www/awstats/icons/browser/motorola.png -www/awstats/icons/browser/mplayer.png -www/awstats/icons/browser/msie.png -www/awstats/icons/browser/msie_large.png -www/awstats/icons/browser/multizilla.png -www/awstats/icons/browser/ncsa_mosaic.png -www/awstats/icons/browser/netnewswire.png -www/awstats/icons/browser/netpositive.png -www/awstats/icons/browser/netscape.png -www/awstats/icons/browser/netscape_large.png -www/awstats/icons/browser/netshow.png -www/awstats/icons/browser/newsfire.png -www/awstats/icons/browser/newsgator.png -www/awstats/icons/browser/newzcrawler.png -www/awstats/icons/browser/nokia.png -www/awstats/icons/browser/notavailable.png -www/awstats/icons/browser/omniweb.png -www/awstats/icons/browser/opera.png -www/awstats/icons/browser/panasonic.png -www/awstats/icons/browser/pdaphone.png -www/awstats/icons/browser/philips.png -www/awstats/icons/browser/phoenix.png -www/awstats/icons/browser/pluck.png -www/awstats/icons/browser/pulpfiction.png -www/awstats/icons/browser/real.png -www/awstats/icons/browser/rss.png -www/awstats/icons/browser/rssbandit.png -www/awstats/icons/browser/rssowl.png -www/awstats/icons/browser/rssreader.png -www/awstats/icons/browser/safari.png -www/awstats/icons/browser/sagem.png -www/awstats/icons/browser/samsung.png -www/awstats/icons/browser/seamonkey.png -www/awstats/icons/browser/sharp.png -www/awstats/icons/browser/sharpreader.png -www/awstats/icons/browser/shrook.png -www/awstats/icons/browser/siemens.png -www/awstats/icons/browser/sony.png -www/awstats/icons/browser/staroffice.png -www/awstats/icons/browser/teleport.png -www/awstats/icons/browser/trium.png -www/awstats/icons/browser/unknown.png -www/awstats/icons/browser/w3c.png -www/awstats/icons/browser/webcopier.png -www/awstats/icons/browser/webtv.png -www/awstats/icons/browser/webzip.png -www/awstats/icons/browser/abilon.png -www/awstats/icons/browser/akregator.png -www/awstats/icons/browser/analogx.png -www/awstats/icons/browser/doris.png -www/awstats/icons/browser/flashget.png -www/awstats/icons/browser/freshdownload.png -www/awstats/icons/browser/frontpage.png -www/awstats/icons/browser/gnome.png -www/awstats/icons/browser/gnus.png -www/awstats/icons/browser/httrack.png -www/awstats/icons/browser/leechget.png -www/awstats/icons/browser/neon.png -www/awstats/icons/browser/rssxpress.png -www/awstats/icons/browser/subversion.png -www/awstats/icons/browser/webreaper.png -www/awstats/icons/browser/winxbox.png -www/awstats/icons/browser/wizz.png -www/awstats/icons/clock/hr1.png -www/awstats/icons/clock/hr10.png -www/awstats/icons/clock/hr11.png -www/awstats/icons/clock/hr12.png -www/awstats/icons/clock/hr2.png -www/awstats/icons/clock/hr3.png -www/awstats/icons/clock/hr4.png -www/awstats/icons/clock/hr5.png -www/awstats/icons/clock/hr6.png -www/awstats/icons/clock/hr7.png -www/awstats/icons/clock/hr8.png -www/awstats/icons/clock/hr9.png -www/awstats/icons/cpu/digital.png -www/awstats/icons/cpu/hp.png -www/awstats/icons/cpu/ibm.png -www/awstats/icons/cpu/intel.png -www/awstats/icons/cpu/java.png -www/awstats/icons/cpu/mips.png -www/awstats/icons/cpu/motorola.png -www/awstats/icons/cpu/sun.png -www/awstats/icons/cpu/unknown.png -www/awstats/icons/flags/sl.png -www/awstats/icons/flags/me.png -www/awstats/icons/flags/gg.png -www/awstats/icons/flags/ax.png -www/awstats/icons/flags/a2.png -www/awstats/icons/flags/ac.png -www/awstats/icons/flags/ad.png -www/awstats/icons/flags/ae.png -www/awstats/icons/flags/aero.png -www/awstats/icons/flags/af.png -www/awstats/icons/flags/ag.png -www/awstats/icons/flags/ai.png -www/awstats/icons/flags/al.png -www/awstats/icons/flags/am.png -www/awstats/icons/flags/an.png -www/awstats/icons/flags/ao.png -www/awstats/icons/flags/aq.png -www/awstats/icons/flags/ar.png -www/awstats/icons/flags/arpa.png -www/awstats/icons/flags/as.png -www/awstats/icons/flags/at.png -www/awstats/icons/flags/au.png -www/awstats/icons/flags/aw.png -www/awstats/icons/flags/az.png -www/awstats/icons/flags/ba.png -www/awstats/icons/flags/bb.png -www/awstats/icons/flags/bd.png -www/awstats/icons/flags/be.png -www/awstats/icons/flags/bf.png -www/awstats/icons/flags/bg.png -www/awstats/icons/flags/bh.png -www/awstats/icons/flags/bi.png -www/awstats/icons/flags/biz.png -www/awstats/icons/flags/bj.png -www/awstats/icons/flags/bm.png -www/awstats/icons/flags/bn.png -www/awstats/icons/flags/bo.png -www/awstats/icons/flags/br.png -www/awstats/icons/flags/bs.png -www/awstats/icons/flags/bt.png -www/awstats/icons/flags/bv.png -www/awstats/icons/flags/bw.png -www/awstats/icons/flags/by.png -www/awstats/icons/flags/bz.png -www/awstats/icons/flags/ca.png -www/awstats/icons/flags/cc.png -www/awstats/icons/flags/cd.png -www/awstats/icons/flags/cf.png -www/awstats/icons/flags/cg.png -www/awstats/icons/flags/ch.png -www/awstats/icons/flags/ci.png -www/awstats/icons/flags/ck.png -www/awstats/icons/flags/cl.png -www/awstats/icons/flags/cm.png -www/awstats/icons/flags/cn.png -www/awstats/icons/flags/co.png -www/awstats/icons/flags/com.png -www/awstats/icons/flags/coop.png -www/awstats/icons/flags/cr.png -www/awstats/icons/flags/cs.png -www/awstats/icons/flags/cu.png -www/awstats/icons/flags/cv.png -www/awstats/icons/flags/cx.png -www/awstats/icons/flags/cy.png -www/awstats/icons/flags/cz.png -www/awstats/icons/flags/de.png -www/awstats/icons/flags/dj.png -www/awstats/icons/flags/dk.png -www/awstats/icons/flags/dm.png -www/awstats/icons/flags/do.png -www/awstats/icons/flags/dz.png -www/awstats/icons/flags/ec.png -www/awstats/icons/flags/edu.png -www/awstats/icons/flags/ee.png -www/awstats/icons/flags/eg.png -www/awstats/icons/flags/eh.png -www/awstats/icons/flags/en.png -www/awstats/icons/flags/er.png -www/awstats/icons/flags/es.png -www/awstats/icons/flags/es_cat.png -www/awstats/icons/flags/es_eu.png -www/awstats/icons/flags/et.png -www/awstats/icons/flags/eu.png -www/awstats/icons/flags/fi.png -www/awstats/icons/flags/fj.png -www/awstats/icons/flags/fk.png -www/awstats/icons/flags/fm.png -www/awstats/icons/flags/fo.png -www/awstats/icons/flags/fr.png -www/awstats/icons/flags/fx.png -www/awstats/icons/flags/ga.png -www/awstats/icons/flags/gb.png -www/awstats/icons/flags/gd.png -www/awstats/icons/flags/ge.png -www/awstats/icons/flags/gf.png -www/awstats/icons/flags/gh.png -www/awstats/icons/flags/gi.png -www/awstats/icons/flags/gl.png -www/awstats/icons/flags/glg.png -www/awstats/icons/flags/gm.png -www/awstats/icons/flags/gn.png -www/awstats/icons/flags/gov.png -www/awstats/icons/flags/gp.png -www/awstats/icons/flags/gq.png -www/awstats/icons/flags/gr.png -www/awstats/icons/flags/gs.png -www/awstats/icons/flags/gt.png -www/awstats/icons/flags/gu.png -www/awstats/icons/flags/gw.png -www/awstats/icons/flags/gy.png -www/awstats/icons/flags/hk.png -www/awstats/icons/flags/hm.png -www/awstats/icons/flags/hn.png -www/awstats/icons/flags/hr.png -www/awstats/icons/flags/ht.png -www/awstats/icons/flags/hu.png -www/awstats/icons/flags/i0.png -www/awstats/icons/flags/id.png -www/awstats/icons/flags/ie.png -www/awstats/icons/flags/il.png -www/awstats/icons/flags/im.png -www/awstats/icons/flags/in.png -www/awstats/icons/flags/info.png -www/awstats/icons/flags/int.png -www/awstats/icons/flags/io.png -www/awstats/icons/flags/ip.png -www/awstats/icons/flags/iq.png -www/awstats/icons/flags/ir.png -www/awstats/icons/flags/is.png -www/awstats/icons/flags/it.png -www/awstats/icons/flags/jm.png -www/awstats/icons/flags/jo.png -www/awstats/icons/flags/jp.png -www/awstats/icons/flags/ke.png -www/awstats/icons/flags/kg.png -www/awstats/icons/flags/kh.png -www/awstats/icons/flags/ki.png -www/awstats/icons/flags/km.png -www/awstats/icons/flags/kn.png -www/awstats/icons/flags/kp.png -www/awstats/icons/flags/kr.png -www/awstats/icons/flags/kw.png -www/awstats/icons/flags/ky.png -www/awstats/icons/flags/kz.png -www/awstats/icons/flags/la.png -www/awstats/icons/flags/lb.png -www/awstats/icons/flags/lc.png -www/awstats/icons/flags/li.png -www/awstats/icons/flags/lk.png -www/awstats/icons/flags/lr.png -www/awstats/icons/flags/ls.png -www/awstats/icons/flags/lt.png -www/awstats/icons/flags/lu.png -www/awstats/icons/flags/lv.png -www/awstats/icons/flags/ly.png -www/awstats/icons/flags/ma.png -www/awstats/icons/flags/mc.png -www/awstats/icons/flags/md.png -www/awstats/icons/flags/mg.png -www/awstats/icons/flags/mil.png -www/awstats/icons/flags/mk.png -www/awstats/icons/flags/ml.png -www/awstats/icons/flags/mm.png -www/awstats/icons/flags/mn.png -www/awstats/icons/flags/mo.png -www/awstats/icons/flags/mp.png -www/awstats/icons/flags/mq.png -www/awstats/icons/flags/mr.png -www/awstats/icons/flags/ms.png -www/awstats/icons/flags/mt.png -www/awstats/icons/flags/mu.png -www/awstats/icons/flags/museum.png -www/awstats/icons/flags/mv.png -www/awstats/icons/flags/mw.png -www/awstats/icons/flags/mx.png -www/awstats/icons/flags/my.png -www/awstats/icons/flags/mz.png -www/awstats/icons/flags/na.png -www/awstats/icons/flags/name.png -www/awstats/icons/flags/nato.png -www/awstats/icons/flags/nb.png -www/awstats/icons/flags/nc.png -www/awstats/icons/flags/ne.png -www/awstats/icons/flags/net.png -www/awstats/icons/flags/ng.png -www/awstats/icons/flags/ni.png -www/awstats/icons/flags/nl.png -www/awstats/icons/flags/nn.png -www/awstats/icons/flags/no.png -www/awstats/icons/flags/np.png -www/awstats/icons/flags/nr.png -www/awstats/icons/flags/nt.png -www/awstats/icons/flags/nu.png -www/awstats/icons/flags/nz.png -www/awstats/icons/flags/om.png -www/awstats/icons/flags/org.png -www/awstats/icons/flags/pa.png -www/awstats/icons/flags/pe.png -www/awstats/icons/flags/pf.png -www/awstats/icons/flags/pg.png -www/awstats/icons/flags/ph.png -www/awstats/icons/flags/pk.png -www/awstats/icons/flags/pl.png -www/awstats/icons/flags/pr.png -www/awstats/icons/flags/pro.png -www/awstats/icons/flags/ps.png -www/awstats/icons/flags/pt.png -www/awstats/icons/flags/py.png -www/awstats/icons/flags/qa.png -www/awstats/icons/flags/re.png -www/awstats/icons/flags/ro.png -www/awstats/icons/flags/rs.png -www/awstats/icons/flags/ru.png -www/awstats/icons/flags/rw.png -www/awstats/icons/flags/sa.png -www/awstats/icons/flags/sb.png -www/awstats/icons/flags/sc.png -www/awstats/icons/flags/sd.png -www/awstats/icons/flags/se.png -www/awstats/icons/flags/sg.png -www/awstats/icons/flags/si.png -www/awstats/icons/flags/sk.png -www/awstats/icons/flags/sm.png -www/awstats/icons/flags/sn.png -www/awstats/icons/flags/sr.png -www/awstats/icons/flags/st.png -www/awstats/icons/flags/su.png -www/awstats/icons/flags/sv.png -www/awstats/icons/flags/sy.png -www/awstats/icons/flags/sz.png -www/awstats/icons/flags/tc.png -www/awstats/icons/flags/td.png -www/awstats/icons/flags/tf.png -www/awstats/icons/flags/tg.png -www/awstats/icons/flags/th.png -www/awstats/icons/flags/tk.png -www/awstats/icons/flags/tm.png -www/awstats/icons/flags/tn.png -www/awstats/icons/flags/to.png -www/awstats/icons/flags/tr.png -www/awstats/icons/flags/tt.png -www/awstats/icons/flags/tv.png -www/awstats/icons/flags/tw.png -www/awstats/icons/flags/tz.png -www/awstats/icons/flags/ua.png -www/awstats/icons/flags/ug.png -www/awstats/icons/flags/uk.png -www/awstats/icons/flags/um.png -www/awstats/icons/flags/unknown.png -www/awstats/icons/flags/us.png -www/awstats/icons/flags/uy.png -www/awstats/icons/flags/uz.png -www/awstats/icons/flags/va.png -www/awstats/icons/flags/vc.png -www/awstats/icons/flags/ve.png -www/awstats/icons/flags/vg.png -www/awstats/icons/flags/vi.png -www/awstats/icons/flags/vn.png -www/awstats/icons/flags/vu.png -www/awstats/icons/flags/wf.png -www/awstats/icons/flags/wlk.png -www/awstats/icons/flags/ws.png -www/awstats/icons/flags/ye.png -www/awstats/icons/flags/yt.png -www/awstats/icons/flags/yu.png -www/awstats/icons/flags/za.png -www/awstats/icons/flags/ze.png -www/awstats/icons/flags/zm.png -www/awstats/icons/flags/zw.png -www/awstats/icons/mime/xsl.png -www/awstats/icons/mime/document.png -www/awstats/icons/mime/csv.png -www/awstats/icons/mime/runtime.png -www/awstats/icons/mime/ai.png -www/awstats/icons/mime/archive.png -www/awstats/icons/mime/audio.png -www/awstats/icons/mime/crystal.png -www/awstats/icons/mime/css.png -www/awstats/icons/mime/doc.png -www/awstats/icons/mime/dotnet.png -www/awstats/icons/mime/encrypt.png -www/awstats/icons/mime/flash.png -www/awstats/icons/mime/html.png -www/awstats/icons/mime/image.png -www/awstats/icons/mime/jnlp.png -www/awstats/icons/mime/jscript.png -www/awstats/icons/mime/library.png -www/awstats/icons/mime/lit.png -www/awstats/icons/mime/mdb.png -www/awstats/icons/mime/notavailable.png -www/awstats/icons/mime/ooffice.png -www/awstats/icons/mime/other.png -www/awstats/icons/mime/page.png -www/awstats/icons/mime/pdf.png -www/awstats/icons/mime/php.png -www/awstats/icons/mime/phshop.png -www/awstats/icons/mime/pl.png -www/awstats/icons/mime/ppt.png -www/awstats/icons/mime/quicktime.png -www/awstats/icons/mime/rar.png -www/awstats/icons/mime/readme.txt -www/awstats/icons/mime/real.png -www/awstats/icons/mime/rss.png -www/awstats/icons/mime/script.png -www/awstats/icons/mime/svg.png -www/awstats/icons/mime/text.png -www/awstats/icons/mime/ttf.png -www/awstats/icons/mime/unknown.png -www/awstats/icons/mime/video.png -www/awstats/icons/mime/wmv.png -www/awstats/icons/mime/glasses.png -www/awstats/icons/mime/xls.png -www/awstats/icons/os/macosx8.png -www/awstats/icons/os/macosx6.png -www/awstats/icons/os/macosx7.png -www/awstats/icons/os/macosx9.png -www/awstats/icons/os/macosx4.png -www/awstats/icons/os/macosx5.png -www/awstats/icons/os/aix.png -www/awstats/icons/os/amigaos.png -www/awstats/icons/os/apple.png -www/awstats/icons/os/atari.png -www/awstats/icons/os/beos.png -www/awstats/icons/os/blackberry.png -www/awstats/icons/os/bsd.png -www/awstats/icons/os/bsddflybsd.png -www/awstats/icons/os/bsdfreebsd.png -www/awstats/icons/os/bsdi.png -www/awstats/icons/os/bsdkfreebsd.png -www/awstats/icons/os/bsdnetbsd.png -www/awstats/icons/os/bsdopenbsd.png -www/awstats/icons/os/cpm.png -www/awstats/icons/os/debian.png -www/awstats/icons/os/digital.png -www/awstats/icons/os/dos.png -www/awstats/icons/os/dreamcast.png -www/awstats/icons/os/freebsd.png -www/awstats/icons/os/gnu.png -www/awstats/icons/os/hpux.png -www/awstats/icons/os/ibm.png -www/awstats/icons/os/imode.png -www/awstats/icons/os/inferno.png -www/awstats/icons/os/ios.png -www/awstats/icons/os/iphone.png -www/awstats/icons/os/irix.png -www/awstats/icons/os/j2me.png -www/awstats/icons/os/java.png -www/awstats/icons/os/kfreebsd.png -www/awstats/icons/os/linux.png -www/awstats/icons/os/linuxandroid.png -www/awstats/icons/os/linuxasplinux.png -www/awstats/icons/os/linuxcentos.png -www/awstats/icons/os/linuxdebian.png -www/awstats/icons/os/linuxfedora.png -www/awstats/icons/os/linuxgentoo.png -www/awstats/icons/os/linuxmandr.png -www/awstats/icons/os/linuxpclinuxos.png -www/awstats/icons/os/linuxredhat.png -www/awstats/icons/os/linuxsuse.png -www/awstats/icons/os/linuxubuntu.png -www/awstats/icons/os/linuxvine.png -www/awstats/icons/os/linuxzenwalk.png -www/awstats/icons/os/mac.png -www/awstats/icons/os/macintosh.png -www/awstats/icons/os/macosx.png -www/awstats/icons/os/netbsd.png -www/awstats/icons/os/netware.png -www/awstats/icons/os/next.png -www/awstats/icons/os/openbsd.png -www/awstats/icons/os/os2.png -www/awstats/icons/os/osf.png -www/awstats/icons/os/palmos.png -www/awstats/icons/os/qnx.png -www/awstats/icons/os/riscos.png -www/awstats/icons/os/sco.png -www/awstats/icons/os/sunos.png -www/awstats/icons/os/syllable.png -www/awstats/icons/os/symbian.png -www/awstats/icons/os/unix.png -www/awstats/icons/os/unknown.png -www/awstats/icons/os/vms.png -www/awstats/icons/os/webtv.png -www/awstats/icons/os/wii.png -www/awstats/icons/os/win.png -www/awstats/icons/os/win7.png -www/awstats/icons/os/win8.1.png -www/awstats/icons/os/win8.png -www/awstats/icons/os/win16.png -www/awstats/icons/os/win2000.png -www/awstats/icons/os/win2003.png -www/awstats/icons/os/win2008.png -www/awstats/icons/os/win95.png -www/awstats/icons/os/win98.png -www/awstats/icons/os/wince.png -www/awstats/icons/os/winlong.png -www/awstats/icons/os/winme.png -www/awstats/icons/os/winnt.png -www/awstats/icons/os/winphone.png -www/awstats/icons/os/winunknown.png -www/awstats/icons/os/winvista.png -www/awstats/icons/os/winxp.png -www/awstats/icons/os/commodore.png -www/awstats/icons/os/psp.png -www/awstats/icons/os/winxbox.png -www/awstats/icons/other/awstats_logo1.png -www/awstats/icons/other/awstats_logo5.png -www/awstats/icons/other/awstats_logo6.png -www/awstats/icons/other/backleft.png -www/awstats/icons/other/button.gif -www/awstats/icons/other/he.png -www/awstats/icons/other/hh.png -www/awstats/icons/other/hk.png -www/awstats/icons/other/hp.png -www/awstats/icons/other/ht.png -www/awstats/icons/other/hx.png -www/awstats/icons/other/menu1.png -www/awstats/icons/other/menu2.png -www/awstats/icons/other/menu3.png -www/awstats/icons/other/menu4.png -www/awstats/icons/other/menu5.png -www/awstats/icons/other/menu6.png -www/awstats/icons/other/menu7.png -www/awstats/icons/other/menu8.png -www/awstats/icons/other/page.png -www/awstats/icons/other/vh.png -www/awstats/icons/other/vk.png -www/awstats/icons/other/vp.png -www/awstats/icons/other/vu.png -www/awstats/icons/other/vv.png -www/awstats/js/awstats_misc_tracker.js -www/awstats/tools/awstats_buildstaticpages.pl -www/awstats/tools/awstats_configure.pl -www/awstats/tools/awstats_exportlib.pl -www/awstats/tools/awstats_updateall.pl -www/awstats/tools/logresolvemerge.pl -www/awstats/tools/maillogconvert.pl -www/awstats/tools/urlaliasbuilder.pl -www/awstats/tools/xslt/README.txt -www/awstats/tools/xslt/awstats.datademo1.xml -www/awstats/tools/xslt/awstats.datademo1.xslt -www/awstats/tools/xslt/awstats.datademo2.xml -www/awstats/tools/xslt/awstats.datademo2.xslt -www/awstats/tools/xslt/awstats.xsd -@dirrm www/awstats/tools/xslt -@dirrm www/awstats/tools/webmin -@dirrm www/awstats/tools -@dirrm www/awstats/js -@dirrm www/awstats/icons/other -@dirrm www/awstats/icons/os -@dirrm www/awstats/icons/mime -@dirrm www/awstats/icons/flags -@dirrm www/awstats/icons/cpu -@dirrm www/awstats/icons/clock -@dirrm www/awstats/icons/browser -@dirrm www/awstats/icons -@dirrm www/awstats/css -@dirrm www/awstats/classes -@dirrm www/awstats/cgi-bin/plugins/example -@dirrm www/awstats/cgi-bin/plugins -@dirrm www/awstats/cgi-bin/lib -@dirrm www/awstats/cgi-bin/lang/tooltips_w -@dirrm www/awstats/cgi-bin/lang/tooltips_m -@dirrm www/awstats/cgi-bin/lang/tooltips_f -@dirrm www/awstats/cgi-bin/lang -@dirrm www/awstats/cgi-bin -@dirrm www/awstats -%%PORTDOCS%%@dirrm %%DOCSDIR%%/images -%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%WWWDIR%%/cgi-bin/awredir.pl +%%WWWDIR%%/cgi-bin/awstats.model.conf +%%WWWDIR%%/cgi-bin/awstats.pl +%%WWWDIR%%/cgi-bin/lang/awstats-al.txt +%%WWWDIR%%/cgi-bin/lang/awstats-ar.txt +%%WWWDIR%%/cgi-bin/lang/awstats-ba.txt +%%WWWDIR%%/cgi-bin/lang/awstats-be.txt +%%WWWDIR%%/cgi-bin/lang/awstats-bg.txt +%%WWWDIR%%/cgi-bin/lang/awstats-br.txt +%%WWWDIR%%/cgi-bin/lang/awstats-bzg.txt +%%WWWDIR%%/cgi-bin/lang/awstats-ca.txt +%%WWWDIR%%/cgi-bin/lang/awstats-cn.txt +%%WWWDIR%%/cgi-bin/lang/awstats-cy.txt +%%WWWDIR%%/cgi-bin/lang/awstats-cz.txt +%%WWWDIR%%/cgi-bin/lang/awstats-de.txt +%%WWWDIR%%/cgi-bin/lang/awstats-dk.txt +%%WWWDIR%%/cgi-bin/lang/awstats-en.txt +%%WWWDIR%%/cgi-bin/lang/awstats-es.txt +%%WWWDIR%%/cgi-bin/lang/awstats-et.txt +%%WWWDIR%%/cgi-bin/lang/awstats-eu.txt +%%WWWDIR%%/cgi-bin/lang/awstats-fi.txt +%%WWWDIR%%/cgi-bin/lang/awstats-fr.txt +%%WWWDIR%%/cgi-bin/lang/awstats-gl.txt +%%WWWDIR%%/cgi-bin/lang/awstats-gr.txt +%%WWWDIR%%/cgi-bin/lang/awstats-he.txt +%%WWWDIR%%/cgi-bin/lang/awstats-hr.txt +%%WWWDIR%%/cgi-bin/lang/awstats-hu.txt +%%WWWDIR%%/cgi-bin/lang/awstats-id.txt +%%WWWDIR%%/cgi-bin/lang/awstats-is.txt +%%WWWDIR%%/cgi-bin/lang/awstats-it.txt +%%WWWDIR%%/cgi-bin/lang/awstats-jp.txt +%%WWWDIR%%/cgi-bin/lang/awstats-ko.txt +%%WWWDIR%%/cgi-bin/lang/awstats-lv.txt +%%WWWDIR%%/cgi-bin/lang/awstats-mk.txt +%%WWWDIR%%/cgi-bin/lang/awstats-nb.txt +%%WWWDIR%%/cgi-bin/lang/awstats-nl.txt +%%WWWDIR%%/cgi-bin/lang/awstats-nn.txt +%%WWWDIR%%/cgi-bin/lang/awstats-pl.txt +%%WWWDIR%%/cgi-bin/lang/awstats-pt.txt +%%WWWDIR%%/cgi-bin/lang/awstats-ro.txt +%%WWWDIR%%/cgi-bin/lang/awstats-ru.txt +%%WWWDIR%%/cgi-bin/lang/awstats-se.txt +%%WWWDIR%%/cgi-bin/lang/awstats-si.txt +%%WWWDIR%%/cgi-bin/lang/awstats-sk.txt +%%WWWDIR%%/cgi-bin/lang/awstats-sr.txt +%%WWWDIR%%/cgi-bin/lang/awstats-th.txt +%%WWWDIR%%/cgi-bin/lang/awstats-tr.txt +%%WWWDIR%%/cgi-bin/lang/awstats-tw.txt +%%WWWDIR%%/cgi-bin/lang/awstats-ua.txt +%%WWWDIR%%/cgi-bin/lang/awstats-lt.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-br.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-cz.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-en.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-gl.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-gr.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-is.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-it.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_f/awstats-tt-ru.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-br.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-cz.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-en.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-fr.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-gl.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-gr.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-is.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-it.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_m/awstats-tt-ru.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_w/awstats-tt-al.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_w/awstats-tt-ba.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_w/awstats-tt-bg.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_w/awstats-tt-br.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_w/awstats-tt-ca.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_w/awstats-tt-cn.txt +%%WWWDIR%%/cgi-bin/lang/tooltips_w/awstats-tt-cz.txt *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sat Aug 15 16:40:32 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C4BE9BA85E; Sat, 15 Aug 2015 16:40:32 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F11658EB; Sat, 15 Aug 2015 16:40:31 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FGeVsM055360; Sat, 15 Aug 2015 16:40:31 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FGeVMg055359; Sat, 15 Aug 2015 16:40:31 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201508151640.t7FGeVMg055359@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Sat, 15 Aug 2015 16:40:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394331 - head/www/awstats X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 16:40:32 -0000 Author: adamw Date: Sat Aug 15 16:40:31 2015 New Revision: 394331 URL: https://svnweb.freebsd.org/changeset/ports/394331 Log: Update WWW to a better site. Modified: head/www/awstats/pkg-descr Modified: head/www/awstats/pkg-descr ============================================================================== --- head/www/awstats/pkg-descr Sat Aug 15 16:39:03 2015 (r394330) +++ head/www/awstats/pkg-descr Sat Aug 15 16:40:31 2015 (r394331) @@ -12,4 +12,4 @@ It can analyze log files from IIS (W3C l and most of all web, proxy, WAP, and streaming servers (and FTP servers or mail logs). -WWW: http://awstats.sourceforge.net/ +WWW: http://www.awstats.org From owner-svn-ports-all@freebsd.org Sat Aug 15 16:43:36 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 751309BA88B; Sat, 15 Aug 2015 16:43:36 +0000 (UTC) (envelope-from vg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63631B8C; Sat, 15 Aug 2015 16:43:36 +0000 (UTC) (envelope-from vg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FGhaVu059160; Sat, 15 Aug 2015 16:43:36 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FGhaTt059159; Sat, 15 Aug 2015 16:43:36 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201508151643.t7FGhaTt059159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Sat, 15 Aug 2015 16:43:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394332 - head/security/kqoauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 16:43:36 -0000 Author: vg Date: Sat Aug 15 16:43:35 2015 New Revision: 394332 URL: https://svnweb.freebsd.org/changeset/ports/394332 Log: - Remove qt4-linguist dependency; add qt4-network instead. - qt4-testlib is not used outside tests directory; remove it from run-time dependencies. - Sort USES. - Fix a typo in COMMENT. - Bump PORTREVISION. PR: ports/202046 Submitted by: Andriy Voskoboinyk Modified: head/security/kqoauth/Makefile Modified: head/security/kqoauth/Makefile ============================================================================== --- head/security/kqoauth/Makefile Sat Aug 15 16:40:31 2015 (r394331) +++ head/security/kqoauth/Makefile Sat Aug 15 16:43:35 2015 (r394332) @@ -6,13 +6,14 @@ PORTVERSION= 0.98 CATEGORIES= security MAINTAINER= vg@FreeBSD.org -COMMENT= Implimentation of OAuth 1.0 in C++ for Qt +COMMENT= Implementation of OAuth 1.0 in C++ for Qt LICENSE= LGPL21 -USES= qmake pkgconfig -USE_QT4= corelib gui linguist_build moc_build qtestlib +USES= pkgconfig qmake +USE_QT4= corelib network gui moc_build qtestlib_build USE_LDCONFIG= yes +MAKE_JOBS_UNSAFE=yes QMAKE_SOURCE_PATH= ${PORTNAME}.pro USE_GITHUB= yes From owner-svn-ports-all@freebsd.org Sat Aug 15 18:59:07 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88D649BA8CD; Sat, 15 Aug 2015 18:59:07 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F81B1D50; Sat, 15 Aug 2015 18:59:07 +0000 (UTC) (envelope-from johans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FIx7cX012814; Sat, 15 Aug 2015 18:59:07 GMT (envelope-from johans@FreeBSD.org) Received: (from johans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FIx6q3012811; Sat, 15 Aug 2015 18:59:06 GMT (envelope-from johans@FreeBSD.org) Message-Id: <201508151859.t7FIx6q3012811@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johans set sender to johans@FreeBSD.org using -f From: Johan van Selst Date: Sat, 15 Aug 2015 18:59:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394333 - head/games/freeciv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 18:59:07 -0000 Author: johans Date: Sat Aug 15 18:59:05 2015 New Revision: 394333 URL: https://svnweb.freebsd.org/changeset/ports/394333 Log: Update to FreeCiv 2.5.1 (bugfix release) Modified: head/games/freeciv/Makefile head/games/freeciv/distinfo head/games/freeciv/pkg-plist Modified: head/games/freeciv/Makefile ============================================================================== --- head/games/freeciv/Makefile Sat Aug 15 16:43:35 2015 (r394332) +++ head/games/freeciv/Makefile Sat Aug 15 18:59:05 2015 (r394333) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= freeciv -PORTVERSION= 2.5.0 +PORTVERSION= 2.5.1 CATEGORIES= games MASTER_SITES= SF/freeciv/Freeciv%20${PORTVERSION:R}/${PORTVERSION} Modified: head/games/freeciv/distinfo ============================================================================== --- head/games/freeciv/distinfo Sat Aug 15 16:43:35 2015 (r394332) +++ head/games/freeciv/distinfo Sat Aug 15 18:59:05 2015 (r394333) @@ -1,2 +1,2 @@ -SHA256 (freeciv-2.5.0.tar.bz2) = bd9f7523ea79b8d2806d0c1844a9f48506ccd18276330580319913c43051210b -SIZE (freeciv-2.5.0.tar.bz2) = 40323793 +SHA256 (freeciv-2.5.1.tar.bz2) = 4e420a9ad91aa7966039ec3b63501725c8261a4ff734d56fe801414fae772696 +SIZE (freeciv-2.5.1.tar.bz2) = 40686265 Modified: head/games/freeciv/pkg-plist ============================================================================== --- head/games/freeciv/pkg-plist Sat Aug 15 16:43:35 2015 (r394332) +++ head/games/freeciv/pkg-plist Sat Aug 15 18:59:05 2015 (r394333) @@ -52,10 +52,10 @@ share/applications/freeciv-server.deskto %%PORTDOCS%%%%DOCSDIR%%/README.SDLClient %%PORTDOCS%%%%DOCSDIR%%/README.agents %%PORTDOCS%%%%DOCSDIR%%/README.attributes -%%PORTDOCS%%%%DOCSDIR%%/README.cma %%PORTDOCS%%%%DOCSDIR%%/README.delta %%PORTDOCS%%%%DOCSDIR%%/README.effects %%PORTDOCS%%%%DOCSDIR%%/README.fcdb +%%PORTDOCS%%%%DOCSDIR%%/README.governor %%PORTDOCS%%%%DOCSDIR%%/README.graphics %%PORTDOCS%%%%DOCSDIR%%/README.nations %%PORTDOCS%%%%DOCSDIR%%/README.packaging From owner-svn-ports-all@freebsd.org Sat Aug 15 19:27:53 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E008B9BAD82; Sat, 15 Aug 2015 19:27:52 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CFFD61AB2; Sat, 15 Aug 2015 19:27:52 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FJRqCA025105; Sat, 15 Aug 2015 19:27:52 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FJRpeZ025101; Sat, 15 Aug 2015 19:27:51 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201508151927.t7FJRpeZ025101@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Sat, 15 Aug 2015 19:27:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394334 - head/x11/guake X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 19:27:53 -0000 Author: nivit Date: Sat Aug 15 19:27:51 2015 New Revision: 394334 URL: https://svnweb.freebsd.org/changeset/ports/394334 Log: - Update to 0.8.0 - Add x11/keybinder to run dependencies - Remove post-build target (globalhotkey replaced by keybinder) - Update web site URL in pkg-descr Relnotes: https://github.com/Guake/guake/releases/tag/0.8.0 Modified: head/x11/guake/Makefile head/x11/guake/distinfo head/x11/guake/pkg-descr head/x11/guake/pkg-plist Modified: head/x11/guake/Makefile ============================================================================== --- head/x11/guake/Makefile Sat Aug 15 18:59:05 2015 (r394333) +++ head/x11/guake/Makefile Sat Aug 15 19:27:51 2015 (r394334) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= guake -PORTVERSION= 0.7.2 +PORTVERSION= 0.8.0 PORTREVISION= 0 CATEGORIES= x11 @@ -15,7 +15,8 @@ BUILD_DEPENDS= gnome-common>=3.14.0:${PO py${PYTHON_SUFFIX}-notify>=0.1.1_9:${PORTSDIR}/devel/py-notify \ py${PYTHON_SUFFIX}-vte>=0.26.2_1:${PORTSDIR}/x11-toolkits/py-vte \ py${PYTHON_SUFFIX}-xdg>=0.19:${PORTSDIR}/devel/py-xdg -RUN_DEPENDS= py${PYTHON_SUFFIX}-dbus>=0.84.0:${PORTSDIR}/devel/py-dbus \ +RUN_DEPENDS= keybinder>=0.3.0:${PORTSDIR}/x11/keybinder \ + py${PYTHON_SUFFIX}-dbus>=0.84.0:${PORTSDIR}/devel/py-dbus \ py${PYTHON_SUFFIX}-notify>=0.1.1_9:${PORTSDIR}/devel/py-notify \ py${PYTHON_SUFFIX}-vte>=0.26.2_1:${PORTSDIR}/x11-toolkits/py-vte \ py${PYTHON_SUFFIX}-xdg>=0.19:${PORTSDIR}/devel/py-xdg @@ -55,9 +56,6 @@ REINPLACE_FILES+= ../../configure pre-configure: @(cd ${CONFIGURE_WRKSRC} ; ${SETENV} ${CONFIGURE_ENV} ./autogen.sh) -post-build: - @${STRIP_CMD} ${WRKSRC}/src/guake/globalhotkeys/.libs/globalhotkeys.so - .include .if exists(${LOCALBASE}/libexec/notification-daemon) Modified: head/x11/guake/distinfo ============================================================================== --- head/x11/guake/distinfo Sat Aug 15 18:59:05 2015 (r394333) +++ head/x11/guake/distinfo Sat Aug 15 19:27:51 2015 (r394334) @@ -1,2 +1,2 @@ -SHA256 (Guake-guake-0.7.2_GH0.tar.gz) = 761bb608d7ec907cab3281c7c67317ac6413fdf52293bd5e9c8e4dc1024a5993 -SIZE (Guake-guake-0.7.2_GH0.tar.gz) = 351702 +SHA256 (Guake-guake-0.8.0_GH0.tar.gz) = a34e80f2cbf1b57076ce2ecc67c04b21167a5439d1345877bc758256c57ac15a +SIZE (Guake-guake-0.8.0_GH0.tar.gz) = 343381 Modified: head/x11/guake/pkg-descr ============================================================================== --- head/x11/guake/pkg-descr Sat Aug 15 18:59:05 2015 (r394333) +++ head/x11/guake/pkg-descr Sat Aug 15 19:27:51 2015 (r394334) @@ -4,4 +4,4 @@ or a similar program. Its style of window is based on fps games, and one of its purposes is to be easy to reach. -WWW: http://github.com/Guake/guake +WWW: http://guake-project.org/ Modified: head/x11/guake/pkg-plist ============================================================================== --- head/x11/guake/pkg-plist Sat Aug 15 18:59:05 2015 (r394333) +++ head/x11/guake/pkg-plist Sat Aug 15 19:27:51 2015 (r394334) @@ -18,8 +18,6 @@ bin/guake-prefs %%PYTHON_SITELIBDIR%%/guake/gconfhandler.py %%PYTHON_SITELIBDIR%%/guake/gconfhandler.pyc %%PYTHON_SITELIBDIR%%/guake/gconfhandler.pyo -%%PYTHON_SITELIBDIR%%/guake/globalhotkeys.a -%%PYTHON_SITELIBDIR%%/guake/globalhotkeys.so %%PYTHON_SITELIBDIR%%/guake/globals.py %%PYTHON_SITELIBDIR%%/guake/globals.pyc %%PYTHON_SITELIBDIR%%/guake/globals.pyo From owner-svn-ports-all@freebsd.org Sat Aug 15 19:36:54 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21AAA9BAE92; Sat, 15 Aug 2015 19:36:54 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0889C1DFC; Sat, 15 Aug 2015 19:36:54 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7FJar2o029219; Sat, 15 Aug 2015 19:36:53 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7FJar6K029217; Sat, 15 Aug 2015 19:36:53 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201508151936.t7FJar6K029217@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Sat, 15 Aug 2015 19:36:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394335 - head/www/coppermine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Aug 2015 19:36:54 -0000 Author: danilo Date: Sat Aug 15 19:36:52 2015 New Revision: 394335 URL: https://svnweb.freebsd.org/changeset/ports/394335 Log: - Update to 1.5.38 Modified: head/www/coppermine/Makefile head/www/coppermine/distinfo Modified: head/www/coppermine/Makefile ============================================================================== --- head/www/coppermine/Makefile Sat Aug 15 19:27:51 2015 (r394334) +++ head/www/coppermine/Makefile Sat Aug 15 19:36:52 2015 (r394335) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= coppermine -PORTVERSION= 1.5.36 +PORTVERSION= 1.5.38 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/Coppermine/1.5.x/ DISTNAME= cpg${PORTVERSION} Modified: head/www/coppermine/distinfo ============================================================================== --- head/www/coppermine/distinfo Sat Aug 15 19:27:51 2015 (r394334) +++ head/www/coppermine/distinfo Sat Aug 15 19:36:52 2015 (r394335) @@ -1,2 +1,2 @@ -SHA256 (cpg1.5.36.zip) = 227e013dceffdaf6e9eebfff40f0dc83bae323e468cc3edcb5af5706ccd4b55d -SIZE (cpg1.5.36.zip) = 18998760 +SHA256 (cpg1.5.38.zip) = 4fb9e853741430ae275a9ae3235bff09fc8cc0f0ef2fb47c4b6036c1039cea6b +SIZE (cpg1.5.38.zip) = 19000708