From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 00:03:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 808D0117 for ; Sun, 10 Aug 2014 00:03:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 6D2762984 for ; Sun, 10 Aug 2014 00:03:10 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2dcc by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 00:03:09 +0000 From: John Marino Date: Sun, 10 Aug 2014 00:03:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364488 - in head/science/gromacs: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6b6bd.2dcc.de215ed@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 00:03:10 -0000 Author: marino Date: Sun Aug 10 00:03:09 2014 New Revision: 364488 URL: http://svnweb.freebsd.org/changeset/ports/364488 QAT: https://qat.redports.org/buildarchive/r364488/ Log: science/gromacs: Upgrade version 4.6.5 => 5.0 PR: 191826 Submitted by: Ports Fury Added: head/science/gromacs/files/patch-src__external__thread_mpi__src__atomic.c (contents, props changed) Deleted: head/science/gromacs/files/patch-CMakeLists.txt head/science/gromacs/files/patch-src__gmxlib__thread_mpi__atomic.c Modified: head/science/gromacs/Makefile head/science/gromacs/distinfo head/science/gromacs/pkg-descr head/science/gromacs/pkg-plist Modified: head/science/gromacs/Makefile ============================================================================== --- head/science/gromacs/Makefile Sat Aug 9 23:54:31 2014 (r364487) +++ head/science/gromacs/Makefile Sun Aug 10 00:03:09 2014 (r364488) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gromacs -PORTVERSION= 4.6.5 -PORTREVISION= 3 +PORTVERSION= 5.0 CATEGORIES= science MASTER_SITES= ftp://ftp.gromacs.org/pub/gromacs/ @@ -12,86 +11,68 @@ COMMENT= Compute molecular dynamics LICENSE= LGPL21 -OPTIONS_DEFINE= ATLAS FLOAT GSL SIMD X11 -OPTIONS_DEFAULT= FLOAT GSL X11 -OPTIONS_RADIO= MPI -OPTIONS_RADIO_MPI= MPICH OMPI - -OPTIONS_SUB= yes - -ATLAS_DESC= Use ATLAS for BLAS and LAPACK -FLOAT_DESC= Use single instead of double precision -GSL_DESC= Extra analysis using math/gsl -MPICH_DESC= MPI support using net/mpich2 -OMPI_DESC= MPI support using net/openmpi +BUILD_DEPENDS= boost-libs>=1.44:${PORTSDIR}/devel/boost-libs USES= cmake fortran perl5 pkgconfig shebangfix -SHEBANG_FILES= admin/*.pl scripts/*.pl scripts/*.sh src/gmxlib/selection/*.sh +SHEBANG_FILES= admin/*.sh scripts/*.pl scripts/*.sh src/gromacs/selection/*.sh bash_CMD= ${SH} -CMAKE_ARGS= -DBLAS_LIBRARIES:FILEPATH="${BLAS_LIBS}" \ - -DLAPACK_LIBRARIES:FILEPATH="${LAPACK_LIBS}" +USE_GNOME= libxml2 +CMAKE_ARGS= -DGMX_USE_RDTSCP:BOOL=OFF \ + -DUSE_PYTHON_SCRIPTS:BOOL=OFF USE_LDCONFIG= yes -GSL_LIB_DEPENDS= libgsl.so:${PORTSDIR}/math/gsl -GSL_CMAKE_ON= -DGMX_GSL:BOOL=ON -GSL_CMAKE_OFF= -DGMX_GSL:BOOL=OFF - -SIMD_CMAKE_OFF= -DGMX_CPU_ACCELERATION:STRING="None" +OPTIONS_DEFINE= ATLAS FLOAT SIMD X11 +OPTIONS_RADIO= MPI +OPTIONS_RADIO_MPI= MPICH OMPI +OPTIONS_DEFAULT= FLOAT X11 +OPTIONS_SUB= yes +ATLAS_DESC= Use ATLAS for BLAS and LAPACK +ATLAS_LIB_DEPENDS= libalapack.so:${PORTSDIR}/math/atlas +ATLAS_LIB_DEPENDS_OFF= libblas.so:${PORTSDIR}/math/blas \ + liblapack.so:${PORTSDIR}/math/lapack +ATLAS_CMAKE_ON= -DBLAS_LIBRARIES:FILEPATH="${LOCALBASE}/lib/libcblas.so;${LOCALBASE}/lib/libf77blas.so" \ + -DLAPACK_LIBRARIES:FILEPATH="${LOCALBASE}/lib/libalapack.so" +ATLAS_CMAKE_OFF= -DBLAS_LIBRARIES:FILEPATH="${LOCALBASE}/lib/libblas.so" \ + -DLAPACK_LIBRARIES:FILEPATH="${LOCALBASE}/lib/liblapack.so" +FLOAT_DESC= Use single instead of double precision +FLOAT_BUILD_DEPENDS= fftw3>0:${PORTSDIR}/math/fftw3 +FLOAT_LIB_DEPENDS= libfftw3f.so:${PORTSDIR}/math/fftw3-float +FLOAT_LIB_DEPENDS_OFF= libfftw3.so:${PORTSDIR}/math/fftw3 +FLOAT_CMAKE_ON= -DGMX_DOUBLE:BOOL=OFF +FLOAT_CMAKE_OFF= -DGMX_DOUBLE:BOOL=ON +MPICH_DESC= MPI support using net/mpich2 +MPICH_LIB_DEPENDS= libmpich.so:${PORTSDIR}/net/mpich2 +MPICH_CMAKE_ON= -DMPI_C_COMPILER:FILEPATH="${LOCALBASE}/bin/mpicc" +OMPI_DESC= MPI support using net/openmpi +OMPI_BUILD_DEPENDS= openmpi>0:${PORTSDIR}/net/openmpi +OMPI_RUN_DEPENDS= openmpi>0:${PORTSDIR}/net/openmpi +OMPI_CMAKE_ON= -DMPI_C_COMPILER:FILEPATH="${LOCALBASE}/mpi/openmpi/bin/mpicc" +SIMD_CMAKE_OFF= -DGMX_SIMD:STRING="None" X11_USE= XORG=xext,x11 X11_CMAKE_ON= -DGMX_X11:BOOL=ON X11_CMAKE_OFF= -DGMX_X11:BOOL=OFF .include -.if ${PORT_OPTIONS:MATLAS} -LIB_DEPENDS+= libalapack.so:${PORTSDIR}/math/atlas -BLAS_LIBS= ${LOCALBASE}/lib/libcblas.so;${LOCALBASE}/lib/libf77blas.so -LAPACK_LIBS= ${LOCALBASE}/lib/libalapack.so -.else -LIB_DEPENDS+= libblas.so:${PORTSDIR}/math/blas \ - liblapack.so:${PORTSDIR}/math/lapack -BLAS_LIBS= ${LOCALBASE}/lib/libblas.so -LAPACK_LIBS= ${LOCALBASE}/lib/liblapack.so -.endif - .if ${PORT_OPTIONS:MFLOAT} -BUILD_DEPENDS+= fftw3>0:${PORTSDIR}/math/fftw3 -LIB_DEPENDS+= libfftw3f.so:${PORTSDIR}/math/fftw3-float -CMAKE_ARGS+= -DGMX_DOUBLE:BOOL=OFF PLIST_SUB+= SUFFIX_D="" .else -LIB_DEPENDS+= libfftw3.so:${PORTSDIR}/math/fftw3 -CMAKE_ARGS+= -DGMX_DOUBLE:BOOL=ON PLIST_SUB+= SUFFIX_D="_d" .endif .if ${PORT_OPTIONS:MMPICH} || ${PORT_OPTIONS:MOMPI} -CMAKE_ARGS+= -DGMX_MPI:BOOL=ON \ - -DMPI_C_COMPILER:FILEPATH="${MPICC}" +CMAKE_ARGS+= -DGMX_MPI:BOOL=ON PLIST_SUB+= SUFFIX_MPI="_mpi" .else CMAKE_ARGS+= -DGMX_MPI:BOOL=OFF PLIST_SUB+= SUFFIX_MPI="" .endif -.if ${PORT_OPTIONS:MMPICH} -BUILD_DEPENDS+= ${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2 -RUN_DEPENDS+= ${LOCALBASE}/bin/mpicc:${PORTSDIR}/net/mpich2 -MPICC= ${LOCALBASE}/bin/mpicc -.endif - -.if ${PORT_OPTIONS:MOMPI} -BUILD_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpicc:${PORTSDIR}/net/openmpi -RUN_DEPENDS+= ${LOCALBASE}/mpi/openmpi/bin/mpicc:${PORTSDIR}/net/openmpi -MPICC= ${LOCALBASE}/mpi/openmpi/bin/mpicc -.endif - post-patch: @${FIND} ${WRKSRC} -name "CMakeLists.txt" | ${XARGS} \ ${REINPLACE_CMD} -e \ 's|share/man|man| ; \ - s|-lpthread|-pthread| ; \ /pkgconfig/s|LIB_INSTALL_DIR}|CMAKE_INSTALL_PREFIX}/libdata|' @${FIND} ${WRKSRC} -name "GMXRC.*" | ${XARGS} ${REINPLACE_CMD} -e \ 's|LDLIB/pkgconfig|LDLIB/../libdata/pkgconfig| ; \ Modified: head/science/gromacs/distinfo ============================================================================== --- head/science/gromacs/distinfo Sat Aug 9 23:54:31 2014 (r364487) +++ head/science/gromacs/distinfo Sun Aug 10 00:03:09 2014 (r364488) @@ -1,2 +1,2 @@ -SHA256 (gromacs-4.6.5.tar.gz) = a7242f315963a111e87fd28795696b1e818ac97479788356c4f73a04e9cdef09 -SIZE (gromacs-4.6.5.tar.gz) = 10991576 +SHA256 (gromacs-5.0.tar.gz) = c2c9b5e75e014785641f39fbbde9829ce200f963344b35fa942f041a0dcfeb20 +SIZE (gromacs-5.0.tar.gz) = 26862408 Added: head/science/gromacs/files/patch-src__external__thread_mpi__src__atomic.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/gromacs/files/patch-src__external__thread_mpi__src__atomic.c Sun Aug 10 00:03:09 2014 (r364488) @@ -0,0 +1,17 @@ +--- src/external/thread_mpi/src/atomic.c.orig ++++ src/external/thread_mpi/src/atomic.c +@@ -35,6 +35,14 @@ + files. + */ + ++#ifdef HAVE_TMPI_CONFIG_H ++#include "tmpi_config.h" ++#endif ++ ++#ifdef HAVE_CONFIG_H ++#include "config.h" ++#endif ++ + #include "impl.h" + + /* This file is only needed when no intrinsic atomic operations are present. */ Modified: head/science/gromacs/pkg-descr ============================================================================== --- head/science/gromacs/pkg-descr Sat Aug 9 23:54:31 2014 (r364487) +++ head/science/gromacs/pkg-descr Sun Aug 10 00:03:09 2014 (r364488) @@ -1,5 +1,5 @@ -GROMACS is a versatile package to perform molecular dynamics, i.e. simulate -the Newtonian equations of motion for systems with hundreds to millions of -particles. +GROMACS is a versatile package to perform molecular dynamics, i.e. +simulate the Newtonian equations of motion for systems with hundreds to +millions of particles. WWW: http://www.gromacs.org Modified: head/science/gromacs/pkg-plist ============================================================================== --- head/science/gromacs/pkg-plist Sat Aug 9 23:54:31 2014 (r364487) +++ head/science/gromacs/pkg-plist Sun Aug 10 00:03:09 2014 (r364488) @@ -2,9 +2,6 @@ bin/GMXRC bin/GMXRC.bash bin/GMXRC.csh bin/GMXRC.zsh -bin/completion.bash -bin/completion.csh -bin/completion.zsh bin/demux.pl bin/do_dssp%%SUFFIX_MPI%%%%SUFFIX_D%% bin/editconf%%SUFFIX_MPI%%%%SUFFIX_D%% @@ -41,11 +38,8 @@ bin/g_hbond%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_helix%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_helixorient%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_hydorder%%SUFFIX_MPI%%%%SUFFIX_D%% -bin/g_kinetics%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_lie%%SUFFIX_MPI%%%%SUFFIX_D%% -bin/g_luck%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_mdmat%%SUFFIX_MPI%%%%SUFFIX_D%% -bin/g_membed%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_mindist%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_morph%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_msd%%SUFFIX_MPI%%%%SUFFIX_D%% @@ -69,6 +63,7 @@ bin/g_rotmat%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_saltbr%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_sans%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_sas%%SUFFIX_MPI%%%%SUFFIX_D%% +bin/g_saxs%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_select%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_sgangle%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_sham%%SUFFIX_MPI%%%%SUFFIX_D%% @@ -84,11 +79,13 @@ bin/g_velacc%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_wham%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_wheel%%SUFFIX_MPI%%%%SUFFIX_D%% bin/g_x2top%%SUFFIX_MPI%%%%SUFFIX_D%% -%%X11%%bin/g_xrama%%SUFFIX_MPI%%%%SUFFIX_D%% bin/genbox%%SUFFIX_MPI%%%%SUFFIX_D%% bin/genconf%%SUFFIX_MPI%%%%SUFFIX_D%% bin/genion%%SUFFIX_MPI%%%%SUFFIX_D%% bin/genrestr%%SUFFIX_MPI%%%%SUFFIX_D%% +bin/gmx%%SUFFIX_MPI%%%%SUFFIX_D%% +bin/gmx-completion-gmx%%SUFFIX_MPI%%%%SUFFIX_D%%.bash +bin/gmx-completion.bash bin/gmxcheck%%SUFFIX_MPI%%%%SUFFIX_D%% bin/gmxdump%%SUFFIX_MPI%%%%SUFFIX_D%% bin/grompp%%SUFFIX_MPI%%%%SUFFIX_D%% @@ -96,7 +93,6 @@ bin/make_edi%%SUFFIX_MPI%%%%SUFFIX_D%% bin/make_ndx%%SUFFIX_MPI%%%%SUFFIX_D%% bin/mdrun%%SUFFIX_MPI%%%%SUFFIX_D%% bin/mk_angndx%%SUFFIX_MPI%%%%SUFFIX_D%% -%%X11%%bin/ngmx%%SUFFIX_MPI%%%%SUFFIX_D%% bin/pdb2gmx%%SUFFIX_MPI%%%%SUFFIX_D%% bin/tpbconv%%SUFFIX_MPI%%%%SUFFIX_D%% bin/trjcat%%SUFFIX_MPI%%%%SUFFIX_D%% @@ -104,360 +100,301 @@ bin/trjconv%%SUFFIX_MPI%%%%SUFFIX_D%% bin/trjorder%%SUFFIX_MPI%%%%SUFFIX_D%% bin/xplor2gmx.pl bin/xpm2ps%%SUFFIX_MPI%%%%SUFFIX_D%% -include/gromacs/3dview.h -include/gromacs/CTestTestfile.cmake -include/gromacs/assert.h -include/gromacs/atomprop.h -include/gromacs/bondf.h -include/gromacs/calcgrid.h -include/gromacs/calch.h -include/gromacs/calcmu.h -include/gromacs/centerofmass.h -include/gromacs/chargegroup.h -include/gromacs/checkpoint.h -include/gromacs/confio.h -include/gromacs/constr.h -include/gromacs/copyrite.h -include/gromacs/coulomb.h -include/gromacs/displacement.h -include/gromacs/disre.h -include/gromacs/do_fit.h -include/gromacs/domdec.h -include/gromacs/domdec_network.h -include/gromacs/ebin.h -include/gromacs/edsam.h -include/gromacs/enxio.h -include/gromacs/ffscanf.h -include/gromacs/filenm.h -include/gromacs/force.h -include/gromacs/futil.h -include/gromacs/gbutil.h -include/gromacs/gen_ad.h -include/gromacs/genborn.h -include/gromacs/gmx_ana.h -include/gromacs/gmx_avx_double.h -include/gromacs/gmx_avx_single.h -include/gromacs/gmx_cpuid.h -include/gromacs/gmx_cyclecounter.h -include/gromacs/gmx_detect_hardware.h -include/gromacs/gmx_fatal.h -include/gromacs/gmx_fatal_collective.h -include/gromacs/gmx_fft.h -include/gromacs/gmx_ga2la.h -include/gromacs/gmx_hash.h -include/gromacs/gmx_header_config.h -include/gromacs/gmx_math_x86_avx_128_fma_double.h -include/gromacs/gmx_math_x86_avx_128_fma_single.h -include/gromacs/gmx_math_x86_avx_256_double.h -include/gromacs/gmx_math_x86_avx_256_single.h -include/gromacs/gmx_math_x86_sse2_double.h -include/gromacs/gmx_math_x86_sse2_single.h -include/gromacs/gmx_math_x86_sse4_1_double.h -include/gromacs/gmx_math_x86_sse4_1_single.h -include/gromacs/gmx_matrix.h -include/gromacs/gmx_omp.h -include/gromacs/gmx_omp_nthreads.h -include/gromacs/gmx_parallel_3dfft.h -include/gromacs/gmx_random.h -include/gromacs/gmx_simd4_macros.h -include/gromacs/gmx_simd4_ref.h -include/gromacs/gmx_simd_macros.h -include/gromacs/gmx_simd_math_double.h -include/gromacs/gmx_simd_math_single.h -include/gromacs/gmx_simd_ref.h -include/gromacs/gmx_simd_vec.h -include/gromacs/gmx_sort.h -include/gromacs/gmx_statistics.h -include/gromacs/gmx_system_xdr.h -include/gromacs/gmx_thread_affinity.h -include/gromacs/gmx_wallcycle.h -include/gromacs/gmx_x86_avx_128_fma.h -include/gromacs/gmx_x86_avx_256.h -include/gromacs/gmx_x86_sse2.h -include/gromacs/gmx_x86_sse4_1.h -include/gromacs/gmxcomplex.h -include/gromacs/gmxcpp.h -include/gromacs/gmxfio.h -include/gromacs/gpp_atomtype.h -include/gromacs/gpp_nextnb.h -include/gromacs/gpu_utils.h -include/gromacs/grompp.h -include/gromacs/gstat.h -include/gromacs/hackblock.h -include/gromacs/histogram.h -include/gromacs/index.h -include/gromacs/indexutil.h -include/gromacs/inputrec.h -include/gromacs/invblock.h -include/gromacs/macros.h -include/gromacs/main.h -include/gromacs/mainpage.h -include/gromacs/maths.h -include/gromacs/matio.h -include/gromacs/md5.h -include/gromacs/md_logging.h -include/gromacs/md_support.h -include/gromacs/mdatoms.h -include/gromacs/mdebin.h -include/gromacs/mdrun.h -include/gromacs/mpelogging.h -include/gromacs/mshift.h -include/gromacs/mtop_util.h -include/gromacs/mtxio.h -include/gromacs/mvdata.h -include/gromacs/names.h -include/gromacs/nbnxn_cuda_data_mgmt.h -include/gromacs/nbsearch.h -include/gromacs/network.h -include/gromacs/nonbonded.h -include/gromacs/nrama.h -include/gromacs/nrjac.h -include/gromacs/nrnb.h -include/gromacs/ns.h -include/gromacs/nsgrid.h -include/gromacs/oenv.h -include/gromacs/orires.h -include/gromacs/partdec.h -include/gromacs/pbc.h -include/gromacs/pdb2top.h -include/gromacs/pdbio.h -include/gromacs/perf_est.h -include/gromacs/physics.h -include/gromacs/pmalloc_cuda.h -include/gromacs/pme.h -include/gromacs/poscalc.h -include/gromacs/position.h -include/gromacs/princ.h -include/gromacs/pull.h -include/gromacs/pull_rotation.h -include/gromacs/qmmm.h -include/gromacs/random.h -include/gromacs/rbin.h -include/gromacs/readinp.h -include/gromacs/resall.h -include/gromacs/rmpbc.h +include/gromacs/analysisdata.h +include/gromacs/analysisdata/abstractdata.h +include/gromacs/analysisdata/analysisdata.h +include/gromacs/analysisdata/arraydata.h +include/gromacs/analysisdata/dataframe.h +include/gromacs/analysisdata/datamodule.h +include/gromacs/analysisdata/modules/average.h +include/gromacs/analysisdata/modules/displacement.h +include/gromacs/analysisdata/modules/histogram.h +include/gromacs/analysisdata/modules/lifetime.h +include/gromacs/analysisdata/modules/plot.h +include/gromacs/commandline.h +include/gromacs/commandline/cmdlinehelpwriter.h +include/gromacs/commandline/cmdlineinit.h +include/gromacs/commandline/cmdlinemodule.h +include/gromacs/commandline/cmdlineparser.h +include/gromacs/commandline/cmdlineprogramcontext.h +include/gromacs/commandline/pargs.h +include/gromacs/fft/fft.h +include/gromacs/fileio/confio.h +include/gromacs/fileio/enxio.h +include/gromacs/fileio/filenm.h +include/gromacs/fileio/futil.h +include/gromacs/fileio/gmxfio.h +include/gromacs/fileio/matio.h +include/gromacs/fileio/mdoutf.h +include/gromacs/fileio/pdbio.h +include/gromacs/fileio/tpxio.h +include/gromacs/fileio/trajectory_writing.h +include/gromacs/fileio/trnio.h +include/gromacs/fileio/trx.h +include/gromacs/fileio/trxio.h +include/gromacs/fileio/xdr_datatype.h +include/gromacs/fileio/xtcio.h +include/gromacs/gmxana/gstat.h +include/gromacs/legacyheaders/atomprop.h +include/gromacs/legacyheaders/bondf.h +include/gromacs/legacyheaders/calcgrid.h +include/gromacs/legacyheaders/calch.h +include/gromacs/legacyheaders/calcmu.h +include/gromacs/legacyheaders/chargegroup.h +include/gromacs/legacyheaders/checkpoint.h +include/gromacs/legacyheaders/constr.h +include/gromacs/legacyheaders/copyrite.h +include/gromacs/legacyheaders/coulomb.h +include/gromacs/legacyheaders/disre.h +include/gromacs/legacyheaders/domdec.h +include/gromacs/legacyheaders/domdec_network.h +include/gromacs/legacyheaders/ebin.h +include/gromacs/legacyheaders/force.h +include/gromacs/legacyheaders/genborn.h +include/gromacs/legacyheaders/gmx_cpuid.h +include/gromacs/legacyheaders/gmx_detect_hardware.h +include/gromacs/legacyheaders/gmx_fatal.h +include/gromacs/legacyheaders/gmx_fatal_collective.h +include/gromacs/legacyheaders/gmx_omp_nthreads.h +include/gromacs/legacyheaders/gmx_thread_affinity.h +include/gromacs/legacyheaders/index.h +include/gromacs/legacyheaders/inputrec.h +include/gromacs/legacyheaders/invblock.h +include/gromacs/legacyheaders/macros.h +include/gromacs/legacyheaders/main.h +include/gromacs/legacyheaders/md_logging.h +include/gromacs/legacyheaders/md_support.h +include/gromacs/legacyheaders/mdatoms.h +include/gromacs/legacyheaders/mdebin.h +include/gromacs/legacyheaders/mdrun.h +include/gromacs/legacyheaders/mshift.h +include/gromacs/legacyheaders/mtop_util.h +include/gromacs/legacyheaders/mvdata.h +include/gromacs/legacyheaders/names.h +include/gromacs/legacyheaders/network.h +include/gromacs/legacyheaders/nonbonded.h +include/gromacs/legacyheaders/nrnb.h +include/gromacs/legacyheaders/ns.h +include/gromacs/legacyheaders/nsgrid.h +include/gromacs/legacyheaders/oenv.h +include/gromacs/legacyheaders/orires.h +include/gromacs/legacyheaders/pbc.h +include/gromacs/legacyheaders/perf_est.h +include/gromacs/legacyheaders/physics.h +include/gromacs/legacyheaders/pme.h +include/gromacs/legacyheaders/princ.h +include/gromacs/legacyheaders/qmmm.h +include/gromacs/legacyheaders/rbin.h +include/gromacs/legacyheaders/readinp.h +include/gromacs/legacyheaders/rmpbc.h +include/gromacs/legacyheaders/sfactor.h +include/gromacs/legacyheaders/shellfc.h +include/gromacs/legacyheaders/shift.h +include/gromacs/legacyheaders/sighandler.h +include/gromacs/legacyheaders/sim_util.h +include/gromacs/legacyheaders/splitter.h +include/gromacs/legacyheaders/symtab.h +include/gromacs/legacyheaders/sysstuff.h +include/gromacs/legacyheaders/tables.h +include/gromacs/legacyheaders/tgroup.h +include/gromacs/legacyheaders/txtdump.h +include/gromacs/legacyheaders/typedefs.h +include/gromacs/legacyheaders/types/atoms.h +include/gromacs/legacyheaders/types/block.h +include/gromacs/legacyheaders/types/constr.h +include/gromacs/legacyheaders/types/energy.h +include/gromacs/legacyheaders/types/enums.h +include/gromacs/legacyheaders/types/fcdata.h +include/gromacs/legacyheaders/types/force_flags.h +include/gromacs/legacyheaders/types/forcerec.h +include/gromacs/legacyheaders/types/genborn.h +include/gromacs/legacyheaders/types/globsig.h +include/gromacs/legacyheaders/types/graph.h +include/gromacs/legacyheaders/types/group.h +include/gromacs/legacyheaders/types/hw_info.h +include/gromacs/legacyheaders/types/idef.h +include/gromacs/legacyheaders/types/ifunc.h +include/gromacs/legacyheaders/types/inputrec.h +include/gromacs/legacyheaders/types/interaction_const.h +include/gromacs/legacyheaders/types/ishift.h +include/gromacs/legacyheaders/types/iteratedconstraints.h +include/gromacs/legacyheaders/types/matrix.h +include/gromacs/legacyheaders/types/mdatom.h +include/gromacs/legacyheaders/types/membedt.h +include/gromacs/legacyheaders/types/nb_verlet.h +include/gromacs/legacyheaders/types/nblist.h +include/gromacs/legacyheaders/types/nbnxn_cuda_types_ext.h +include/gromacs/legacyheaders/types/nbnxn_pairlist.h +include/gromacs/legacyheaders/types/nlistheuristics.h +include/gromacs/legacyheaders/types/nrnb.h +include/gromacs/legacyheaders/types/ns.h +include/gromacs/legacyheaders/types/nsgrid.h +include/gromacs/legacyheaders/types/oenv.h +include/gromacs/legacyheaders/types/pbc.h +include/gromacs/legacyheaders/types/qmmmrec.h +include/gromacs/legacyheaders/types/shellfc.h +include/gromacs/legacyheaders/types/simple.h +include/gromacs/legacyheaders/types/state.h +include/gromacs/legacyheaders/types/symtab.h +include/gromacs/legacyheaders/types/topology.h +include/gromacs/legacyheaders/update.h +include/gromacs/legacyheaders/vcm.h +include/gromacs/legacyheaders/vec.h +include/gromacs/legacyheaders/viewit.h +include/gromacs/legacyheaders/vsite.h +include/gromacs/legacyheaders/warninp.h +include/gromacs/legacyheaders/xvgr.h +include/gromacs/linearalgebra/eigensolver.h +include/gromacs/linearalgebra/matrix.h +include/gromacs/linearalgebra/mtxio.h +include/gromacs/linearalgebra/sparsematrix.h +include/gromacs/math/3dview.h +include/gromacs/math/do_fit.h +include/gromacs/math/gmxcomplex.h +include/gromacs/math/utilities.h +include/gromacs/onlinehelp.h +include/gromacs/onlinehelp/helptopicinterface.h +include/gromacs/options.h +include/gromacs/options/abstractoption.h +include/gromacs/options/basicoptions.h +include/gromacs/options/filenameoption.h +include/gromacs/options/optionfiletype.h +include/gromacs/options/optionflags.h +include/gromacs/options/options.h +include/gromacs/options/timeunitmanager.h include/gromacs/selection.h -include/gromacs/selmethod.h -include/gromacs/selparam.h -include/gromacs/selvalue.h -include/gromacs/sfactor.h -include/gromacs/shellfc.h -include/gromacs/shift.h -include/gromacs/sighandler.h -include/gromacs/sim_util.h -include/gromacs/smalloc.h -include/gromacs/sortwater.h -include/gromacs/sparsematrix.h -include/gromacs/split.h -include/gromacs/splitter.h -include/gromacs/statutil.h -include/gromacs/strdb.h -include/gromacs/string2.h -include/gromacs/symtab.h -include/gromacs/sysstuff.h -include/gromacs/tables.h -include/gromacs/tgroup.h -include/gromacs/thread_mpi.h -include/gromacs/thread_mpi/atomic.h -include/gromacs/thread_mpi/atomic/cycles.h -include/gromacs/thread_mpi/atomic/derived.h -include/gromacs/thread_mpi/atomic/fujitsu_sparc64.h -include/gromacs/thread_mpi/atomic/gcc.h -include/gromacs/thread_mpi/atomic/gcc_ia64.h -include/gromacs/thread_mpi/atomic/gcc_intrinsics.h -include/gromacs/thread_mpi/atomic/gcc_ppc.h -include/gromacs/thread_mpi/atomic/gcc_spinlock.h -include/gromacs/thread_mpi/atomic/gcc_x86.h -include/gromacs/thread_mpi/atomic/msvc.h -include/gromacs/thread_mpi/atomic/suncc-sparc.h -include/gromacs/thread_mpi/atomic/xlc_ppc.h -include/gromacs/thread_mpi/barrier.h -include/gromacs/thread_mpi/collective.h -include/gromacs/thread_mpi/event.h -include/gromacs/thread_mpi/hwinfo.h -include/gromacs/thread_mpi/list.h -include/gromacs/thread_mpi/lock.h -include/gromacs/thread_mpi/mpi_bindings.h -include/gromacs/thread_mpi/mutex.h -include/gromacs/thread_mpi/numa_malloc.h -include/gromacs/thread_mpi/system_error.h -include/gromacs/thread_mpi/threads.h -include/gromacs/thread_mpi/tmpi.h -include/gromacs/thread_mpi/visibility.h -include/gromacs/thread_mpi/wait.h -include/gromacs/tmpi.h -include/gromacs/topsort.h -include/gromacs/toputil.h -include/gromacs/tpxio.h -include/gromacs/trajana.h -include/gromacs/trnio.h -include/gromacs/txtdump.h -include/gromacs/typedefs.h -include/gromacs/types/atoms.h -include/gromacs/types/block.h -include/gromacs/types/commrec.h -include/gromacs/types/constr.h -include/gromacs/types/energy.h -include/gromacs/types/enums.h -include/gromacs/types/fcdata.h -include/gromacs/types/filenm.h -include/gromacs/types/force_flags.h -include/gromacs/types/forcerec.h -include/gromacs/types/genborn.h -include/gromacs/types/globsig.h -include/gromacs/types/graph.h -include/gromacs/types/group.h -include/gromacs/types/hw_info.h -include/gromacs/types/idef.h -include/gromacs/types/ifunc.h -include/gromacs/types/inputrec.h -include/gromacs/types/interaction_const.h -include/gromacs/types/ishift.h -include/gromacs/types/iteratedconstraints.h -include/gromacs/types/matrix.h -include/gromacs/types/mdatom.h -include/gromacs/types/membedt.h -include/gromacs/types/nb_verlet.h -include/gromacs/types/nblist.h -include/gromacs/types/nbnxn_cuda_types_ext.h -include/gromacs/types/nbnxn_pairlist.h -include/gromacs/types/nlistheuristics.h -include/gromacs/types/nrnb.h -include/gromacs/types/ns.h -include/gromacs/types/nsgrid.h -include/gromacs/types/oenv.h -include/gromacs/types/pbc.h -include/gromacs/types/qmmmrec.h -include/gromacs/types/shellfc.h -include/gromacs/types/simple.h -include/gromacs/types/state.h -include/gromacs/types/symtab.h -include/gromacs/types/topology.h -include/gromacs/types/trx.h -include/gromacs/update.h -include/gromacs/vcm.h -include/gromacs/vec.h +include/gromacs/selection/indexutil.h +include/gromacs/selection/nbsearch.h +include/gromacs/selection/position.h +include/gromacs/selection/selection.h +include/gromacs/selection/selectioncollection.h +include/gromacs/selection/selectionenums.h +include/gromacs/selection/selectionoption.h +include/gromacs/selection/selectionoptionmanager.h +include/gromacs/swap/enums.h +include/gromacs/timing/walltime_accounting.h +include/gromacs/trajectoryanalysis.h +include/gromacs/trajectoryanalysis/analysismodule.h +include/gromacs/trajectoryanalysis/analysissettings.h +include/gromacs/trajectoryanalysis/cmdlinerunner.h +include/gromacs/utility.h +include/gromacs/utility/arrayref.h +include/gromacs/utility/common.h +include/gromacs/utility/cstringutil.h +include/gromacs/utility/errorcodes.h +include/gromacs/utility/exceptions.h +include/gromacs/utility/file.h +include/gromacs/utility/flags.h +include/gromacs/utility/gmx_header_config.h +include/gromacs/utility/gmx_header_config_gen.h +include/gromacs/utility/gmxassert.h +include/gromacs/utility/init.h +include/gromacs/utility/programcontext.h +include/gromacs/utility/smalloc.h +include/gromacs/utility/stringutil.h +include/gromacs/utility/uniqueptr.h include/gromacs/version.h -include/gromacs/viewit.h -include/gromacs/visibility.h -include/gromacs/vsite.h -include/gromacs/warninp.h -include/gromacs/wgms.h -include/gromacs/wman.h -include/gromacs/writeps.h -include/gromacs/xdrf.h -include/gromacs/xtcio.h -include/gromacs/xvgr.h -lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.so -lib/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8 -lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.so -lib/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8 -lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.so -lib/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8 -lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.so -lib/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.so.8 -libdata/pkgconfig/libgmx%%SUFFIX_MPI%%%%SUFFIX_D%%.pc -libdata/pkgconfig/libgmxana%%SUFFIX_MPI%%%%SUFFIX_D%%.pc -libdata/pkgconfig/libgmxpreprocess%%SUFFIX_MPI%%%%SUFFIX_D%%.pc -libdata/pkgconfig/libmd%%SUFFIX_MPI%%%%SUFFIX_D%%.pc -man/man1/do_dssp.1.gz -man/man1/editconf.1.gz -man/man1/eneconv.1.gz -man/man1/g_anadock.1.gz -man/man1/g_anaeig.1.gz -man/man1/g_analyze.1.gz -man/man1/g_angle.1.gz -man/man1/g_bar.1.gz -man/man1/g_bond.1.gz -man/man1/g_bundle.1.gz -man/man1/g_chi.1.gz -man/man1/g_cluster.1.gz -man/man1/g_clustsize.1.gz -man/man1/g_confrms.1.gz -man/man1/g_covar.1.gz -man/man1/g_current.1.gz -man/man1/g_density.1.gz -man/man1/g_densmap.1.gz -man/man1/g_densorder.1.gz -man/man1/g_dielectric.1.gz -man/man1/g_dipoles.1.gz -man/man1/g_disre.1.gz -man/man1/g_dist.1.gz -man/man1/g_dos.1.gz -man/man1/g_dyecoupl.1.gz -man/man1/g_dyndom.1.gz -man/man1/g_enemat.1.gz -man/man1/g_energy.1.gz -man/man1/g_filter.1.gz -man/man1/g_gyrate.1.gz -man/man1/g_h2order.1.gz -man/man1/g_hbond.1.gz -man/man1/g_helix.1.gz -man/man1/g_helixorient.1.gz -man/man1/g_hydorder.1.gz -man/man1/g_kinetics.1.gz -man/man1/g_lie.1.gz -man/man1/g_mdmat.1.gz -man/man1/g_membed.1.gz -man/man1/g_mindist.1.gz -man/man1/g_morph.1.gz -man/man1/g_msd.1.gz -man/man1/g_nmeig.1.gz -man/man1/g_nmens.1.gz -man/man1/g_nmtraj.1.gz -man/man1/g_order.1.gz -man/man1/g_pme_error.1.gz -man/man1/g_polystat.1.gz -man/man1/g_potential.1.gz -man/man1/g_principal.1.gz -man/man1/g_protonate.1.gz -man/man1/g_rama.1.gz -man/man1/g_rdf.1.gz -man/man1/g_rms.1.gz -man/man1/g_rmsdist.1.gz -man/man1/g_rmsf.1.gz -man/man1/g_rotacf.1.gz -man/man1/g_rotmat.1.gz -man/man1/g_saltbr.1.gz -man/man1/g_sans.1.gz -man/man1/g_sas.1.gz -man/man1/g_select.1.gz -man/man1/g_sgangle.1.gz -man/man1/g_sham.1.gz -man/man1/g_sigeps.1.gz -man/man1/g_sorient.1.gz -man/man1/g_spatial.1.gz -man/man1/g_spol.1.gz -man/man1/g_tcaf.1.gz -man/man1/g_traj.1.gz -man/man1/g_tune_pme.1.gz -man/man1/g_vanhove.1.gz -man/man1/g_velacc.1.gz -man/man1/g_wham.1.gz -man/man1/g_wheel.1.gz -man/man1/g_x2top.1.gz -%%X11%%man/man1/g_xrama.1.gz -man/man1/genbox.1.gz -man/man1/genconf.1.gz -man/man1/genion.1.gz -man/man1/genrestr.1.gz -man/man1/gmxcheck.1.gz -man/man1/gmxdump.1.gz -man/man1/grompp.1.gz -man/man1/make_edi.1.gz -man/man1/make_ndx.1.gz -man/man1/mdrun.1.gz -man/man1/mk_angndx.1.gz -%%X11%%man/man1/ngmx.1.gz -man/man1/pdb2gmx.1.gz -man/man1/tpbconv.1.gz -man/man1/trjcat.1.gz -man/man1/trjconv.1.gz -man/man1/trjorder.1.gz -man/man1/xpm2ps.1.gz +lib/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.so +lib/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.so.0 +lib/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.so.0.0.0 +libdata/pkgconfig/libgromacs%%SUFFIX_MPI%%%%SUFFIX_D%%.pc +man/man1/gmx-anadock.1.gz +man/man1/gmx-anaeig.1.gz +man/man1/gmx-analyze.1.gz +man/man1/gmx-angle.1.gz +man/man1/gmx-bar.1.gz +man/man1/gmx-bundle.1.gz +man/man1/gmx-check.1.gz +man/man1/gmx-chi.1.gz +man/man1/gmx-cluster.1.gz +man/man1/gmx-clustsize.1.gz +man/man1/gmx-confrms.1.gz +man/man1/gmx-convert-tpr.1.gz +man/man1/gmx-covar.1.gz +man/man1/gmx-current.1.gz +man/man1/gmx-density.1.gz +man/man1/gmx-densmap.1.gz +man/man1/gmx-densorder.1.gz +man/man1/gmx-dielectric.1.gz +man/man1/gmx-dipoles.1.gz +man/man1/gmx-disre.1.gz +man/man1/gmx-distance.1.gz +man/man1/gmx-do_dssp.1.gz +man/man1/gmx-dos.1.gz +man/man1/gmx-dump.1.gz +man/man1/gmx-dyecoupl.1.gz +man/man1/gmx-dyndom.1.gz +man/man1/gmx-editconf.1.gz +man/man1/gmx-eneconv.1.gz +man/man1/gmx-enemat.1.gz +man/man1/gmx-energy.1.gz +man/man1/gmx-filter.1.gz +man/man1/gmx-freevolume.1.gz +man/man1/gmx-gangle.1.gz +man/man1/gmx-genconf.1.gz +man/man1/gmx-genion.1.gz +man/man1/gmx-genrestr.1.gz +man/man1/gmx-grompp.1.gz +man/man1/gmx-gyrate.1.gz +man/man1/gmx-h2order.1.gz +man/man1/gmx-hbond.1.gz +man/man1/gmx-helix.1.gz +man/man1/gmx-helixorient.1.gz +man/man1/gmx-help.1.gz +man/man1/gmx-hydorder.1.gz +man/man1/gmx-insert-molecules.1.gz +man/man1/gmx-lie.1.gz +man/man1/gmx-make_edi.1.gz +man/man1/gmx-make_ndx.1.gz +man/man1/gmx-mdmat.1.gz +man/man1/gmx-mdrun.1.gz +man/man1/gmx-mindist.1.gz +man/man1/gmx-mk_angndx.1.gz +man/man1/gmx-morph.1.gz +man/man1/gmx-msd.1.gz +man/man1/gmx-nmeig.1.gz +man/man1/gmx-nmens.1.gz +man/man1/gmx-nmtraj.1.gz +man/man1/gmx-order.1.gz +man/man1/gmx-pdb2gmx.1.gz +man/man1/gmx-pme_error.1.gz +man/man1/gmx-polystat.1.gz +man/man1/gmx-potential.1.gz +man/man1/gmx-principal.1.gz +man/man1/gmx-protonate.1.gz +man/man1/gmx-rama.1.gz +man/man1/gmx-rdf.1.gz +man/man1/gmx-rms.1.gz +man/man1/gmx-rmsdist.1.gz +man/man1/gmx-rmsf.1.gz +man/man1/gmx-rotacf.1.gz +man/man1/gmx-rotmat.1.gz +man/man1/gmx-saltbr.1.gz +man/man1/gmx-sans.1.gz +man/man1/gmx-sasa.1.gz +man/man1/gmx-saxs.1.gz +man/man1/gmx-select.1.gz +man/man1/gmx-sham.1.gz +man/man1/gmx-sigeps.1.gz +man/man1/gmx-solvate.1.gz +man/man1/gmx-sorient.1.gz +man/man1/gmx-spatial.1.gz +man/man1/gmx-spol.1.gz +man/man1/gmx-tcaf.1.gz +man/man1/gmx-traj.1.gz +man/man1/gmx-trjcat.1.gz +man/man1/gmx-trjconv.1.gz +man/man1/gmx-trjorder.1.gz +man/man1/gmx-tune_pme.1.gz +man/man1/gmx-vanhove.1.gz +man/man1/gmx-velacc.1.gz +man/man1/gmx-view.1.gz +man/man1/gmx-wham.1.gz +man/man1/gmx-wheel.1.gz +man/man1/gmx-x2top.1.gz +man/man1/gmx-xpm2ps.1.gz man/man7/gromacs.7.gz %%DATADIR%%/COPYING -%%DATADIR%%/CTestTestfile.cmake %%DATADIR%%/README.tutor %%DATADIR%%/README_FreeEnergyModifications.txt %%DATADIR%%/html/images/1ctf-0.2.jpg @@ -487,7 +424,6 @@ man/man7/gromacs.7.gz %%DATADIR%%/html/images/flow_vline.gif %%DATADIR%%/html/images/flow_vrule.gif %%DATADIR%%/html/images/gmxlogo_small.jpg -%%DATADIR%%/html/images/gmxlogo_small.png %%DATADIR%%/html/images/links.gif %%DATADIR%%/html/images/mail.gif %%DATADIR%%/html/images/manual.gif @@ -496,161 +432,147 @@ man/man7/gromacs.7.gz %%DATADIR%%/html/images/software.gif %%DATADIR%%/html/images/topologies.gif %%DATADIR%%/html/images/xvgr.gif -%%DATADIR%%/html/online/ADD_INCLUDE +%%DATADIR%%/html/online.html %%DATADIR%%/html/online/cpt.html %%DATADIR%%/html/online/dat.html %%DATADIR%%/html/online/dlg.html -%%DATADIR%%/html/online/do_dssp.html %%DATADIR%%/html/online/edi.html -%%DATADIR%%/html/online/editconf.html %%DATADIR%%/html/online/edo.html %%DATADIR%%/html/online/edr.html %%DATADIR%%/html/online/ene.html -%%DATADIR%%/html/online/eneconv.html %%DATADIR%%/html/online/eps.html %%DATADIR%%/html/online/files.html %%DATADIR%%/html/online/flow.html -%%DATADIR%%/html/online/g87.html %%DATADIR%%/html/online/g96.html -%%DATADIR%%/html/online/g_anadock.html -%%DATADIR%%/html/online/g_anaeig.html -%%DATADIR%%/html/online/g_analyze.html -%%DATADIR%%/html/online/g_angle.html -%%DATADIR%%/html/online/g_bar.html -%%DATADIR%%/html/online/g_bond.html -%%DATADIR%%/html/online/g_bundle.html -%%DATADIR%%/html/online/g_chi.html -%%DATADIR%%/html/online/g_cluster.html -%%DATADIR%%/html/online/g_clustsize.html -%%DATADIR%%/html/online/g_confrms.html -%%DATADIR%%/html/online/g_covar.html -%%DATADIR%%/html/online/g_current.html -%%DATADIR%%/html/online/g_density.html -%%DATADIR%%/html/online/g_densmap.html -%%DATADIR%%/html/online/g_densorder.html -%%DATADIR%%/html/online/g_dielectric.html -%%DATADIR%%/html/online/g_dipoles.html -%%DATADIR%%/html/online/g_disre.html -%%DATADIR%%/html/online/g_dist.html -%%DATADIR%%/html/online/g_dos.html -%%DATADIR%%/html/online/g_dyecoupl.html -%%DATADIR%%/html/online/g_dyndom.html -%%DATADIR%%/html/online/g_enemat.html -%%DATADIR%%/html/online/g_energy.html -%%DATADIR%%/html/online/g_filter.html -%%DATADIR%%/html/online/g_gyrate.html -%%DATADIR%%/html/online/g_h2order.html -%%DATADIR%%/html/online/g_hbond.html -%%DATADIR%%/html/online/g_helix.html -%%DATADIR%%/html/online/g_helixorient.html -%%DATADIR%%/html/online/g_hydorder.html -%%DATADIR%%/html/online/g_kinetics.html -%%DATADIR%%/html/online/g_lie.html -%%DATADIR%%/html/online/g_mdmat.html -%%DATADIR%%/html/online/g_membed.html -%%DATADIR%%/html/online/g_mindist.html -%%DATADIR%%/html/online/g_morph.html -%%DATADIR%%/html/online/g_msd.html -%%DATADIR%%/html/online/g_nmeig.html -%%DATADIR%%/html/online/g_nmens.html -%%DATADIR%%/html/online/g_nmtraj.html -%%DATADIR%%/html/online/g_options.html -%%DATADIR%%/html/online/g_order.html -%%DATADIR%%/html/online/g_pme_error.html -%%DATADIR%%/html/online/g_polystat.html -%%DATADIR%%/html/online/g_potential.html -%%DATADIR%%/html/online/g_principal.html -%%DATADIR%%/html/online/g_protonate.html -%%DATADIR%%/html/online/g_rama.html -%%DATADIR%%/html/online/g_rdf.html -%%DATADIR%%/html/online/g_rms.html -%%DATADIR%%/html/online/g_rmsdist.html -%%DATADIR%%/html/online/g_rmsf.html -%%DATADIR%%/html/online/g_rotacf.html -%%DATADIR%%/html/online/g_rotmat.html -%%DATADIR%%/html/online/g_saltbr.html -%%DATADIR%%/html/online/g_sans.html -%%DATADIR%%/html/online/g_sas.html -%%DATADIR%%/html/online/g_select.html -%%DATADIR%%/html/online/g_sgangle.html -%%DATADIR%%/html/online/g_sham.html -%%DATADIR%%/html/online/g_sigeps.html -%%DATADIR%%/html/online/g_sorient.html -%%DATADIR%%/html/online/g_spatial.html -%%DATADIR%%/html/online/g_spol.html -%%DATADIR%%/html/online/g_tcaf.html -%%DATADIR%%/html/online/g_traj.html -%%DATADIR%%/html/online/g_tune_pme.html -%%DATADIR%%/html/online/g_vanhove.html -%%DATADIR%%/html/online/g_velacc.html -%%DATADIR%%/html/online/g_wham.html -%%DATADIR%%/html/online/g_wheel.html -%%DATADIR%%/html/online/g_x2top.html -%%DATADIR%%/html/online/g_xrama.html -%%DATADIR%%/html/online/genbox.html -%%DATADIR%%/html/online/genconf.html -%%DATADIR%%/html/online/genion.html -%%DATADIR%%/html/online/genpr.html -%%DATADIR%%/html/online/genrestr.html %%DATADIR%%/html/online/getting_started.html -%%DATADIR%%/html/online/gmxcheck.html -%%DATADIR%%/html/online/gmxdemo.html -%%DATADIR%%/html/online/gmxdump.html %%DATADIR%%/html/online/gro.html -%%DATADIR%%/html/online/grompp.html -%%DATADIR%%/html/online/hat.html -%%DATADIR%%/html/online/highway.html -%%DATADIR%%/html/online/include_bot.html -%%DATADIR%%/html/online/include_top.html %%DATADIR%%/html/online/itp.html %%DATADIR%%/html/online/log.html %%DATADIR%%/html/online/m2p.html -%%DATADIR%%/html/online/make_edi.html *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 00:12:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A8093C0 for ; Sun, 10 Aug 2014 00:12:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 52CB12A47 for ; Sun, 10 Aug 2014 00:12:36 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2184 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 00:12:35 +0000 From: John Marino Date: Sun, 10 Aug 2014 00:12:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364489 - head/net/svnup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6b8f4.2184.57edbc81@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 00:12:36 -0000 Author: marino Date: Sun Aug 10 00:12:35 2014 New Revision: 364489 URL: http://svnweb.freebsd.org/changeset/ports/364489 QAT: https://qat.redports.org/buildarchive/r364489/ Log: net/svnup: Use @sample keyword in pkg-plist PR: 192078 Submitted by: takefu (airport.fm) Approved by: maintainer timeout (2 weeks) Modified: head/net/svnup/Makefile head/net/svnup/pkg-plist Modified: head/net/svnup/Makefile ============================================================================== --- head/net/svnup/Makefile Sun Aug 10 00:03:09 2014 (r364488) +++ head/net/svnup/Makefile Sun Aug 10 00:12:35 2014 (r364489) @@ -9,12 +9,13 @@ MASTER_SITES= http://jcm.dsl.visi.com/fr MAINTAINER= jcm@visi.com COMMENT= Lightweight program to pull source from an Apache Subversion server -OPTIONS_DEFINE= DOCS - LICENSE= BSD2CLAUSE +OPTIONS_DEFINE= DOCS + LDFLAGS+= -lmd -lssl USES= tar:xz + PORTDOCS= ChangeLog post-patch: Modified: head/net/svnup/pkg-plist ============================================================================== --- head/net/svnup/pkg-plist Sun Aug 10 00:03:09 2014 (r364488) +++ head/net/svnup/pkg-plist Sun Aug 10 00:12:35 2014 (r364489) @@ -1,6 +1,4 @@ bin/svnup man/man1/svnup.1.gz man/man5/svnup.conf.5.gz -@unexec if cmp -s %D/etc/svnup.conf.sample %D/etc/svnup.conf; then rm -f %D/etc/svnup.conf; else echo "If permanently removing this package, then please consider removing %D/etc/svnup.conf" ;fi -etc/svnup.conf.sample -@exec if [ ! -f %D/etc/svnup.conf ] ; then cp -p %D/etc/svnup.conf.sample %D/etc/svnup.conf; fi +@sample etc/svnup.conf.sample From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 00:14:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E42134E0; Sun, 10 Aug 2014 00:14:36 +0000 (UTC) Received: from mail-wi0-x22b.google.com (mail-wi0-x22b.google.com [IPv6:2a00:1450:400c:c05::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0E93A2A64; Sun, 10 Aug 2014 00:14:35 +0000 (UTC) Received: by mail-wi0-f171.google.com with SMTP id hi2so2642080wib.10 for ; Sat, 09 Aug 2014 17:14:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=9C2+w7Fof/6yTlSIygss8HVfn3nsg/aVpfdAqrG3xYE=; b=MGJxrr7KTeHGtthidNJv7W5T6t+IqZmsOFAWW2Of9dkPvHjVUag22lkCBIUiZC9Myh 53j+ZDBfh026I8jPNyqXCBiwAxBGM6qiq1fo6ysyTbZMzswfXcBAxrcmFMDUQqv63OsB WKFX/13j0cfx2bkrUEYBpYjCwBCMVV/b/b3ln3/PkvFG5f5KLI4nkNNpTheHPZ9FY9WA F+Xa3bx19txJjbxIZjLDgXjJji1RSlnwH4D+8viXYVpZismusWKjken+iA1vv6hOyj+U w7oComvsEU57bpNmB1H6L/+IuPNNopnViWWmu+289nU6NobTVzk8+pk990ljB2mbNQuM ZoIg== X-Received: by 10.195.13.102 with SMTP id ex6mr40824369wjd.48.1407629674208; Sat, 09 Aug 2014 17:14:34 -0700 (PDT) Received: from ?IPv6:2001:980:d7ed:1:9040:62cb:8403:e844? ([2001:980:d7ed:1:9040:62cb:8403:e844]) by mx.google.com with ESMTPSA id e3sm28056376wjp.4.2014.08.09.17.14.32 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 09 Aug 2014 17:14:33 -0700 (PDT) Sender: =?UTF-8?Q?Ren=C3=A9_Ladan?= Message-ID: <53E6B967.1030608@freebsd.org> Date: Sun, 10 Aug 2014 02:14:31 +0200 From: =?UTF-8?B?UmVuw6kgTGFkYW4=?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: "Sergey A. Osokin" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r364460 - head/www/nginx References: <53e66a49.2ebf.35c2c6fd@svn.freebsd.org> In-Reply-To: <53e66a49.2ebf.35c2c6fd@svn.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 00:14:37 -0000 On 09-08-2014 20:36, Sergey A. Osokin wrote: > Author: osa > Date: Sat Aug 9 18:36:56 2014 > New Revision: 364460 > URL: http://svnweb.freebsd.org/changeset/ports/364460 > QAT: https://qat.redports.org/buildarchive/r364460/ > > Log: > Update from 1.6.0 to 1.6.1. > > > > *) Security: pipelined commands were not discarded after STARTTLS > command in SMTP proxy (CVE-2014-3556); the bug had appeared in 1.5.6. > Thanks to Chris Boulton. The vuxml file says < 1.6.4,2 is vulnerable, I assume that is a typo? Also, can you add CPE information to the Makefile (see https://wiki.freebsd.org/Ports/CPE ) ? Rene From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 00:23:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D073572F for ; Sun, 10 Aug 2014 00:23:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 A84F12B32 for ; Sun, 10 Aug 2014 00:23:32 +0000 (UTC) Received: from rakuco (uid 1262) (envelope-from rakuco@FreeBSD.org) id 27db by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 00:23:32 +0000 From: Raphael Kubo da Costa Date: Sun, 10 Aug 2014 00:23:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364490 - head/misc/tellico-kde4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6bb84.27db.239951b1@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 00:23:32 -0000 Author: rakuco Date: Sun Aug 10 00:23:31 2014 New Revision: 364490 URL: http://svnweb.freebsd.org/changeset/ports/364490 QAT: https://qat.redports.org/buildarchive/r364490/ Log: Update to 2.3.9. Modified: head/misc/tellico-kde4/Makefile head/misc/tellico-kde4/distinfo head/misc/tellico-kde4/pkg-plist Modified: head/misc/tellico-kde4/Makefile ============================================================================== --- head/misc/tellico-kde4/Makefile Sun Aug 10 00:12:35 2014 (r364489) +++ head/misc/tellico-kde4/Makefile Sun Aug 10 00:23:31 2014 (r364490) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tellico -PORTVERSION= 2.3.8 -PORTREVISION= 3 +PORTVERSION= 2.3.9 CATEGORIES= misc kde MASTER_SITES= http://tellico-project.org/files/ Modified: head/misc/tellico-kde4/distinfo ============================================================================== --- head/misc/tellico-kde4/distinfo Sun Aug 10 00:12:35 2014 (r364489) +++ head/misc/tellico-kde4/distinfo Sun Aug 10 00:23:31 2014 (r364490) @@ -1,2 +1,2 @@ -SHA256 (tellico-2.3.8.tar.bz2) = 2d8a0d06951e0755c7987d0a07cc8157cd42c8b1c143170042183ff1e89e2ccb -SIZE (tellico-2.3.8.tar.bz2) = 4838958 +SHA256 (tellico-2.3.9.tar.bz2) = 5184c130ea7561be6e72580105f30d5f160fd2fd5c9ffc7f7e16faf227a20114 +SIZE (tellico-2.3.9.tar.bz2) = 4855832 Modified: head/misc/tellico-kde4/pkg-plist ============================================================================== --- head/misc/tellico-kde4/pkg-plist Sun Aug 10 00:12:35 2014 (r364489) +++ head/misc/tellico-kde4/pkg-plist Sun Aug 10 00:23:31 2014 (r364490) @@ -1,5 +1,6 @@ bin/tellico share/applications/kde4/tellico.desktop +share/appdata/tellico.appdata.xml share/apps/kconf_update/tellico-1-3-update.pl share/apps/kconf_update/tellico-rename.upd share/apps/kconf_update/tellico.upd @@ -120,7 +121,6 @@ share/apps/tellico/tellico2html.xsl share/apps/tellico/tellico2onix.xsl share/apps/tellico/tellicoui.rc share/apps/tellico/thegamesdb2tellico.xsl -share/apps/tellico/tmdb2tellico.xsl share/apps/tellico/vhs-logo.png share/apps/tellico/vinoxml2tellico.xsl share/apps/tellico/welcome.html @@ -375,6 +375,7 @@ share/mimelnk/application/x-tellico.desk @dirrmtry share/mimelnk @dirrmtry share/locale/ia/LC_MESSAGES @dirrmtry share/locale/ia +@dirrmtry share/appdata @dirrm share/doc/HTML/uk/tellico @dirrm share/doc/HTML/sv/tellico @dirrm share/doc/HTML/pt_BR/tellico From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 02:22:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDD9C611 for ; Sun, 10 Aug 2014 02:22:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B961A264C for ; Sun, 10 Aug 2014 02:22:39 +0000 (UTC) Received: from gerald (uid 937) (envelope-from gerald@FreeBSD.org) id 28d2 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 02:22:39 +0000 From: Gerald Pfeifer Date: Sun, 10 Aug 2014 02:22:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364491 - head/emulators/wine-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6d76f.28d2.456f1a38@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 02:22:39 -0000 Author: gerald Date: Sun Aug 10 02:22:38 2014 New Revision: 364491 URL: http://svnweb.freebsd.org/changeset/ports/364491 QAT: https://qat.redports.org/buildarchive/r364491/ Log: Update to Wine 1.7.24. This includes the following changes: - Beginning of some DirectWrite classes implementation. - Initial wrapper dll for the packet capture library. - Some crypto improvements. - 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 Sun Aug 10 00:23:31 2014 (r364490) +++ head/emulators/wine-devel/Makefile Sun Aug 10 02:22:38 2014 (r364491) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 1.7.23 +DISTVERSION= 1.7.24 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Sun Aug 10 00:23:31 2014 (r364490) +++ head/emulators/wine-devel/distinfo Sun Aug 10 02:22:38 2014 (r364491) @@ -1,4 +1,4 @@ -SHA256 (wine-1.7.23.tar.bz2) = db9c7b3b87edde7c63b2c5ae81631771b03650d7435461139fca2b177de05c04 -SIZE (wine-1.7.23.tar.bz2) = 21712056 -SHA256 (v1.7.23.tar.gz) = ebf7d412d3c405b73b5f14198ee2f2b98e4ee243f2d652e1a18dbeff7639b0f6 -SIZE (v1.7.23.tar.gz) = 8100392 +SHA256 (wine-1.7.24.tar.bz2) = 5e9a9f250b6eb703cdc13c6dcfe025958dadddfdd3f8e683f46c2d642b5ec749 +SIZE (wine-1.7.24.tar.bz2) = 21715711 +SHA256 (v1.7.24.tar.gz) = 56c67f348e60b4ecde5a846ca23999e98bb07a60d8c0ab48a7b5c2b40f692039 +SIZE (v1.7.24.tar.gz) = 8157703 Modified: head/emulators/wine-devel/pkg-plist ============================================================================== --- head/emulators/wine-devel/pkg-plist Sun Aug 10 00:23:31 2014 (r364490) +++ head/emulators/wine-devel/pkg-plist Sun Aug 10 02:22:38 2014 (r364491) @@ -1564,6 +1564,7 @@ lib/wine/fakedlls/wmvcore.dll lib/wine/fakedlls/wnaspi32.dll lib/wine/fakedlls/wordpad.exe lib/wine/fakedlls/wow32.dll +lib/wine/fakedlls/wpcap.dll lib/wine/fakedlls/write.exe lib/wine/fakedlls/ws2_32.dll lib/wine/fakedlls/wscript.exe @@ -2123,6 +2124,7 @@ lib/wine/wmvcore.dll.so lib/wine/wnaspi32.dll.so lib/wine/wordpad.exe.so lib/wine/wow32.dll.so +lib/wine/wpcap.dll.so lib/wine/write.exe.so lib/wine/ws2_32.dll.so lib/wine/wscript.exe.so From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 02:28:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08BC77B9 for ; Sun, 10 Aug 2014 02:28:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 D3B3B2679 for ; Sun, 10 Aug 2014 02:28:30 +0000 (UTC) Received: from glewis (uid 935) (envelope-from glewis@FreeBSD.org) id 28f7 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 02:28:30 +0000 From: Greg Lewis Date: Sun, 10 Aug 2014 02:28:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364492 - head/java/linux-sun-jdk17 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6d8ce.28f7.2077e9a2@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 02:28:31 -0000 Author: glewis Date: Sun Aug 10 02:28:30 2014 New Revision: 364492 URL: http://svnweb.freebsd.org/changeset/ports/364492 QAT: https://qat.redports.org/buildarchive/r364492/ Log: . Update to 7u67. Modified: head/java/linux-sun-jdk17/Makefile head/java/linux-sun-jdk17/distinfo Modified: head/java/linux-sun-jdk17/Makefile ============================================================================== --- head/java/linux-sun-jdk17/Makefile Sun Aug 10 02:22:38 2014 (r364491) +++ head/java/linux-sun-jdk17/Makefile Sun Aug 10 02:28:30 2014 (r364492) @@ -31,7 +31,7 @@ ONLY_FOR_ARCHS= i386 amd64 JDK_VENDOR= sun JDK_VERSION= 7 JDK_INTERNAL_VERSION= 1.${JDK_VERSION}.0 -JDK_UPDATE_VERSION= 65 +JDK_UPDATE_VERSION= 67 DL_JDK_VERSION= ${JDK_INTERNAL_VERSION}_${JDK_UPDATE_VERSION} DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html Modified: head/java/linux-sun-jdk17/distinfo ============================================================================== --- head/java/linux-sun-jdk17/distinfo Sun Aug 10 02:22:38 2014 (r364491) +++ head/java/linux-sun-jdk17/distinfo Sun Aug 10 02:28:30 2014 (r364492) @@ -1,4 +1,4 @@ -SHA256 (jdk-7u65-linux-i586.tar.gz) = e3032c561deb237c033b485a358cc429ec83b621303bc6b31768855778a9eaa0 -SIZE (jdk-7u65-linux-i586.tar.gz) = 143588167 -SHA256 (jdk-7u65-linux-i586-demos.tar.gz) = b7faea295862e905f1ffb40c5e9f057bc97ec92fe2b4704e01c23ebcd0736e1d -SIZE (jdk-7u65-linux-i586-demos.tar.gz) = 21172410 +SHA256 (jdk-7u67-linux-i586.tar.gz) = b6231064ad2c9fbbcb099dba17b1dcf12033e922b9c24e4348b9a01e9ebaa85c +SIZE (jdk-7u67-linux-i586.tar.gz) = 143589987 +SHA256 (jdk-7u67-linux-i586-demos.tar.gz) = 58b0b5124e518808f211741ff22b1c897b31c51658852dc51605d02ad84373fc +SIZE (jdk-7u67-linux-i586-demos.tar.gz) = 21172715 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 02:30:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 508368A3 for ; Sun, 10 Aug 2014 02:30:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 26A532684 for ; Sun, 10 Aug 2014 02:30:14 +0000 (UTC) Received: from glewis (uid 935) (envelope-from glewis@FreeBSD.org) id 2915 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 02:30:13 +0000 From: Greg Lewis Date: Sun, 10 Aug 2014 02:30:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364493 - head/java/linux-sun-jre17 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6d936.2915.1d180e14@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 02:30:14 -0000 Author: glewis Date: Sun Aug 10 02:30:13 2014 New Revision: 364493 URL: http://svnweb.freebsd.org/changeset/ports/364493 QAT: https://qat.redports.org/buildarchive/r364493/ Log: . Update to 7u67. Modified: head/java/linux-sun-jre17/Makefile head/java/linux-sun-jre17/distinfo Modified: head/java/linux-sun-jre17/Makefile ============================================================================== --- head/java/linux-sun-jre17/Makefile Sun Aug 10 02:28:30 2014 (r364492) +++ head/java/linux-sun-jre17/Makefile Sun Aug 10 02:30:13 2014 (r364493) @@ -28,7 +28,7 @@ ONLY_FOR_ARCHS= i386 amd64 JRE_VENDOR= sun JRE_VERSION= 7 JRE_INTERNAL_VERSION= 1.${JRE_VERSION}.0 -JRE_UPDATE_VERSION= 65 +JRE_UPDATE_VERSION= 67 DL_JRE_VERSION= ${JRE_INTERNAL_VERSION}_${JRE_UPDATE_VERSION} DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html Modified: head/java/linux-sun-jre17/distinfo ============================================================================== --- head/java/linux-sun-jre17/distinfo Sun Aug 10 02:28:30 2014 (r364492) +++ head/java/linux-sun-jre17/distinfo Sun Aug 10 02:30:13 2014 (r364493) @@ -1,2 +1,2 @@ -SHA256 (jre-7u65-linux-i586.tar.gz) = f39d334650464d1084dd6e40fcfa0b6f9fa52fcdc549dc9312d9e13fefc5bdcb -SIZE (jre-7u65-linux-i586.tar.gz) = 48423426 +SHA256 (jre-7u67-linux-i586.tar.gz) = eadec83a54d3a9d09248a8d16b21c03da9afffc7317e775fb8db962620a0781d +SIZE (jre-7u67-linux-i586.tar.gz) = 48426207 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:07:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5668FF39 for ; Sun, 10 Aug 2014 03:07:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 2CDFC2A4E for ; Sun, 10 Aug 2014 03:07:55 +0000 (UTC) Received: from osa (uid 975) (envelope-from osa@FreeBSD.org) id 296c by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 03:07:54 +0000 From: Sergey A. Osokin Date: Sun, 10 Aug 2014 03:07:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364494 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6e20b.296c.5d778c8@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:07:55 -0000 Author: osa Date: Sun Aug 10 03:07:54 2014 New Revision: 364494 URL: http://svnweb.freebsd.org/changeset/ports/364494 QAT: https://qat.redports.org/buildarchive/r364494/ Log: Fix typo. Found by: rene Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Aug 10 02:30:13 2014 (r364493) +++ head/security/vuxml/vuln.xml Sun Aug 10 03:07:54 2014 (r364494) @@ -62,7 +62,7 @@ Notes: nginx - 1.6.0,21.6.4,2 + 1.6.0,21.6.1,2 nginx-devel From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:08:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 975) id 5CFEAAD; Sun, 10 Aug 2014 03:08:51 +0000 (UTC) Date: Sun, 10 Aug 2014 03:08:51 +0000 From: "Sergey A. Osokin" To: =?koi8-r?B?UmVuw6k=?= Ladan Subject: Re: svn commit: r364460 - head/www/nginx Message-ID: <20140810030851.GA69380@FreeBSD.org> References: <53e66a49.2ebf.35c2c6fd@svn.freebsd.org> <53E6B967.1030608@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <53E6B967.1030608@freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:08:51 -0000 Hi Rene, On Sun, Aug 10, 2014 at 02:14:31AM +0200, René Ladan wrote: > On 09-08-2014 20:36, Sergey A. Osokin wrote: > > Author: osa > > Date: Sat Aug 9 18:36:56 2014 > > New Revision: 364460 > > URL: http://svnweb.freebsd.org/changeset/ports/364460 > > QAT: https://qat.redports.org/buildarchive/r364460/ > > > > Log: > > Update from 1.6.0 to 1.6.1. > > > > > > > > *) Security: pipelined commands were not discarded after STARTTLS > > command in SMTP proxy (CVE-2014-3556); the bug had appeared in 1.5.6. > > Thanks to Chris Boulton. > The vuxml file says < 1.6.4,2 is vulnerable, I assume that is a typo? Yes, the issue has been fixed. > Also, can you add CPE information to the Makefile (see > https://wiki.freebsd.org/Ports/CPE ) ? Will do. -- Sergey A. Osokin osa@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:09:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A392319A for ; Sun, 10 Aug 2014 03:09:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 8E4D92A75 for ; Sun, 10 Aug 2014 03:09:34 +0000 (UTC) Received: from swills (uid 1238) (envelope-from swills@FreeBSD.org) id 2993 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 03:09:33 +0000 From: Steve Wills Date: Sun, 10 Aug 2014 03:09:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364495 - in head/net: . google-cloud-sdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6e26e.2993.3ea498c2@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:09:34 -0000 Author: swills Date: Sun Aug 10 03:09:33 2014 New Revision: 364495 URL: http://svnweb.freebsd.org/changeset/ports/364495 QAT: https://qat.redports.org/buildarchive/r364495/ Log: net/google-cloud-sdk: add port for google cloud tools Wasn't able to find any kind of version for this at all, so use todays date, along with a prefix that will hopefully allow to avoid PORTEPOCH later. Added: head/net/google-cloud-sdk/ head/net/google-cloud-sdk/Makefile (contents, props changed) head/net/google-cloud-sdk/distinfo (contents, props changed) head/net/google-cloud-sdk/pkg-descr (contents, props changed) head/net/google-cloud-sdk/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Aug 10 03:07:54 2014 (r364494) +++ head/net/Makefile Sun Aug 10 03:09:33 2014 (r364495) @@ -166,6 +166,7 @@ SUBDIR += gofish SUBDIR += gogoc SUBDIR += googlecl + SUBDIR += google-cloud-sdk SUBDIR += gopher SUBDIR += gotthard SUBDIR += gpxe Added: head/net/google-cloud-sdk/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/google-cloud-sdk/Makefile Sun Aug 10 03:09:33 2014 (r364495) @@ -0,0 +1,27 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= google-cloud-sdk +PORTVERSION= 0.0.0.0.20140809 +CATEGORIES= net +MASTER_SITES= https://dl.google.com/dl/cloudsdk/release/ +DISTNAME= google-cloud-sdk-coretools-linux-x86_64 + +MAINTAINER= swills@FreeBSD.org +COMMENT= Google Cloud SDK for Google Cloud Platform + +USES= python +NO_BUILD= yes +WRKSRC= ${WRKDIR}/google-cloud-sdk + +do-install: + ${FIND} ${WRKSRC}/help -type f -name '*.1' -exec ${GZIP_CMD} {} + + ( cd ${WRKSRC}/help ; ${COPYTREE_SHARE} man ${STAGEDIR}${PREFIX} ) + ${RM} -r ${WRKSRC}/help/man + ( cd ${WRKSRC} ; ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/google-cloud-sdk ) +.for x in bq gcloud gcutil git-credential-gcloud.sh gsutil + ${CHMOD} +x ${STAGEDIR}${PREFIX}/google-cloud-sdk/bin/${x} + ${LN} -s ${PREFIX}/google-cloud-sdk/bin/${x} ${STAGEDIR}${PREFIX}/bin/${x} +.endfor + +.include Added: head/net/google-cloud-sdk/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/google-cloud-sdk/distinfo Sun Aug 10 03:09:33 2014 (r364495) @@ -0,0 +1,2 @@ +SHA256 (google-cloud-sdk-coretools-linux-x86_64.tar.gz) = ad4daf434138e790c03a2f11dfbe3f149102250281ec00c6cbd2e4188a7074e7 +SIZE (google-cloud-sdk-coretools-linux-x86_64.tar.gz) = 3564921 Added: head/net/google-cloud-sdk/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/google-cloud-sdk/pkg-descr Sun Aug 10 03:09:33 2014 (r364495) @@ -0,0 +1,5 @@ +Google Cloud SDK contains tools and libraries that enable you to easily create +and manage resources on Google Cloud Platform, including App Engine, Compute +Engine, Cloud Storage, BigQuery, Cloud SQL, and Cloud DNS. + +WWW: https://developers.google.com/cloud/sdk/ Added: head/net/google-cloud-sdk/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/google-cloud-sdk/pkg-plist Sun Aug 10 03:09:33 2014 (r364495) @@ -0,0 +1,2184 @@ +bin/bq +bin/gcloud +bin/gcutil +bin/git-credential-gcloud.sh +bin/gsutil +google-cloud-sdk/.install/bq-nix.manifest +google-cloud-sdk/.install/bq-nix.snapshot.json +google-cloud-sdk/.install/bq.manifest +google-cloud-sdk/.install/bq.snapshot.json +google-cloud-sdk/.install/compute.manifest +google-cloud-sdk/.install/compute.snapshot.json +google-cloud-sdk/.install/core-nix.manifest +google-cloud-sdk/.install/core-nix.snapshot.json +google-cloud-sdk/.install/core.manifest +google-cloud-sdk/.install/core.snapshot.json +google-cloud-sdk/.install/dns.manifest +google-cloud-sdk/.install/dns.snapshot.json +google-cloud-sdk/.install/gcutil-nix.manifest +google-cloud-sdk/.install/gcutil-nix.snapshot.json +google-cloud-sdk/.install/gcutil.manifest +google-cloud-sdk/.install/gcutil.snapshot.json +google-cloud-sdk/.install/gsutil-nix.manifest +google-cloud-sdk/.install/gsutil-nix.snapshot.json +google-cloud-sdk/.install/gsutil.manifest +google-cloud-sdk/.install/gsutil.snapshot.json +google-cloud-sdk/.install/pkg-core.manifest +google-cloud-sdk/.install/pkg-core.snapshot.json +google-cloud-sdk/.install/sql.manifest +google-cloud-sdk/.install/sql.snapshot.json +google-cloud-sdk/LICENSE +google-cloud-sdk/README +google-cloud-sdk/RELEASE_NOTES +google-cloud-sdk/bin/bootstrapping/.default_components +google-cloud-sdk/bin/bootstrapping/.install_configurations +google-cloud-sdk/bin/bootstrapping/__init__.py +google-cloud-sdk/bin/bootstrapping/bootstrapping.py +google-cloud-sdk/bin/bootstrapping/bq.py +google-cloud-sdk/bin/bootstrapping/gcutil.py +google-cloud-sdk/bin/bootstrapping/gsutil.py +google-cloud-sdk/bin/bootstrapping/install.py +google-cloud-sdk/bin/bootstrapping/prerun.py +google-cloud-sdk/bin/bootstrapping/print_env_info.py +google-cloud-sdk/bin/bootstrapping/setup.py +google-cloud-sdk/bin/bq +google-cloud-sdk/bin/gcloud +google-cloud-sdk/bin/gcutil +google-cloud-sdk/bin/git-credential-gcloud.sh +google-cloud-sdk/bin/gsutil +google-cloud-sdk/completion.bash.inc +google-cloud-sdk/completion.zsh.inc +google-cloud-sdk/help/text.long/gcloud +google-cloud-sdk/help/text.long/gcloud-auth +google-cloud-sdk/help/text.long/gcloud-auth-activate-refresh-token +google-cloud-sdk/help/text.long/gcloud-auth-activate-service-account +google-cloud-sdk/help/text.long/gcloud-auth-git-helper +google-cloud-sdk/help/text.long/gcloud-auth-list +google-cloud-sdk/help/text.long/gcloud-auth-login +google-cloud-sdk/help/text.long/gcloud-auth-print-access-token +google-cloud-sdk/help/text.long/gcloud-auth-revoke +google-cloud-sdk/help/text.long/gcloud-components +google-cloud-sdk/help/text.long/gcloud-components-list +google-cloud-sdk/help/text.long/gcloud-components-remove +google-cloud-sdk/help/text.long/gcloud-components-restore +google-cloud-sdk/help/text.long/gcloud-components-update +google-cloud-sdk/help/text.long/gcloud-compute +google-cloud-sdk/help/text.long/gcloud-compute-addresses +google-cloud-sdk/help/text.long/gcloud-compute-addresses-get +google-cloud-sdk/help/text.long/gcloud-compute-addresses-list +google-cloud-sdk/help/text.long/gcloud-compute-addresses-release +google-cloud-sdk/help/text.long/gcloud-compute-addresses-reserve +google-cloud-sdk/help/text.long/gcloud-compute-config-ssh +google-cloud-sdk/help/text.long/gcloud-compute-copy-files +google-cloud-sdk/help/text.long/gcloud-compute-disks +google-cloud-sdk/help/text.long/gcloud-compute-disks-create +google-cloud-sdk/help/text.long/gcloud-compute-disks-delete +google-cloud-sdk/help/text.long/gcloud-compute-disks-get +google-cloud-sdk/help/text.long/gcloud-compute-disks-list +google-cloud-sdk/help/text.long/gcloud-compute-disks-snapshot +google-cloud-sdk/help/text.long/gcloud-compute-firewalls +google-cloud-sdk/help/text.long/gcloud-compute-firewalls-create +google-cloud-sdk/help/text.long/gcloud-compute-firewalls-delete +google-cloud-sdk/help/text.long/gcloud-compute-firewalls-get +google-cloud-sdk/help/text.long/gcloud-compute-firewalls-list +google-cloud-sdk/help/text.long/gcloud-compute-firewalls-update +google-cloud-sdk/help/text.long/gcloud-compute-forwarding-rules +google-cloud-sdk/help/text.long/gcloud-compute-forwarding-rules-create +google-cloud-sdk/help/text.long/gcloud-compute-forwarding-rules-delete +google-cloud-sdk/help/text.long/gcloud-compute-forwarding-rules-get +google-cloud-sdk/help/text.long/gcloud-compute-forwarding-rules-list +google-cloud-sdk/help/text.long/gcloud-compute-forwarding-rules-set-target +google-cloud-sdk/help/text.long/gcloud-compute-http-health-checks +google-cloud-sdk/help/text.long/gcloud-compute-http-health-checks-create +google-cloud-sdk/help/text.long/gcloud-compute-http-health-checks-get +google-cloud-sdk/help/text.long/gcloud-compute-http-health-checks-list +google-cloud-sdk/help/text.long/gcloud-compute-http-health-checks-update +google-cloud-sdk/help/text.long/gcloud-compute-images +google-cloud-sdk/help/text.long/gcloud-compute-images-create +google-cloud-sdk/help/text.long/gcloud-compute-images-delete +google-cloud-sdk/help/text.long/gcloud-compute-images-deprecate +google-cloud-sdk/help/text.long/gcloud-compute-images-get +google-cloud-sdk/help/text.long/gcloud-compute-images-list +google-cloud-sdk/help/text.long/gcloud-compute-instances +google-cloud-sdk/help/text.long/gcloud-compute-instances-add-access-config +google-cloud-sdk/help/text.long/gcloud-compute-instances-add-metadata +google-cloud-sdk/help/text.long/gcloud-compute-instances-add-tags +google-cloud-sdk/help/text.long/gcloud-compute-instances-attach-disk +google-cloud-sdk/help/text.long/gcloud-compute-instances-create +google-cloud-sdk/help/text.long/gcloud-compute-instances-delete +google-cloud-sdk/help/text.long/gcloud-compute-instances-delete-access-config +google-cloud-sdk/help/text.long/gcloud-compute-instances-detach-disk +google-cloud-sdk/help/text.long/gcloud-compute-instances-get +google-cloud-sdk/help/text.long/gcloud-compute-instances-get-serial-port-output +google-cloud-sdk/help/text.long/gcloud-compute-instances-list +google-cloud-sdk/help/text.long/gcloud-compute-instances-remove-metadata +google-cloud-sdk/help/text.long/gcloud-compute-instances-remove-tags +google-cloud-sdk/help/text.long/gcloud-compute-instances-reset +google-cloud-sdk/help/text.long/gcloud-compute-instances-set-disk-auto-delete +google-cloud-sdk/help/text.long/gcloud-compute-instances-set-scheduling +google-cloud-sdk/help/text.long/gcloud-compute-machine-types +google-cloud-sdk/help/text.long/gcloud-compute-machine-types-get +google-cloud-sdk/help/text.long/gcloud-compute-machine-types-list +google-cloud-sdk/help/text.long/gcloud-compute-networks +google-cloud-sdk/help/text.long/gcloud-compute-networks-create +google-cloud-sdk/help/text.long/gcloud-compute-networks-delete +google-cloud-sdk/help/text.long/gcloud-compute-networks-get +google-cloud-sdk/help/text.long/gcloud-compute-networks-list +google-cloud-sdk/help/text.long/gcloud-compute-operations +google-cloud-sdk/help/text.long/gcloud-compute-operations-get +google-cloud-sdk/help/text.long/gcloud-compute-operations-list +google-cloud-sdk/help/text.long/gcloud-compute-project-info +google-cloud-sdk/help/text.long/gcloud-compute-project-info-add-metadata +google-cloud-sdk/help/text.long/gcloud-compute-project-info-get +google-cloud-sdk/help/text.long/gcloud-compute-project-info-remove-metadata +google-cloud-sdk/help/text.long/gcloud-compute-regions +google-cloud-sdk/help/text.long/gcloud-compute-regions-get +google-cloud-sdk/help/text.long/gcloud-compute-regions-list +google-cloud-sdk/help/text.long/gcloud-compute-routes +google-cloud-sdk/help/text.long/gcloud-compute-routes-create +google-cloud-sdk/help/text.long/gcloud-compute-routes-delete +google-cloud-sdk/help/text.long/gcloud-compute-routes-get +google-cloud-sdk/help/text.long/gcloud-compute-routes-list +google-cloud-sdk/help/text.long/gcloud-compute-snapshots +google-cloud-sdk/help/text.long/gcloud-compute-snapshots-delete +google-cloud-sdk/help/text.long/gcloud-compute-snapshots-get +google-cloud-sdk/help/text.long/gcloud-compute-snapshots-list +google-cloud-sdk/help/text.long/gcloud-compute-ssh +google-cloud-sdk/help/text.long/gcloud-compute-target-instances +google-cloud-sdk/help/text.long/gcloud-compute-target-instances-create +google-cloud-sdk/help/text.long/gcloud-compute-target-instances-delete +google-cloud-sdk/help/text.long/gcloud-compute-target-instances-get +google-cloud-sdk/help/text.long/gcloud-compute-target-instances-list +google-cloud-sdk/help/text.long/gcloud-compute-target-pools +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-add-health-check +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-add-instance +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-create +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-delete +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-get +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-get-health +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-list +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-remove-health-check +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-remove-instance +google-cloud-sdk/help/text.long/gcloud-compute-target-pools-set-backup +google-cloud-sdk/help/text.long/gcloud-compute-zones +google-cloud-sdk/help/text.long/gcloud-compute-zones-get +google-cloud-sdk/help/text.long/gcloud-compute-zones-list +google-cloud-sdk/help/text.long/gcloud-config +google-cloud-sdk/help/text.long/gcloud-config-list +google-cloud-sdk/help/text.long/gcloud-config-set +google-cloud-sdk/help/text.long/gcloud-config-unset +google-cloud-sdk/help/text.long/gcloud-help +google-cloud-sdk/help/text.long/gcloud-init +google-cloud-sdk/help/text.long/gcloud-interactive +google-cloud-sdk/help/text.long/gcloud-version +google-cloud-sdk/install.bat +google-cloud-sdk/install.sh +google-cloud-sdk/lib/apiclient/__init__.py +google-cloud-sdk/lib/apiclient/channel.py +google-cloud-sdk/lib/apiclient/discovery.py +google-cloud-sdk/lib/apiclient/errors.py +google-cloud-sdk/lib/apiclient/http.py +google-cloud-sdk/lib/apiclient/mimeparse.py +google-cloud-sdk/lib/apiclient/model.py +google-cloud-sdk/lib/apiclient/oauth.py +google-cloud-sdk/lib/apiclient/push.py +google-cloud-sdk/lib/apiclient/schema.py +google-cloud-sdk/lib/argcomplete/__init__.py +google-cloud-sdk/lib/argcomplete/completers.py +google-cloud-sdk/lib/argcomplete/my_argparse.py +google-cloud-sdk/lib/argcomplete/my_shlex.py +google-cloud-sdk/lib/argcomplete/scripts/activate-global-python-argcomplete +google-cloud-sdk/lib/argcomplete/scripts/python-argcomplete-check-easy-install-script +google-cloud-sdk/lib/argcomplete/scripts/register-python-argcomplete +google-cloud-sdk/lib/argparse/LICENSE.txt +google-cloud-sdk/lib/argparse/NEWS.txt +google-cloud-sdk/lib/argparse/README.txt +google-cloud-sdk/lib/argparse/__init__.py +google-cloud-sdk/lib/docker/__init__.py +google-cloud-sdk/lib/docker/docker/__init__.py +google-cloud-sdk/lib/docker/docker/auth/__init__.py +google-cloud-sdk/lib/docker/docker/auth/auth.py +google-cloud-sdk/lib/docker/docker/client.py +google-cloud-sdk/lib/docker/docker/errors.py +google-cloud-sdk/lib/docker/docker/unixconn/__init__.py +google-cloud-sdk/lib/docker/docker/unixconn/unixconn.py +google-cloud-sdk/lib/docker/docker/utils/__init__.py +google-cloud-sdk/lib/docker/docker/utils/utils.py +google-cloud-sdk/lib/gflags/AUTHORS +google-cloud-sdk/lib/gflags/COPYING +google-cloud-sdk/lib/gflags/ChangeLog +google-cloud-sdk/lib/gflags/LICENSE +google-cloud-sdk/lib/gflags/MANIFEST.in +google-cloud-sdk/lib/gflags/Makefile +google-cloud-sdk/lib/gflags/NEWS +google-cloud-sdk/lib/gflags/PKG-INFO +google-cloud-sdk/lib/gflags/README +google-cloud-sdk/lib/gflags/__init__.py +google-cloud-sdk/lib/gflags/gflags2man.py +google-cloud-sdk/lib/gflags/gflags_validators.py +google-cloud-sdk/lib/gflags/setup.cfg +google-cloud-sdk/lib/gflags/setup.py +google-cloud-sdk/lib/google/__init__.py +google-cloud-sdk/lib/google/apputils/__init__.py +google-cloud-sdk/lib/google/apputils/app.py +google-cloud-sdk/lib/google/apputils/appcommands.py +google-cloud-sdk/lib/google/apputils/basetest.py +google-cloud-sdk/lib/google/apputils/datelib.py +google-cloud-sdk/lib/google/apputils/debug.py +google-cloud-sdk/lib/google/apputils/file_util.py +google-cloud-sdk/lib/google/apputils/resources.py +google-cloud-sdk/lib/google/apputils/run_script_module.py +google-cloud-sdk/lib/google/apputils/setup_command.py +google-cloud-sdk/lib/google/apputils/shellutil.py +google-cloud-sdk/lib/google/apputils/stopwatch.py +google-cloud-sdk/lib/googlecloudapis/__init__.py +google-cloud-sdk/lib/googlecloudapis/apitools/__init__.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/__init__.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/__init__.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/app2.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/base_api.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/base_cli.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/batch.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/credentials_lib.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/encoding.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/exceptions.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/extra_types.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/http_wrapper.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/transfer.py +google-cloud-sdk/lib/googlecloudapis/apitools/base/py/util.py +google-cloud-sdk/lib/googlecloudapis/compute/__init__.py +google-cloud-sdk/lib/googlecloudapis/compute/v1/__init__.py +google-cloud-sdk/lib/googlecloudapis/compute/v1/compute_v1_client.py +google-cloud-sdk/lib/googlecloudapis/compute/v1/compute_v1_messages.py +google-cloud-sdk/lib/googlecloudapis/dns/__init__.py +google-cloud-sdk/lib/googlecloudapis/dns/v1beta1/__init__.py +google-cloud-sdk/lib/googlecloudapis/dns/v1beta1/dns_v1beta1_client.py +google-cloud-sdk/lib/googlecloudapis/dns/v1beta1/dns_v1beta1_messages.py +google-cloud-sdk/lib/googlecloudapis/manager/__init__.py +google-cloud-sdk/lib/googlecloudapis/manager/v1beta2/__init__.py +google-cloud-sdk/lib/googlecloudapis/manager/v1beta2/manager_v1beta2_client.py +google-cloud-sdk/lib/googlecloudapis/manager/v1beta2/manager_v1beta2_messages.py +google-cloud-sdk/lib/googlecloudapis/replicapool/__init__.py +google-cloud-sdk/lib/googlecloudapis/replicapool/v1beta1/__init__.py +google-cloud-sdk/lib/googlecloudapis/replicapool/v1beta1/replicapool_v1beta1_client.py +google-cloud-sdk/lib/googlecloudapis/replicapool/v1beta1/replicapool_v1beta1_messages.py +google-cloud-sdk/lib/googlecloudapis/resourceviews/__init__.py +google-cloud-sdk/lib/googlecloudapis/resourceviews/v1beta1/__init__.py +google-cloud-sdk/lib/googlecloudapis/resourceviews/v1beta1/resourceviews_v1beta1_client.py +google-cloud-sdk/lib/googlecloudapis/resourceviews/v1beta1/resourceviews_v1beta1_messages.py +google-cloud-sdk/lib/googlecloudapis/sqladmin/__init__.py +google-cloud-sdk/lib/googlecloudapis/sqladmin/v1beta1/__init__.py +google-cloud-sdk/lib/googlecloudapis/sqladmin/v1beta1/sqladmin_v1beta1_client.py +google-cloud-sdk/lib/googlecloudapis/sqladmin/v1beta1/sqladmin_v1beta1_messages.py +google-cloud-sdk/lib/googlecloudapis/sqladmin/v1beta3/__init__.py +google-cloud-sdk/lib/googlecloudapis/sqladmin/v1beta3/sqladmin_v1beta3_client.py +google-cloud-sdk/lib/googlecloudapis/sqladmin/v1beta3/sqladmin_v1beta3_messages.py +google-cloud-sdk/lib/googlecloudsdk/__init__.py +google-cloud-sdk/lib/googlecloudsdk/calliope/__init__.py +google-cloud-sdk/lib/googlecloudsdk/calliope/actions.py +google-cloud-sdk/lib/googlecloudsdk/calliope/arg_parsers.py +google-cloud-sdk/lib/googlecloudsdk/calliope/base.py +google-cloud-sdk/lib/googlecloudsdk/calliope/exceptions.py +google-cloud-sdk/lib/googlecloudsdk/calliope/shell.py +google-cloud-sdk/lib/googlecloudsdk/calliope/tokenizer.py +google-cloud-sdk/lib/googlecloudsdk/calliope/usage_text.py +google-cloud-sdk/lib/googlecloudsdk/compute/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/api/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/api_context_parser.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/base_classes.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/batch_helper.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/constants.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/firewalls_utils.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/image_utils.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/lister.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/metadata_utils.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/name_generator.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/operations_utils.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/path_simplifier.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/property_selector.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/request_helper.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/resolvers.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/resource_specs.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/ssh_utils.py +google-cloud-sdk/lib/googlecloudsdk/compute/lib/waiters.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/addresses/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/addresses/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/addresses/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/addresses/release.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/addresses/reserve.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/config_ssh.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/copy_files.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/disks/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/disks/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/disks/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/disks/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/disks/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/disks/snapshot.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/firewalls/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/firewalls/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/firewalls/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/firewalls/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/firewalls/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/firewalls/update.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/forwarding_rules/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/forwarding_rules/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/forwarding_rules/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/forwarding_rules/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/forwarding_rules/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/forwarding_rules/set_target.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/http_health_checks/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/http_health_checks/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/http_health_checks/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/http_health_checks/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/http_health_checks/update.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/images/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/images/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/images/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/images/deprecate.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/images/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/images/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/add_access_config.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/add_metadata.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/add_tags.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/attach_disk.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/delete_access_config.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/detach_disk.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/get_serial_port_output.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/remove_metadata.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/remove_tags.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/reset.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/set_disk_auto_delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/instances/set_scheduling.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/machine_types/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/machine_types/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/machine_types/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/networks/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/networks/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/networks/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/networks/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/networks/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/operations/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/operations/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/operations/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/project_info/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/project_info/add_metadata.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/project_info/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/project_info/remove_metadata.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/regions/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/regions/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/regions/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/routes/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/routes/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/routes/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/routes/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/routes/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/snapshots/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/snapshots/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/snapshots/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/snapshots/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/ssh.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_instances/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_instances/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_instances/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_instances/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_instances/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/add_health_check.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/add_instance.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/create.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/delete.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/get_health.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/list.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/remove_health_check.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/remove_instance.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/target_pools/set_backup.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/zones/__init__.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/zones/get.py +google-cloud-sdk/lib/googlecloudsdk/compute/subcommands/zones/list.py +google-cloud-sdk/lib/googlecloudsdk/core/__init__.py +google-cloud-sdk/lib/googlecloudsdk/core/cli.py +google-cloud-sdk/lib/googlecloudsdk/core/config.json +google-cloud-sdk/lib/googlecloudsdk/core/config.py +google-cloud-sdk/lib/googlecloudsdk/core/credentials/__init__.py +google-cloud-sdk/lib/googlecloudsdk/core/credentials/flow.py +google-cloud-sdk/lib/googlecloudsdk/core/credentials/gce.py +google-cloud-sdk/lib/googlecloudsdk/core/credentials/gitp2d.py +google-cloud-sdk/lib/googlecloudsdk/core/credentials/legacy.py +google-cloud-sdk/lib/googlecloudsdk/core/credentials/oauth2_landing.html +google-cloud-sdk/lib/googlecloudsdk/core/credentials/oauth2_landing_error.html +google-cloud-sdk/lib/googlecloudsdk/core/credentials/store.py +google-cloud-sdk/lib/googlecloudsdk/core/exceptions.py +google-cloud-sdk/lib/googlecloudsdk/core/log.py +google-cloud-sdk/lib/googlecloudsdk/core/metrics.py +google-cloud-sdk/lib/googlecloudsdk/core/properties.py +google-cloud-sdk/lib/googlecloudsdk/core/resources.py +google-cloud-sdk/lib/googlecloudsdk/core/updater/__init__.py +google-cloud-sdk/lib/googlecloudsdk/core/updater/installers.py +google-cloud-sdk/lib/googlecloudsdk/core/updater/local_state.py +google-cloud-sdk/lib/googlecloudsdk/core/updater/schemas.py +google-cloud-sdk/lib/googlecloudsdk/core/updater/snapshots.py +google-cloud-sdk/lib/googlecloudsdk/core/updater/update_manager.py +google-cloud-sdk/lib/googlecloudsdk/core/util/__init__.py +google-cloud-sdk/lib/googlecloudsdk/core/util/console_io.py +google-cloud-sdk/lib/googlecloudsdk/core/util/edit.py +google-cloud-sdk/lib/googlecloudsdk/core/util/files.py +google-cloud-sdk/lib/googlecloudsdk/core/util/platforms.py +google-cloud-sdk/lib/googlecloudsdk/core/util/resource_printer.py +google-cloud-sdk/lib/googlecloudsdk/core/workspaces.py +google-cloud-sdk/lib/googlecloudsdk/dns/__init__.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/__init__.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/changes/__init__.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/changes/get.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/changes/list.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/managed_zone/__init__.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/managed_zone/create.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/managed_zone/delete.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/managed_zone/get.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/managed_zone/list.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/project_info/__init__.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/project_info/get.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/records/__init__.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/records/edit.py +google-cloud-sdk/lib/googlecloudsdk/dns/dnstools/records/list.py +google-cloud-sdk/lib/googlecloudsdk/dns/util.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/__init__.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/gcloud.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/__init__.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/activate_refresh_token.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/activate_service_account.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/git_helper.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/list.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/login.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/print_access_token.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/auth/revoke.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/components/__init__.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/components/list.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/components/remove.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/components/restore.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/components/update.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/config/__init__.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/config/list.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/config/set.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/config/unset.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/root/__init__.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/root/help.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/root/init.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/root/interactive.py +google-cloud-sdk/lib/googlecloudsdk/gcloud/sdktools/root/version.py +google-cloud-sdk/lib/googlecloudsdk/sql/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/sql.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/backups/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/backups/get.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/backups/list.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/flags/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/flags/list.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/clone.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/create.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/delete.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/export.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/get.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/import.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/list.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/patch.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/reset_ssl_config.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/restart.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/restore_backup.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/instances/set_root_password.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/operations/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/operations/get.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/operations/list.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/ssl_certs/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/ssl_certs/create.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/ssl_certs/delete.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/ssl_certs/get.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/ssl_certs/list.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/tiers/__init__.py +google-cloud-sdk/lib/googlecloudsdk/sql/tools/tiers/list.py +google-cloud-sdk/lib/googlecloudsdk/sql/util.py +google-cloud-sdk/lib/httplib2/LICENSE +google-cloud-sdk/lib/httplib2/__init__.py +google-cloud-sdk/lib/httplib2/cacerts.txt +google-cloud-sdk/lib/httplib2/iri2uri.py +google-cloud-sdk/lib/mimeparse/__init__.py +google-cloud-sdk/lib/oauth2/__init__.py +google-cloud-sdk/lib/oauth2client/__init__.py +google-cloud-sdk/lib/oauth2client/anyjson.py +google-cloud-sdk/lib/oauth2client/appengine.py +google-cloud-sdk/lib/oauth2client/client.py +google-cloud-sdk/lib/oauth2client/clientsecrets.py +google-cloud-sdk/lib/oauth2client/crypt.py +google-cloud-sdk/lib/oauth2client/django_orm.py +google-cloud-sdk/lib/oauth2client/file.py +google-cloud-sdk/lib/oauth2client/gce.py +google-cloud-sdk/lib/oauth2client/keyring_storage.py +google-cloud-sdk/lib/oauth2client/locked_file.py +google-cloud-sdk/lib/oauth2client/multistore_file.py +google-cloud-sdk/lib/oauth2client/old_run.py +google-cloud-sdk/lib/oauth2client/tools.py +google-cloud-sdk/lib/oauth2client/util.py +google-cloud-sdk/lib/oauth2client/xsrfutil.py +google-cloud-sdk/lib/protorpc/__init__.py +google-cloud-sdk/lib/protorpc/definition.py +google-cloud-sdk/lib/protorpc/descriptor.py +google-cloud-sdk/lib/protorpc/generate.py +google-cloud-sdk/lib/protorpc/generate_proto.py +google-cloud-sdk/lib/protorpc/generate_python.py +google-cloud-sdk/lib/protorpc/google_imports.py +google-cloud-sdk/lib/protorpc/message_types.py +google-cloud-sdk/lib/protorpc/messages.py +google-cloud-sdk/lib/protorpc/non_sdk_imports.py +google-cloud-sdk/lib/protorpc/protobuf.py +google-cloud-sdk/lib/protorpc/protojson.py +google-cloud-sdk/lib/protorpc/protourlencode.py +google-cloud-sdk/lib/protorpc/registry.py +google-cloud-sdk/lib/protorpc/remote.py +google-cloud-sdk/lib/protorpc/transport.py +google-cloud-sdk/lib/protorpc/util.py +google-cloud-sdk/lib/protorpc/webapp/__init__.py +google-cloud-sdk/lib/protorpc/webapp/forms.py +google-cloud-sdk/lib/protorpc/webapp/google_imports.py +google-cloud-sdk/lib/protorpc/webapp/service_handlers.py +google-cloud-sdk/lib/protorpc/wsgi/__init__.py +google-cloud-sdk/lib/protorpc/wsgi/service.py +google-cloud-sdk/lib/protorpc/wsgi/util.py +google-cloud-sdk/lib/requests/__init__.py +google-cloud-sdk/lib/requests/adapters.py +google-cloud-sdk/lib/requests/api.py +google-cloud-sdk/lib/requests/auth.py +google-cloud-sdk/lib/requests/certs.py +google-cloud-sdk/lib/requests/compat.py +google-cloud-sdk/lib/requests/cookies.py +google-cloud-sdk/lib/requests/exceptions.py +google-cloud-sdk/lib/requests/hooks.py +google-cloud-sdk/lib/requests/models.py +google-cloud-sdk/lib/requests/packages/__init__.py +google-cloud-sdk/lib/requests/packages/charade/__init__.py +google-cloud-sdk/lib/requests/packages/charade/big5freq.py +google-cloud-sdk/lib/requests/packages/charade/big5prober.py +google-cloud-sdk/lib/requests/packages/charade/chardistribution.py +google-cloud-sdk/lib/requests/packages/charade/charsetgroupprober.py +google-cloud-sdk/lib/requests/packages/charade/charsetprober.py +google-cloud-sdk/lib/requests/packages/charade/codingstatemachine.py +google-cloud-sdk/lib/requests/packages/charade/compat.py +google-cloud-sdk/lib/requests/packages/charade/constants.py +google-cloud-sdk/lib/requests/packages/charade/cp949prober.py +google-cloud-sdk/lib/requests/packages/charade/escprober.py +google-cloud-sdk/lib/requests/packages/charade/escsm.py +google-cloud-sdk/lib/requests/packages/charade/eucjpprober.py +google-cloud-sdk/lib/requests/packages/charade/euckrfreq.py +google-cloud-sdk/lib/requests/packages/charade/euckrprober.py +google-cloud-sdk/lib/requests/packages/charade/euctwfreq.py +google-cloud-sdk/lib/requests/packages/charade/euctwprober.py +google-cloud-sdk/lib/requests/packages/charade/gb2312freq.py +google-cloud-sdk/lib/requests/packages/charade/gb2312prober.py +google-cloud-sdk/lib/requests/packages/charade/hebrewprober.py +google-cloud-sdk/lib/requests/packages/charade/jisfreq.py +google-cloud-sdk/lib/requests/packages/charade/jpcntx.py +google-cloud-sdk/lib/requests/packages/charade/langbulgarianmodel.py +google-cloud-sdk/lib/requests/packages/charade/langcyrillicmodel.py +google-cloud-sdk/lib/requests/packages/charade/langgreekmodel.py +google-cloud-sdk/lib/requests/packages/charade/langhebrewmodel.py +google-cloud-sdk/lib/requests/packages/charade/langhungarianmodel.py +google-cloud-sdk/lib/requests/packages/charade/langthaimodel.py +google-cloud-sdk/lib/requests/packages/charade/latin1prober.py +google-cloud-sdk/lib/requests/packages/charade/mbcharsetprober.py +google-cloud-sdk/lib/requests/packages/charade/mbcsgroupprober.py +google-cloud-sdk/lib/requests/packages/charade/mbcssm.py +google-cloud-sdk/lib/requests/packages/charade/sbcharsetprober.py +google-cloud-sdk/lib/requests/packages/charade/sbcsgroupprober.py +google-cloud-sdk/lib/requests/packages/charade/sjisprober.py +google-cloud-sdk/lib/requests/packages/charade/universaldetector.py +google-cloud-sdk/lib/requests/packages/charade/utf8prober.py +google-cloud-sdk/lib/requests/packages/chardet/__init__.py +google-cloud-sdk/lib/requests/packages/chardet/big5freq.py +google-cloud-sdk/lib/requests/packages/chardet/big5prober.py +google-cloud-sdk/lib/requests/packages/chardet/chardetect.py +google-cloud-sdk/lib/requests/packages/chardet/chardistribution.py +google-cloud-sdk/lib/requests/packages/chardet/charsetgroupprober.py +google-cloud-sdk/lib/requests/packages/chardet/charsetprober.py +google-cloud-sdk/lib/requests/packages/chardet/codingstatemachine.py +google-cloud-sdk/lib/requests/packages/chardet/compat.py +google-cloud-sdk/lib/requests/packages/chardet/constants.py +google-cloud-sdk/lib/requests/packages/chardet/cp949prober.py +google-cloud-sdk/lib/requests/packages/chardet/escprober.py +google-cloud-sdk/lib/requests/packages/chardet/escsm.py +google-cloud-sdk/lib/requests/packages/chardet/eucjpprober.py +google-cloud-sdk/lib/requests/packages/chardet/euckrfreq.py +google-cloud-sdk/lib/requests/packages/chardet/euckrprober.py +google-cloud-sdk/lib/requests/packages/chardet/euctwfreq.py +google-cloud-sdk/lib/requests/packages/chardet/euctwprober.py +google-cloud-sdk/lib/requests/packages/chardet/gb2312freq.py +google-cloud-sdk/lib/requests/packages/chardet/gb2312prober.py +google-cloud-sdk/lib/requests/packages/chardet/hebrewprober.py +google-cloud-sdk/lib/requests/packages/chardet/jisfreq.py +google-cloud-sdk/lib/requests/packages/chardet/jpcntx.py +google-cloud-sdk/lib/requests/packages/chardet/langbulgarianmodel.py +google-cloud-sdk/lib/requests/packages/chardet/langcyrillicmodel.py +google-cloud-sdk/lib/requests/packages/chardet/langgreekmodel.py +google-cloud-sdk/lib/requests/packages/chardet/langhebrewmodel.py +google-cloud-sdk/lib/requests/packages/chardet/langhungarianmodel.py +google-cloud-sdk/lib/requests/packages/chardet/langthaimodel.py +google-cloud-sdk/lib/requests/packages/chardet/latin1prober.py +google-cloud-sdk/lib/requests/packages/chardet/mbcharsetprober.py +google-cloud-sdk/lib/requests/packages/chardet/mbcsgroupprober.py +google-cloud-sdk/lib/requests/packages/chardet/mbcssm.py +google-cloud-sdk/lib/requests/packages/chardet/sbcharsetprober.py +google-cloud-sdk/lib/requests/packages/chardet/sbcsgroupprober.py +google-cloud-sdk/lib/requests/packages/chardet/sjisprober.py +google-cloud-sdk/lib/requests/packages/chardet/universaldetector.py +google-cloud-sdk/lib/requests/packages/chardet/utf8prober.py +google-cloud-sdk/lib/requests/packages/urllib3/__init__.py +google-cloud-sdk/lib/requests/packages/urllib3/_collections.py +google-cloud-sdk/lib/requests/packages/urllib3/connection.py +google-cloud-sdk/lib/requests/packages/urllib3/connectionpool.py +google-cloud-sdk/lib/requests/packages/urllib3/exceptions.py +google-cloud-sdk/lib/requests/packages/urllib3/fields.py +google-cloud-sdk/lib/requests/packages/urllib3/filepost.py +google-cloud-sdk/lib/requests/packages/urllib3/packages/__init__.py +google-cloud-sdk/lib/requests/packages/urllib3/packages/ordered_dict.py +google-cloud-sdk/lib/requests/packages/urllib3/packages/six.py +google-cloud-sdk/lib/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +google-cloud-sdk/lib/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +google-cloud-sdk/lib/requests/packages/urllib3/poolmanager.py +google-cloud-sdk/lib/requests/packages/urllib3/request.py +google-cloud-sdk/lib/requests/packages/urllib3/response.py +google-cloud-sdk/lib/requests/packages/urllib3/util.py +google-cloud-sdk/lib/requests/sessions.py +google-cloud-sdk/lib/requests/setup.py +google-cloud-sdk/lib/requests/status_codes.py +google-cloud-sdk/lib/requests/structures.py +google-cloud-sdk/lib/requests/test_requests.py +google-cloud-sdk/lib/requests/utils.py +google-cloud-sdk/lib/six/__init__.py +google-cloud-sdk/lib/socks/__init__.py +google-cloud-sdk/lib/uritemplate/__init__.py +google-cloud-sdk/lib/uritemplate/uritemplate.py +google-cloud-sdk/lib/websocket/__init__.py +google-cloud-sdk/lib/yaml/__init__.py +google-cloud-sdk/lib/yaml/composer.py +google-cloud-sdk/lib/yaml/constructor.py +google-cloud-sdk/lib/yaml/cyaml.py +google-cloud-sdk/lib/yaml/dumper.py +google-cloud-sdk/lib/yaml/emitter.py +google-cloud-sdk/lib/yaml/error.py +google-cloud-sdk/lib/yaml/events.py +google-cloud-sdk/lib/yaml/loader.py +google-cloud-sdk/lib/yaml/nodes.py +google-cloud-sdk/lib/yaml/parser.py +google-cloud-sdk/lib/yaml/reader.py +google-cloud-sdk/lib/yaml/representer.py +google-cloud-sdk/lib/yaml/resolver.py +google-cloud-sdk/lib/yaml/scanner.py +google-cloud-sdk/lib/yaml/serializer.py +google-cloud-sdk/lib/yaml/tokens.py +google-cloud-sdk/path.bash.inc +google-cloud-sdk/path.zsh.inc +google-cloud-sdk/platform/bq/LICENSE.txt +google-cloud-sdk/platform/bq/MANIFEST.in +google-cloud-sdk/platform/bq/README.txt +google-cloud-sdk/platform/bq/bigquery_client.py +google-cloud-sdk/platform/bq/bigquery_client_test.py +google-cloud-sdk/platform/bq/bq.py +google-cloud-sdk/platform/bq/discovery/httpswwwgoogleapiscom.bigquery.v2.rest.json +google-cloud-sdk/platform/bq/ez_setup.py +google-cloud-sdk/platform/bq/remove_pyreadline.py +google-cloud-sdk/platform/bq/setup.py +google-cloud-sdk/platform/bq/table_formatter.py +google-cloud-sdk/platform/bq/table_formatter_test.py +google-cloud-sdk/platform/gcutil/CHANGELOG +google-cloud-sdk/platform/gcutil/LICENSE +google-cloud-sdk/platform/gcutil/Makefile +google-cloud-sdk/platform/gcutil/README +google-cloud-sdk/platform/gcutil/VERSION +google-cloud-sdk/platform/gcutil/gcutil +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/LICENSE +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/discovery.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/errors.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/ext/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/http.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/mimeparse.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/model.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/push.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/apiclient/schema.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/anyjson.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/appengine.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/client.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/clientsecrets.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/crypt.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/django_orm.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/file.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/gce.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/keyring_storage.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/locked_file.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/multistore_file.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/tools.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/util.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/oauth2client/xsrfutil.py +google-cloud-sdk/platform/gcutil/lib/google_api_python_client/uritemplate/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/LICENSE +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/app.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/appcommands.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/basetest.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/datelib.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/debug.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/file_util.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/resources.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/run_script_module.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/setup_command.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/shellutil.py +google-cloud-sdk/platform/gcutil/lib/google_apputils/google/apputils/stopwatch.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/address_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/address_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/api_context_parser.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/auth_helper.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/auth_helper_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/basic_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/basic_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/command_base.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/command_base_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/compute/v1.json +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/compute/v1beta16.json +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/disk_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/disk_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/firewall_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/firewall_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/flags_cache.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/forwarding_rule_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/forwarding_rule_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/gce_api.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/gcutil +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/gcutil.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/gcutil_errors.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/gcutil_flags.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/gcutil_logging.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/gcutil_unittest.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/http_health_check_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/http_health_check_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/image_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/image_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/instance_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/instance_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/kernel_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/kernel_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/machine_type_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/machine_type_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/metadata.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/metadata_lib.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/metadata_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api_parser.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api_parser_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api_server.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api_server_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api_types.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_api_types_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_get_pass.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_lists.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_metadata.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/mock_timer.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/move_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/move_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/network_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/network_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/old_mock_api.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/operation_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/operation_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/path_initializer.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/project_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/project_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/region_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/region_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/route_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/route_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/scopes.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/scopes_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/snapshot_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/snapshot_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/ssh_keys.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/ssh_keys_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/table/__init__.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/table/table.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/target_instance_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/target_instance_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/target_pool_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/target_pool_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/thread_pool.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/thread_pool_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/utils.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/utils_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/version.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/version_checker.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/version_checker_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/version_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/whoami.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/windows_password.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/windows_password_test.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/zone_cmds.py +google-cloud-sdk/platform/gcutil/lib/google_compute_engine/gcutil_lib/zone_cmds_test.py +google-cloud-sdk/platform/gcutil/lib/httplib2/LICENSE +google-cloud-sdk/platform/gcutil/lib/httplib2/httplib2/__init__.py +google-cloud-sdk/platform/gcutil/lib/httplib2/httplib2/cacerts.txt +google-cloud-sdk/platform/gcutil/lib/httplib2/httplib2/iri2uri.py +google-cloud-sdk/platform/gcutil/lib/httplib2/httplib2/socks.py +google-cloud-sdk/platform/gcutil/lib/ipaddr/LICENSE +google-cloud-sdk/platform/gcutil/lib/ipaddr/ipaddr/__init__.py +google-cloud-sdk/platform/gcutil/lib/iso8601/LICENSE +google-cloud-sdk/platform/gcutil/lib/iso8601/iso8601/__init__.py +google-cloud-sdk/platform/gcutil/lib/iso8601/iso8601/iso8601.py +google-cloud-sdk/platform/gcutil/lib/iso8601/iso8601/test_iso8601.py +google-cloud-sdk/platform/gcutil/lib/python_gflags/AUTHORS +google-cloud-sdk/platform/gcutil/lib/python_gflags/LICENSE +google-cloud-sdk/platform/gcutil/lib/python_gflags/gflags.py +google-cloud-sdk/platform/gcutil/lib/python_gflags/gflags2man.py +google-cloud-sdk/platform/gcutil/lib/python_gflags/gflags_validators.py +google-cloud-sdk/platform/gcutil/setup.py +google-cloud-sdk/platform/gsutil/CHANGES.md +google-cloud-sdk/platform/gsutil/CHECKSUM +google-cloud-sdk/platform/gsutil/COPYING +google-cloud-sdk/platform/gsutil/LICENSE.third_party +google-cloud-sdk/platform/gsutil/MANIFEST.in +google-cloud-sdk/platform/gsutil/README.md +google-cloud-sdk/platform/gsutil/VERSION +google-cloud-sdk/platform/gsutil/gslib/README +google-cloud-sdk/platform/gsutil/gslib/__init__.py +google-cloud-sdk/platform/gsutil/gslib/__main__.py +google-cloud-sdk/platform/gsutil/gslib/aclhelpers.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/__init__.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/acls.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/anon.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/command_opts.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/crc32c.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/creds.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/dev.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/metadata.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/naming.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/prod.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/projects.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/subdirs.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/support.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/versions.py +google-cloud-sdk/platform/gsutil/gslib/addlhelp/wildcards.py +google-cloud-sdk/platform/gsutil/gslib/bucket_listing_ref.py +google-cloud-sdk/platform/gsutil/gslib/command.py +google-cloud-sdk/platform/gsutil/gslib/command_runner.py +google-cloud-sdk/platform/gsutil/gslib/commands/__init__.py +google-cloud-sdk/platform/gsutil/gslib/commands/acl.py +google-cloud-sdk/platform/gsutil/gslib/commands/cat.py +google-cloud-sdk/platform/gsutil/gslib/commands/compose.py +google-cloud-sdk/platform/gsutil/gslib/commands/config.py +google-cloud-sdk/platform/gsutil/gslib/commands/cors.py +google-cloud-sdk/platform/gsutil/gslib/commands/cp.py +google-cloud-sdk/platform/gsutil/gslib/commands/defacl.py +google-cloud-sdk/platform/gsutil/gslib/commands/du.py +google-cloud-sdk/platform/gsutil/gslib/commands/help.py +google-cloud-sdk/platform/gsutil/gslib/commands/lifecycle.py +google-cloud-sdk/platform/gsutil/gslib/commands/logging.py +google-cloud-sdk/platform/gsutil/gslib/commands/ls.py +google-cloud-sdk/platform/gsutil/gslib/commands/mb.py +google-cloud-sdk/platform/gsutil/gslib/commands/mv.py +google-cloud-sdk/platform/gsutil/gslib/commands/notification.py +google-cloud-sdk/platform/gsutil/gslib/commands/perfdiag.py +google-cloud-sdk/platform/gsutil/gslib/commands/rb.py +google-cloud-sdk/platform/gsutil/gslib/commands/rm.py +google-cloud-sdk/platform/gsutil/gslib/commands/setmeta.py +google-cloud-sdk/platform/gsutil/gslib/commands/stat.py +google-cloud-sdk/platform/gsutil/gslib/commands/test.py +google-cloud-sdk/platform/gsutil/gslib/commands/update.py +google-cloud-sdk/platform/gsutil/gslib/commands/version.py +google-cloud-sdk/platform/gsutil/gslib/commands/versioning.py +google-cloud-sdk/platform/gsutil/gslib/commands/web.py +google-cloud-sdk/platform/gsutil/gslib/cred_types.py +google-cloud-sdk/platform/gsutil/gslib/data/cacerts.txt +google-cloud-sdk/platform/gsutil/gslib/exception.py +google-cloud-sdk/platform/gsutil/gslib/file_part.py +google-cloud-sdk/platform/gsutil/gslib/help_provider.py +google-cloud-sdk/platform/gsutil/gslib/name_expansion.py +google-cloud-sdk/platform/gsutil/gslib/no_op_auth_plugin.py +google-cloud-sdk/platform/gsutil/gslib/parallelism_framework_util.py +google-cloud-sdk/platform/gsutil/gslib/plurality_checkable_iterator.py +google-cloud-sdk/platform/gsutil/gslib/project_id.py +google-cloud-sdk/platform/gsutil/gslib/storage_uri_builder.py +google-cloud-sdk/platform/gsutil/gslib/tests/__init__.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_Doption.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_acl.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_cat.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_command_runner.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_compose.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_cors.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_cp.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_cp_funcs.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_data/test.gif +google-cloud-sdk/platform/gsutil/gslib/tests/test_data/test.mp3 +google-cloud-sdk/platform/gsutil/gslib/tests/test_defacl.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_du.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_file_part.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_gsutil.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_help.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_lifecycle.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_logging.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_ls.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_mv.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_naming.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_notification.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_oauth2_client.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_parallelism_framework.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_perfdiag.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_plurality_checkable_iterator.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_rm.py +google-cloud-sdk/platform/gsutil/gslib/tests/test_setmeta.py *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:26:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6117E4C1 for ; Sun, 10 Aug 2014 03:26:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 40C6F2C6F for ; Sun, 10 Aug 2014 03:26:33 +0000 (UTC) Received: from marcus (uid 936) (envelope-from marcus@FreeBSD.org) id 2095 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 03:26:32 +0000 From: Joe Marcus Clarke Date: Sun, 10 Aug 2014 03:26:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364496 - in head/net/wireshark: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6e669.2095.2ea16552@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:26:33 -0000 Author: marcus Date: Sun Aug 10 03:26:32 2014 New Revision: 364496 URL: http://svnweb.freebsd.org/changeset/ports/364496 QAT: https://qat.redports.org/buildarchive/r364496/ Log: Update to 1.12.0 and switch to GTK+ 3.0 for the GUI. See https://www.wireshark.org/docs/relnotes/wireshark-1.12.0.html for the changes in this release. Modified: head/net/wireshark/Makefile head/net/wireshark/distinfo head/net/wireshark/files/patch-epan_Makefile.in head/net/wireshark/pkg-plist Modified: head/net/wireshark/Makefile ============================================================================== --- head/net/wireshark/Makefile Sun Aug 10 03:09:33 2014 (r364495) +++ head/net/wireshark/Makefile Sun Aug 10 03:26:32 2014 (r364496) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= wireshark -PORTVERSION= 1.10.8 -PORTREVISION= 2 +PORTVERSION= 1.12.0 CATEGORIES= net ipv6 MASTER_SITES= http://www.wireshark.org/download/src/ \ http://ftp.uni-kl.de/pub/wireshark/src/ \ @@ -21,12 +20,13 @@ COMMENT?= Powerful network analyzer/capt DATADIR_NAME= wireshark USE_PERL5= build -USE_PYTHON_BUILD=yes -USES= iconv gettext pkgconfig gmake perl5 tar:bzip2 libtool +USES= iconv gettext pkgconfig gmake perl5 tar:bzip2 libtool \ + python:build WANT_GNOME= yes USE_OPENSSL= yes CONFIGURE_ARGS+= --program-transform-name="" \ - --with-ssl=${OPENSSLBASE} + --with-ssl=${OPENSSLBASE} \ + --with-qt=no USE_LDCONFIG= yes DATADIR= ${PREFIX}/share/${DATADIR_NAME} CFLAGS+= -funit-at-a-time @@ -37,7 +37,7 @@ DESKTOP_ENTRIES= "Wireshark" "Network Pr "wireshark" "System;Monitor;GTK;" true .for x in capinfos editcap mergecap rawshark text2pcap dftest randpkt \ - reordercap + reordercap captype .if defined(LITE) PLIST_SUB+= ${x:tu}="@comment $x not installed" \ ${x:tu}_MAN="@comment $x not installed " @@ -67,7 +67,8 @@ USE_XORG= x11 .if ${PORT_OPTIONS:MX11} PLIST_SUB+= WIRESHARK=bin/wireshark WIRESHARK_MAN="" -USE_GNOME+= gtk20 +USE_GNOME+= gtk30 +CONFIGURE_ARGS+=--with-gtk3=yes .else PLIST_SUB+= WIRESHARK="@comment wireshark not built" \ WIRESHARK_MAN="@comment wireshark not built " Modified: head/net/wireshark/distinfo ============================================================================== --- head/net/wireshark/distinfo Sun Aug 10 03:09:33 2014 (r364495) +++ head/net/wireshark/distinfo Sun Aug 10 03:26:32 2014 (r364496) @@ -1,2 +1,2 @@ -SHA256 (wireshark-1.10.8.tar.bz2) = 27d9cf4f0ca1ac436104b7f27caf8ad65f73db09edc8df0742ce9688c7d38763 -SIZE (wireshark-1.10.8.tar.bz2) = 26715025 +SHA256 (wireshark-1.12.0.tar.bz2) = 0f59fea1c5b35de90af681067e49113fee0dd7a901750a97fa25f4256dbf13c7 +SIZE (wireshark-1.12.0.tar.bz2) = 29033823 Modified: head/net/wireshark/files/patch-epan_Makefile.in ============================================================================== --- head/net/wireshark/files/patch-epan_Makefile.in Sun Aug 10 03:09:33 2014 (r364495) +++ head/net/wireshark/files/patch-epan_Makefile.in Sun Aug 10 03:26:32 2014 (r364496) @@ -1,10 +1,10 @@ ---- epan/Makefile.in.orig 2013-06-05 13:27:48.000000000 -0400 -+++ epan/Makefile.in 2013-06-08 17:55:04.000000000 -0400 -@@ -111,6 +111,7 @@ target_triplet = @target@ - DIST_COMMON = $(srcdir)/../Makefile.am.inc $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.common $(srcdir)/Makefile.in \ - $(srcdir)/doxygen.cfg.in -+LIBS = @LUA_LIBS@ +--- epan/Makefile.in.orig 2014-07-31 15:23:19.000000000 -0400 ++++ epan/Makefile.in 2014-08-09 22:55:55.000000000 -0400 +@@ -150,6 +150,7 @@ DIST_COMMON = $(srcdir)/../Makefile.am.i + $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ + $(srcdir)/doxygen.cfg.in $(top_srcdir)/depcomp @HAVE_WARNINGS_AS_ERRORS_TRUE@am__append_1 = -Werror - EXTRA_PROGRAMS = reassemble_test$(EXEEXT) ++LIBS = @LUA_LIBS@ + EXTRA_PROGRAMS = reassemble_test$(EXEEXT) tvbtest$(EXEEXT) \ + oids_test$(EXEEXT) subdir = epan Modified: head/net/wireshark/pkg-plist ============================================================================== --- head/net/wireshark/pkg-plist Sun Aug 10 03:09:33 2014 (r364495) +++ head/net/wireshark/pkg-plist Sun Aug 10 03:26:32 2014 (r364496) @@ -1,4 +1,5 @@ %%CAPINFOS%% +%%CAPTYPE%% %%DFTEST%% bin/dumpcap %%EDITCAP%% @@ -9,16 +10,18 @@ bin/dumpcap %%REORDERCAP%% bin/tshark %%TEXT2PCAP%% +lib/libfiletap.so +lib/libfiletap.so.0 +lib/libfiletap.so.0.0.0 lib/libwireshark.so -lib/libwireshark.so.3 -lib/libwireshark.so.3.1.8 +lib/libwireshark.so.5 +lib/libwireshark.so.5.0.0 lib/libwiretap.so -lib/libwiretap.so.3 -lib/libwiretap.so.3.0.8 +lib/libwiretap.so.4 +lib/libwiretap.so.4.0.0 lib/libwsutil.so -lib/libwsutil.so.3 -lib/libwsutil.so.3.0.0 -lib/wireshark/plugins/%%PORTVERSION%%/asn1.so +lib/libwsutil.so.4 +lib/libwsutil.so.4.0.0 lib/wireshark/plugins/%%PORTVERSION%%/docsis.so lib/wireshark/plugins/%%PORTVERSION%%/ethercat.so lib/wireshark/plugins/%%PORTVERSION%%/gryphon.so @@ -57,14 +60,17 @@ man/man4/wireshark-filter.4.gz %%DATADIR%%/diameter/AlcatelLucent.xml %%DATADIR%%/diameter/ChinaTelecom.xml %%DATADIR%%/diameter/Cisco.xml +%%DATADIR%%/diameter/Custom.xml %%DATADIR%%/diameter/Ericsson.xml %%DATADIR%%/diameter/Nokia.xml %%DATADIR%%/diameter/NokiaSiemensNetworks.xml %%DATADIR%%/diameter/SKT.xml +%%DATADIR%%/diameter/Starent.xml %%DATADIR%%/diameter/TGPPGmb.xml %%DATADIR%%/diameter/TGPPRx.xml %%DATADIR%%/diameter/TGPPS9.xml %%DATADIR%%/diameter/TGPPSh.xml +%%DATADIR%%/diameter/VerizonWireless.xml %%DATADIR%%/diameter/Vodafone.xml %%DATADIR%%/diameter/chargecontrol.xml %%DATADIR%%/diameter/dictionary.dtd @@ -118,6 +124,7 @@ man/man4/wireshark-filter.4.gz %%DATADIR%%/radius/dictionary.alcatel %%DATADIR%%/radius/dictionary.alcatel.esam %%DATADIR%%/radius/dictionary.alcatel.sr +%%DATADIR%%/radius/dictionary.alcatel-lucent.aaa %%DATADIR%%/radius/dictionary.alcatel-lucent.xylan %%DATADIR%%/radius/dictionary.alteon %%DATADIR%%/radius/dictionary.altiga From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:27:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E7B55A5 for ; Sun, 10 Aug 2014 03:27:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 444B02C7C for ; Sun, 10 Aug 2014 03:27:49 +0000 (UTC) Received: from osa (uid 975) (envelope-from osa@FreeBSD.org) id 20bd by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 03:27:49 +0000 From: Sergey A. Osokin Date: Sun, 10 Aug 2014 03:27:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364497 - in head/www: nginx nginx-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6e6b5.20bd.7098e9c2@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:27:49 -0000 Author: osa Date: Sun Aug 10 03:27:48 2014 New Revision: 364497 URL: http://svnweb.freebsd.org/changeset/ports/364497 QAT: https://qat.redports.org/buildarchive/r364497/ Log: Add CPE information. Modified: head/www/nginx-devel/Makefile head/www/nginx/Makefile Modified: head/www/nginx-devel/Makefile ============================================================================== --- head/www/nginx-devel/Makefile Sun Aug 10 03:26:32 2014 (r364496) +++ head/www/nginx-devel/Makefile Sun Aug 10 03:27:48 2014 (r364497) @@ -15,6 +15,11 @@ COMMENT= Robust and small WWW server LICENSE= BSD +USES+= cpe + +CPE_VENDOR= igor_sysoev +CPE_PRODUCT= nginx + NO_OPTIONS_SORT= yes OPTIONS_DEFINE= \ DEBUG \ Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Sun Aug 10 03:26:32 2014 (r364496) +++ head/www/nginx/Makefile Sun Aug 10 03:27:48 2014 (r364497) @@ -15,6 +15,11 @@ COMMENT= Robust and small WWW server LICENSE= BSD +USES+= cpe + +CPE_VENDOR= igor_sysoev +CPE_PRODUCT= nginx + NO_OPTIONS_SORT= yes OPTIONS_DEFINE= \ DEBUG \ From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:28:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 975) id 7813A68B; Sun, 10 Aug 2014 03:28:30 +0000 (UTC) Date: Sun, 10 Aug 2014 03:28:30 +0000 From: "Sergey A. Osokin" To: =?koi8-r?B?UmVuw6k=?= Ladan Subject: Re: svn commit: r364460 - head/www/nginx Message-ID: <20140810032830.GB69380@FreeBSD.org> References: <53e66a49.2ebf.35c2c6fd@svn.freebsd.org> <53E6B967.1030608@freebsd.org> <20140810030851.GA69380@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20140810030851.GA69380@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:28:30 -0000 On Sun, Aug 10, 2014 at 03:08:51AM +0000, Sergey A. Osokin wrote: > Hi Rene, > > On Sun, Aug 10, 2014 at 02:14:31AM +0200, René Ladan wrote: > > On 09-08-2014 20:36, Sergey A. Osokin wrote: > > > Author: osa > > > Date: Sat Aug 9 18:36:56 2014 > > > New Revision: 364460 > > > URL: http://svnweb.freebsd.org/changeset/ports/364460 > > > QAT: https://qat.redports.org/buildarchive/r364460/ > > > > > > Log: > > > Update from 1.6.0 to 1.6.1. > > > > > > > > > > > > *) Security: pipelined commands were not discarded after STARTTLS > > > command in SMTP proxy (CVE-2014-3556); the bug had appeared in 1.5.6. > > > Thanks to Chris Boulton. > > The vuxml file says < 1.6.4,2 is vulnerable, I assume that is a typo? > > Yes, the issue has been fixed. > > > Also, can you add CPE information to the Makefile (see > > https://wiki.freebsd.org/Ports/CPE ) ? > > Will do. Done. -- Sergey A. Osokin osa@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:37:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B87D858 for ; Sun, 10 Aug 2014 03:37:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 516B32D7B for ; Sun, 10 Aug 2014 03:37:31 +0000 (UTC) Received: from swills (uid 1238) (envelope-from swills@FreeBSD.org) id 24ad by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 03:37:31 +0000 From: Steve Wills Date: Sun, 10 Aug 2014 03:37:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364498 - head/net/google-cloud-sdk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6e8fb.24ad.559acd6b@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:37:31 -0000 Author: swills Date: Sun Aug 10 03:37:30 2014 New Revision: 364498 URL: http://svnweb.freebsd.org/changeset/ports/364498 QAT: https://qat.redports.org/buildarchive/r364498/ Log: net/google-cloud-sdk: add actual version number, depend on python Noticed there was an actual version number in the output of "gcloud version", so use that. Also, depend on lang/python for the "python" symlink so the scripts run. Modified: head/net/google-cloud-sdk/Makefile Modified: head/net/google-cloud-sdk/Makefile ============================================================================== --- head/net/google-cloud-sdk/Makefile Sun Aug 10 03:27:48 2014 (r364497) +++ head/net/google-cloud-sdk/Makefile Sun Aug 10 03:37:30 2014 (r364498) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= google-cloud-sdk -PORTVERSION= 0.0.0.0.20140809 +PORTVERSION= 0.9.25 CATEGORIES= net MASTER_SITES= https://dl.google.com/dl/cloudsdk/release/ DISTNAME= google-cloud-sdk-coretools-linux-x86_64 @@ -14,6 +14,8 @@ USES= python NO_BUILD= yes WRKSRC= ${WRKDIR}/google-cloud-sdk +RUN_DEPENDS= python:${PORTSDIR}/lang/python + do-install: ${FIND} ${WRKSRC}/help -type f -name '*.1' -exec ${GZIP_CMD} {} + ( cd ${WRKSRC}/help ; ${COPYTREE_SHARE} man ${STAGEDIR}${PREFIX} ) From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 03:58:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8EC9CC0 for ; Sun, 10 Aug 2014 03:58:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 AB6853000 for ; Sun, 10 Aug 2014 03:58:37 +0000 (UTC) Received: from ashish (uid 1228) (envelope-from ashish@FreeBSD.org) id 2dcf by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 03:58:37 +0000 From: Ashish SHUKLA Date: Sun, 10 Aug 2014 03:58:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364499 - head/editors/emacs-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e6eded.2dcf.696b81de@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 03:58:38 -0000 Author: ashish Date: Sun Aug 10 03:58:36 2014 New Revision: 364499 URL: http://svnweb.freebsd.org/changeset/ports/364499 QAT: https://qat.redports.org/buildarchive/r364499/ Log: - Update to bzr snapshot revision 117676 - Move /var/games/emacs stuff from pkg-plist into pkg-{de,}install as it's not installed in $PREFIX, which causes issues with `check-plist' target - Remove extra @dirrmtry entries 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 Sun Aug 10 03:37:30 2014 (r364498) +++ head/editors/emacs-devel/Makefile Sun Aug 10 03:58:36 2014 (r364499) @@ -22,7 +22,7 @@ CONFLICTS= emacs-19.* emacs21-[0-9]* ema emacs-nox11-[0-9]* EMACS_VER= 24.4.50 -EMACS_REV= 117564 +EMACS_REV= 117676 GNU_CONFIGURE= yes USES= gmake makeinfo ncurses pkgconfig shebangfix tar:xz CPPFLAGS+= -I${LOCALBASE}/include @@ -95,6 +95,21 @@ SVG_CONFIGURE_WITH= rsvg X11_CONFIGURE_WITH= x X11_USE= XORG=x11 +X11_PLIST_DIRSTRY_OFF= share/icons/hicolor/scalable/mimetypes \ + share/icons/hicolor/scalable/apps \ + share/icons/hicolor/scalable \ + share/icons/hicolor/48x48/apps \ + share/icons/hicolor/48x48 \ + share/icons/hicolor/32x32/apps \ + share/icons/hicolor/32x32 \ + share/icons/hicolor/24x24/apps \ + share/icons/hicolor/24x24 \ + share/icons/hicolor/16x16/apps \ + share/icons/hicolor/16x16 \ + share/icons/hicolor/128x128/apps \ + share/icons/hicolor/128x128 \ + share/icons/hicolor \ + share/icons GTK2_USE= GNOME=gtk20 GTK2_CONFIGURE_ON= --with-x-toolkit=gtk2 @@ -235,8 +250,9 @@ add-plist-data: pre-configure: @cd ${WRKSRC} && ./autogen.sh -.if ${PORT_OPTIONS:MSOURCES} post-install: + @${RM} -rf ${STAGEDIR}/var/games/emacs +.if ${PORT_OPTIONS:MSOURCES} @${MKDIR} ${STAGEDIR}${DATADIR}/${EMACS_VER}/src @${INSTALL_DATA} ${WRKSRC}/src/*.[ch] ${STAGEDIR}${DATADIR}/${EMACS_VER}/src @${INSTALL_DATA} ${WRKSRC}/sources.el ${STAGEDIR}${DATADIR}/${EMACS_VER}/site-lisp/site-start.el Modified: head/editors/emacs-devel/distinfo ============================================================================== --- head/editors/emacs-devel/distinfo Sun Aug 10 03:37:30 2014 (r364498) +++ head/editors/emacs-devel/distinfo Sun Aug 10 03:58:36 2014 (r364499) @@ -1,2 +1,2 @@ -SHA256 (emacs-24.4.50.117564.tar.xz) = fb2525836a770cc1f93e2f381b4a2af5dc70809aeef57be8de4d5fead3834342 -SIZE (emacs-24.4.50.117564.tar.xz) = 31067732 +SHA256 (emacs-24.4.50.117676.tar.xz) = f93ecb091c9ef06735d6144ba05e8c7c62c83975b8816a349401b98fe7ab42ab +SIZE (emacs-24.4.50.117676.tar.xz) = 31075504 Modified: head/editors/emacs-devel/pkg-plist ============================================================================== --- head/editors/emacs-devel/pkg-plist Sun Aug 10 03:37:30 2014 (r364498) +++ head/editors/emacs-devel/pkg-plist Sun Aug 10 03:58:36 2014 (r364499) @@ -15,6 +15,7 @@ share/applications/emacs.desktop %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/site-lisp/site-start.el %%DATADIR%%/%%EMACS_VER%%/site-lisp/subdirs.el %%DATADIR%%/site-lisp/subdirs.el +%%INFODIR%%/dir share/icons/hicolor/128x128/apps/emacs.png share/icons/hicolor/16x16/apps/emacs.png share/icons/hicolor/24x24/apps/emacs.png @@ -24,22 +25,3 @@ share/icons/hicolor/scalable/apps/emacs. share/icons/hicolor/scalable/mimetypes/emacs-document.svg @dirrm %%INFODIR%% @dirrmtry %%DATADIR%%/%%EMACS_VER%%/site-lisp -@dirrmtry share/icons/hicolor/scalable/mimetypes -@dirrmtry share/icons/hicolor/scalable/apps -@dirrmtry share/icons/hicolor/scalable -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/24x24/apps -@dirrmtry share/icons/hicolor/24x24 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons -@unexec rmdir /var/games/emacs 2>/dev/null || true -@cwd /var/games/emacs -snake-scores -tetris-scores From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 05:33:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38587571 for ; Sun, 10 Aug 2014 05:33:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 10151276B for ; Sun, 10 Aug 2014 05:33:30 +0000 (UTC) Received: from culot (uid 1245) (envelope-from culot@FreeBSD.org) id 2803 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 05:33:29 +0000 From: Frederic Culot Date: Sun, 10 Aug 2014 05:33:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364500 - head/graphics/p5-Image-ExifTool-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e70429.2803.10c0ca1e@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 05:33:30 -0000 Author: culot Date: Sun Aug 10 05:33:29 2014 New Revision: 364500 URL: http://svnweb.freebsd.org/changeset/ports/364500 QAT: https://qat.redports.org/buildarchive/r364500/ Log: - Update to 9.69 PR: ports/192369 Submitted by: Jin-Sih Lin (maintainer) Modified: head/graphics/p5-Image-ExifTool-devel/Makefile head/graphics/p5-Image-ExifTool-devel/distinfo head/graphics/p5-Image-ExifTool-devel/pkg-plist Modified: head/graphics/p5-Image-ExifTool-devel/Makefile ============================================================================== --- head/graphics/p5-Image-ExifTool-devel/Makefile Sun Aug 10 03:58:36 2014 (r364499) +++ head/graphics/p5-Image-ExifTool-devel/Makefile Sun Aug 10 05:33:29 2014 (r364500) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Image-ExifTool -PORTVERSION= 9.67 +PORTVERSION= 9.69 CATEGORIES= graphics perl5 MASTER_SITES= http://www.sno.phy.queensu.ca/~phil/exiftool/ PKGNAMEPREFIX= p5- Modified: head/graphics/p5-Image-ExifTool-devel/distinfo ============================================================================== --- head/graphics/p5-Image-ExifTool-devel/distinfo Sun Aug 10 03:58:36 2014 (r364499) +++ head/graphics/p5-Image-ExifTool-devel/distinfo Sun Aug 10 05:33:29 2014 (r364500) @@ -1,2 +1,2 @@ -SHA256 (Image-ExifTool-9.67.tar.gz) = ca7525247dc33d675dcfaf2d0e6564ef284257a84277fb120197aed4434f020d -SIZE (Image-ExifTool-9.67.tar.gz) = 3846630 +SHA256 (Image-ExifTool-9.69.tar.gz) = 1b8b4a18ebe250e65f837da0e422e02f84dd4dd6bb3a8324511dd311ff004ea9 +SIZE (Image-ExifTool-9.69.tar.gz) = 3856333 Modified: head/graphics/p5-Image-ExifTool-devel/pkg-plist ============================================================================== --- head/graphics/p5-Image-ExifTool-devel/pkg-plist Sun Aug 10 03:58:36 2014 (r364499) +++ head/graphics/p5-Image-ExifTool-devel/pkg-plist Sun Aug 10 05:33:29 2014 (r364500) @@ -76,6 +76,7 @@ bin/exiftool %%PERL5_MAN3%%/Image::ExifTool::Lang::zh_cn.3.gz %%PERL5_MAN3%%/Image::ExifTool::Lang::zh_tw.3.gz %%PERL5_MAN3%%/Image::ExifTool::Leaf.3.gz +%%PERL5_MAN3%%/Image::ExifTool::Lytro.3.gz %%PERL5_MAN3%%/Image::ExifTool::M2TS.3.gz %%PERL5_MAN3%%/Image::ExifTool::MIE.3.gz %%PERL5_MAN3%%/Image::ExifTool::MIEUnits.3.gz @@ -267,6 +268,7 @@ bin/exiftool %%SITE_PERL%%/Image/ExifTool/Lang/zh_cn.pm %%SITE_PERL%%/Image/ExifTool/Lang/zh_tw.pm %%SITE_PERL%%/Image/ExifTool/Leaf.pm +%%SITE_PERL%%/Image/ExifTool/Lytro.pm %%SITE_PERL%%/Image/ExifTool/M2TS.pm %%SITE_PERL%%/Image/ExifTool/MIE.pm %%SITE_PERL%%/Image/ExifTool/MIEUnits.pod From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 05:39:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8386968B for ; Sun, 10 Aug 2014 05:39:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 5B40D2791 for ; Sun, 10 Aug 2014 05:39:50 +0000 (UTC) Received: from sunpoet (uid 1240) (envelope-from sunpoet@FreeBSD.org) id 2825 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 05:39:50 +0000 From: Sunpoet Po-Chuan Hsieh Date: Sun, 10 Aug 2014 05:39:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364501 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e705a6.2825.4630a450@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 05:39:50 -0000 Author: sunpoet Date: Sun Aug 10 05:39:49 2014 New Revision: 364501 URL: http://svnweb.freebsd.org/changeset/ports/364501 QAT: https://qat.redports.org/buildarchive/r364501/ Log: - Fix typo Modified: head/CHANGES Modified: head/CHANGES ============================================================================== --- head/CHANGES Sun Aug 10 05:33:29 2014 (r364500) +++ head/CHANGES Sun Aug 10 05:39:49 2014 (r364501) @@ -13,7 +13,7 @@ All ports committers are allowed to comm 20140809: AUTHOR: mva@FreeBSD.org - The Python language bits of the poorts framework have been converted + The Python language bits of the ports framework have been converted to USES. Instead of USE_PYTHON, please use USES=python instead. USE_PYTHON=yes becomes USES=python @@ -21,7 +21,7 @@ AUTHOR: mva@FreeBSD.org USE_PYTHON_BUILD=3.3 becomes USES=python:3.3,build ... - Additionally, several Python specific feeatures have been converted + Additionally, several Python specific features have been converted to USES-inspired PYTHON_FEATURES=,. USE_PYDISTUTILS becomes PYTHON_FEATURES=distutils From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 05:55:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B05B5843 for ; Sun, 10 Aug 2014 05:55:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 864D328CA for ; Sun, 10 Aug 2014 05:55:55 +0000 (UTC) Received: from culot (uid 1245) (envelope-from culot@FreeBSD.org) id 2ec6 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 05:55:55 +0000 From: Frederic Culot Date: Sun, 10 Aug 2014 05:55:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364502 - head/ports-mgmt/portsreinstall X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7096b.2ec6.317651a8@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 05:55:55 -0000 Author: culot Date: Sun Aug 10 05:55:54 2014 New Revision: 364502 URL: http://svnweb.freebsd.org/changeset/ports/364502 QAT: https://qat.redports.org/buildarchive/r364502/ Log: - Update to 3.1.0 [1] - Update LICENSE (BSD2CLAUSE) PR: ports/192527 [1] Submitted by: Mamoru Sakaue (maintainer, from another address) Modified: head/ports-mgmt/portsreinstall/Makefile head/ports-mgmt/portsreinstall/distinfo Modified: head/ports-mgmt/portsreinstall/Makefile ============================================================================== --- head/ports-mgmt/portsreinstall/Makefile Sun Aug 10 05:39:49 2014 (r364501) +++ head/ports-mgmt/portsreinstall/Makefile Sun Aug 10 05:55:54 2014 (r364502) @@ -2,15 +2,15 @@ # $FreeBSD$ PORTNAME= portsreinstall -PORTVERSION= 3.0.5 +PORTVERSION= 3.1.0 CATEGORIES= ports-mgmt -MASTER_SITES= SFJP/${PORTNAME}/60071/ \ +MASTER_SITES= SFJP/${PORTNAME}/61770/ \ http://www.mwghennndo.com/software/${PORTNAME}/ MAINTAINER= sakaue.mamoru@samurai.mwghennn.net COMMENT= Ports upgrading utility for massive forced reinstall -LICENSE= BSD +LICENSE= BSD2CLAUSE MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} Modified: head/ports-mgmt/portsreinstall/distinfo ============================================================================== --- head/ports-mgmt/portsreinstall/distinfo Sun Aug 10 05:39:49 2014 (r364501) +++ head/ports-mgmt/portsreinstall/distinfo Sun Aug 10 05:55:54 2014 (r364502) @@ -1,2 +1,2 @@ -SHA256 (portsreinstall-3.0.5.tar.gz) = 28fd99c253304dd05880137f8ecb6d28b091b8607f692c43e423203bd50087f1 -SIZE (portsreinstall-3.0.5.tar.gz) = 80972 +SHA256 (portsreinstall-3.1.0.tar.gz) = 237747567948a111a60ad6d327e5031af38e63c98ee63a4ac64e994f5de7fe22 +SIZE (portsreinstall-3.1.0.tar.gz) = 82969 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 06:06:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4FE9BB6 for ; Sun, 10 Aug 2014 06:06:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 AB54429C0 for ; Sun, 10 Aug 2014 06:06:13 +0000 (UTC) Received: from culot (uid 1245) (envelope-from culot@FreeBSD.org) id 234f by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 06:06:13 +0000 From: Frederic Culot Date: Sun, 10 Aug 2014 06:06:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364503 - head/devel/py-icalendar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e70bd5.234f.36d9770b@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 06:06:13 -0000 Author: culot Date: Sun Aug 10 06:06:12 2014 New Revision: 364503 URL: http://svnweb.freebsd.org/changeset/ports/364503 QAT: https://qat.redports.org/buildarchive/r364503/ Log: - Update to 3.8.2 PR: ports/192460 Submitted by: Junji NAKANISHI (maintainer) Modified: head/devel/py-icalendar/Makefile head/devel/py-icalendar/distinfo Modified: head/devel/py-icalendar/Makefile ============================================================================== --- head/devel/py-icalendar/Makefile Sun Aug 10 05:55:54 2014 (r364502) +++ head/devel/py-icalendar/Makefile Sun Aug 10 06:06:12 2014 (r364503) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= icalendar -PORTVERSION= 3.5 +PORTVERSION= 3.8.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,9 +15,8 @@ LICENSE= BSD2CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>0:${PORTSDIR}/devel/py-dateutil \ ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz -USE_PYTHON= 2 -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +PYTHON_FEATURES= distutils, autoplist DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} PORTDOCS= * @@ -29,7 +28,7 @@ OPTIONS_DEFINE= DOCS post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR}/ - ${INSTALL_DATA} ${WRKSRC}/README.rst ${WRKSRC}/docs/changelog.rst ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR}/ .endif .include Modified: head/devel/py-icalendar/distinfo ============================================================================== --- head/devel/py-icalendar/distinfo Sun Aug 10 05:55:54 2014 (r364502) +++ head/devel/py-icalendar/distinfo Sun Aug 10 06:06:12 2014 (r364503) @@ -1,2 +1,2 @@ -SHA256 (icalendar-3.5.tar.gz) = 2fc1094896b9dcdfc87b5c07ec4a4dd3b65b70c1650e91884eff96ccb9e89ea9 -SIZE (icalendar-3.5.tar.gz) = 59780 +SHA256 (icalendar-3.8.2.tar.gz) = 4252daaccabb4903c9d96397aa392ef58374c0f762b710e30de9c0a7cae3dcbb +SIZE (icalendar-3.8.2.tar.gz) = 64546 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 06:21:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9AF3E47 for ; Sun, 10 Aug 2014 06:21:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 C71922B20 for ; Sun, 10 Aug 2014 06:21:54 +0000 (UTC) Received: from wen (uid 1209) (envelope-from wen@FreeBSD.org) id 2c5f by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 06:21:54 +0000 From: Wen Heping Date: Sun, 10 Aug 2014 06:21:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364504 - in head/biology/libsbml: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e70f82.2c5f.1169fb26@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 06:21:54 -0000 Author: wen Date: Sun Aug 10 06:21:53 2014 New Revision: 364504 URL: http://svnweb.freebsd.org/changeset/ports/364504 QAT: https://qat.redports.org/buildarchive/r364504/ Log: - Update to 5.10.2 PR: 192198 Submitted by: tkato432@yahoo.com Deleted: head/biology/libsbml/files/ Modified: head/biology/libsbml/Makefile head/biology/libsbml/distinfo head/biology/libsbml/pkg-plist Modified: head/biology/libsbml/Makefile ============================================================================== --- head/biology/libsbml/Makefile Sun Aug 10 06:06:12 2014 (r364503) +++ head/biology/libsbml/Makefile Sun Aug 10 06:21:53 2014 (r364504) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= libsbml -PORTVERSION= 5.10.0 +PORTVERSION= 5.10.2 CATEGORIES= biology devel -MASTER_SITES= SF -MASTER_SITE_SUBDIR= sbml/${PORTNAME}/${PORTVERSION}/stable +MASTER_SITES= SF/sbml/${PORTNAME}/${PORTVERSION}/stable DISTNAME= libSBML-${PORTVERSION}-core-src MAINTAINER= ports@FreeBSD.org @@ -13,46 +12,39 @@ COMMENT= API Library for Working with SB LICENSE= LGPL21 -LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 - -OPTIONS_DEFINE= PYTHON RUBY EXAMPLES +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= gmake libtool -GNU_CONFIGURE= yes +USES= cmake:outsource iconv +USE_GNOME= libxml2 USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -.include +CFLAGS+= -I${ICONV_PREFIX}/include +LDFLAGS+= -L${ICONV_PREFIX}/lib -.if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= yes -BUILD_DEPENDS+= ${LOCALBASE}/bin/python:${PORTSDIR}/lang/python -CONFIGURE_ARGS+= --with-python -PLIST_SUB+= WITH_PYTHON="" \ - SBML_EGGINFO=${PORTNAME}-${PORTVERSION}-${PYTHON_VERSION:S/thon//}.egg-info -.else -PLIST_SUB+= WITH_PYTHON="@comment " -.endif - -.if ${PORT_OPTIONS:MRUBY} -USE_RUBY= yes -BUILD_DEPENDS+= ${LOCALBASE}/bin/ruby:${PORTSDIR}/lang/ruby19 -CONFIGURE_ARGS+= --with-ruby -PLIST_SUB+= WITH_RUBY="" -.else -PLIST_SUB+= WITH_RUBY="@comment " -.endif +OPTIONS_DEFINE= EXAMPLES PYTHON RUBY +OPTIONS_SUB= yes + +PYTHON_BUILD_DEPENDS= swig2.0:${PORTSDIR}/devel/swig20 +PYTHON_USE= python=yes +PYTHON_CMAKE_ON= -DWITH_PYTHON:BOOL=ON \ + -DPYTHON_INCLUDE_DIR:STRING="${PYTHON_INCLUDEDIR}" \ + -DPYTHON_LIBRARY:STRING="${PYTHONBASE}/lib/lib${PYTHON_VERSION}.so" \ + -DPYTHON_EXECUTABLE:STRING="${PYTHON_CMD}" + +RUBY_BUILD_DEPENDS= swig2.0:${PORTSDIR}/devel/swig20 +RUBY_USE= ruby=yes +RUBY_CMAKE_ON= -DWITH_RUBY:BOOL=ON post-patch: - ${REINPLACE_CMD} -e 's#%%PREFIX%%#${STAGEDIR}${PREFIX}#' \ - ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + 's|/usr/local/include|${LOCALBASE}/include| ; \ + s|/usr/local/lib|${LOCALBASE}/lib| ; \ + /$${DOCUMENTATION_FILES}/s|^|#|' ${WRKSRC}/CMakeLists.txt post-install: -.if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/examples \ - && ${FIND} . -type f -name "._Makefile.in" -exec ${RM} -f {} \; \ - && ${FIND} . -type d -exec ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/\{} \; \ - && ${FIND} . -type f -exec ${INSTALL_DATA} \{} ${STAGEDIR}${EXAMPLESDIR}/\{} \; -.endif + @${TAR} -C ${WRKSRC}/examples --exclude "*Makefile*" -cf - . | \ + ${TAR} -C ${STAGEDIR}${EXAMPLESDIR} --unlink -xf - + @${CHMOD} -R a+rX ${STAGEDIR}${EXAMPLESDIR} + .include Modified: head/biology/libsbml/distinfo ============================================================================== --- head/biology/libsbml/distinfo Sun Aug 10 06:06:12 2014 (r364503) +++ head/biology/libsbml/distinfo Sun Aug 10 06:21:53 2014 (r364504) @@ -1,2 +1,2 @@ -SHA256 (libSBML-5.10.0-core-src.tar.gz) = c7e733443caaf4615e90a29111ff988b89b1c9a679de0a9737fc2a86840df1e0 -SIZE (libSBML-5.10.0-core-src.tar.gz) = 11577010 +SHA256 (libSBML-5.10.2-core-src.tar.gz) = 2e8f1af4e90abfe0ee641a9b0d005ca8adf71b977f88e030a513729d3bb80538 +SIZE (libSBML-5.10.2-core-src.tar.gz) = 11858327 Modified: head/biology/libsbml/pkg-plist ============================================================================== --- head/biology/libsbml/pkg-plist Sun Aug 10 06:06:12 2014 (r364503) +++ head/biology/libsbml/pkg-plist Sun Aug 10 06:21:53 2014 (r364504) @@ -1,20 +1,25 @@ -libdata/pkgconfig/libsbml.pc +include/sbml/AlgebraicRule.h +include/sbml/AssignmentRule.h include/sbml/Compartment.h include/sbml/CompartmentType.h include/sbml/Constraint.h include/sbml/Delay.h include/sbml/Event.h include/sbml/EventAssignment.h +include/sbml/ExpectedAttributes.h include/sbml/FunctionDefinition.h include/sbml/InitialAssignment.h include/sbml/KineticLaw.h include/sbml/ListOf.h include/sbml/LocalParameter.h include/sbml/Model.h +include/sbml/ModifierSpeciesReference.h include/sbml/Parameter.h include/sbml/Priority.h +include/sbml/RateRule.h include/sbml/Reaction.h include/sbml/Rule.h +include/sbml/SBMLConstructorException.h include/sbml/SBMLDocument.h include/sbml/SBMLError.h include/sbml/SBMLErrorLog.h @@ -28,6 +33,7 @@ include/sbml/SBMLVisitor.h include/sbml/SBMLWriter.h include/sbml/SBO.h include/sbml/SBase.h +include/sbml/SimpleSpeciesReference.h include/sbml/Species.h include/sbml/SpeciesReference.h include/sbml/SpeciesType.h @@ -38,12 +44,20 @@ include/sbml/Unit.h include/sbml/UnitDefinition.h include/sbml/UnitKind.h include/sbml/annotation/CVTerm.h +include/sbml/annotation/Date.h +include/sbml/annotation/ModelCreator.h include/sbml/annotation/ModelHistory.h include/sbml/annotation/RDFAnnotation.h +include/sbml/annotation/RDFAnnotationParser.h +include/sbml/common/common-documentation.h +include/sbml/common/common-sbmlerror-codes.h include/sbml/common/common.h include/sbml/common/extern.h +include/sbml/common/libsbml-config-common.h +include/sbml/common/libsbml-config-packages.h include/sbml/common/libsbml-config.h include/sbml/common/libsbml-namespace.h +include/sbml/common/libsbml-package.h include/sbml/common/libsbml-version.h include/sbml/common/operationReturnValues.h include/sbml/common/sbmlfwd.h @@ -58,15 +72,77 @@ include/sbml/compress/unzip.h include/sbml/compress/zfstream.h include/sbml/compress/zip.h include/sbml/compress/zipfstream.h +include/sbml/conversion/ConversionOption.h +include/sbml/conversion/ConversionProperties.h +include/sbml/conversion/SBMLConverter.h +include/sbml/conversion/SBMLConverterRegister.h +include/sbml/conversion/SBMLConverterRegistry.h +include/sbml/conversion/SBMLFunctionDefinitionConverter.h +include/sbml/conversion/SBMLIdConverter.h +include/sbml/conversion/SBMLInferUnitsConverter.h +include/sbml/conversion/SBMLInitialAssignmentConverter.h +include/sbml/conversion/SBMLLevelVersionConverter.h +include/sbml/conversion/SBMLLocalParameterConverter.h +include/sbml/conversion/SBMLReactionConverter.h +include/sbml/conversion/SBMLRuleConverter.h +include/sbml/conversion/SBMLStripPackageConverter.h +include/sbml/conversion/SBMLUnitsConverter.h +include/sbml/extension/ASTBasePlugin.h +include/sbml/extension/ISBMLExtensionNamespaces.h +include/sbml/extension/RegisterExtensions.h +include/sbml/extension/SBMLDocumentPlugin.h +include/sbml/extension/SBMLDocumentPluginNotRequired.h +include/sbml/extension/SBMLExtension.h +include/sbml/extension/SBMLExtensionException.h +include/sbml/extension/SBMLExtensionNamespaces.h +include/sbml/extension/SBMLExtensionRegister.h +include/sbml/extension/SBMLExtensionRegistry.h +include/sbml/extension/SBaseExtensionPoint.h +include/sbml/extension/SBasePlugin.h +include/sbml/extension/SBasePluginCreator.h +include/sbml/extension/SBasePluginCreatorBase.h +include/sbml/math/ASTBase.h +include/sbml/math/ASTBinaryFunctionNode.h +include/sbml/math/ASTCSymbol.h +include/sbml/math/ASTCSymbolAvogadroNode.h +include/sbml/math/ASTCSymbolDelayNode.h +include/sbml/math/ASTCSymbolTimeNode.h +include/sbml/math/ASTCiFunctionNode.h +include/sbml/math/ASTCiNumberNode.h +include/sbml/math/ASTCnBase.h +include/sbml/math/ASTCnExponentialNode.h +include/sbml/math/ASTCnIntegerNode.h +include/sbml/math/ASTCnRationalNode.h +include/sbml/math/ASTCnRealNode.h +include/sbml/math/ASTConstantNumberNode.h +include/sbml/math/ASTFunction.h +include/sbml/math/ASTFunctionBase.h +include/sbml/math/ASTLambdaFunctionNode.h +include/sbml/math/ASTNaryFunctionNode.h include/sbml/math/ASTNode.h +include/sbml/math/ASTNumber.h +include/sbml/math/ASTPiecewiseFunctionNode.h +include/sbml/math/ASTQualifierNode.h +include/sbml/math/ASTSemanticsNode.h +include/sbml/math/ASTTypes.h +include/sbml/math/ASTUnaryFunctionNode.h include/sbml/math/FormulaFormatter.h include/sbml/math/FormulaParser.h include/sbml/math/FormulaTokenizer.h +include/sbml/math/L3FormulaFormatter.h +include/sbml/math/L3Parser.h +include/sbml/math/L3ParserSettings.h include/sbml/math/MathML.h include/sbml/units/FormulaUnitsData.h include/sbml/units/UnitFormulaFormatter.h include/sbml/units/UnitKindList.h +include/sbml/util/ElementFilter.h +include/sbml/util/IdFilter.h +include/sbml/util/IdList.h +include/sbml/util/IdentifierTransformer.h include/sbml/util/List.h +include/sbml/util/MetaIdFilter.h +include/sbml/util/PrefixTransformer.h include/sbml/util/Stack.h include/sbml/util/StringBuffer.h include/sbml/util/memory.h @@ -84,16 +160,16 @@ include/sbml/validator/L3v1Compatibility include/sbml/validator/MathMLConsistencyValidator.h include/sbml/validator/ModelingPracticeValidator.h include/sbml/validator/OverdeterminedValidator.h +include/sbml/validator/SBMLExternalValidator.h +include/sbml/validator/SBMLInternalValidator.h +include/sbml/validator/SBMLValidator.h include/sbml/validator/SBOConsistencyValidator.h include/sbml/validator/UnitConsistencyValidator.h include/sbml/validator/VConstraint.h include/sbml/validator/Validator.h -include/sbml/validator/constraints/IdBase.h -include/sbml/validator/constraints/MathMLBase.h -include/sbml/validator/constraints/OverDeterminedCheck.h -include/sbml/validator/constraints/UniqueIdBase.h -include/sbml/validator/constraints/UniqueMetaId.h -include/sbml/validator/constraints/UnitsBase.h +include/sbml/xml/ExpatAttributes.h +include/sbml/xml/ExpatHandler.h +include/sbml/xml/ExpatParser.h include/sbml/xml/LibXMLAttributes.h include/sbml/xml/LibXMLHandler.h include/sbml/xml/LibXMLNamespaces.h @@ -101,12 +177,14 @@ include/sbml/xml/LibXMLParser.h include/sbml/xml/LibXMLTranscode.h include/sbml/xml/XMLAttributes.h include/sbml/xml/XMLBuffer.h +include/sbml/xml/XMLConstructorException.h include/sbml/xml/XMLError.h include/sbml/xml/XMLErrorLog.h include/sbml/xml/XMLExtern.h include/sbml/xml/XMLFileBuffer.h include/sbml/xml/XMLHandler.h include/sbml/xml/XMLInputStream.h +include/sbml/xml/XMLLogOverride.h include/sbml/xml/XMLMemoryBuffer.h include/sbml/xml/XMLNamespaces.h include/sbml/xml/XMLNode.h @@ -115,130 +193,66 @@ include/sbml/xml/XMLParser.h include/sbml/xml/XMLToken.h include/sbml/xml/XMLTokenizer.h include/sbml/xml/XMLTriple.h -include/sbml/AlgebraicRule.h -include/sbml/AssignmentRule.h -include/sbml/ExpectedAttributes.h -include/sbml/ModifierSpeciesReference.h -include/sbml/RateRule.h -include/sbml/SBMLConstructorException.h -include/sbml/SimpleSpeciesReference.h -include/sbml/annotation/Date.h -include/sbml/annotation/ModelCreator.h -include/sbml/annotation/RDFAnnotationParser.h -include/sbml/common/libsbml-config-common.h -include/sbml/conversion/ConversionOption.h -include/sbml/conversion/ConversionProperties.h -include/sbml/conversion/SBMLConverter.h -include/sbml/conversion/SBMLConverterRegister.h -include/sbml/conversion/SBMLConverterRegistry.h -include/sbml/conversion/SBMLFunctionDefinitionConverter.h -include/sbml/conversion/SBMLIdConverter.h -include/sbml/conversion/SBMLInferUnitsConverter.h -include/sbml/conversion/SBMLInitialAssignmentConverter.h -include/sbml/conversion/SBMLLevelVersionConverter.h -include/sbml/conversion/SBMLLocalParameterConverter.h -include/sbml/conversion/SBMLReactionConverter.h -include/sbml/conversion/SBMLRuleConverter.h -include/sbml/conversion/SBMLStripPackageConverter.h -include/sbml/conversion/SBMLUnitsConverter.h -include/sbml/extension/ISBMLExtensionNamespaces.h -include/sbml/extension/SBMLDocumentPlugin.h -include/sbml/extension/SBMLDocumentPluginNotRequired.h -include/sbml/extension/SBMLExtension.h -include/sbml/extension/SBMLExtensionException.h -include/sbml/extension/SBMLExtensionNamespaces.h -include/sbml/extension/SBMLExtensionRegister.h -include/sbml/extension/SBMLExtensionRegistry.h -include/sbml/extension/SBaseExtensionPoint.h -include/sbml/extension/SBasePlugin.h -include/sbml/extension/SBasePluginCreator.h -include/sbml/extension/SBasePluginCreatorBase.h -include/sbml/math/L3FormulaFormatter.h -include/sbml/math/L3Parser.h -include/sbml/math/L3ParserSettings.h -include/sbml/util/ElementFilter.h -include/sbml/util/IdFilter.h -include/sbml/util/IdList.h -include/sbml/util/IdentifierTransformer.h -include/sbml/util/MetaIdFilter.h -include/sbml/validator/SBMLExternalValidator.h -include/sbml/validator/SBMLInternalValidator.h -include/sbml/validator/SBMLValidator.h -include/sbml/xml/XMLConstructorException.h -include/sbml/xml/XMLLogOverride.h -lib/libsbml.so.5.10.0 -lib/libsbml.so.5 +include/sbml/xml/XercesAttributes.h +include/sbml/xml/XercesHandler.h +include/sbml/xml/XercesNamespaces.h +include/sbml/xml/XercesParser.h +include/sbml/xml/XercesTranscode.h +lib/libsbml-static.a lib/libsbml.so -lib/libsbml.a -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/libsbml/_libsbml.so -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/libsbml.pth -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/%%SBML_EGGINFO%% -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/libsbml/__init__.py -%%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/libsbml/__init__.pyc -%%WITH_PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/libsbml -%%WITH_RUBY%%%%RUBY_SITELIBDIR%%/%%RUBY_ARCH%%/libSBML.so +lib/libsbml.so.5 +lib/libsbml.so.5.10.2 +%%PYTHON%%%%PYTHON_SITELIBDIR%%/libsbml.pth +%%PYTHON%%%%PYTHON_SITELIBDIR%%/libsbml/_libsbml.so +%%PYTHON%%%%PYTHON_SITELIBDIR%%/libsbml/libsbml.py +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/libSBML.so %%PORTEXAMPLES%%%%EXAMPLESDIR%%/CMakeLists.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/README.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/FormulaGraphvizFormatter.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/convertSBML.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/drawMath.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/echoSBML.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/evaluateMath.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printMath.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printSBML.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/readSBML.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/translateMath.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/util.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/util.h %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/CMakeLists.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/FormulaGraphvizFormatter.h %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/addCVTerms.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/addModelHistory.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/addingEvidenceCodes_1.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/addingEvidenceCodes_2.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/appendAnnotation.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/convertSBML.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/createExampleSBML.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/drawMath.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/echoSBML.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/evaluateMath.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printAnnotation.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printMath.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printNotes.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printRegisteredPackages.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printSBML.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printSupported.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/printUnits.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/promoteParameters.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/readSBML.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/stripPackage.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/translateL3Math.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/translateMath.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/unsetAnnotation.c %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/unsetNotes.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/util.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/util.h %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c/validateSBML.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/Makefile.in +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/CMakeLists.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/addCVTerms.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/addCustomValidator.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/addModelHistory.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/addingEvidenceCodes_1.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/addingEvidenceCodes_2.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/addModelHistory.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/appendAnnotation.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/callExternalValidator.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/convertReactions.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/convertSBML.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/createExampleSBML.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/echoSBML.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printAnnotation.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printMath.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printNotes.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printSBML.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printUnits.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/readSBML.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/translateMath.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/unsetAnnotation.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/unsetNotes.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/util.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/util.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/validateSBML.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/CMakeLists.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/addCustomValidator.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/callExternalValidator.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/getAllElementsWithNotes.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/inferUnits.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/inlineFunctionDefintions.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/Makefile.in +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/CMakeLists.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/addLayout.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/convertLayout.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/example1-L3.cpp @@ -247,19 +261,27 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/example2.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/example3-L3.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/example3.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printAnnotation.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printMath.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printNotes.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printRegisteredPackages.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printSBML.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printSupported.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/printUnits.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/promoteParameters.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/readSBML.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/renameSId.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/rngvalidator.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/setIdFromNames.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/setNamesFromIds.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/stripPackage.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/translateL3Math.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/Makefile.in -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/echoSBML.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/validateSBML.cs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/translateMath.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/unsetAnnotation.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/unsetNotes.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/util.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/util.h +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/validateSBML.cpp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/CMakeLists.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/GetAllElementsWithNotes.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/SetIdFromNames.cs @@ -272,6 +294,10 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/callExternalValidator.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/convertSBML.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/createExampleSBML.cs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/echoSBML.cs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/evaluateCustomMath.cs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/inlineInitialAssignments.cs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/layout/CMakeLists.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/layout/example1-L3.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/printAnnotation.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/printMath.cs @@ -282,53 +308,49 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/printsupported.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/promoteParameters.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/readSBML.cs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/replaceOneFD.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/stripPackage.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/translateMath.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/unsetAnnotation.cs %%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/unsetNotes.cs -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/Makefile.in +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/validateSBML.cs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/CMakeLists.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addCVTerms.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addCustomValidator.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addModelHistory.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addingEvidenceCodes_1.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addingEvidenceCodes_2.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/appendAnnotation.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/callExternalValidator.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/convertSBML.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/createExampleSBML.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/echoSBML.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/evaluateCustomMath.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/evaluateMath.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/getAllElementsWithNotes.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/inlineInitialAssignments.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/layout/CMakeLists.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/layout/layout_example1.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/layout/layout_example1_L3.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printAnnotation.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printMath.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printNotes.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printRegisteredPackages.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printSBML.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printUnits.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printsupported.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/promoteParameters.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/readSBML.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/replaceOneFD.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/setIdFromNames.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/stripPackage.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/translateMath.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/unsetAnnotation.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/unsetNotes.java %%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/validateSBML.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/CMakeLists.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addCustomValidator.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addingEvidenceCodes_1.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/addingEvidenceCodes_2.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/callExternalValidator.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/createExampleSBML.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/getAllElementsWithNotes.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/layout/layout_example1.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/layout/layout_example1_L3.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printRegisteredPackages.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/printsupported.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/promoteParameters.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/setIdFromNames.java -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/stripPackage.java +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/layout-package.cmake %%PORTEXAMPLES%%%%EXAMPLESDIR%%/layout/README.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/convertSBML.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/evaluateMath.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/extractReactionInfo.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/extractReactions.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printMath.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printSBML.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/readSBML.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/translateMath.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/validateSBML.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/addCVTerms.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/addCustomValidator.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/addModelHistory.pl @@ -336,20 +358,27 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/addingEvidenceCodes_2.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/appendAnnotation.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/callExternalValidator.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/convertSBML.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/createExampleSBML.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/echoSBML.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/evaluateMath.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/extractReactionInfo.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/extractReactions.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/layout/example1-L3.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printAnnotation.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printMath.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printNotes.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printRegisteredPackages.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printSBML.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printUnits.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/printsupported.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/promoteParameters.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/readSBML.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/stripPackage.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/translateMath.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/unsetAnnotation.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/unsetNotes.pl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/echoSBML.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/validateSBML.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/perl/validateSBML.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/addCVTerms.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/addCustomValidator.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/addModelHistory.py @@ -359,7 +388,12 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/callExternalValidator.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/convertSBML.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/createExampleSBML.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/createSimpleModel.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/echoSBML.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/evaluateCustomMath.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/getAllElementsWithNotes.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/inlineInitialAssignments.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/layout/convertLayout.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/layout/example1-L3.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/layout/example1.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/printAnnotation.py @@ -371,11 +405,13 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/printsupported.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/promoteParameters.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/readSBML.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/replaceOneFD.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/setIdFromNames.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/stripPackage.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/translateMath.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/unsetAnnotation.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/unsetNotes.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/validateSBML.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/r/addCVTerms.R %%PORTEXAMPLES%%%%EXAMPLESDIR%%/r/addModelHistory.R %%PORTEXAMPLES%%%%EXAMPLESDIR%%/r/addingEvidenceCodes_1.R @@ -399,10 +435,6 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/r/unsetAnnotation.R %%PORTEXAMPLES%%%%EXAMPLESDIR%%/r/unsetNotes.R %%PORTEXAMPLES%%%%EXAMPLESDIR%%/r/validateSBML.R -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/convertSBML.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/echoSBML.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/printMath.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/validateSBML.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/addCVTerms.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/addCustomValidator.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/addModelHistory.rb @@ -410,8 +442,12 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/addingEvidenceCodes_2.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/appendAnnotation.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/callExternalValidator.rb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/convertSBML.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/createExampleSBML.rb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/echoSBML.rb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/layout/example1-L3.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/printAnnotation.rb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/printMath.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/printNotes.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/printRegisteredPackages.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/printSBML.rb @@ -423,7 +459,7 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/translateMath.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/unsetAnnotation.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/unsetNotes.rb -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/layout/example1-L3.rb +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruby/validateSBML.rb %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-2/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-2/algebraicrules.xml @@ -438,6 +474,7 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-2/overdetermined.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-2/twodimensional.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-2/units.xml +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/algebraicrules.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/assignmentrules.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/boundarycondition.xml @@ -452,73 +489,40 @@ lib/libsbml.a %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/membrane.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/multicomp.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/overdetermined.xml -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/README.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/twoalgebraicrules.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sample-models/from-spec/level-3/twodimensional.xml %%PORTEXAMPLES%%%%EXAMPLESDIR%%/xslt/layout/layout2svg.xsl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/c -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/c++/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/c++ -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/csharp/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/csharp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/java/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/java -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/perl/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/perl -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/python/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/python -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/r -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ruby/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ruby +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xslt/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xslt %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sample-models/from-spec/level-3 %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sample-models/from-spec/level-2 %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sample-models/from-spec %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sample-models -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xslt/layout -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/xslt +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ruby/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ruby +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/r +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/python/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/python +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/perl/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/perl +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/java/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/java +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/csharp/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/csharp +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/c++/layout +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/c++ +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/c %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -@dirrm include/sbml/annotation -@dirrm include/sbml/common -@dirrm include/sbml/compress -@dirrm include/sbml/conversion -@dirrm include/sbml/extension -@dirrm include/sbml/math -@dirrm include/sbml/units -@dirrm include/sbml/util -@dirrm include/sbml/validator/constraints -@dirrm include/sbml/validator +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/libsbml @dirrm include/sbml/xml -@dirrm include/sbml/ -include/sbml/extension/ASTBasePlugin.h -include/sbml/math/ASTBase.h -include/sbml/math/ASTBinaryFunctionNode.h -include/sbml/math/ASTCSymbol.h -include/sbml/math/ASTCSymbolAvogadroNode.h -include/sbml/math/ASTCSymbolDelayNode.h -include/sbml/math/ASTCSymbolTimeNode.h -include/sbml/math/ASTCiFunctionNode.h -include/sbml/math/ASTCiNumberNode.h -include/sbml/math/ASTCnBase.h -include/sbml/math/ASTCnExponentialNode.h -include/sbml/math/ASTCnIntegerNode.h -include/sbml/math/ASTCnRationalNode.h -include/sbml/math/ASTCnRealNode.h -include/sbml/math/ASTConstantNumberNode.h -include/sbml/math/ASTFunction.h -include/sbml/math/ASTFunctionBase.h -include/sbml/math/ASTLambdaFunctionNode.h -include/sbml/math/ASTNaryFunctionNode.h -include/sbml/math/ASTNumber.h -include/sbml/math/ASTPiecewiseFunctionNode.h -include/sbml/math/ASTQualifierNode.h -include/sbml/math/ASTSemanticsNode.h -include/sbml/math/ASTTypes.h -include/sbml/math/ASTUnaryFunctionNode.h -include/sbml/util/PrefixTransformer.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/convertReactions.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/c++/layout/CMakeLists.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/csharp/layout/CMakeLists.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/java/layout/CMakeLists.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/layout-package.cmake -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/python/layout/convertLayout.py +@dirrm include/sbml/validator +@dirrm include/sbml/util +@dirrm include/sbml/units +@dirrm include/sbml/math +@dirrm include/sbml/extension +@dirrm include/sbml/conversion +@dirrm include/sbml/compress +@dirrm include/sbml/common +@dirrm include/sbml/annotation +@dirrm include/sbml From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 07:16:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E986633 for ; Sun, 10 Aug 2014 07:16:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 59307209D for ; Sun, 10 Aug 2014 07:16:24 +0000 (UTC) Received: from pi (uid 1338) (envelope-from pi@FreeBSD.org) id 2062 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 07:16:23 +0000 From: Kurt Jaeger Date: Sun, 10 Aug 2014 07:16:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364505 - in head/devel: . libosmocore libosmocore/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e71c48.2062.63d02076@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 07:16:24 -0000 Author: pi Date: Sun Aug 10 07:16:23 2014 New Revision: 364505 URL: http://svnweb.freebsd.org/changeset/ports/364505 QAT: https://qat.redports.org/buildarchive/r364505/ Log: New port: devel/libosmocore libosmocore is a library with various utility functions that were originally developed as part of the OpenBSC project, but which are of a more generic nature and thus useful to (at least) other programs that we develop in the sphere of Free Software / Open Source mobile communications. WWW: http://bb.osmocom.org/trac/wiki/libosmocore PR: 191877 Submitted by: koue@chaosophia.net Added: head/devel/libosmocore/ head/devel/libosmocore/Makefile (contents, props changed) head/devel/libosmocore/distinfo (contents, props changed) head/devel/libosmocore/files/ head/devel/libosmocore/files/patch-Doxyfile.codec.in (contents, props changed) head/devel/libosmocore/files/patch-Doxyfile.core.in (contents, props changed) head/devel/libosmocore/files/patch-Doxyfile.gsm.in (contents, props changed) head/devel/libosmocore/files/patch-Doxyfile.vty.in (contents, props changed) head/devel/libosmocore/pkg-descr (contents, props changed) head/devel/libosmocore/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Aug 10 06:21:53 2014 (r364504) +++ head/devel/Makefile Sun Aug 10 07:16:23 2014 (r364505) @@ -1082,6 +1082,7 @@ SUBDIR += libopkele SUBDIR += liborcus SUBDIR += libosinfo + SUBDIR += libosmocore SUBDIR += libowfat SUBDIR += libpafe SUBDIR += libpafe-ruby Added: head/devel/libosmocore/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libosmocore/Makefile Sun Aug 10 07:16:23 2014 (r364505) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= libosmocore +PORTVERSION= 0.6.6 +CATEGORIES= devel +MASTER_SITES= http://chaosophia.net/downloads/osmocom/${PORTNAME}/ \ + http://ns1.chaosophia.net/downloads/osmocom/${PORTNAME}/ + +MAINTAINER= koue@chaosophia.net +COMMENT= Common library for all Osmocom projects + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_AUTOTOOLS= aclocal autoconf automake libtoolize autoheader +AUTOMAKE_ARGS= --gnu --add-missing --copy + +USES= gmake libtool +LDFLAGS+= -lexecinfo +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen \ + dot:${PORTSDIR}/graphics/graphviz + +post-patch: + ${REINPLACE_CMD} -e 's|pkgconfigdir.*|pkgconfigdir = ${PREFIX}/libdata/pkgconfig|g' \ + ${WRKSRC}/Makefile.am + ${ECHO_CMD} ${PORTVERSION} > ${WRKSRC}/.tarball-version + +post-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} +.for i in codec core gsm vty + ${FIND} ${WRKSRC}/doc/${i}/html -not -type d | ${SED} \ + 's,^${WRKSRC}/doc/${i}/html,${DOCSDIR_REL}/${i}/html,' >> ${TMPPLIST} +.endfor + +.include Added: head/devel/libosmocore/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libosmocore/distinfo Sun Aug 10 07:16:23 2014 (r364505) @@ -0,0 +1,2 @@ +SHA256 (libosmocore-0.6.6.tar.gz) = c76397a19a80ebd37c779247cab987187e4986eabb5cc017d8313d53def51946 +SIZE (libosmocore-0.6.6.tar.gz) = 507745 Added: head/devel/libosmocore/files/patch-Doxyfile.codec.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libosmocore/files/patch-Doxyfile.codec.in Sun Aug 10 07:16:23 2014 (r364505) @@ -0,0 +1,3199 @@ +--- ./Doxyfile.codec.in.orig 2014-03-31 15:40:46.000000000 +0200 ++++ ./Doxyfile.codec.in 2014-08-10 08:28:34.000000000 +0200 +@@ -1,109 +1,129 @@ +-# Doxyfile 1.7.4 ++# Doxyfile 1.8.7 + + # This file describes the settings to be used by the documentation system + # doxygen (www.doxygen.org) for a project. + # +-# All text after a hash (#) is considered a comment and will be ignored. ++# All text after a double hash (##) is considered a comment and is placed in ++# front of the TAG it is preceding. ++# ++# All text after a single hash (#) is considered a comment and will be ignored. + # The format is: +-# TAG = value [value, ...] +-# For lists items can also be appended using: +-# TAG += value [value, ...] +-# Values that contain spaces should be placed between quotes (" "). ++# TAG = value [value, ...] ++# For lists, items can also be appended using: ++# TAG += value [value, ...] ++# Values that contain spaces should be placed between quotes (\" \"). + + #--------------------------------------------------------------------------- + # Project related configuration options + #--------------------------------------------------------------------------- + + # This tag specifies the encoding used for all characters in the config file +-# that follow. The default is UTF-8 which is also the encoding used for all +-# text before the first occurrence of this tag. Doxygen uses libiconv (or the +-# iconv built into libc) for the transcoding. See +-# http://www.gnu.org/software/libiconv for the list of possible encodings. ++# that follow. The default is UTF-8 which is also the encoding used for all text ++# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv ++# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv ++# for the list of possible encodings. ++# The default value is: UTF-8. + + DOXYFILE_ENCODING = UTF-8 + +-# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +-# by quotes) that should identify the project. ++# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by ++# double-quotes, unless you are using Doxywizard) that should identify the ++# project for which the documentation is generated. This name is used in the ++# title of most generated pages and in a few other places. ++# The default value is: My Project. + + PROJECT_NAME = libosmocodec + +-# The PROJECT_NUMBER tag can be used to enter a project or revision number. +-# This could be handy for archiving the generated documentation or +-# if some version control system is used. ++# The PROJECT_NUMBER tag can be used to enter a project or revision number. This ++# could be handy for archiving the generated documentation or if some version ++# control system is used. + + PROJECT_NUMBER = @VERSION@ + + # Using the PROJECT_BRIEF tag one can provide an optional one line description +-# for a project that appears at the top of each page and should give viewer +-# a quick idea about the purpose of the project. Keep the description short. ++# for a project that appears at the top of each page and should give viewer a ++# quick idea about the purpose of the project. Keep the description short. + + PROJECT_BRIEF = "Osmocom codec library" + +-# With the PROJECT_LOGO tag one can specify an logo or icon that is +-# included in the documentation. The maximum height of the logo should not +-# exceed 55 pixels and the maximum width should not exceed 200 pixels. +-# Doxygen will copy the logo to the output directory. ++# With the PROJECT_LOGO tag one can specify an logo or icon that is included in ++# the documentation. The maximum height of the logo should not exceed 55 pixels ++# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo ++# to the output directory. + + PROJECT_LOGO = + +-# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +-# base path where the generated documentation will be put. +-# If a relative path is entered, it will be relative to the location +-# where doxygen was started. If left blank the current directory will be used. ++# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path ++# into which the generated documentation will be written. If a relative path is ++# entered, it will be relative to the location where doxygen was started. If ++# left blank the current directory will be used. + + OUTPUT_DIRECTORY = doc/codec + +-# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +-# 4096 sub-directories (in 2 levels) under the output directory of each output +-# format and will distribute the generated files over these directories. +-# Enabling this option can be useful when feeding doxygen a huge amount of +-# source files, where putting all generated files in the same directory would +-# otherwise cause performance problems for the file system. ++# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- ++# directories (in 2 levels) under the output directory of each output format and ++# will distribute the generated files over these directories. Enabling this ++# option can be useful when feeding doxygen a huge amount of source files, where ++# putting all generated files in the same directory would otherwise causes ++# performance problems for the file system. ++# The default value is: NO. + + CREATE_SUBDIRS = NO + ++# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII ++# characters to appear in the names of generated files. If set to NO, non-ASCII ++# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode ++# U+3044. ++# The default value is: NO. ++ ++ALLOW_UNICODE_NAMES = NO ++ + # The OUTPUT_LANGUAGE tag is used to specify the language in which all + # documentation generated by doxygen is written. Doxygen will use this + # information to generate all constant output in the proper language. +-# The default language is English, other supported languages are: +-# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +-# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +-# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +-# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +-# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +-# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. ++# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, ++# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), ++# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, ++# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), ++# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, ++# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, ++# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, ++# Ukrainian and Vietnamese. ++# The default value is: English. + + OUTPUT_LANGUAGE = English + +-# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +-# include brief member descriptions after the members that are listed in +-# the file and class documentation (similar to JavaDoc). +-# Set to NO to disable this. ++# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member ++# descriptions after the members that are listed in the file and class ++# documentation (similar to Javadoc). Set to NO to disable this. ++# The default value is: YES. + + BRIEF_MEMBER_DESC = YES + +-# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +-# the brief description of a member or function before the detailed description. +-# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the ++# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief ++# description of a member or function before the detailed description ++# ++# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the + # brief descriptions will be completely suppressed. ++# The default value is: YES. + + REPEAT_BRIEF = YES + +-# This tag implements a quasi-intelligent brief description abbreviator +-# that is used to form the text in various listings. Each string +-# in this list, if found as the leading text of the brief description, will be +-# stripped from the text and the result after processing the whole list, is +-# used as the annotated text. Otherwise, the brief description is used as-is. +-# If left blank, the following values are used ("$name" is automatically +-# replaced with the name of the entity): "The $name class" "The $name widget" +-# "The $name file" "is" "provides" "specifies" "contains" +-# "represents" "a" "an" "the" ++# This tag implements a quasi-intelligent brief description abbreviator that is ++# used to form the text in various listings. Each string in this list, if found ++# as the leading text of the brief description, will be stripped from the text ++# and the result, after processing the whole list, is used as the annotated ++# text. Otherwise, the brief description is used as-is. If left blank, the ++# following values are used ($name is automatically replaced with the name of ++# the entity):The $name class, The $name widget, The $name file, is, provides, ++# specifies, contains, represents, a, an and the. + + ABBREVIATE_BRIEF = + + # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +-# Doxygen will generate a detailed section even if there is only a brief ++# doxygen will generate a detailed section even if there is only a brief + # description. ++# The default value is: NO. + + ALWAYS_DETAILED_SEC = NO + +@@ -111,153 +131,207 @@ + # inherited members of a class in the documentation of that class as if those + # members were ordinary class members. Constructors, destructors and assignment + # operators of the base classes will not be shown. ++# The default value is: NO. + + INLINE_INHERITED_MEMB = NO + +-# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +-# path before files name in the file list and in the header files. If set +-# to NO the shortest path that makes the file name unique will be used. ++# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path ++# before files name in the file list and in the header files. If set to NO the ++# shortest path that makes the file name unique will be used ++# The default value is: YES. + + FULL_PATH_NAMES = YES + +-# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +-# can be used to strip a user-defined part of the path. Stripping is +-# only done if one of the specified strings matches the left-hand part of +-# the path. The tag can be used to show relative paths in the file list. +-# If left blank the directory from which doxygen is run is used as the +-# path to strip. ++# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. ++# Stripping is only done if one of the specified strings matches the left-hand ++# part of the path. The tag can be used to show relative paths in the file list. ++# If left blank the directory from which doxygen is run is used as the path to ++# strip. ++# ++# Note that you can specify absolute paths here, but also relative paths, which ++# will be relative from the directory where doxygen is started. ++# This tag requires that the tag FULL_PATH_NAMES is set to YES. + + STRIP_FROM_PATH = + +-# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +-# the path mentioned in the documentation of a class, which tells +-# the reader which header file to include in order to use a class. +-# If left blank only the name of the header file containing the class +-# definition is used. Otherwise one should specify the include paths that +-# are normally passed to the compiler using the -I flag. ++# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the ++# path mentioned in the documentation of a class, which tells the reader which ++# header file to include in order to use a class. If left blank only the name of ++# the header file containing the class definition is used. Otherwise one should ++# specify the list of include paths that are normally passed to the compiler ++# using the -I flag. + + STRIP_FROM_INC_PATH = + +-# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +-# (but less readable) file names. This can be useful if your file system +-# doesn't support long names like on DOS, Mac, or CD-ROM. ++# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but ++# less readable) file names. This can be useful is your file systems doesn't ++# support long names like on DOS, Mac, or CD-ROM. ++# The default value is: NO. + + SHORT_NAMES = NO + +-# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +-# will interpret the first line (until the first dot) of a JavaDoc-style +-# comment as the brief description. If set to NO, the JavaDoc +-# comments will behave just like regular Qt-style comments +-# (thus requiring an explicit @brief command for a brief description.) ++# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the ++# first line (until the first dot) of a Javadoc-style comment as the brief ++# description. If set to NO, the Javadoc-style will behave just like regular Qt- ++# style comments (thus requiring an explicit @brief command for a brief ++# description.) ++# The default value is: NO. + + JAVADOC_AUTOBRIEF = NO + +-# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +-# interpret the first line (until the first dot) of a Qt-style +-# comment as the brief description. If set to NO, the comments +-# will behave just like regular Qt-style comments (thus requiring +-# an explicit \brief command for a brief description.) ++# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first ++# line (until the first dot) of a Qt-style comment as the brief description. If ++# set to NO, the Qt-style will behave just like regular Qt-style comments (thus ++# requiring an explicit \brief command for a brief description.) ++# The default value is: NO. + + QT_AUTOBRIEF = NO + +-# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +-# treat a multi-line C++ special comment block (i.e. a block of //! or /// +-# comments) as a brief description. This used to be the default behaviour. +-# The new default is to treat a multi-line C++ comment block as a detailed +-# description. Set this tag to YES if you prefer the old behaviour instead. ++# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a ++# multi-line C++ special comment block (i.e. a block of //! or /// comments) as ++# a brief description. This used to be the default behavior. The new default is ++# to treat a multi-line C++ comment block as a detailed description. Set this ++# tag to YES if you prefer the old behavior instead. ++# ++# Note that setting this tag to YES also means that rational rose comments are ++# not recognized any more. ++# The default value is: NO. + + MULTILINE_CPP_IS_BRIEF = NO + +-# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +-# member inherits the documentation from any documented member that it +-# re-implements. ++# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the ++# documentation from any documented member that it re-implements. ++# The default value is: YES. + + INHERIT_DOCS = YES + +-# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +-# a new page for each member. If set to NO, the documentation of a member will +-# be part of the file/class/namespace that contains it. ++# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a ++# new page for each member. If set to NO, the documentation of a member will be ++# part of the file/class/namespace that contains it. ++# The default value is: NO. + + SEPARATE_MEMBER_PAGES = NO + +-# The TAB_SIZE tag can be used to set the number of spaces in a tab. +-# Doxygen uses this value to replace tabs by spaces in code fragments. ++# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen ++# uses this value to replace tabs by spaces in code fragments. ++# Minimum value: 1, maximum value: 16, default value: 4. + + TAB_SIZE = 8 + +-# This tag can be used to specify a number of aliases that acts +-# as commands in the documentation. An alias has the form "name=value". +-# For example adding "sideeffect=\par Side Effects:\n" will allow you to +-# put the command \sideeffect (or @sideeffect) in the documentation, which +-# will result in a user-defined paragraph with heading "Side Effects:". +-# You can put \n's in the value part of an alias to insert newlines. ++# This tag can be used to specify a number of aliases that act as commands in ++# the documentation. An alias has the form: ++# name=value ++# For example adding ++# "sideeffect=@par Side Effects:\n" ++# will allow you to put the command \sideeffect (or @sideeffect) in the ++# documentation, which will result in a user-defined paragraph with heading ++# "Side Effects:". You can put \n's in the value part of an alias to insert ++# newlines. + + ALIASES = + +-# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +-# sources only. Doxygen will then generate output that is more tailored for C. +-# For instance, some of the names that are used will be different. The list +-# of all members will be omitted, etc. ++# This tag can be used to specify a number of word-keyword mappings (TCL only). ++# A mapping has the form "name=value". For example adding "class=itcl::class" ++# will allow you to use the command class in the itcl::class meaning. ++ ++TCL_SUBST = ++ ++# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources ++# only. Doxygen will then generate output that is more tailored for C. For ++# instance, some of the names that are used will be different. The list of all ++# members will be omitted, etc. ++# The default value is: NO. + + OPTIMIZE_OUTPUT_FOR_C = YES + +-# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +-# sources only. Doxygen will then generate output that is more tailored for +-# Java. For instance, namespaces will be presented as packages, qualified +-# scopes will look different, etc. ++# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or ++# Python sources only. Doxygen will then generate output that is more tailored ++# for that language. For instance, namespaces will be presented as packages, ++# qualified scopes will look different, etc. ++# The default value is: NO. + + OPTIMIZE_OUTPUT_JAVA = NO + + # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +-# sources only. Doxygen will then generate output that is more tailored for +-# Fortran. ++# sources. Doxygen will then generate output that is tailored for Fortran. ++# The default value is: NO. + + OPTIMIZE_FOR_FORTRAN = NO + + # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +-# sources. Doxygen will then generate output that is tailored for +-# VHDL. ++# sources. Doxygen will then generate output that is tailored for VHDL. ++# The default value is: NO. + + OPTIMIZE_OUTPUT_VHDL = NO + + # Doxygen selects the parser to use depending on the extension of the files it +-# parses. With this tag you can assign which parser to use for a given extension. +-# Doxygen has a built-in mapping, but you can override or extend it using this +-# tag. The format is ext=language, where ext is a file extension, and language +-# is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, +-# C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make +-# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +-# (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions +-# you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. ++# parses. With this tag you can assign which parser to use for a given ++# extension. Doxygen has a built-in mapping, but you can override or extend it ++# using this tag. The format is ext=language, where ext is a file extension, and ++# language is one of the parsers supported by doxygen: IDL, Java, Javascript, ++# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: ++# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: ++# Fortran. In the later case the parser tries to guess whether the code is fixed ++# or free formatted code, this is the default for Fortran type files), VHDL. For ++# instance to make doxygen treat .inc files as Fortran files (default is PHP), ++# and .f files as C (default is Fortran), use: inc=Fortran f=C. ++# ++# Note For files without extension you can use no_extension as a placeholder. ++# ++# Note that for custom extensions you also need to set FILE_PATTERNS otherwise ++# the files are not read by doxygen. + + EXTENSION_MAPPING = + ++# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments ++# according to the Markdown format, which allows for more readable ++# documentation. See http://daringfireball.net/projects/markdown/ for details. ++# The output of markdown processing is further processed by doxygen, so you can ++# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in ++# case of backward compatibilities issues. ++# The default value is: YES. ++ ++MARKDOWN_SUPPORT = YES ++ ++# When enabled doxygen tries to link words that correspond to documented ++# classes, or namespaces to their corresponding documentation. Such a link can ++# be prevented in individual cases by by putting a % sign in front of the word ++# or globally by setting AUTOLINK_SUPPORT to NO. ++# The default value is: YES. ++ ++AUTOLINK_SUPPORT = YES ++ + # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +-# to include (a tag file for) the STL sources as input, then you should +-# set this tag to YES in order to let doxygen match functions declarations and +-# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +-# func(std::string) {}). This also makes the inheritance and collaboration ++# to include (a tag file for) the STL sources as input, then you should set this ++# tag to YES in order to let doxygen match functions declarations and ++# definitions whose arguments contain STL classes (e.g. func(std::string); ++# versus func(std::string) {}). This also make the inheritance and collaboration + # diagrams that involve STL classes more complete and accurate. ++# The default value is: NO. + + BUILTIN_STL_SUPPORT = NO + + # If you use Microsoft's C++/CLI language, you should set this option to YES to + # enable parsing support. ++# The default value is: NO. + + CPP_CLI_SUPPORT = NO + +-# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +-# Doxygen will parse them like normal C++ but will assume all classes use public +-# instead of private inheritance when no explicit protection keyword is present. ++# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: ++# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen ++# will parse them like normal C++ but will assume all classes use public instead ++# of private inheritance when no explicit protection keyword is present. ++# The default value is: NO. + + SIP_SUPPORT = NO + +-# For Microsoft's IDL there are propget and propput attributes to indicate getter +-# and setter methods for a property. Setting this option to YES (the default) +-# will make doxygen replace the get and set methods by a property in the +-# documentation. This will only work if the methods are indeed getting or +-# setting a simple type. If this is not the case, or you want to show the +-# methods anyway, you should set this option to NO. ++# For Microsoft's IDL there are propget and propput attributes to indicate ++# getter and setter methods for a property. Setting this option to YES will make ++# doxygen to replace the get and set methods by a property in the documentation. ++# This will only work if the methods are indeed getting or setting a simple ++# type. If this is not the case, or you want to show the methods anyway, you ++# should set this option to NO. ++# The default value is: YES. + + IDL_PROPERTY_SUPPORT = YES + +@@ -265,394 +339,472 @@ + # tag is set to YES, then doxygen will reuse the documentation of the first + # member in the group (if any) for the other members of the group. By default + # all members of a group must be documented explicitly. ++# The default value is: NO. + + DISTRIBUTE_GROUP_DOC = NO + +-# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +-# the same type (for instance a group of public functions) to be put as a +-# subgroup of that type (e.g. under the Public Functions section). Set it to +-# NO to prevent subgrouping. Alternatively, this can be done per class using +-# the \nosubgrouping command. ++# Set the SUBGROUPING tag to YES to allow class member groups of the same type ++# (for instance a group of public functions) to be put as a subgroup of that ++# type (e.g. under the Public Functions section). Set it to NO to prevent ++# subgrouping. Alternatively, this can be done per class using the ++# \nosubgrouping command. ++# The default value is: YES. + + SUBGROUPING = YES + +-# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and +-# unions are shown inside the group in which they are included (e.g. using +-# @ingroup) instead of on a separate page (for HTML and Man pages) or +-# section (for LaTeX and RTF). ++# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions ++# are shown inside the group in which they are included (e.g. using \ingroup) ++# instead of on a separate page (for HTML and Man pages) or section (for LaTeX ++# and RTF). ++# ++# Note that this feature does not work in combination with ++# SEPARATE_MEMBER_PAGES. ++# The default value is: NO. + + INLINE_GROUPED_CLASSES = NO + +-# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +-# is documented as struct, union, or enum with the name of the typedef. So ++# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions ++# with only public data fields or simple typedef fields will be shown inline in ++# the documentation of the scope in which they are defined (i.e. file, ++# namespace, or group documentation), provided this scope is documented. If set ++# to NO, structs, classes, and unions are shown on a separate page (for HTML and ++# Man pages) or section (for LaTeX and RTF). ++# The default value is: NO. ++ ++INLINE_SIMPLE_STRUCTS = NO ++ ++# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or ++# enum is documented as struct, union, or enum with the name of the typedef. So + # typedef struct TypeS {} TypeT, will appear in the documentation as a struct + # with name TypeT. When disabled the typedef will appear as a member of a file, +-# namespace, or class. And the struct will be named TypeS. This can typically +-# be useful for C code in case the coding convention dictates that all compound ++# namespace, or class. And the struct will be named TypeS. This can typically be ++# useful for C code in case the coding convention dictates that all compound + # types are typedef'ed and only the typedef is referenced, never the tag name. ++# The default value is: NO. + + TYPEDEF_HIDES_STRUCT = NO + +-# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +-# determine which symbols to keep in memory and which to flush to disk. +-# When the cache is full, less often used symbols will be written to disk. +-# For small to medium size projects (<1000 input files) the default value is +-# probably good enough. For larger projects a too small cache size can cause +-# doxygen to be busy swapping symbols to and from disk most of the time +-# causing a significant performance penalty. +-# If the system has enough physical memory increasing the cache will improve the +-# performance by keeping more symbols in memory. Note that the value works on +-# a logarithmic scale so increasing the size by one will roughly double the +-# memory usage. The cache size is given by this formula: +-# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +-# corresponding to a cache size of 2^16 = 65536 symbols ++# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This ++# cache is used to resolve symbols given their name and scope. Since this can be ++# an expensive process and often the same symbol appears multiple times in the ++# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small ++# doxygen will become slower. If the cache is too large, memory is wasted. The ++# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range ++# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 ++# symbols. At the end of a run doxygen will report the cache usage and suggest ++# the optimal cache size from a speed point of view. ++# Minimum value: 0, maximum value: 9, default value: 0. + +-SYMBOL_CACHE_SIZE = 0 ++LOOKUP_CACHE_SIZE = 0 + + #--------------------------------------------------------------------------- + # Build related configuration options + #--------------------------------------------------------------------------- + + # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +-# documentation are documented, even if no documentation was available. +-# Private class members and static file members will be hidden unless +-# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES ++# documentation are documented, even if no documentation was available. Private ++# class members and static file members will be hidden unless the ++# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. ++# Note: This will also disable the warnings about undocumented members that are ++# normally produced when WARNINGS is set to YES. ++# The default value is: NO. + + EXTRACT_ALL = NO + +-# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +-# will be included in the documentation. ++# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will ++# be included in the documentation. ++# The default value is: NO. + + EXTRACT_PRIVATE = NO + +-# If the EXTRACT_STATIC tag is set to YES all static members of a file +-# will be included in the documentation. ++# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal ++# scope will be included in the documentation. ++# The default value is: NO. ++ ++EXTRACT_PACKAGE = NO ++ ++# If the EXTRACT_STATIC tag is set to YES all static members of a file will be ++# included in the documentation. ++# The default value is: NO. + + EXTRACT_STATIC = YES + +-# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +-# defined locally in source files will be included in the documentation. +-# If set to NO only classes defined in header files are included. ++# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined ++# locally in source files will be included in the documentation. If set to NO ++# only classes defined in header files are included. Does not have any effect ++# for Java sources. ++# The default value is: YES. + + EXTRACT_LOCAL_CLASSES = YES + +-# This flag is only useful for Objective-C code. When set to YES local +-# methods, which are defined in the implementation section but not in +-# the interface are included in the documentation. +-# If set to NO (the default) only methods in the interface are included. ++# This flag is only useful for Objective-C code. When set to YES local methods, ++# which are defined in the implementation section but not in the interface are ++# included in the documentation. If set to NO only methods in the interface are ++# included. ++# The default value is: NO. + + EXTRACT_LOCAL_METHODS = NO + + # If this flag is set to YES, the members of anonymous namespaces will be + # extracted and appear in the documentation as a namespace called +-# 'anonymous_namespace{file}', where file will be replaced with the base +-# name of the file that contains the anonymous namespace. By default +-# anonymous namespaces are hidden. ++# 'anonymous_namespace{file}', where file will be replaced with the base name of ++# the file that contains the anonymous namespace. By default anonymous namespace ++# are hidden. ++# The default value is: NO. + + EXTRACT_ANON_NSPACES = NO + +-# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +-# undocumented members of documented classes, files or namespaces. +-# If set to NO (the default) these members will be included in the +-# various overviews, but no documentation section is generated. +-# This option has no effect if EXTRACT_ALL is enabled. ++# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all ++# undocumented members inside documented classes or files. If set to NO these ++# members will be included in the various overviews, but no documentation ++# section is generated. This option has no effect if EXTRACT_ALL is enabled. ++# The default value is: NO. + + HIDE_UNDOC_MEMBERS = NO + +-# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +-# undocumented classes that are normally visible in the class hierarchy. +-# If set to NO (the default) these classes will be included in the various +-# overviews. This option has no effect if EXTRACT_ALL is enabled. ++# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all ++# undocumented classes that are normally visible in the class hierarchy. If set ++# to NO these classes will be included in the various overviews. This option has ++# no effect if EXTRACT_ALL is enabled. ++# The default value is: NO. + + HIDE_UNDOC_CLASSES = NO + +-# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +-# friend (class|struct|union) declarations. +-# If set to NO (the default) these declarations will be included in the +-# documentation. ++# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend ++# (class|struct|union) declarations. If set to NO these declarations will be ++# included in the documentation. ++# The default value is: NO. + + HIDE_FRIEND_COMPOUNDS = NO + +-# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +-# documentation blocks found inside the body of a function. +-# If set to NO (the default) these blocks will be appended to the +-# function's detailed documentation block. ++# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any ++# documentation blocks found inside the body of a function. If set to NO these ++# blocks will be appended to the function's detailed documentation block. ++# The default value is: NO. + + HIDE_IN_BODY_DOCS = NO + +-# The INTERNAL_DOCS tag determines if documentation +-# that is typed after a \internal command is included. If the tag is set +-# to NO (the default) then the documentation will be excluded. +-# Set it to YES to include the internal documentation. ++# The INTERNAL_DOCS tag determines if documentation that is typed after a ++# \internal command is included. If the tag is set to NO then the documentation ++# will be excluded. Set it to YES to include the internal documentation. ++# The default value is: NO. + + INTERNAL_DOCS = NO + +-# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +-# file names in lower-case letters. If set to YES upper-case letters are also ++# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file ++# names in lower-case letters. If set to YES upper-case letters are also + # allowed. This is useful if you have classes or files whose names only differ + # in case and if your file system supports case sensitive file names. Windows + # and Mac users are advised to set this option to NO. ++# The default value is: system dependent. + + CASE_SENSE_NAMES = YES + +-# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +-# will show members with their full class and namespace scopes in the +-# documentation. If set to YES the scope will be hidden. ++# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with ++# their full class and namespace scopes in the documentation. If set to YES the ++# scope will be hidden. ++# The default value is: NO. + + HIDE_SCOPE_NAMES = NO + +-# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +-# will put a list of the files that are included by a file in the documentation +-# of that file. ++# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of ++# the files that are included by a file in the documentation of that file. ++# The default value is: YES. + + SHOW_INCLUDE_FILES = YES + +-# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +-# will list include files with double quotes in the documentation +-# rather than with sharp brackets. ++# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each ++# grouped member an include statement to the documentation, telling the reader ++# which file to include in order to use the member. ++# The default value is: NO. ++ ++SHOW_GROUPED_MEMB_INC = NO ++ ++# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include ++# files with double quotes in the documentation rather than with sharp brackets. ++# The default value is: NO. + + FORCE_LOCAL_INCLUDES = NO + +-# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +-# is inserted in the documentation for inline members. ++# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the ++# documentation for inline members. ++# The default value is: YES. + + INLINE_INFO = YES + +-# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +-# will sort the (detailed) documentation of file and class members +-# alphabetically by member name. If set to NO the members will appear in +-# declaration order. ++# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the ++# (detailed) documentation of file and class members alphabetically by member ++# name. If set to NO the members will appear in declaration order. ++# The default value is: YES. + + SORT_MEMBER_DOCS = YES + +-# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +-# brief documentation of file, namespace and class members alphabetically +-# by member name. If set to NO (the default) the members will appear in +-# declaration order. ++# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief ++# descriptions of file, namespace and class members alphabetically by member ++# name. If set to NO the members will appear in declaration order. Note that ++# this will also influence the order of the classes in the class list. ++# The default value is: NO. + + SORT_BRIEF_DOCS = NO + +-# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen +-# will sort the (brief and detailed) documentation of class members so that +-# constructors and destructors are listed first. If set to NO (the default) +-# the constructors will appear in the respective orders defined by +-# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +-# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +-# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. ++# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the ++# (brief and detailed) documentation of class members so that constructors and ++# destructors are listed first. If set to NO the constructors will appear in the ++# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. ++# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief ++# member documentation. ++# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting ++# detailed member documentation. ++# The default value is: NO. + + SORT_MEMBERS_CTORS_1ST = NO + +-# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +-# hierarchy of group names into alphabetical order. If set to NO (the default) +-# the group names will appear in their defined order. ++# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy ++# of group names into alphabetical order. If set to NO the group names will ++# appear in their defined order. ++# The default value is: NO. + + SORT_GROUP_NAMES = NO + +-# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +-# sorted by fully-qualified names, including namespaces. If set to +-# NO (the default), the class list will be sorted only by class name, +-# not including the namespace part. ++# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by ++# fully-qualified names, including namespaces. If set to NO, the class list will ++# be sorted only by class name, not including the namespace part. + # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +-# Note: This option applies only to the class list, not to the +-# alphabetical list. ++# Note: This option applies only to the class list, not to the alphabetical ++# list. ++# The default value is: NO. + + SORT_BY_SCOPE_NAME = NO + +-# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to +-# do proper type resolution of all parameters of a function it will reject a +-# match between the prototype and the implementation of a member function even +-# if there is only one candidate or it is obvious which candidate to choose +-# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen +-# will still accept a match between prototype and implementation in such cases. ++# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper ++# type resolution of all parameters of a function it will reject a match between ++# the prototype and the implementation of a member function even if there is ++# only one candidate or it is obvious which candidate to choose by doing a ++# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still ++# accept a match between prototype and implementation in such cases. ++# The default value is: NO. + + STRICT_PROTO_MATCHING = NO + +-# The GENERATE_TODOLIST tag can be used to enable (YES) or +-# disable (NO) the todo list. This list is created by putting \todo +-# commands in the documentation. ++# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the ++# todo list. This list is created by putting \todo commands in the ++# documentation. ++# The default value is: YES. + + GENERATE_TODOLIST = YES + +-# The GENERATE_TESTLIST tag can be used to enable (YES) or +-# disable (NO) the test list. This list is created by putting \test +-# commands in the documentation. ++# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the ++# test list. This list is created by putting \test commands in the ++# documentation. ++# The default value is: YES. + + GENERATE_TESTLIST = YES + +-# The GENERATE_BUGLIST tag can be used to enable (YES) or +-# disable (NO) the bug list. This list is created by putting \bug +-# commands in the documentation. ++# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug ++# list. This list is created by putting \bug commands in the documentation. ++# The default value is: YES. + + GENERATE_BUGLIST = YES + +-# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +-# disable (NO) the deprecated list. This list is created by putting +-# \deprecated commands in the documentation. ++# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) ++# the deprecated list. This list is created by putting \deprecated commands in ++# the documentation. ++# The default value is: YES. + + GENERATE_DEPRECATEDLIST= YES + +-# The ENABLED_SECTIONS tag can be used to enable conditional +-# documentation sections, marked by \if sectionname ... \endif. ++# The ENABLED_SECTIONS tag can be used to enable conditional documentation ++# sections, marked by \if ... \endif and \cond ++# ... \endcond blocks. + + ENABLED_SECTIONS = + +-# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +-# the initial value of a variable or macro consists of for it to appear in +-# the documentation. If the initializer consists of more lines than specified +-# here it will be hidden. Use a value of 0 to hide initializers completely. +-# The appearance of the initializer of individual variables and macros in the +-# documentation can be controlled using \showinitializer or \hideinitializer +-# command in the documentation regardless of this setting. ++# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the ++# initial value of a variable or macro / define can have for it to appear in the ++# documentation. If the initializer consists of more lines than specified here ++# it will be hidden. Use a value of 0 to hide initializers completely. The ++# appearance of the value of individual variables and macros / defines can be ++# controlled using \showinitializer or \hideinitializer command in the ++# documentation regardless of this setting. ++# Minimum value: 0, maximum value: 10000, default value: 30. + + MAX_INITIALIZER_LINES = 30 + +-# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +-# at the bottom of the documentation of classes and structs. If set to YES the +-# list will mention the files that were used to generate the documentation. ++# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at ++# the bottom of the documentation of classes and structs. If set to YES the list ++# will mention the files that were used to generate the documentation. ++# The default value is: YES. + + SHOW_USED_FILES = YES + +-# If the sources in your project are distributed over multiple directories +-# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +-# in the documentation. The default is NO. +- +-SHOW_DIRECTORIES = NO +- +-# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +-# This will remove the Files entry from the Quick Index and from the +-# Folder Tree View (if specified). The default is YES. ++# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This ++# will remove the Files entry from the Quick Index and from the Folder Tree View ++# (if specified). ++# The default value is: YES. + + SHOW_FILES = YES + +-# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +-# Namespaces page. +-# This will remove the Namespaces entry from the Quick Index +-# and from the Folder Tree View (if specified). The default is YES. ++# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces ++# page. This will remove the Namespaces entry from the Quick Index and from the ++# Folder Tree View (if specified). ++# The default value is: YES. + + SHOW_NAMESPACES = YES + + # The FILE_VERSION_FILTER tag can be used to specify a program or script that + # doxygen should invoke to get the current version for each file (typically from + # the version control system). Doxygen will invoke the program by executing (via +-# popen()) the command , where is the value of +-# the FILE_VERSION_FILTER tag, and is the name of an input file *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 07:20:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A76B75C for ; Sun, 10 Aug 2014 07:20:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 11F9E20BC for ; Sun, 10 Aug 2014 07:20:25 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2092 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 07:20:25 +0000 From: John Marino Date: Sun, 10 Aug 2014 07:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364506 - head/www/bacula-web X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e71d39.2092.347ab483@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 07:20:25 -0000 Author: marino Date: Sun Aug 10 07:20:24 2014 New Revision: 364506 URL: http://svnweb.freebsd.org/changeset/ports/364506 QAT: https://qat.redports.org/buildarchive/r364506/ Log: Reverse categories in www/baculaweb for portmaster and friends Nobody noticed that the submitter added a new category to the port and kept it in alphabetical order rather than "true" category first, so we need to move "www" back to the front of the line. PR: 191583 Modified: head/www/bacula-web/Makefile Modified: head/www/bacula-web/Makefile ============================================================================== --- head/www/bacula-web/Makefile Sun Aug 10 07:16:23 2014 (r364505) +++ head/www/bacula-web/Makefile Sun Aug 10 07:20:24 2014 (r364506) @@ -4,7 +4,7 @@ PORTNAME= bacula-web DISTVERSION= 6.0.1 PORTREVISION= 1 -CATEGORIES= sysutils www +CATEGORIES= www sysutils MASTER_SITES= http://www.bacula-web.org/files/bacula-web.org/downloads/ MAINTAINER= dan@langille.org From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 07:42:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76E30C8A for ; Sun, 10 Aug 2014 07:42:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 4CB3C22DA for ; Sun, 10 Aug 2014 07:42:58 +0000 (UTC) Received: from amdmi3 (uid 1170) (envelope-from amdmi3@FreeBSD.org) id 2d60 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 07:42:58 +0000 From: Dmitry Marakasov Date: Sun, 10 Aug 2014 07:42:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364507 - head/textproc/catdoc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e72282.2d60.692632e7@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 07:42:58 -0000 Author: amdmi3 Date: Sun Aug 10 07:42:57 2014 New Revision: 364507 URL: http://svnweb.freebsd.org/changeset/ports/364507 QAT: https://qat.redports.org/buildarchive/r364507/ Log: - Strip binaries Modified: head/textproc/catdoc/Makefile Modified: head/textproc/catdoc/Makefile ============================================================================== --- head/textproc/catdoc/Makefile Sun Aug 10 07:20:24 2014 (r364506) +++ head/textproc/catdoc/Makefile Sun Aug 10 07:42:57 2014 (r364507) @@ -42,4 +42,7 @@ CONFIGURE_ARGS+= --disable-wordview post-patch: @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},' ${WRKSRC}/doc/catdoc.1.in +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* + .include From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:01:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE768374 for ; Sun, 10 Aug 2014 08:01:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B519824EB for ; Sun, 10 Aug 2014 08:01:34 +0000 (UTC) Received: from wen (uid 1209) (envelope-from wen@FreeBSD.org) id 20ff by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:01:34 +0000 From: Wen Heping Date: Sun, 10 Aug 2014 08:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364508 - head/astro/py-RO X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e726de.20ff.7898984d@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:01:34 -0000 Author: wen Date: Sun Aug 10 08:01:34 2014 New Revision: 364508 URL: http://svnweb.freebsd.org/changeset/ports/364508 QAT: https://qat.redports.org/buildarchive/r364508/ Log: - Update to 3.5.1 - Reset maintainer to ports@ Modified: head/astro/py-RO/Makefile head/astro/py-RO/distinfo Modified: head/astro/py-RO/Makefile ============================================================================== --- head/astro/py-RO/Makefile Sun Aug 10 07:42:57 2014 (r364507) +++ head/astro/py-RO/Makefile Sun Aug 10 08:01:34 2014 (r364508) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= RO -PORTVERSION= 3.5.0 +PORTVERSION= 3.5.1 CATEGORIES= astro python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Package of Python astronomical utilities LICENSE= MIT @@ -22,9 +22,8 @@ MATPLOTLIB_DESC= Add support for Matplot PYFITS_DESC= Add Support for PyFITS PYGAME_DESC= Add Support for PyGame -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +PYTHON_FEATURES= distutils autoplist MATPLOTLIB_RUN_DEPENDS= ${PKGNAMEPREFIX}matplotlib>=0.98:${PORTSDIR}/math/py-matplotlib PYFITS_RUN_DEPENDS= ${PKGNAMEPREFIX}pyfits>=1.1:${PORTSDIR}/astro/py-pyfits Modified: head/astro/py-RO/distinfo ============================================================================== --- head/astro/py-RO/distinfo Sun Aug 10 07:42:57 2014 (r364507) +++ head/astro/py-RO/distinfo Sun Aug 10 08:01:34 2014 (r364508) @@ -1,2 +1,2 @@ -SHA256 (RO-3.5.0.tar.gz) = c5eeb2ef5f9041d2f7918324ab7b130b1fff7b1c7a1ea3009f7211dfe33a1a52 -SIZE (RO-3.5.0.tar.gz) = 695440 +SHA256 (RO-3.5.1.tar.gz) = ddc28e28388db9ce99a57c950206aac155265564a5d50ab01edbdd7ba0a591f0 +SIZE (RO-3.5.1.tar.gz) = 695685 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:16:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93DDD65D for ; Sun, 10 Aug 2014 08:16:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 6B3202652 for ; Sun, 10 Aug 2014 08:16:20 +0000 (UTC) Received: from wen (uid 1209) (envelope-from wen@FreeBSD.org) id 2a96 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:16:20 +0000 From: Wen Heping Date: Sun, 10 Aug 2014 08:16:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364509 - head/databases/py-pg8000 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e72a54.2a96.66a19209@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:16:20 -0000 Author: wen Date: Sun Aug 10 08:16:19 2014 New Revision: 364509 URL: http://svnweb.freebsd.org/changeset/ports/364509 QAT: https://qat.redports.org/buildarchive/r364509/ Log: - Update to 1.9.14 - Convert to new python framework Modified: head/databases/py-pg8000/Makefile head/databases/py-pg8000/distinfo Modified: head/databases/py-pg8000/Makefile ============================================================================== --- head/databases/py-pg8000/Makefile Sun Aug 10 08:01:34 2014 (r364508) +++ head/databases/py-pg8000/Makefile Sun Aug 10 08:16:19 2014 (r364509) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pg8000 -PORTVERSION= 1.9.12 +PORTVERSION= 1.9.14 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,8 +12,7 @@ COMMENT= Pure-Python Interface to the Po LICENSE= BSD3CLAUSE -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +PYTHON_FEATURES= distutils autoplist .include Modified: head/databases/py-pg8000/distinfo ============================================================================== --- head/databases/py-pg8000/distinfo Sun Aug 10 08:01:34 2014 (r364508) +++ head/databases/py-pg8000/distinfo Sun Aug 10 08:16:19 2014 (r364509) @@ -1,2 +1,2 @@ -SHA256 (pg8000-1.9.12.tar.gz) = bd0ffaf043bf06e3d390432ff5800e18158e804b3c3ec8f60fe8a317e4c2639b -SIZE (pg8000-1.9.12.tar.gz) = 37301 +SHA256 (pg8000-1.9.14.tar.gz) = fac744c6aa6bca2b4154d5ea0fbf5a2963e7b5a9cb1eb65c50a306a7dc6e56ed +SIZE (pg8000-1.9.14.tar.gz) = 37348 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:19:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 613BF813 for ; Sun, 10 Aug 2014 08:19:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 384D0266B for ; Sun, 10 Aug 2014 08:19:49 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2ab5 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:19:49 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 08:19:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364510 - head/www/blastbeat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e72b25.2ab5.2106730b@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:19:49 -0000 Author: antoine Date: Sun Aug 10 08:19:48 2014 New Revision: 364510 URL: http://svnweb.freebsd.org/changeset/ports/364510 QAT: https://qat.redports.org/buildarchive/r364510/ Log: Fix stage violation Modified: head/www/blastbeat/Makefile Modified: head/www/blastbeat/Makefile ============================================================================== --- head/www/blastbeat/Makefile Sun Aug 10 08:16:19 2014 (r364509) +++ head/www/blastbeat/Makefile Sun Aug 10 08:19:48 2014 (r364510) @@ -41,11 +41,9 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${MKDIR} ${STAGEDIR}${ETCDIR} && \ ${INSTALL} ${WRKSRC}/${PORTNAME}.ini ${STAGEDIR}${ETCDIR}/${PORTNAME}.ini.sample - -post-install: .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} - @cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .endif .include From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:22:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C49B2911 for ; Sun, 10 Aug 2014 08:22:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B0A8A2703 for ; Sun, 10 Aug 2014 08:22:57 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2e2d by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:22:56 +0000 From: John Marino Date: Sun, 10 Aug 2014 08:22:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364511 - in head/graphics/agave: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e72be0.2e2d.596d90bc@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:22:57 -0000 Author: marino Date: Sun Aug 10 08:22:55 2014 New Revision: 364511 URL: http://svnweb.freebsd.org/changeset/ports/364511 QAT: https://qat.redports.org/buildarchive/r364511/ Log: graphics/agave: Upgrade version 0.4.2 => 0.4.7 and stage PR: 192477 Submitted by: Ports Fury Added: head/graphics/agave/files/ head/graphics/agave/files/patch-src__dialogs__gcs-about-window.cc (contents, props changed) head/graphics/agave/files/patch-src__gcs-mainwindow-actions.cc (contents, props changed) head/graphics/agave/files/patch-src__widgets__gcs-paletteview.h (contents, props changed) head/graphics/agave/files/patch-src__widgets__gcs-schemebox.cc (contents, props changed) Modified: head/graphics/agave/Makefile head/graphics/agave/distinfo head/graphics/agave/pkg-descr head/graphics/agave/pkg-plist Modified: head/graphics/agave/Makefile ============================================================================== --- head/graphics/agave/Makefile Sun Aug 10 08:19:48 2014 (r364510) +++ head/graphics/agave/Makefile Sun Aug 10 08:22:55 2014 (r364511) @@ -2,37 +2,39 @@ # $FreeBSD$ PORTNAME= agave -PORTVERSION= 0.4.2 -PORTREVISION= 11 +PORTVERSION= 0.4.7 CATEGORIES= graphics gnome MASTER_SITES= http://download.gna.org/colorscheme/releases/ MAINTAINER= ports@FreeBSD.org COMMENT= Color scheme builder for the GNOME desktop -LIB_DEPENDS= libglademm-2.4.so:${PORTSDIR}/devel/libglademm24 \ - libboost_thread.so:${PORTSDIR}/devel/boost-libs +LICENSE= GPLv2 # (or later) -# --disable-gnome option is broken in 0.4.2 -#OPTIONS= GNOME "Adds GNOME support" on +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libglademm-2.4.so:${PORTSDIR}/devel/libglademm24 -USES= gettext gmake pkgconfig tar:bzip2 -USE_GNOME= gnomeprefix gnomehack gnomedocutils intlhack -GCONF_SCHEMAS= agave.schemas +USES= gettext gmake pathfix pkgconfig tar:bzip2 +USE_GNOME= gconfmm26 gnomedocutils gnomeprefix gtkmm24 +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-scrollkeeper \ + --disable-schemas-install \ + --disable-cppunit INSTALLS_ICONS= yes INSTALLS_OMF= yes -GNU_CONFIGURE= yes + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes -.include +GCONF_SCHEMAS= agave.schemas + +OPTIONS_DEFINE= GNOME + +GNOME_USE= gnome=libgnomeui +GNOME_CONFIGURE_ENABLE= gnome -#.if defined(WITHOUT_GNOME) -#CONFIGURE_ARGS+= --disable-gnome --disable-gconf -#.else -USE_GNOME+= libgnomeui -LIB_DEPENDS+= libgconfmm-2.6.so:${PORTSDIR}/devel/gconfmm26 -#.endif +post-patch: + @${REINPLACE_CMD} -e \ + 's| _GCS_| __GCS_|' ${WRKSRC}/src/gcs-conf.h -.include +.include Modified: head/graphics/agave/distinfo ============================================================================== --- head/graphics/agave/distinfo Sun Aug 10 08:19:48 2014 (r364510) +++ head/graphics/agave/distinfo Sun Aug 10 08:22:55 2014 (r364511) @@ -1,2 +1,2 @@ -SHA256 (agave-0.4.2.tar.bz2) = d34aaca056b3b2f097bb38e90dce7d2b6b9aab3ebe05dea9368fd5f48c7d2bde -SIZE (agave-0.4.2.tar.bz2) = 306607 +SHA256 (agave-0.4.7.tar.bz2) = ee19f62287d03dfbc41bb2dd86683eb13e3f9664135f4108e9c93e68994402f2 +SIZE (agave-0.4.7.tar.bz2) = 500407 Added: head/graphics/agave/files/patch-src__dialogs__gcs-about-window.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/agave/files/patch-src__dialogs__gcs-about-window.cc Sun Aug 10 08:22:55 2014 (r364511) @@ -0,0 +1,30 @@ +--- src/dialogs/gcs-about-window.cc.orig ++++ src/dialogs/gcs-about-window.cc +@@ -48,9 +48,9 @@ + + #ifdef HAVE_GNOME + set_url_hook(sigc::mem_fun(*this, &AboutWindow::on_link_clicked)); ++#endif // HAVE_GNOME + set_website(PACKAGE_WEBSITE); + set_website_label(_("Project Website")); +-#endif // HAVE_GNOME + + Glib::ustring version(PACKAGE_VERSION); + set_version(version); +@@ -111,14 +111,14 @@ + } + + ++#ifdef HAVE_GNOME + void + AboutWindow::on_link_clicked(Gtk::AboutDialog& dialog, + const Glib::ustring& link) + { +-#ifdef HAVE_GNOME + gnome_url_show(link.c_str(), 0); +-#endif // HAVE_GNOME + } ++#endif // HAVE_GNOME + + void + AboutWindow::on_response(int response_id) Added: head/graphics/agave/files/patch-src__gcs-mainwindow-actions.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/agave/files/patch-src__gcs-mainwindow-actions.cc Sun Aug 10 08:22:55 2014 (r364511) @@ -0,0 +1,32 @@ +--- src/gcs-mainwindow-actions.cc.orig ++++ src/gcs-mainwindow-actions.cc +@@ -25,7 +25,12 @@ + + #include + #include ++ ++#include ++#ifdef HAVE_GNOME + #include ++#endif // HAVE_GNOME ++ + #include + #include + #include +@@ -251,9 +256,16 @@ + /* Help Menu Actions */ + void MainWindow::on_action_help_contents(void) + { ++#ifdef HAVE_GNOME + gnome_help_display("agave.xml", + NULL /* link id */, + NULL /* GError */); ++#else ++ gtk_show_uri(NULL, ++ "ghelp:agave", ++ gtk_get_current_event_time (), ++ NULL); ++#endif // HAVE_GNOME + } + + Added: head/graphics/agave/files/patch-src__widgets__gcs-paletteview.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/agave/files/patch-src__widgets__gcs-paletteview.h Sun Aug 10 08:22:55 2014 (r364511) @@ -0,0 +1,10 @@ +--- src/widgets/gcs-paletteview.h.orig ++++ src/widgets/gcs-paletteview.h +@@ -40,6 +40,7 @@ + #include "core/gcs-types.h" + #include "core/gcs-color.h" + #include "paletteparser/palette.h" ++#include "palettetreemodel.h" + #include "palette-selector.h" + + using namespace Gnome; Added: head/graphics/agave/files/patch-src__widgets__gcs-schemebox.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/agave/files/patch-src__widgets__gcs-schemebox.cc Sun Aug 10 08:22:55 2014 (r364511) @@ -0,0 +1,11 @@ +--- src/widgets/gcs-schemebox.cc.orig ++++ src/widgets/gcs-schemebox.cc +@@ -45,7 +45,7 @@ + + SchemeBox::SchemeBox(Scheme schm) + { +- SchemeBox::SchemeBox(); ++ SchemeBox(); + set_scheme(schm); + } + Modified: head/graphics/agave/pkg-descr ============================================================================== --- head/graphics/agave/pkg-descr Sun Aug 10 08:19:48 2014 (r364510) +++ head/graphics/agave/pkg-descr Sun Aug 10 08:22:55 2014 (r364511) @@ -1,9 +1,9 @@ GNOME Colorscheme is a color scheme builder for the GNOME desktop. It is -useful for web creation as well as room painting. It supports 6 various types -of color schemes: Complements, Split Complements, Triads, Tetrads, Analogous, -and Monochromatic. +useful for web creation as well as room painting. It supports 6 various +types of color schemes: Complements, Split Complements, Triads, Tetrads, +Analogous, and Monochromatic. -The user can lighten/darken the whole colorscheme or increase/decrease its -saturation. +The user can lighten/darken the whole colorscheme or increase/decrease +its saturation. WWW: http://home.gna.org/colorscheme/ Modified: head/graphics/agave/pkg-plist ============================================================================== --- head/graphics/agave/pkg-plist Sun Aug 10 08:19:48 2014 (r364510) +++ head/graphics/agave/pkg-plist Sun Aug 10 08:22:55 2014 (r364511) @@ -1,39 +1,76 @@ bin/agave share/applications/agave.desktop -share/agave/palettes/Gnome-Palette.gpl -share/agave/palettes/Tango-Palette.gpl -share/agave/palettes/Visibone.gpl -share/agave/palettes/Web.gpl -share/agave/pixmaps/darken.png -share/agave/pixmaps/desaturate.png -share/agave/pixmaps/lighten.png -share/agave/pixmaps/saturate.png -share/agave/ui/agave.glade -share/agave/ui/agave.ui -share/agave/ui/bookmarkspopup.ui +%%DATADIR%%/palettes/Gnome-Palette.gpl +%%DATADIR%%/palettes/Tango-Palette.gpl +%%DATADIR%%/palettes/Visibone.gpl +%%DATADIR%%/palettes/Web.gpl +%%DATADIR%%/pixmaps/darken.png +%%DATADIR%%/pixmaps/desaturate.png +%%DATADIR%%/pixmaps/lighten.png +%%DATADIR%%/pixmaps/saturate.png +%%DATADIR%%/ui/agave.glade +%%DATADIR%%/ui/agave.ui +%%DATADIR%%/ui/bookmarkspopup.ui share/gnome/help/agave/C/agave.xml +share/gnome/help/agave/C/figures/analogous.png +share/gnome/help/agave/C/figures/complements.png share/gnome/help/agave/C/figures/gtk-color-selector.png share/gnome/help/agave/C/figures/main-window.png +share/gnome/help/agave/C/figures/split-complements.png +share/gnome/help/agave/C/figures/tetrads.png +share/gnome/help/agave/C/figures/triads.png share/gnome/help/agave/C/legal.xml -share/omf/agave/agave-C.omf -share/icons/hicolor/48x48/apps/agave-icon.png -share/icons/hicolor/scalable/apps/agave-icon.svg +share/gnome/help/agave/cs/agave.xml +share/gnome/help/agave/cs/figures/analogous.png +share/gnome/help/agave/cs/figures/complements.png +share/gnome/help/agave/cs/figures/gtk-color-selector.png +share/gnome/help/agave/cs/figures/main-window.png +share/gnome/help/agave/cs/figures/split-complements.png +share/gnome/help/agave/cs/figures/tetrads.png +share/gnome/help/agave/cs/figures/triads.png +share/gnome/help/agave/cs/legal.xml +share/gnome/help/agave/de/agave.xml +share/gnome/help/agave/de/figures/analogous.png +share/gnome/help/agave/de/figures/complements.png +share/gnome/help/agave/de/figures/gtk-color-selector.png +share/gnome/help/agave/de/figures/main-window.png +share/gnome/help/agave/de/figures/split-complements.png +share/gnome/help/agave/de/figures/tetrads.png +share/gnome/help/agave/de/figures/triads.png +share/gnome/help/agave/de/legal.xml +share/icons/hicolor/16x16/apps/agave.png +share/icons/hicolor/22x22/apps/agave.png +share/icons/hicolor/32x32/apps/agave.png +share/icons/hicolor/scalable/apps/agave.svg share/locale/bg/LC_MESSAGES/agave.mo share/locale/ca/LC_MESSAGES/agave.mo share/locale/cs/LC_MESSAGES/agave.mo share/locale/de/LC_MESSAGES/agave.mo share/locale/es_ES/LC_MESSAGES/agave.mo +share/locale/fr/LC_MESSAGES/agave.mo +share/locale/gl_ES/LC_MESSAGES/agave.mo share/locale/it/LC_MESSAGES/agave.mo +share/locale/ja/LC_MESSAGES/agave.mo share/locale/nl/LC_MESSAGES/agave.mo +share/locale/pl/LC_MESSAGES/agave.mo share/locale/pt_BR/LC_MESSAGES/agave.mo share/locale/ru/LC_MESSAGES/agave.mo share/locale/sv/LC_MESSAGES/agave.mo share/locale/zh_TW/LC_MESSAGES/agave.mo +share/omf/agave/agave-C.omf +share/omf/agave/agave-cs.omf +share/omf/agave/agave-de.omf @dirrm share/omf/agave +@dirrmtry share/locale/gl_ES/LC_MESSAGES +@dirrmtry share/locale/gl_ES +@dirrm share/gnome/help/agave/de/figures +@dirrm share/gnome/help/agave/de +@dirrm share/gnome/help/agave/cs/figures +@dirrm share/gnome/help/agave/cs @dirrm share/gnome/help/agave/C/figures @dirrm share/gnome/help/agave/C @dirrm share/gnome/help/agave -@dirrm share/agave/ui -@dirrm share/agave/pixmaps -@dirrm share/agave/palettes -@dirrm share/agave +@dirrm %%DATADIR%%/ui +@dirrm %%DATADIR%%/pixmaps +@dirrm %%DATADIR%%/palettes +@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:29:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32268AF2 for ; Sun, 10 Aug 2014 08:29:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 06780272D for ; Sun, 10 Aug 2014 08:29:15 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2e6a by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:29:14 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 08:29:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364512 - head/net-mgmt/nagios-openldap-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e72d5a.2e6a.158ffff4@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:29:15 -0000 Author: antoine Date: Sun Aug 10 08:29:14 2014 New Revision: 364512 URL: http://svnweb.freebsd.org/changeset/ports/364512 QAT: https://qat.redports.org/buildarchive/r364512/ Log: Fix a stage violation and shebangfix Modified: head/net-mgmt/nagios-openldap-plugins/Makefile Modified: head/net-mgmt/nagios-openldap-plugins/Makefile ============================================================================== --- head/net-mgmt/nagios-openldap-plugins/Makefile Sun Aug 10 08:22:55 2014 (r364511) +++ head/net-mgmt/nagios-openldap-plugins/Makefile Sun Aug 10 08:29:14 2014 (r364512) @@ -21,8 +21,9 @@ RUN_DEPENDS= p5-perl-ldap>=0:${PORTSDIR} PORTSCOUT= ignore:1 NO_BUILD= yes -USES= perl5 +USES= perl5 shebangfix USE_PERL5= run +SHEBANG_FILES= check_*.pl PLIST_FILES= libexec/nagios/check_berkeleydb_locks.pl \ libexec/nagios/check_ldap_dn.pl \ @@ -44,7 +45,7 @@ post-patch: ${WRKSRC}/*.pl do-install: - @${MKDIR} ${PREFIX}/libexec/nagios + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/nagios @(cd ${WRKSRC} && ${COPYTREE_BIN} . ${STAGEDIR}${PREFIX}/libexec/nagios/) .include From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:34:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06DF6C4E for ; Sun, 10 Aug 2014 08:34:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 D1AA427CE for ; Sun, 10 Aug 2014 08:34:43 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 221e by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:34:43 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 08:34:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364513 - head/benchmarks/phoronix-test-suite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e72ea3.221e.71aa311e@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:34:44 -0000 Author: antoine Date: Sun Aug 10 08:34:43 2014 New Revision: 364513 URL: http://svnweb.freebsd.org/changeset/ports/364513 QAT: https://qat.redports.org/buildarchive/r364513/ Log: Fix some stage violations Modified: head/benchmarks/phoronix-test-suite/Makefile Modified: head/benchmarks/phoronix-test-suite/Makefile ============================================================================== --- head/benchmarks/phoronix-test-suite/Makefile Sun Aug 10 08:29:14 2014 (r364512) +++ head/benchmarks/phoronix-test-suite/Makefile Sun Aug 10 08:34:43 2014 (r364513) @@ -58,20 +58,17 @@ post-patch: do-install: cd ${WRKSRC} && ${INSTALL_OPTS} DESTDIR=${STAGEDIR} ./install-sh ${PREFIX} - -post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for FILE in ${DOCFILES1} - @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}/${FILE} + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE} .endfor .for FILE in ${DOCFILES2} - @${INSTALL_DATA} ${WRKSRC}/documentation/${FILE} ${DOCSDIR}/${FILE} + @${INSTALL_DATA} ${WRKSRC}/documentation/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE} .endfor .for DIR in stubs includes - @${CP} -rf ${WRKSRC}/documentation/${DIR} ${DOCSDIR} + @${CP} -rf ${WRKSRC}/documentation/${DIR} ${STAGEDIR}${DOCSDIR} .endfor - @${ECHO_MSG} "===> Docs installed in ${DOCSDIR}." .endif .include From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:37:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4565F09 for ; Sun, 10 Aug 2014 08:37:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 87B2E27F2 for ; Sun, 10 Aug 2014 08:37:28 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2284 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:37:27 +0000 From: John Marino Date: Sun, 10 Aug 2014 08:37:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364514 - head/math/armadillo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e72f48.2284.19455770@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:37:28 -0000 Author: marino Date: Sun Aug 10 08:37:27 2014 New Revision: 364514 URL: http://svnweb.freebsd.org/changeset/ports/364514 QAT: https://qat.redports.org/buildarchive/r364514/ Log: math/armadillo: Upgrade version 4.300.8 => 4.320.0 PR: 192210 Submitted by: Ports Fury Modified: head/math/armadillo/Makefile head/math/armadillo/distinfo head/math/armadillo/pkg-descr head/math/armadillo/pkg-plist Modified: head/math/armadillo/Makefile ============================================================================== --- head/math/armadillo/Makefile Sun Aug 10 08:34:43 2014 (r364513) +++ head/math/armadillo/Makefile Sun Aug 10 08:37:27 2014 (r364514) @@ -1,17 +1,18 @@ # $FreeBSD$ PORTNAME= armadillo -PORTVERSION= 4.300.8 +PORTVERSION= 4.320.0 CATEGORIES= math -MASTER_SITES= SF/arma/ +MASTER_SITES= SF/arma MAINTAINER= ports@FreeBSD.org COMMENT= C++ linear algebra library LICENSE= MPL -LIB_DEPENDS= liblapack.so:${PORTSDIR}/math/lapack \ - libboost_date_time.so:${PORTSDIR}/devel/boost-libs +LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs \ + liblapack.so:${PORTSDIR}/math/lapack \ + libhdf5.so:${PORTSDIR}/science/hdf5 USES= cmake USE_LDCONFIG= yes Modified: head/math/armadillo/distinfo ============================================================================== --- head/math/armadillo/distinfo Sun Aug 10 08:34:43 2014 (r364513) +++ head/math/armadillo/distinfo Sun Aug 10 08:37:27 2014 (r364514) @@ -1,2 +1,2 @@ -SHA256 (armadillo-4.300.8.tar.gz) = 1d1a77ad7a74e8b4a74d7b71c5e3fe488e26283907b316618de0a8558c60173a -SIZE (armadillo-4.300.8.tar.gz) = 5484286 +SHA256 (armadillo-4.320.0.tar.gz) = 2f670c164b3d26331ad1b8da39db3e06ef0e3ad8de33176903de0623ca2b11c9 +SIZE (armadillo-4.320.0.tar.gz) = 5321312 Modified: head/math/armadillo/pkg-descr ============================================================================== --- head/math/armadillo/pkg-descr Sun Aug 10 08:34:43 2014 (r364513) +++ head/math/armadillo/pkg-descr Sun Aug 10 08:37:27 2014 (r364514) @@ -1,20 +1,20 @@ -Armadillo is a C++ linear algebra library (matrix maths) aiming towards a -good balance between speed and ease of use. The syntax is deliberately +Armadillo is a C++ linear algebra library (matrix maths) aiming towards +a good balance between speed and ease of use. The syntax is deliberately similar to Matlab. - -Integer, floating point and complex numbers are supported, as well as a -subset of trigonometric and statistics functions. Various matrix -decompositions are provided through optional integration with LAPACK, or -one of its high performance drop-in replacements (such as the + +Integer, floating point and complex numbers are supported, as well as a +subset of trigonometric and statistics functions. Various matrix +decompositions are provided through optional integration with LAPACK, or +one of its high performance drop-in replacements (such as the multi-threaded MKL or ACML libraries). - -A delayed evaluation approach is employed (at compile-time) to combine -several operations into one and reduce (or eliminate) the need for -temporaries. This is accomplished through recursive templates and template -meta-programming. - -Useful for conversion of research code into production environments, or if -C++ has been decided as the language of choice, due to speed and/or + +A delayed evaluation approach is employed (at compile-time) to combine +several operations into one and reduce (or eliminate) the need for +temporaries. This is accomplished through recursive templates and +template meta-programming. + +Useful for conversion of research code into production environments, or +if C++ has been decided as the language of choice, due to speed and/or integration capabilities. - + WWW: http://arma.sourceforge.net/ Modified: head/math/armadillo/pkg-plist ============================================================================== --- head/math/armadillo/pkg-plist Sun Aug 10 08:34:43 2014 (r364513) +++ head/math/armadillo/pkg-plist Sun Aug 10 08:37:27 2014 (r364514) @@ -394,7 +394,7 @@ include/armadillo_bits/xvec_htrans_bones include/armadillo_bits/xvec_htrans_meat.hpp lib/libarmadillo.so lib/libarmadillo.so.4 -lib/libarmadillo.so.4.300.8 +lib/libarmadillo.so.4.320.0 share/Armadillo/CMake/ArmadilloConfig.cmake share/Armadillo/CMake/ArmadilloConfigVersion.cmake share/Armadillo/CMake/ArmadilloLibraryDepends-%%CMAKE_BUILD_TYPE%%.cmake From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:40:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4006B101 for ; Sun, 10 Aug 2014 08:40:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 2EED9288D for ; Sun, 10 Aug 2014 08:40:50 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 22ca by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:40:50 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 08:40:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364515 - head/net/udt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e73012.22ca.30e7f13f@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:40:50 -0000 Author: antoine Date: Sun Aug 10 08:40:49 2014 New Revision: 364515 URL: http://svnweb.freebsd.org/changeset/ports/364515 QAT: https://qat.redports.org/buildarchive/r364515/ Log: Fix a stage violation Modified: head/net/udt/Makefile Modified: head/net/udt/Makefile ============================================================================== --- head/net/udt/Makefile Sun Aug 10 08:37:27 2014 (r364514) +++ head/net/udt/Makefile Sun Aug 10 08:40:49 2014 (r364515) @@ -36,8 +36,8 @@ post-install: ${INSTALL_PROGRAM} ${UDT_APPS:S|^|${WRKSRC:H}/app/udt-|} ${STAGEDIR}${PREFIX}/bin/ .if ${PORT_OPTIONS:MDOCS} # Installing documentation tree into ${DOCSDIR} - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC:H}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC:H}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .else EXTRACT_AFTER_ARGS+= --exclude udt${PORTVERSION:R}/doc .endif From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:47:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27386372 for ; Sun, 10 Aug 2014 08:47:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 F29EC28C7 for ; Sun, 10 Aug 2014 08:47:38 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 289a by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:47:38 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 08:47:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364516 - head/java/jdom X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e731aa.289a.22111705@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:47:39 -0000 Author: antoine Date: Sun Aug 10 08:47:38 2014 New Revision: 364516 URL: http://svnweb.freebsd.org/changeset/ports/364516 QAT: https://qat.redports.org/buildarchive/r364516/ Log: Fix stage violation Modified: head/java/jdom/Makefile Modified: head/java/jdom/Makefile ============================================================================== --- head/java/jdom/Makefile Sun Aug 10 08:40:49 2014 (r364515) +++ head/java/jdom/Makefile Sun Aug 10 08:47:38 2014 (r364516) @@ -36,7 +36,7 @@ ALL_TARGET+= javadoc do-install: @${MKDIR} ${STAGEDIR}${JAVAJARDIR} ${INSTALL_DATA} ${WRKSRC}/build/jdom.jar ${STAGEDIR}${JAVAJARDIR} - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/build/samples/ && ${COPYTREE_SHARE} . \ ${STAGEDIR}${EXAMPLESDIR}) .if ${PORT_OPTIONS:MDOCS} From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:48:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76C0245C for ; Sun, 10 Aug 2014 08:48:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 4924A28D4 for ; Sun, 10 Aug 2014 08:48:42 +0000 (UTC) Received: from mva (uid 1189) (envelope-from mva@FreeBSD.org) id 28b0 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:48:42 +0000 From: Marcus von Appen Date: Sun, 10 Aug 2014 08:48:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364517 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e731ea.28b0.7b31825b@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:48:42 -0000 Author: mva Date: Sun Aug 10 08:48:41 2014 New Revision: 364517 URL: http://svnweb.freebsd.org/changeset/ports/364517 QAT: https://qat.redports.org/buildarchive/r364517/ Log: - Only print the python version mismatch warning, if a dependency or user set PYTHON_VERSION explicitly. Otherwise, ports using a non-default version would always print the warning. With hat: python@ Modified: head/Mk/Uses/python.mk Modified: head/Mk/Uses/python.mk ============================================================================== --- head/Mk/Uses/python.mk Sun Aug 10 08:47:38 2014 (r364516) +++ head/Mk/Uses/python.mk Sun Aug 10 08:48:41 2014 (r364517) @@ -397,7 +397,10 @@ _PYTHON_VERSION_NONSUPPORTED= ${_PYTHON_ # If we have an unsupported version of Python, try another. .if defined(_PYTHON_VERSION_NONSUPPORTED) -WARNING+= "needs Python ${_PYTHON_VERSION_NONSUPPORTED}. But a port depending on this one specified ${_PYTHON_VERSION}" +.if defined(PYTHON_VERSION) || defined(PYTHON_CMD) +_PV:= ${_PYTHON_VERSION} # preserve the specified python version +WARNING+= "needs Python ${_PYTHON_VERSION_NONSUPPORTED}. But a port depending on this one specified ${_PV}" +.endif # defined(PYTHON_VERSION) || defined(PYTHON_CMD) .undef _PYTHON_VERSION .for ver in ${PYTHON2_DEFAULT} ${PYTHON3_DEFAULT} ${_PYTHON_VERSIONS} __VER= ${ver} From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 08:55:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 629E2585 for ; Sun, 10 Aug 2014 08:55:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 4F17229A1 for ; Sun, 10 Aug 2014 08:55:12 +0000 (UTC) Received: from mva (uid 1189) (envelope-from mva@FreeBSD.org) id 2c4d by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 08:55:08 +0000 From: Marcus von Appen Date: Sun, 10 Aug 2014 08:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7336d.2c4d.2257f090@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 08:55:12 -0000 Author: mva Date: Sun Aug 10 08:55:08 2014 New Revision: 364518 URL: http://svnweb.freebsd.org/changeset/ports/364518 QAT: https://qat.redports.org/buildarchive/r364518/ Log: - Convert my ports to USES=python Modified: head/accessibility/py-papi/Makefile head/audio/py-al/Makefile head/devel/py-astroid/Makefile head/devel/py-dynrules/Makefile head/devel/py-game/Makefile head/devel/py-logilab-common/Makefile head/devel/py-ocempgui/Makefile head/devel/py-ply/Makefile head/devel/py-sdl2/Makefile head/devel/pychecker/Makefile head/devel/pylint/Makefile head/devel/pyrex/Makefile head/devel/winpdb/Makefile head/games/pysolfc/Makefile head/graphics/blender/Makefile head/graphics/py-PyX/Makefile head/graphics/py-PyX12/Makefile head/lang/micropython/Makefile Modified: head/accessibility/py-papi/Makefile ============================================================================== --- head/accessibility/py-papi/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/accessibility/py-papi/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -10,11 +10,9 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= mva@FreeBSD.org COMMENT= ATK accessibility wrapper for python -USES= pkgconfig +USES= pkgconfig python:2 USE_GNOME= atk -USE_PYTHON= 2 -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes +PYTHON_FEATURES=autoplist distutils EXAMPLES= atkaction.py atkapplication.py atkcapi.c atktext.py atkvalue.py \ msaaapplication.py msaacapi.cpp Modified: head/audio/py-al/Makefile ============================================================================== --- head/audio/py-al/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/audio/py-al/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -10,10 +10,7 @@ DISTNAME= PyAL-${PORTVERSION} MAINTAINER= mva@FreeBSD.org COMMENT= PyAL is a binding of OpenAL for Python -USES= openal:al -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes -PYDISTUTILS_PKGNAME= PyAL +USES= openal:al python +PYTHON_FEATURES=autoplist distutils .include Modified: head/devel/py-astroid/Makefile ============================================================================== --- head/devel/py-astroid/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/py-astroid/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -15,10 +15,10 @@ LICENSE= LGPL21 RUN_DEPENDS= pytest:${PORTSDIR}/devel/py-logilab-common -WRKSRC= ${WRKDIR}/logilab-astroid-e003574ae51b -MAKE_ENV= NO_SETUPTOOLS=1 -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USES= python +WRKSRC= ${WRKDIR}/logilab-astroid-e003574ae51b +MAKE_ENV= NO_SETUPTOOLS=1 +PYTHON_FEATURES=distutils .include Modified: head/devel/py-dynrules/Makefile ============================================================================== --- head/devel/py-dynrules/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/py-dynrules/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -12,9 +12,8 @@ COMMENT= Dynamic Scripting for adaptive LICENSE= ZLIB -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +PYTHON_FEATURES=autoplist distutils OPTIONS_DEFINE= DOCS Modified: head/devel/py-game/Makefile ============================================================================== --- head/devel/py-game/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/py-game/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -17,11 +17,10 @@ LICENSE= LGPL21 LIB_DEPENDS= libsmpeg.so:${PORTSDIR}/multimedia/smpeg RUN_DEPENDS= ${PYNUMPY} +USES= python USE_SDL= ttf image mixer sdl USE_GCC= any -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes +PYTHON_FEATURES=autoplist distutils SDLNOX11= sdl-nox11-[0-9]* Modified: head/devel/py-logilab-common/Makefile ============================================================================== --- head/devel/py-logilab-common/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/py-logilab-common/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -13,8 +13,8 @@ COMMENT= Common low-level libraries shar LICENSE= LGPL20 +USES= python MAKE_ENV= NO_SETUPTOOLS=1 -USE_PYTHON= yes -USE_PYDISTUTILS= yes +PYTHON_FEATURES=distutils .include Modified: head/devel/py-ocempgui/Makefile ============================================================================== --- head/devel/py-ocempgui/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/py-ocempgui/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -17,9 +17,9 @@ LICENSE= BSD2CLAUSE BUILD_DEPENDS= ${LOCALBASE}/include/${PYTHON_VERSION}/pygame/pygame.h:${PORTSDIR}/devel/py-game RUN_DEPENDS= ${LOCALBASE}/include/${PYTHON_VERSION}/pygame/pygame.h:${PORTSDIR}/devel/py-game +USES= python:2 USE_GNOME= atk -USE_PYTHON= 2 -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes + +PYTHON_FEATURES= autoplist distutils .include Modified: head/devel/py-ply/Makefile ============================================================================== --- head/devel/py-ply/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/py-ply/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -12,9 +12,8 @@ COMMENT= Python Lex-Yacc LICENSE= BSD3CLAUSE -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +PYTHON_FEATURES=autoplist distutils PORTDOCS= ply.html internal.html README Modified: head/devel/py-sdl2/Makefile ============================================================================== --- head/devel/py-sdl2/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/py-sdl2/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -12,10 +12,9 @@ COMMENT= Python bindings to the SDL2 lib LICENSE= ZLIB +USES= python USE_SDL= sdl2 gfx2 image2 ttf2 mixer2 -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +PYTHON_FEATURES= autoplist distutils OPTIONS_DEFINE= DOCS Modified: head/devel/pychecker/Makefile ============================================================================== --- head/devel/pychecker/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/pychecker/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -11,9 +11,8 @@ COMMENT= Python source code checking too LICENSE= BSD3CLAUSE -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +PYTHON_FEATURES=autoplist distutils DOCS= ChangeLog COPYRIGHT KNOWN_BUGS MAINTAINERS README TODO VERSION Modified: head/devel/pylint/Makefile ============================================================================== --- head/devel/pylint/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/pylint/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -15,8 +15,8 @@ LICENSE= LGPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid>=1.1.0:${PORTSDIR}/devel/py-astroid -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USES= python +PYTHON_FEATURES=distutils OPTIONS_DEFINE= GUI Modified: head/devel/pyrex/Makefile ============================================================================== --- head/devel/pyrex/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/pyrex/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -13,9 +13,8 @@ COMMENT= Programming Language for writin LICENSE= APACHE20 -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +PYTHON_FEATURES=autoplist distutils post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR}/Manual Modified: head/devel/winpdb/Makefile ============================================================================== --- head/devel/winpdb/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/devel/winpdb/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -15,9 +15,8 @@ LICENSE= GPLv2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Crypto/__init__.py:${PORTSDIR}/security/py-pycrypto -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +PYTHON_FEATURES=autoplist distutils USE_WX= 3.0+ WX_COMPS= python Modified: head/games/pysolfc/Makefile ============================================================================== --- head/games/pysolfc/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/games/pysolfc/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -17,10 +17,8 @@ LICENSE= GPLv3 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \ ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging -USES= tar:bzip2 -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes +USES= python tar:bzip2 +PYTHON_FEATURES=autoplist distutils PLIST_FILES= share/pixmaps/pysolfc.png DATADIR= ${PREFIX}/share/PySolFC Modified: head/graphics/blender/Makefile ============================================================================== --- head/graphics/blender/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/graphics/blender/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -19,8 +19,7 @@ LIB_DEPENDS= libjpeg.so:${PORTSDIR}/grap USE_XORG= x11 xext xmu USE_GL= glew -USES= cmake:outsource compiler:features shebangfix -USE_PYTHON= 3.4 +USES= cmake:outsource compiler:features python:3.4 shebangfix CMAKE_ARGS+= -DWITH_PYTHON_INSTALL:BOOL=OFF \ -DWITH_PYTHON_INSTALL_NUMPY:BOOL=OFF Modified: head/graphics/py-PyX/Makefile ============================================================================== --- head/graphics/py-PyX/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/graphics/py-PyX/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -12,11 +12,11 @@ COMMENT= Python package for creating enc LICENSE= GPLv2 -USE_PYTHON= 3 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:3 USE_TEX= latex:build +PYTHON_FEATURES= autoplist distutils + OPTIONS_DEFINE= T1CODE KPATHSEA OPTIONS_DEFAULT= T1CODE KPATHSEA T1CODE_DESC= Fast t1 font encoding/decoding Modified: head/graphics/py-PyX12/Makefile ============================================================================== --- head/graphics/py-PyX12/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/graphics/py-PyX12/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -13,11 +13,11 @@ COMMENT= Python package for creating enc LICENSE= GPLv2 -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 USE_TEX= latex:build +PYTHON_FEATURES= autoplist distutils + OPTIONS_DEFINE= T1CODE KPATHSEA OPTIONS_DEFAULT= T1CODE KPATHSEA T1CODE_DESC= Fast t1 font encoding/decoding Modified: head/lang/micropython/Makefile ============================================================================== --- head/lang/micropython/Makefile Sun Aug 10 08:48:41 2014 (r364517) +++ head/lang/micropython/Makefile Sun Aug 10 08:55:08 2014 (r364518) @@ -11,8 +11,7 @@ LICENSE= MIT LIB_DEPENDS= libffi.so:${PORTSDIR}/devel/libffi -USE_PYTHON_BUILD= yes -USES= gmake shebangfix pkgconfig readline +USES= gmake pkgconfig python:build readline shebangfix USE_GITHUB= yes GH_ACCOUNT= micropython From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:08:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DD2793C for ; Sun, 10 Aug 2014 09:08:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 028A12AAC for ; Sun, 10 Aug 2014 09:08:40 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2fee by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:08:39 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 09:08:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364519 - head/deskutils/tomboy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e73697.2fee.768b423a@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:08:40 -0000 Author: antoine Date: Sun Aug 10 09:08:39 2014 New Revision: 364519 URL: http://svnweb.freebsd.org/changeset/ports/364519 QAT: https://qat.redports.org/buildarchive/r364519/ Log: - Use GCONF_SCHEMAS to fix some stage violations - Fix PLIST_SUB to prevent some pkg warnings Modified: head/deskutils/tomboy/Makefile head/deskutils/tomboy/pkg-plist Modified: head/deskutils/tomboy/Makefile ============================================================================== --- head/deskutils/tomboy/Makefile Sun Aug 10 08:55:08 2014 (r364518) +++ head/deskutils/tomboy/Makefile Sun Aug 10 09:08:39 2014 (r364519) @@ -22,6 +22,7 @@ GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALLS_OMF= yes USE_LDCONFIG= yes +GCONF_SCHEMAS= tomboy.schemas MAKE_JOBS_UNSAFE=yes @@ -49,7 +50,7 @@ RUN_DEPENDS+= ${LOCALBASE}/lib/mono/gmim PLIST_SUB+= EVOLUTION="" .else CONFIGURE_ARGS+=--disable-evolution -PLIST_SUB+= EVOLUTION="@comment" +PLIST_SUB+= EVOLUTION="@comment " .endif post-patch: Modified: head/deskutils/tomboy/pkg-plist ============================================================================== --- head/deskutils/tomboy/pkg-plist Sun Aug 10 08:55:08 2014 (r364518) +++ head/deskutils/tomboy/pkg-plist Sun Aug 10 09:08:39 2014 (r364519) @@ -1,6 +1,5 @@ bin/tomboy %%APPLET%%bin/tomboy-panel -etc/gconf/schemas/tomboy.schemas lib/tomboy/Tomboy.exe lib/tomboy/Tomboy.exe.config lib/tomboy/Tomboy.exe.mdb From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:25:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87A52AC7 for ; Sun, 10 Aug 2014 09:25:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 5B5A92C84 for ; Sun, 10 Aug 2014 09:25:25 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 29b3 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:25:25 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 09:25:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364520 - head/devel/avr-gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e73a85.29b3.1fef3aa4@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:25:25 -0000 Author: antoine Date: Sun Aug 10 09:25:24 2014 New Revision: 364520 URL: http://svnweb.freebsd.org/changeset/ports/364520 QAT: https://qat.redports.org/buildarchive/r364520/ Log: Fix plist Modified: head/devel/avr-gcc/pkg-plist Modified: head/devel/avr-gcc/pkg-plist ============================================================================== --- head/devel/avr-gcc/pkg-plist Sun Aug 10 09:08:39 2014 (r364519) +++ head/devel/avr-gcc/pkg-plist Sun Aug 10 09:25:24 2014 (r364520) @@ -7,12 +7,6 @@ bin/avr-gcc-ar bin/avr-gcc-nm bin/avr-gcc-ranlib bin/avr-gcov -info/cpp.info -info/cppinternals.info -info/dir -info/gcc.info -info/gccinstall.info -info/gccint.info lib/gcc/avr/4.8.3/avr25/libgcc.a lib/gcc/avr/4.8.3/avr25/libgcov.a lib/gcc/avr/4.8.3/avr25/tiny-stack/libgcc.a From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:30:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6941EC6F for ; Sun, 10 Aug 2014 09:30:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 3F2732CED for ; Sun, 10 Aug 2014 09:30:26 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 29cb by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:30:26 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 09:30:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364521 - head/net-im/pidgin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e73bb2.29cb.4b05dd95@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:30:26 -0000 Author: antoine Date: Sun Aug 10 09:30:25 2014 New Revision: 364521 URL: http://svnweb.freebsd.org/changeset/ports/364521 QAT: https://qat.redports.org/buildarchive/r364521/ Log: Finish stage support Modified: head/net-im/pidgin/pkg-plist Modified: head/net-im/pidgin/pkg-plist ============================================================================== --- head/net-im/pidgin/pkg-plist Sun Aug 10 09:25:24 2014 (r364520) +++ head/net-im/pidgin/pkg-plist Sun Aug 10 09:30:25 2014 (r364521) @@ -72,6 +72,7 @@ lib/pidgin/timestamp_format.so lib/pidgin/xmppconsole.so lib/pidgin/xmppdisco.so libdata/pkgconfig/pidgin.pc +man/man1/pidgin.1.gz share/applications/pidgin.desktop share/icons/hicolor/16x16/apps/pidgin.png share/icons/hicolor/22x22/apps/pidgin.png From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:34:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C6D5D7C for ; Sun, 10 Aug 2014 09:34:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 281012DBA for ; Sun, 10 Aug 2014 09:34:55 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2d29 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:34:54 +0000 From: John Marino Date: Sun, 10 Aug 2014 09:34:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364522 - head/emulators/hatari X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e73cbe.2d29.3652d5c2@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:34:55 -0000 Author: marino Date: Sun Aug 10 09:34:54 2014 New Revision: 364522 URL: http://svnweb.freebsd.org/changeset/ports/364522 QAT: https://qat.redports.org/buildarchive/r364522/ Log: emulators/hatari: upgrade version 1.7.0 => 1.8.0 PR: 192476 Submitted by: Ports Fury Modified: head/emulators/hatari/Makefile head/emulators/hatari/distinfo head/emulators/hatari/pkg-descr head/emulators/hatari/pkg-plist Modified: head/emulators/hatari/Makefile ============================================================================== --- head/emulators/hatari/Makefile Sun Aug 10 09:30:25 2014 (r364521) +++ head/emulators/hatari/Makefile Sun Aug 10 09:34:54 2014 (r364522) @@ -2,20 +2,19 @@ # $FreeBSD$ PORTNAME= hatari -PORTVERSION= 1.7.0 +PORTVERSION= 1.8.0 CATEGORIES= emulators -MASTER_SITES= http://download.tuxfamily.org/hatari/${PORTVERSION}/ +MASTER_SITES= http://download.tuxfamily.org/hatari/%SUBDIR%/ +MASTER_SITE_SUBDIR= ${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Atari ST emulator -LICENSE= GPLv2 +LICENSE= GPLv2 # (or later) -BUILD_DEPENDS= portaudio2>=0:${PORTSDIR}/audio/portaudio2 +BUILD_DEPENDS= portaudio2>0:${PORTSDIR}/audio/portaudio2 LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png -RUN_DEPENDS= portaudio2>=0:${PORTSDIR}/audio/portaudio2 - -OPTIONS_DEFINE= DOCS +RUN_DEPENDS= portaudio2>0:${PORTSDIR}/audio/portaudio2 USES= cmake readline tar:bzip2 USE_GNOME= pygtk2 @@ -26,40 +25,29 @@ CMAKE_ARGS= -DPORTAUDIO_INCLUDE_DIR:STRI -DETCDIR:STRING="${PREFIX}/etc" \ -DMANDIR:STRING="man/man1" -CFLAGS+= -I${LOCALBASE}/include/portaudio2 -PA2_INCLUDE_DIR=-I${LOCALBASE}/include/portaudio2 -PA2_LIBRARY= ${LOCALBASE}/lib/portaudio2/libportaudio.so +OPTIONS_DEFINE= DOCS -PORTDOCS= * +PA2_INCLUDE_DIR=${LOCALBASE}/include/portaudio2 +PA2_LIBRARY= ${LOCALBASE}/lib/portaudio2/libportaudio.so post-patch: -.for file in doc/hatari.1 doc/fr/hatari.1 tools/hconsole/hconsole.1 +.for i in doc/hatari.1 doc/fr/hatari.1 tools/hconsole/hconsole.1 @${REINPLACE_CMD} -e \ 's|^/etc/hatari.cfg .*|${PREFIX}/etc/hatari.cfg| ; \ - s|/usr/share|${PREFIX}/share|' ${WRKSRC}/${file} + s|/usr/share|${PREFIX}/share|' ${WRKSRC}/${i} .endfor - @${REINPLACE_CMD} -e '/doc/s|^add_|#add_|' \ - ${WRKSRC}/CMakeLists.txt @${REINPLACE_CMD} -e '/DESTINATION/s|/icons/.*)|/pixmaps)|' \ ${WRKSRC}/python-ui/CMakeLists.txt post-build: - @cd ${WRKSRC}/doc && ${GZIP_CMD} -c ${PORTNAME}.1 > ${PORTNAME}.1.gz @cd ${WRKSRC}/doc/fr && ${GZIP_CMD} -c ${PORTNAME}.1 > ${PORTNAME}.1.gz post-install: - (cd ${WRKSRC}/doc && ${INSTALL_MAN} ${PORTNAME}.1.gz \ - ${STAGEDIR}${MANPREFIX}/man/man1) @${MKDIR} ${STAGEDIR}${MANPREFIX}/man/fr/man1 (cd ${WRKSRC}/doc/fr && ${INSTALL_MAN} ${PORTNAME}.1.gz \ ${STAGEDIR}${MANPREFIX}/man/fr/man1) - - @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} readme.txt ${STAGEDIR}${DOCSDIR}) - (cd ${WRKSRC}/doc && ${INSTALL_DATA} *.html [a-z]*.txt ${STAGEDIR}${DOCSDIR}) @${MKDIR} ${STAGEDIR}${DOCSDIR}/fr - (cd ${WRKSRC}/doc/fr && ${INSTALL_DATA} *.txt ${STAGEDIR}${DOCSDIR}/fr) - @${MKDIR} ${STAGEDIR}${DOCSDIR}/images - (cd ${WRKSRC}/doc/images && ${INSTALL_DATA} *.png ${STAGEDIR}${DOCSDIR}/images) + (cd ${WRKSRC}/doc/fr && ${INSTALL_DATA} *.txt \ + ${STAGEDIR}${DOCSDIR}/fr) .include Modified: head/emulators/hatari/distinfo ============================================================================== --- head/emulators/hatari/distinfo Sun Aug 10 09:30:25 2014 (r364521) +++ head/emulators/hatari/distinfo Sun Aug 10 09:34:54 2014 (r364522) @@ -1,2 +1,2 @@ -SHA256 (hatari-1.7.0.tar.bz2) = 2056d12807cb827585f337912238492f8b66b7ff3d9d0628090e58209a519e4d -SIZE (hatari-1.7.0.tar.bz2) = 2254241 +SHA256 (hatari-1.8.0.tar.bz2) = 7ecf486ba578e3b4d7a3d3e86ef3e879d5e5611b39c2504e38ccafdaacb5ffeb +SIZE (hatari-1.8.0.tar.bz2) = 1985358 Modified: head/emulators/hatari/pkg-descr ============================================================================== --- head/emulators/hatari/pkg-descr Sun Aug 10 09:30:25 2014 (r364521) +++ head/emulators/hatari/pkg-descr Sun Aug 10 09:34:54 2014 (r364522) @@ -1,4 +1,5 @@ -Hatari is an Atari ST emulator. It tries to emulate the hardware of a ST as -close as possible so that it is able to run most of the old ST games and demos. +Hatari is an Atari ST emulator. It tries to emulate the hardware of a ST +as close as possible so that it is able to run most of the old ST games +and demos. WWW: http://hatari.tuxfamily.org/ Modified: head/emulators/hatari/pkg-plist ============================================================================== --- head/emulators/hatari/pkg-plist Sun Aug 10 09:30:25 2014 (r364521) +++ head/emulators/hatari/pkg-plist Sun Aug 10 09:34:54 2014 (r364522) @@ -15,6 +15,33 @@ man/man1/hconsole.1.gz man/man1/hmsa.1.gz man/man1/zip2st.1.gz share/applications/hatariui.desktop +%%PORTDOCS%%%%DOCSDIR%%/authors.txt +%%PORTDOCS%%%%DOCSDIR%%/compatibility.html +%%PORTDOCS%%%%DOCSDIR%%/emutos.txt +%%PORTDOCS%%%%DOCSDIR%%/fr/clavier-exemple.txt +%%PORTDOCS%%%%DOCSDIR%%/images/callgraph.png +%%PORTDOCS%%%%DOCSDIR%%/images/callgraph.svg +%%PORTDOCS%%%%DOCSDIR%%/images/devices.png +%%PORTDOCS%%%%DOCSDIR%%/images/fileselector.png +%%PORTDOCS%%%%DOCSDIR%%/images/floppydisks.png +%%PORTDOCS%%%%DOCSDIR%%/images/harddisks.png +%%PORTDOCS%%%%DOCSDIR%%/images/joystick.png +%%PORTDOCS%%%%DOCSDIR%%/images/kcachegrind.png +%%PORTDOCS%%%%DOCSDIR%%/images/keyboard.png +%%PORTDOCS%%%%DOCSDIR%%/images/main.png +%%PORTDOCS%%%%DOCSDIR%%/images/memory.png +%%PORTDOCS%%%%DOCSDIR%%/images/monitor.png +%%PORTDOCS%%%%DOCSDIR%%/images/newfloppy.png +%%PORTDOCS%%%%DOCSDIR%%/images/screen.png +%%PORTDOCS%%%%DOCSDIR%%/images/sound.png +%%PORTDOCS%%%%DOCSDIR%%/images/system.png +%%PORTDOCS%%%%DOCSDIR%%/images/tos.png +%%PORTDOCS%%%%DOCSDIR%%/keymap-sample.txt +%%PORTDOCS%%%%DOCSDIR%%/manual.html +%%PORTDOCS%%%%DOCSDIR%%/memory-usage.txt +%%PORTDOCS%%%%DOCSDIR%%/midi-linux.txt +%%PORTDOCS%%%%DOCSDIR%%/release-notes.txt +%%PORTDOCS%%%%DOCSDIR%%/todo.txt %%DATADIR%%/hatari-icon.bmp %%DATADIR%%/hatariui/README %%DATADIR%%/hatariui/TODO @@ -38,5 +65,8 @@ share/pixmaps/hatari-icon.png @dirrm %%DATADIR%%/hconsole @dirrm %%DATADIR%%/hatariui @dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%%/images +%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrmtry man/fr/man1 @dirrmtry man/fr From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:40:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48EC2E99 for ; Sun, 10 Aug 2014 09:40:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 1E7EB2E2A for ; Sun, 10 Aug 2014 09:40:10 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2d56 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:40:09 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 09:40:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364523 - head/databases/metakit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e73dfa.2d56.566ac74a@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:40:10 -0000 Author: antoine Date: Sun Aug 10 09:40:09 2014 New Revision: 364523 URL: http://svnweb.freebsd.org/changeset/ports/364523 QAT: https://qat.redports.org/buildarchive/r364523/ Log: Stop doing strange things in plist While here convert to USES=python Modified: head/databases/metakit/Makefile head/databases/metakit/pkg-plist Modified: head/databases/metakit/Makefile ============================================================================== --- head/databases/metakit/Makefile Sun Aug 10 09:34:54 2014 (r364522) +++ head/databases/metakit/Makefile Sun Aug 10 09:40:09 2014 (r364523) @@ -24,7 +24,7 @@ OPTIONS_DEFAULT= PYTHON .include .if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= yes +USES+= python CONFIGURE_ARGS+= --with-python=${LOCALBASE} CATEGORIES+= python PLIST_SUB+= WITH_PYTHON="" Modified: head/databases/metakit/pkg-plist ============================================================================== --- head/databases/metakit/pkg-plist Sun Aug 10 09:34:54 2014 (r364522) +++ head/databases/metakit/pkg-plist Sun Aug 10 09:40:09 2014 (r364523) @@ -2,9 +2,8 @@ include/mk4.h include/mk4.inl include/mk4str.h include/mk4str.inl +lib/libmk4.so lib/libmk4.so.0 -@exec ln -s libmk4.so.0 %D/lib/libmk4.so -@rmtry lib/libmk4.so %%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/Mk4py.so %%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/metakit.py %%WITH_PYTHON%%%%PYTHON_SITELIBDIR%%/metakit.pyc From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:40:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 978A7F7E for ; Sun, 10 Aug 2014 09:40:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 823EB2E5D for ; Sun, 10 Aug 2014 09:40:43 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2d8f by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:40:42 +0000 From: John Marino Date: Sun, 10 Aug 2014 09:40:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364524 - in head/graphics: nip2 nip2/files vips vips/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e73e1a.2d8f.5eac89e4@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:40:43 -0000 Author: marino Date: Sun Aug 10 09:40:41 2014 New Revision: 364524 URL: http://svnweb.freebsd.org/changeset/ports/364524 QAT: https://qat.redports.org/buildarchive/r364524/ Log: graphics/vips & nip2: Upgrade version Upgrade vips version 7.40.3 => 7.40.4 Upgrade nip2 version 7.40.2 => 7.40.3 PR: 192206 Submitted by: Ports Fury Deleted: head/graphics/nip2/files/patch-src-graphwindow.c head/graphics/nip2/files/patch-tests head/graphics/vips/files/ Modified: head/graphics/nip2/Makefile head/graphics/nip2/distinfo head/graphics/nip2/pkg-plist head/graphics/vips/Makefile head/graphics/vips/distinfo head/graphics/vips/pkg-plist Modified: head/graphics/nip2/Makefile ============================================================================== --- head/graphics/nip2/Makefile Sun Aug 10 09:40:09 2014 (r364523) +++ head/graphics/nip2/Makefile Sun Aug 10 09:40:41 2014 (r364524) @@ -2,45 +2,41 @@ # $FreeBSD$ PORTNAME= nip2 -PORTVERSION= 7.40.2 +PORTVERSION= 7.40.3 CATEGORIES= graphics MASTER_SITES= http://www.vips.ecs.soton.ac.uk/supported/${PORTVERSION:R}/ MAINTAINER= ports@FreeBSD.org COMMENT= Graphical user interface for VIPS -OPTIONS_DEFINE= DOCS -LIB_DEPENDS= libvips.so.38:${PORTSDIR}/graphics/vips \ - libgoffice-*.so:${PORTSDIR}/devel/goffice \ - libgsl.so:${PORTSDIR}/math/gsl \ +LICENSE= GPLv2 + +BUILD_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils +LIB_DEPENDS= libgoffice-*.so:${PORTSDIR}/devel/goffice \ libgvc.so:${PORTSDIR}/graphics/graphviz \ - libxml2.so:${PORTSDIR}/textproc/libxml2 -BUILD_DEPENDS= xgettext:${PORTSDIR}/devel/gettext + libvips.so:${PORTSDIR}/graphics/vips \ + libgsl.so:${PORTSDIR}/math/gsl +RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils -USES= bison dos2unix gettext gmake pkgconfig -USE_GNOME= gnomemimedata glib20 gtk20 -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --mandir=${PREFIX}/man -CONFIGURE_ENV+= XGETTEXT=${LOCALBASE}/bin/xgettext \ - LIBGVC_LIBS="-L${LOCALBASE}/lib/graphviz -lgvc" \ - LIBGVC_CFLAGS="-I${LOCALBASE}/include/graphviz" +USES= bison desktop-file-utils dos2unix gettext gmake pkgconfig \ + shared-mime-info DOS2UNIX_GLOB= *.def +USE_GNOME= gnomemimedata gtk20 libxml2 +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-update-desktop \ + --without-goffice + SUB_FILES= run-nip2.sh -# This port has no man-pages. It installs a number of HTML files, -# which are available through the GUI's Help. For this reason, they -# are always installed, regardless of the DOCS setting. -# Somehow vendor's configure misses these: -MAKE_ENV+= UPDATE_MIME_DATABASE=update-mime-database \ - UPDATE_DESKTOP_DATABASE=update-desktop-database -MANCOMPRESSED= no -post-install: - ${INSTALL_SCRIPT} ${WRKDIR}/run-nip2.sh \ - ${STAGEDIR}/${PREFIX}/bin/ +OPTIONS_DEFINE= DOCS post-patch: - ${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|g' \ - ${WRKSRC}/test/scripts/* + @${REINPLACE_CMD} -e \ + 's|/bin/bash|/bin/sh|' ${WRKSRC}/test/scripts/* + +post-install: + (cd ${WRKDIR} && ${INSTALL_SCRIPT} run-nip2.sh \ + ${STAGEDIR}/${PREFIX}/bin) test check: build # @@ -49,12 +45,6 @@ test check: build # the log-file: # ${WRKSRC}/test/test_all.sh.log # - ${GMAKE} -C ${WRKSRC} check - -.include - -.if empty(PORT_OPTIONS:MDOCS) -EXTRACT_AFTER_ARGS+= --exclude nipguide.pdf --exclude pdf -.endif + (cd %{WRKSRC} && ${SETENV} {MAKE_ENV} ${MAKE_CMD} check) .include Modified: head/graphics/nip2/distinfo ============================================================================== --- head/graphics/nip2/distinfo Sun Aug 10 09:40:09 2014 (r364523) +++ head/graphics/nip2/distinfo Sun Aug 10 09:40:41 2014 (r364524) @@ -1,2 +1,2 @@ -SHA256 (nip2-7.40.2.tar.gz) = da4db3b21f4db5a5965e9cefb656cc208a5c845a084bda04cbb1e2833310b24a -SIZE (nip2-7.40.2.tar.gz) = 9639389 +SHA256 (nip2-7.40.3.tar.gz) = 75dd68b7e316d1da9275a97a53456345641111e9fd1deeee29c5c7be5bd85fce +SIZE (nip2-7.40.3.tar.gz) = 9639656 Modified: head/graphics/nip2/pkg-plist ============================================================================== --- head/graphics/nip2/pkg-plist Sun Aug 10 09:40:09 2014 (r364523) +++ head/graphics/nip2/pkg-plist Sun Aug 10 09:40:41 2014 (r364524) @@ -1,395 +1,393 @@ bin/nip2 bin/run-nip2.sh man/man1/nip2.1.gz -share/nip2/rc/ipgtkrc -share/nip2/data/examples/logo/logo2.ws -share/nip2/data/examples/overlays_and_blending/overlay_blend.ws -share/nip2/data/examples/overlays_and_blending/blend_example_ir.jpg -share/nip2/data/examples/overlays_and_blending/blend_example_vis.jpg -share/nip2/data/examples/overlays_and_blending/blend_example_xray.jpg -share/nip2/data/examples/manual_balance/mask_01.png -share/nip2/data/examples/manual_balance/mask_02.png -share/nip2/data/examples/manual_balance/simp_base.png -share/nip2/data/examples/manual_balance/mask_03.png -share/nip2/data/examples/manual_balance/mask_control.png -share/nip2/data/examples/manual_balance/manual_balance.ws -share/nip2/data/examples/registering/example_im_2.jpg -share/nip2/data/examples/registering/registering.ws -share/nip2/data/examples/registering/example_im_1.jpg -share/nip2/data/examples/registering/example_im_4.jpg -share/nip2/data/examples/registering/example_im_3.jpg -share/nip2/data/examples/clone/clone.ws -share/nip2/data/examples/clone/example_im_01.png -share/nip2/data/examples/clone/example_im_02.png -share/nip2/data/examples/businesscard/businesscard.ws -share/nip2/data/examples/businesscard/slanted_oval_vase2.jpg -share/nip2/data/examples/framing/framing_distorted_frame.png -share/nip2/data/examples/framing/framing.ws -share/nip2/data/examples/framing/framing_complex.png -share/nip2/data/examples/framing/framing_corner.png -share/nip2/data/examples/framing/framing_picture.jpg -share/nip2/data/examples/print_test_image.v -share/nip2/data/rachel.con -share/nip2/data/AdobeRGB1998.icc -share/nip2/data/sRGB.icm -share/nip2/data/macbeth_lab_d65.mat -share/nip2/data/macbeth_lab_d50.mat -share/nip2/data/vips-128.png -share/nip2/data/nip2-icon.ico -share/nip2/data/HP5000_UVDuraImageGlossMaxQ.icc -share/nip2/data/stock-tool-ink-22.png -share/nip2/data/stock-tool-path-22.png -share/nip2/data/stock-tool-text-22.png -share/nip2/data/stock-tool-smudge-22.png -share/nip2/data/stock-tool-bucket-fill-22.png -share/nip2/data/stock-tool-rect-select-22.png -share/nip2/data/stock-tool-select-22.png -share/nip2/data/nip-slider-16.png -share/nip2/data/stock-tool-move-22.png -share/nip2/data/stock-led-red-18.png -share/nip2/data/stock-led-green-18.png -share/nip2/data/stock-led-blue-18.png -share/nip2/data/stock-led-cyan-18.png -share/nip2/data/stock-led-yellow-18.png -share/nip2/data/stock-led-off-18.png -share/nip2/start/_magick.def -share/nip2/start/Magick.def -share/nip2/start/Math.def -share/nip2/start/Image.def -share/nip2/start/Colour.def -share/nip2/start/Tasks.def -share/nip2/start/Object.def -share/nip2/start/Filter.def -share/nip2/start/Matrix.def -share/nip2/start/Widgets.def -share/nip2/start/Histogram.def -share/nip2/start/Preferences.ws -share/nip2/start/_joe_extra.def -share/nip2/start/_joe_utilities.def -share/nip2/start/_convert.def -share/nip2/start/_generate.def -share/nip2/start/_list.def -share/nip2/start/_predicate.def -share/nip2/start/_stdenv.def -share/nip2/start/_Object.def -share/nip2/start/_types.def -share/nip2/compat/7.8/Math.def -share/nip2/compat/7.8/Image.def -share/nip2/compat/7.8/Mosaic.def -share/nip2/compat/7.8/Colour.def -share/nip2/compat/7.8/Resize.def -share/nip2/compat/7.8/Capture.def -share/nip2/compat/7.8/Format.def -share/nip2/compat/7.8/Filter.def -share/nip2/compat/7.8/Morphology.def -share/nip2/compat/7.8/New.def -share/nip2/compat/7.8/Histogram.def -share/nip2/compat/7.8/Print.def -share/nip2/compat/7.8/Rotate.def -share/nip2/compat/7.8/Statistics.def -share/nip2/compat/7.8/X_ray.def -share/nip2/compat/7.8/_convert.def -share/nip2/compat/7.8/_errors.def -share/nip2/compat/7.8/_generate.def -share/nip2/compat/7.8/_list.def -share/nip2/compat/7.8/_predicate.def -share/nip2/compat/7.8/_stdenv.def -share/nip2/compat/7.8/_types.def -share/nip2/compat/7.9/Math.def -share/nip2/compat/7.9/Image.def -share/nip2/compat/7.9/Mosaic.def -share/nip2/compat/7.9/Colour.def -share/nip2/compat/7.9/Resize.def -share/nip2/compat/7.9/Capture.def -share/nip2/compat/7.9/Format.def -share/nip2/compat/7.9/Filter.def -share/nip2/compat/7.9/Morphology.def -share/nip2/compat/7.9/New.def -share/nip2/compat/7.9/Histogram.def -share/nip2/compat/7.9/Print.def -share/nip2/compat/7.9/Rotate.def -share/nip2/compat/7.9/Statistics.def -share/nip2/compat/7.9/X_ray.def -share/nip2/compat/7.9/_convert.def -share/nip2/compat/7.9/_errors.def -share/nip2/compat/7.9/_generate.def -share/nip2/compat/7.9/_list.def -share/nip2/compat/7.9/_predicate.def -share/nip2/compat/7.9/_stdenv.def -share/nip2/compat/7.9/_types.def -share/nip2/compat/7.10/Colour.def -share/nip2/compat/7.10/_convert.def -share/nip2/compat/7.10/Filter.def -share/nip2/compat/7.10/Format.def -share/nip2/compat/7.10/_generate.def -share/nip2/compat/7.10/Histogram.def -share/nip2/compat/7.10/Image.def -share/nip2/compat/7.10/_joe_extra.def -share/nip2/compat/7.10/_joe_utilities.def -share/nip2/compat/7.10/_list.def -share/nip2/compat/7.10/Math.def -share/nip2/compat/7.10/Matrix.def -share/nip2/compat/7.10/_predicate.def -share/nip2/compat/7.10/_stdenv.def -share/nip2/compat/7.10/Tasks.def -share/nip2/compat/7.10/_types.def -share/nip2/compat/7.10/Widgets.def -share/nip2/compat/7.12/Math.def -share/nip2/compat/7.12/Image.def -share/nip2/compat/7.12/Colour.def -share/nip2/compat/7.12/Tasks.def -share/nip2/compat/7.12/Format.def -share/nip2/compat/7.12/Filter.def -share/nip2/compat/7.12/Matrix.def -share/nip2/compat/7.12/Widgets.def -share/nip2/compat/7.12/Histogram.def -share/nip2/compat/7.12/Preferences.ws -share/nip2/compat/7.12/_joe_extra.def -share/nip2/compat/7.12/_joe_utilities.def -share/nip2/compat/7.12/_convert.def -share/nip2/compat/7.12/_generate.def -share/nip2/compat/7.12/_list.def -share/nip2/compat/7.12/_predicate.def -share/nip2/compat/7.12/_stdenv.def -share/nip2/compat/7.12/_types.def -share/nip2/compat/7.14/Colour.def -share/nip2/compat/7.14/Filter.def -share/nip2/compat/7.14/Histogram.def -share/nip2/compat/7.14/Image.def -share/nip2/compat/7.14/Math.def -share/nip2/compat/7.14/Matrix.def -share/nip2/compat/7.14/Object.def -share/nip2/compat/7.14/Preferences.ws -share/nip2/compat/7.14/Tasks.def -share/nip2/compat/7.14/Widgets.def -share/nip2/compat/7.14/_Object.def -share/nip2/compat/7.14/_convert.def -share/nip2/compat/7.14/_generate.def -share/nip2/compat/7.14/_joe_extra.def -share/nip2/compat/7.14/_joe_utilities.def -share/nip2/compat/7.14/_list.def -share/nip2/compat/7.14/_predicate.def -share/nip2/compat/7.14/_stdenv.def -share/nip2/compat/7.14/_types.def -share/nip2/compat/7.16/Colour.def -share/nip2/compat/7.16/Filter.def -share/nip2/compat/7.16/Histogram.def -share/nip2/compat/7.16/Image.def -share/nip2/compat/7.16/Math.def -share/nip2/compat/7.16/Matrix.def -share/nip2/compat/7.16/Object.def -share/nip2/compat/7.16/Preferences.ws -share/nip2/compat/7.16/Tasks.def -share/nip2/compat/7.16/Widgets.def -share/nip2/compat/7.16/_Object.def -share/nip2/compat/7.16/_convert.def -share/nip2/compat/7.16/_generate.def -share/nip2/compat/7.16/_joe_extra.def -share/nip2/compat/7.16/_joe_utilities.def -share/nip2/compat/7.16/_list.def -share/nip2/compat/7.16/_predicate.def -share/nip2/compat/7.16/_stdenv.def -share/nip2/compat/7.16/_types.def -share/nip2/compat/7.24/Colour.def -share/nip2/compat/7.24/Filter.def -share/nip2/compat/7.24/Histogram.def -share/nip2/compat/7.24/Image.def -share/nip2/compat/7.24/Math.def -share/nip2/compat/7.24/Matrix.def -share/nip2/compat/7.24/Object.def -share/nip2/compat/7.24/Tasks.def -share/nip2/compat/7.24/Widgets.def -share/nip2/compat/7.24/_Object.def -share/nip2/compat/7.24/_convert.def -share/nip2/compat/7.24/_generate.def -share/nip2/compat/7.24/_joe_extra.def -share/nip2/compat/7.24/_joe_utilities.def -share/nip2/compat/7.24/_list.def -share/nip2/compat/7.24/_predicate.def -share/nip2/compat/7.24/_stdenv.def -share/nip2/compat/7.24/_types.def -share/nip2/compat/7.26/Math.def -share/nip2/compat/7.26/Image.def -share/nip2/compat/7.26/Colour.def -share/nip2/compat/7.26/Tasks.def -share/nip2/compat/7.26/Object.def -share/nip2/compat/7.26/Filter.def -share/nip2/compat/7.26/Matrix.def -share/nip2/compat/7.26/Widgets.def -share/nip2/compat/7.26/Histogram.def -share/nip2/compat/7.26/_joe_extra.def -share/nip2/compat/7.26/_joe_utilities.def -share/nip2/compat/7.26/_convert.def -share/nip2/compat/7.26/_generate.def -share/nip2/compat/7.26/_list.def -share/nip2/compat/7.26/_predicate.def -share/nip2/compat/7.26/_stdenv.def -share/nip2/compat/7.26/_Object.def -share/nip2/compat/7.26/_types.def -share/nip2/compat/7.28/Math.def -share/nip2/compat/7.28/Image.def -share/nip2/compat/7.28/Colour.def -share/nip2/compat/7.28/Tasks.def -share/nip2/compat/7.28/Object.def -share/nip2/compat/7.28/Filter.def -share/nip2/compat/7.28/Matrix.def -share/nip2/compat/7.28/Widgets.def -share/nip2/compat/7.28/Histogram.def -share/nip2/compat/7.28/_joe_extra.def -share/nip2/compat/7.28/_joe_utilities.def -share/nip2/compat/7.28/_convert.def -share/nip2/compat/7.28/_generate.def -share/nip2/compat/7.28/_list.def -share/nip2/compat/7.28/_predicate.def -share/nip2/compat/7.28/_stdenv.def -share/nip2/compat/7.28/_Object.def -share/nip2/compat/7.28/_types.def -share/nip2/compat/7.38/Math.def -share/nip2/compat/7.38/Image.def -share/nip2/compat/7.38/Colour.def -share/nip2/compat/7.38/Tasks.def -share/nip2/compat/7.38/Object.def -share/nip2/compat/7.38/Filter.def -share/nip2/compat/7.38/Matrix.def -share/nip2/compat/7.38/Widgets.def -share/nip2/compat/7.38/Histogram.def -share/nip2/compat/7.38/_joe_extra.def -share/nip2/compat/7.38/_joe_utilities.def -share/nip2/compat/7.38/_convert.def -share/nip2/compat/7.38/_generate.def -share/nip2/compat/7.38/_list.def -share/nip2/compat/7.38/_predicate.def -share/nip2/compat/7.38/_stdenv.def -share/nip2/compat/7.38/_Object.def -share/nip2/compat/7.38/_types.def -share/nip2/data/examples/1_point_mosaic/1pt_mosaic.ws -share/nip2/data/examples/1_point_mosaic/cd1.1.jpg -share/nip2/data/examples/1_point_mosaic/cd1.2.jpg -share/nip2/data/examples/1_point_mosaic/cd2.1.jpg -share/nip2/data/examples/1_point_mosaic/cd2.2.jpg -share/nip2/data/examples/1_point_mosaic/cd3.1.jpg -share/nip2/data/examples/1_point_mosaic/cd3.2.jpg -share/nip2/data/examples/1_point_mosaic/cd4.1.jpg -share/nip2/data/examples/1_point_mosaic/cd4.2.jpg -@dirrm share/nip2/data/examples/1_point_mosaic -share/nip2/data/examples/2_point_mosaic/2pts_mosaic.ws -share/nip2/data/examples/2_point_mosaic/example_im_01.jpg -share/nip2/data/examples/2_point_mosaic/example_im_02.jpg -share/nip2/data/examples/2_point_mosaic/example_im_03.jpg -share/nip2/data/examples/2_point_mosaic/example_im_04.jpg -share/nip2/data/examples/2_point_mosaic/example_im_05.jpg -share/nip2/data/examples/2_point_mosaic/example_im_06.jpg -share/nip2/data/examples/2_point_mosaic/full_image.jpg -share/nip2/data/stock-padlock-closed-22.png -share/nip2/data/stock-alert-22.png -@dirrm share/nip2/data/examples/2_point_mosaic -@dirrm share/nip2/compat/7.8 -@dirrm share/nip2/compat/7.9 -@dirrm share/nip2/compat/7.10 -@dirrm share/nip2/compat/7.12 -@dirrm share/nip2/compat/7.14 -@dirrm share/nip2/compat/7.16 -@dirrm share/nip2/compat/7.24 -@dirrm share/nip2/compat/7.26 -@dirrm share/nip2/compat/7.28 -@dirrm share/nip2/compat/7.38 -@dirrm share/nip2/compat -@dirrm share/nip2/data/examples/businesscard -@dirrm share/nip2/data/examples/clone -@dirrm share/nip2/data/examples/framing -@dirrm share/nip2/data/examples/logo -@dirrm share/nip2/data/examples/manual_balance -@dirrm share/nip2/data/examples/overlays_and_blending -@dirrm share/nip2/data/examples/registering -@dirrm share/nip2/data/examples -@dirrm share/nip2/data -@dirrm share/nip2/rc -@dirrm share/nip2/start -@dirrm share/nip2 -%%DOCSDIR%%/html/figs/ir7.jpg -%%DOCSDIR%%/html/figs/ir5.jpg -%%DOCSDIR%%/html/figs/ir8a.jpg -%%DOCSDIR%%/html/figs/toolkit2.jpg -%%DOCSDIR%%/html/figs/snap9.jpg -%%DOCSDIR%%/html/figs/snap7a.jpg -%%DOCSDIR%%/html/figs/snap12.jpg -%%DOCSDIR%%/html/figs/scr21a.png -%%DOCSDIR%%/html/figs/ir3.jpg -%%DOCSDIR%%/html/figs/snap16.jpg -%%DOCSDIR%%/html/figs/snap2.jpg -%%DOCSDIR%%/html/figs/snap13.jpg -%%DOCSDIR%%/html/figs/snap14.jpg -%%DOCSDIR%%/html/figs/snap4.jpg -%%DOCSDIR%%/html/figs/snap6.jpg -%%DOCSDIR%%/html/figs/toolkit.jpg -%%DOCSDIR%%/html/figs/snap15.jpg -%%DOCSDIR%%/html/figs/ir2.jpg -%%DOCSDIR%%/html/figs/snap7.jpg -%%DOCSDIR%%/html/figs/snap10.jpg -%%DOCSDIR%%/html/figs/snap11.jpg -%%DOCSDIR%%/html/figs/ir4.jpg -%%DOCSDIR%%/html/figs/snap1.jpg -%%DOCSDIR%%/html/figs/snap5.jpg -%%DOCSDIR%%/html/figs/snap3.jpg -%%DOCSDIR%%/html/figs/toolkit3.jpg -%%DOCSDIR%%/html/figs/snap8.jpg -%%DOCSDIR%%/html/nipguidese33.html -%%DOCSDIR%%/html/nipguidese24.html -%%DOCSDIR%%/html/nipguidese21.html -%%DOCSDIR%%/html/nipguidech5.html -%%DOCSDIR%%/html/nipguidese31.html -%%DOCSDIR%%/html/nipguidech6.html -%%DOCSDIR%%/html/nipguidese4.html -%%DOCSDIR%%/html/nipguideli2.html -%%DOCSDIR%%/html/nipguidese8.html -%%DOCSDIR%%/html/nipguidese2.html -%%DOCSDIR%%/html/nipguidese20.html -%%DOCSDIR%%/html/nipguidese6.html -%%DOCSDIR%%/html/nipguidese16.html -%%DOCSDIR%%/html/nipguide37.html -%%DOCSDIR%%/html/nipguidese18.html -%%DOCSDIR%%/html/nipguidese30.html -%%DOCSDIR%%/html/nipguidese34.html -%%DOCSDIR%%/html/nipguidese29.html -%%DOCSDIR%%/html/nipguide.html -%%DOCSDIR%%/html/nipguidech1.html -%%DOCSDIR%%/html/nipguideli1.html -%%DOCSDIR%%/html/nipguidese11.html -%%DOCSDIR%%/html/nipguidese25.html -%%DOCSDIR%%/html/nipguide.css -%%DOCSDIR%%/html/nipguidese9.html -%%DOCSDIR%%/html/nipguidese3.html -%%DOCSDIR%%/html/nipguidese22.html -%%DOCSDIR%%/html/nipguidese15.html -%%DOCSDIR%%/html/nipguidese26.html -%%DOCSDIR%%/html/nipguidese23.html -%%DOCSDIR%%/html/nipguidese27.html -%%DOCSDIR%%/html/nipguideap1.html -%%DOCSDIR%%/html/nipguidese1.html -%%DOCSDIR%%/html/nipguidese5.html -%%DOCSDIR%%/html/nipguidese12.html -%%DOCSDIR%%/html/nipguidese28.html -%%DOCSDIR%%/html/nipguidese17.html -%%DOCSDIR%%/html/nipguidech3.html -%%DOCSDIR%%/html/nipguidese36.html -%%DOCSDIR%%/html/nipguideli3.html -%%DOCSDIR%%/html/nipguidese7.html -%%DOCSDIR%%/html/nipguidese19.html -%%DOCSDIR%%/html/nipguidech4.html -%%DOCSDIR%%/html/nipguidese32.html -%%DOCSDIR%%/html/nipguidese13.html -%%DOCSDIR%%/html/nipguidech2.html -%%DOCSDIR%%/html/nipguidese10.html -%%DOCSDIR%%/html/nipguidese14.html -%%DOCSDIR%%/html/nipguidese35.html +share/appdata/nip2.appdata.xml +share/applications/nip2.desktop +%%PORTDOCS%%%%DOCSDIR%%/html/figs/ir2.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/ir3.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/ir4.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/ir5.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/ir7.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/ir8a.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/scr21a.png +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap1.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap10.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap11.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap12.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap13.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap14.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap15.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap16.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap2.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap3.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap4.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap5.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap6.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap7.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap7a.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap8.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/snap9.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/toolkit.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/toolkit2.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/figs/toolkit3.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/nipguide.css +%%PORTDOCS%%%%DOCSDIR%%/html/nipguide.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguide37.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguideap1.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidech1.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidech2.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidech3.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidech4.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidech5.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidech6.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguideli1.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguideli2.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguideli3.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese1.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese10.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese11.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese12.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese13.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese14.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese15.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese16.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese17.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese18.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese19.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese2.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese20.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese21.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese22.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese23.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese24.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese25.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese26.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese27.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese28.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese29.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese3.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese30.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese31.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese32.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese33.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese34.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese35.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese36.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese4.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese5.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese6.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese7.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese8.html +%%PORTDOCS%%%%DOCSDIR%%/html/nipguidese9.html %%PORTDOCS%%%%DOCSDIR%%/pdf/nipguide.pdf -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf -@dirrm %%DOCSDIR%%/html/figs -@dirrm %%DOCSDIR%%/html -@dirrm %%DOCSDIR%% share/mime/packages/nip2.xml -share/applications/nip2.desktop -@exec update-mime-database %D/share/mime || : -@exec update-desktop-database %D/share/applications || : -@unexec update-mime-database %D/share/mime || : -@unexec update-desktop-database %D/share/applications || : +%%DATADIR%%/compat/7.10/Colour.def +%%DATADIR%%/compat/7.10/Filter.def +%%DATADIR%%/compat/7.10/Format.def +%%DATADIR%%/compat/7.10/Histogram.def +%%DATADIR%%/compat/7.10/Image.def +%%DATADIR%%/compat/7.10/Math.def +%%DATADIR%%/compat/7.10/Matrix.def +%%DATADIR%%/compat/7.10/Tasks.def +%%DATADIR%%/compat/7.10/Widgets.def +%%DATADIR%%/compat/7.10/_convert.def +%%DATADIR%%/compat/7.10/_generate.def +%%DATADIR%%/compat/7.10/_joe_extra.def +%%DATADIR%%/compat/7.10/_joe_utilities.def +%%DATADIR%%/compat/7.10/_list.def +%%DATADIR%%/compat/7.10/_predicate.def +%%DATADIR%%/compat/7.10/_stdenv.def +%%DATADIR%%/compat/7.10/_types.def +%%DATADIR%%/compat/7.12/Colour.def +%%DATADIR%%/compat/7.12/Filter.def +%%DATADIR%%/compat/7.12/Format.def +%%DATADIR%%/compat/7.12/Histogram.def +%%DATADIR%%/compat/7.12/Image.def +%%DATADIR%%/compat/7.12/Math.def +%%DATADIR%%/compat/7.12/Matrix.def +%%DATADIR%%/compat/7.12/Preferences.ws +%%DATADIR%%/compat/7.12/Tasks.def +%%DATADIR%%/compat/7.12/Widgets.def +%%DATADIR%%/compat/7.12/_convert.def +%%DATADIR%%/compat/7.12/_generate.def +%%DATADIR%%/compat/7.12/_joe_extra.def +%%DATADIR%%/compat/7.12/_joe_utilities.def +%%DATADIR%%/compat/7.12/_list.def +%%DATADIR%%/compat/7.12/_predicate.def +%%DATADIR%%/compat/7.12/_stdenv.def +%%DATADIR%%/compat/7.12/_types.def +%%DATADIR%%/compat/7.14/Colour.def +%%DATADIR%%/compat/7.14/Filter.def +%%DATADIR%%/compat/7.14/Histogram.def +%%DATADIR%%/compat/7.14/Image.def +%%DATADIR%%/compat/7.14/Math.def +%%DATADIR%%/compat/7.14/Matrix.def +%%DATADIR%%/compat/7.14/Object.def +%%DATADIR%%/compat/7.14/Preferences.ws +%%DATADIR%%/compat/7.14/Tasks.def +%%DATADIR%%/compat/7.14/Widgets.def +%%DATADIR%%/compat/7.14/_Object.def +%%DATADIR%%/compat/7.14/_convert.def +%%DATADIR%%/compat/7.14/_generate.def +%%DATADIR%%/compat/7.14/_joe_extra.def +%%DATADIR%%/compat/7.14/_joe_utilities.def +%%DATADIR%%/compat/7.14/_list.def +%%DATADIR%%/compat/7.14/_predicate.def +%%DATADIR%%/compat/7.14/_stdenv.def +%%DATADIR%%/compat/7.14/_types.def +%%DATADIR%%/compat/7.16/Colour.def +%%DATADIR%%/compat/7.16/Filter.def +%%DATADIR%%/compat/7.16/Histogram.def +%%DATADIR%%/compat/7.16/Image.def +%%DATADIR%%/compat/7.16/Math.def +%%DATADIR%%/compat/7.16/Matrix.def +%%DATADIR%%/compat/7.16/Object.def +%%DATADIR%%/compat/7.16/Preferences.ws +%%DATADIR%%/compat/7.16/Tasks.def +%%DATADIR%%/compat/7.16/Widgets.def +%%DATADIR%%/compat/7.16/_Object.def +%%DATADIR%%/compat/7.16/_convert.def +%%DATADIR%%/compat/7.16/_generate.def +%%DATADIR%%/compat/7.16/_joe_extra.def +%%DATADIR%%/compat/7.16/_joe_utilities.def +%%DATADIR%%/compat/7.16/_list.def +%%DATADIR%%/compat/7.16/_predicate.def +%%DATADIR%%/compat/7.16/_stdenv.def +%%DATADIR%%/compat/7.16/_types.def +%%DATADIR%%/compat/7.24/Colour.def +%%DATADIR%%/compat/7.24/Filter.def +%%DATADIR%%/compat/7.24/Histogram.def +%%DATADIR%%/compat/7.24/Image.def +%%DATADIR%%/compat/7.24/Math.def +%%DATADIR%%/compat/7.24/Matrix.def +%%DATADIR%%/compat/7.24/Object.def +%%DATADIR%%/compat/7.24/Tasks.def +%%DATADIR%%/compat/7.24/Widgets.def +%%DATADIR%%/compat/7.24/_Object.def +%%DATADIR%%/compat/7.24/_convert.def +%%DATADIR%%/compat/7.24/_generate.def +%%DATADIR%%/compat/7.24/_joe_extra.def +%%DATADIR%%/compat/7.24/_joe_utilities.def +%%DATADIR%%/compat/7.24/_list.def +%%DATADIR%%/compat/7.24/_predicate.def +%%DATADIR%%/compat/7.24/_stdenv.def +%%DATADIR%%/compat/7.24/_types.def +%%DATADIR%%/compat/7.26/Colour.def +%%DATADIR%%/compat/7.26/Filter.def +%%DATADIR%%/compat/7.26/Histogram.def +%%DATADIR%%/compat/7.26/Image.def +%%DATADIR%%/compat/7.26/Math.def +%%DATADIR%%/compat/7.26/Matrix.def +%%DATADIR%%/compat/7.26/Object.def +%%DATADIR%%/compat/7.26/Tasks.def +%%DATADIR%%/compat/7.26/Widgets.def +%%DATADIR%%/compat/7.26/_Object.def +%%DATADIR%%/compat/7.26/_convert.def +%%DATADIR%%/compat/7.26/_generate.def +%%DATADIR%%/compat/7.26/_joe_extra.def +%%DATADIR%%/compat/7.26/_joe_utilities.def +%%DATADIR%%/compat/7.26/_list.def +%%DATADIR%%/compat/7.26/_predicate.def +%%DATADIR%%/compat/7.26/_stdenv.def +%%DATADIR%%/compat/7.26/_types.def +%%DATADIR%%/compat/7.28/Colour.def +%%DATADIR%%/compat/7.28/Filter.def +%%DATADIR%%/compat/7.28/Histogram.def +%%DATADIR%%/compat/7.28/Image.def +%%DATADIR%%/compat/7.28/Math.def +%%DATADIR%%/compat/7.28/Matrix.def +%%DATADIR%%/compat/7.28/Object.def +%%DATADIR%%/compat/7.28/Tasks.def +%%DATADIR%%/compat/7.28/Widgets.def +%%DATADIR%%/compat/7.28/_Object.def +%%DATADIR%%/compat/7.28/_convert.def +%%DATADIR%%/compat/7.28/_generate.def +%%DATADIR%%/compat/7.28/_joe_extra.def +%%DATADIR%%/compat/7.28/_joe_utilities.def +%%DATADIR%%/compat/7.28/_list.def +%%DATADIR%%/compat/7.28/_predicate.def +%%DATADIR%%/compat/7.28/_stdenv.def +%%DATADIR%%/compat/7.28/_types.def +%%DATADIR%%/compat/7.38/Colour.def +%%DATADIR%%/compat/7.38/Filter.def +%%DATADIR%%/compat/7.38/Histogram.def +%%DATADIR%%/compat/7.38/Image.def +%%DATADIR%%/compat/7.38/Math.def +%%DATADIR%%/compat/7.38/Matrix.def +%%DATADIR%%/compat/7.38/Object.def +%%DATADIR%%/compat/7.38/Tasks.def +%%DATADIR%%/compat/7.38/Widgets.def +%%DATADIR%%/compat/7.38/_Object.def +%%DATADIR%%/compat/7.38/_convert.def +%%DATADIR%%/compat/7.38/_generate.def +%%DATADIR%%/compat/7.38/_joe_extra.def +%%DATADIR%%/compat/7.38/_joe_utilities.def +%%DATADIR%%/compat/7.38/_list.def +%%DATADIR%%/compat/7.38/_predicate.def +%%DATADIR%%/compat/7.38/_stdenv.def +%%DATADIR%%/compat/7.38/_types.def +%%DATADIR%%/compat/7.8/Capture.def +%%DATADIR%%/compat/7.8/Colour.def +%%DATADIR%%/compat/7.8/Filter.def +%%DATADIR%%/compat/7.8/Format.def +%%DATADIR%%/compat/7.8/Histogram.def +%%DATADIR%%/compat/7.8/Image.def +%%DATADIR%%/compat/7.8/Math.def +%%DATADIR%%/compat/7.8/Morphology.def +%%DATADIR%%/compat/7.8/Mosaic.def +%%DATADIR%%/compat/7.8/New.def +%%DATADIR%%/compat/7.8/Print.def +%%DATADIR%%/compat/7.8/Resize.def +%%DATADIR%%/compat/7.8/Rotate.def +%%DATADIR%%/compat/7.8/Statistics.def +%%DATADIR%%/compat/7.8/X_ray.def +%%DATADIR%%/compat/7.8/_convert.def +%%DATADIR%%/compat/7.8/_errors.def +%%DATADIR%%/compat/7.8/_generate.def +%%DATADIR%%/compat/7.8/_list.def +%%DATADIR%%/compat/7.8/_predicate.def +%%DATADIR%%/compat/7.8/_stdenv.def +%%DATADIR%%/compat/7.8/_types.def +%%DATADIR%%/compat/7.9/Capture.def +%%DATADIR%%/compat/7.9/Colour.def +%%DATADIR%%/compat/7.9/Filter.def +%%DATADIR%%/compat/7.9/Format.def +%%DATADIR%%/compat/7.9/Histogram.def +%%DATADIR%%/compat/7.9/Image.def +%%DATADIR%%/compat/7.9/Math.def +%%DATADIR%%/compat/7.9/Morphology.def +%%DATADIR%%/compat/7.9/Mosaic.def +%%DATADIR%%/compat/7.9/New.def +%%DATADIR%%/compat/7.9/Print.def +%%DATADIR%%/compat/7.9/Resize.def +%%DATADIR%%/compat/7.9/Rotate.def +%%DATADIR%%/compat/7.9/Statistics.def +%%DATADIR%%/compat/7.9/X_ray.def +%%DATADIR%%/compat/7.9/_convert.def +%%DATADIR%%/compat/7.9/_errors.def +%%DATADIR%%/compat/7.9/_generate.def +%%DATADIR%%/compat/7.9/_list.def +%%DATADIR%%/compat/7.9/_predicate.def +%%DATADIR%%/compat/7.9/_stdenv.def +%%DATADIR%%/compat/7.9/_types.def +%%DATADIR%%/data/AdobeRGB1998.icc +%%DATADIR%%/data/HP5000_UVDuraImageGlossMaxQ.icc +%%DATADIR%%/data/examples/1_point_mosaic/1pt_mosaic.ws +%%DATADIR%%/data/examples/1_point_mosaic/cd1.1.jpg +%%DATADIR%%/data/examples/1_point_mosaic/cd1.2.jpg +%%DATADIR%%/data/examples/1_point_mosaic/cd2.1.jpg +%%DATADIR%%/data/examples/1_point_mosaic/cd2.2.jpg +%%DATADIR%%/data/examples/1_point_mosaic/cd3.1.jpg +%%DATADIR%%/data/examples/1_point_mosaic/cd3.2.jpg +%%DATADIR%%/data/examples/1_point_mosaic/cd4.1.jpg +%%DATADIR%%/data/examples/1_point_mosaic/cd4.2.jpg +%%DATADIR%%/data/examples/2_point_mosaic/2pts_mosaic.ws +%%DATADIR%%/data/examples/2_point_mosaic/example_im_01.jpg +%%DATADIR%%/data/examples/2_point_mosaic/example_im_02.jpg +%%DATADIR%%/data/examples/2_point_mosaic/example_im_03.jpg +%%DATADIR%%/data/examples/2_point_mosaic/example_im_04.jpg +%%DATADIR%%/data/examples/2_point_mosaic/example_im_05.jpg +%%DATADIR%%/data/examples/2_point_mosaic/example_im_06.jpg +%%DATADIR%%/data/examples/2_point_mosaic/full_image.jpg +%%DATADIR%%/data/examples/businesscard/businesscard.ws +%%DATADIR%%/data/examples/businesscard/slanted_oval_vase2.jpg +%%DATADIR%%/data/examples/clone/clone.ws +%%DATADIR%%/data/examples/clone/example_im_01.png +%%DATADIR%%/data/examples/clone/example_im_02.png +%%DATADIR%%/data/examples/framing/framing.ws +%%DATADIR%%/data/examples/framing/framing_complex.png +%%DATADIR%%/data/examples/framing/framing_corner.png +%%DATADIR%%/data/examples/framing/framing_distorted_frame.png +%%DATADIR%%/data/examples/framing/framing_picture.jpg +%%DATADIR%%/data/examples/logo/logo2.ws +%%DATADIR%%/data/examples/manual_balance/manual_balance.ws +%%DATADIR%%/data/examples/manual_balance/mask_01.png +%%DATADIR%%/data/examples/manual_balance/mask_02.png +%%DATADIR%%/data/examples/manual_balance/mask_03.png +%%DATADIR%%/data/examples/manual_balance/mask_control.png +%%DATADIR%%/data/examples/manual_balance/simp_base.png +%%DATADIR%%/data/examples/overlays_and_blending/blend_example_ir.jpg +%%DATADIR%%/data/examples/overlays_and_blending/blend_example_vis.jpg +%%DATADIR%%/data/examples/overlays_and_blending/blend_example_xray.jpg +%%DATADIR%%/data/examples/overlays_and_blending/overlay_blend.ws +%%DATADIR%%/data/examples/print_test_image.v +%%DATADIR%%/data/examples/registering/example_im_1.jpg +%%DATADIR%%/data/examples/registering/example_im_2.jpg +%%DATADIR%%/data/examples/registering/example_im_3.jpg +%%DATADIR%%/data/examples/registering/example_im_4.jpg +%%DATADIR%%/data/examples/registering/registering.ws +%%DATADIR%%/data/macbeth_lab_d50.mat +%%DATADIR%%/data/macbeth_lab_d65.mat +%%DATADIR%%/data/nip-slider-16.png +%%DATADIR%%/data/nip2-icon.ico +%%DATADIR%%/data/rachel.con +%%DATADIR%%/data/sRGB.icm +%%DATADIR%%/data/stock-alert-22.png +%%DATADIR%%/data/stock-led-blue-18.png +%%DATADIR%%/data/stock-led-cyan-18.png +%%DATADIR%%/data/stock-led-green-18.png +%%DATADIR%%/data/stock-led-off-18.png +%%DATADIR%%/data/stock-led-red-18.png +%%DATADIR%%/data/stock-led-yellow-18.png +%%DATADIR%%/data/stock-padlock-closed-22.png +%%DATADIR%%/data/stock-tool-bucket-fill-22.png +%%DATADIR%%/data/stock-tool-ink-22.png +%%DATADIR%%/data/stock-tool-move-22.png +%%DATADIR%%/data/stock-tool-path-22.png +%%DATADIR%%/data/stock-tool-rect-select-22.png +%%DATADIR%%/data/stock-tool-select-22.png +%%DATADIR%%/data/stock-tool-smudge-22.png +%%DATADIR%%/data/stock-tool-text-22.png +%%DATADIR%%/data/vips-128.png +%%DATADIR%%/rc/ipgtkrc +%%DATADIR%%/start/Colour.def +%%DATADIR%%/start/Filter.def +%%DATADIR%%/start/Histogram.def +%%DATADIR%%/start/Image.def +%%DATADIR%%/start/Magick.def +%%DATADIR%%/start/Math.def +%%DATADIR%%/start/Matrix.def +%%DATADIR%%/start/Object.def +%%DATADIR%%/start/Preferences.ws +%%DATADIR%%/start/Tasks.def +%%DATADIR%%/start/Widgets.def +%%DATADIR%%/start/_Object.def +%%DATADIR%%/start/_convert.def +%%DATADIR%%/start/_generate.def +%%DATADIR%%/start/_joe_extra.def +%%DATADIR%%/start/_joe_utilities.def +%%DATADIR%%/start/_list.def +%%DATADIR%%/start/_magick.def +%%DATADIR%%/start/_predicate.def +%%DATADIR%%/start/_stdenv.def +%%DATADIR%%/start/_types.def +@dirrm %%DATADIR%%/start +@dirrm %%DATADIR%%/rc +@dirrm %%DATADIR%%/data/examples/registering +@dirrm %%DATADIR%%/data/examples/overlays_and_blending +@dirrm %%DATADIR%%/data/examples/manual_balance +@dirrm %%DATADIR%%/data/examples/logo +@dirrm %%DATADIR%%/data/examples/framing +@dirrm %%DATADIR%%/data/examples/clone +@dirrm %%DATADIR%%/data/examples/businesscard +@dirrm %%DATADIR%%/data/examples/2_point_mosaic +@dirrm %%DATADIR%%/data/examples/1_point_mosaic +@dirrm %%DATADIR%%/data/examples +@dirrm %%DATADIR%%/data +@dirrm %%DATADIR%%/compat/7.9 +@dirrm %%DATADIR%%/compat/7.8 +@dirrm %%DATADIR%%/compat/7.38 +@dirrm %%DATADIR%%/compat/7.28 +@dirrm %%DATADIR%%/compat/7.26 +@dirrm %%DATADIR%%/compat/7.24 +@dirrm %%DATADIR%%/compat/7.16 +@dirrm %%DATADIR%%/compat/7.14 +@dirrm %%DATADIR%%/compat/7.12 +@dirrm %%DATADIR%%/compat/7.10 +@dirrm %%DATADIR%%/compat +@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/figs +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry share/appdata Modified: head/graphics/vips/Makefile ============================================================================== --- head/graphics/vips/Makefile Sun Aug 10 09:40:09 2014 (r364523) +++ head/graphics/vips/Makefile Sun Aug 10 09:40:41 2014 (r364524) @@ -2,75 +2,50 @@ # $FreeBSD$ PORTNAME= vips -PORTVERSION= 7.40.3 -PORTREVISION= 1 +PORTVERSION= 7.40.4 CATEGORIES= graphics MASTER_SITES= http://www.vips.ecs.soton.ac.uk/supported/${PORTVERSION:R}/ MAINTAINER= ports@FreeBSD.org COMMENT= Free image processing system -OPTIONS_DEFINE= PYTHON DOCS -OPTIONS_DEFAULT= -PYTHON_DESC= Create Python bindings +LICENSE= LGPL21 -BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser -LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 \ - libjpeg.so:${PORTSDIR}/graphics/jpeg \ - libexif.so:${PORTSDIR}/graphics/libexif \ - liblcms2.so:${PORTSDIR}/graphics/lcms2 \ - libtiff.so:${PORTSDIR}/graphics/tiff \ +LIB_DEPENDS= libcfitsio.so:${PORTSDIR}/astro/cfitsio \ + liborc-0.4.so:${PORTSDIR}/devel/orc \ libGraphicsMagick.so:${PORTSDIR}/graphics/GraphicsMagick \ libIlmImf.so:${PORTSDIR}/graphics/OpenEXR \ - liborc-0.4.so:${PORTSDIR}/devel/orc \ - libcfitsio.so:${PORTSDIR}/astro/cfitsio \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + liblcms2.so:${PORTSDIR}/graphics/lcms2 \ + libexif.so:${PORTSDIR}/graphics/libexif \ libpng15.so:${PORTSDIR}/graphics/png \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libwebp.so:${PORTSDIR}/graphics/webp \ + libfftw3.so:${PORTSDIR}/math/fftw3 \ libmatio.so:${PORTSDIR}/math/matio +RUN_DEPENDS= bash:${PORTSDIR}/shells/bash -PYPRESENT!= which python > /dev/null && echo on || echo off -.if ${PYPRESENT} == on -OPTIONS_DEFAULT+= PYTHON -.endif -USES= gettext gmake libtool pathfix perl5 pkgconfig shebangfix -USE_PERL5= build +USES= gettext gmake libtool pathfix pkgconfig shebangfix SHEBANG_FILES= tools/vips-${PORTVERSION:R} tools/vipsprofile -USE_GNOME= glib20 pango libxml2 libgsf -USE_LDCONFIG= yes +USE_GNOME= glib20 libgsf libxml2 pango GNU_CONFIGURE= yes -CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --without-x \ + --without-openslide \ + --with-magickpackage=GraphicsMagick +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_SUB= VERSION="${PORTVERSION:R}" -post-configure: - ${REINPLACE_CMD} -Ee 's,^(G?MSGFMT = *)$$,\1${LOCALBASE}/bin/msgfmt,g' \ - ${WRKSRC}/po/Makefile - -.include - -.if ! ${PORT_OPTIONS:MDOCS} -CONFIGURE_ARGS+=--disable-docs -EXTRACT_AFTER_ARGS+= --exclude doc -EXTRA_PATCHES+= ${FILESDIR}/nodoc-patch -.endif - -PLIST_SUB+= VERSION=${PORTVERSION:R} - -CONFIGURE_ENV+= MAGICK_CFLAGS="-I${LOCALBASE}/include/GraphicsMagick" -CONFIGURE_ARGS+=--without-x --mandir=${STAGEDIR}${PREFIX}/man --with-magickpackage=GraphicsMagick -.for p in tiff jpeg zip png -CONFIGURE_ARGS+=--with-$p-includes=${LOCALBASE}/include -CONFIGURE_ARGS+=--with-$p-libraries=${LOCALBASE}/lib -.endfor - -.if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= yes -PLIST_SUB+= PY="" - -post-patch:: - ${REINPLACE_CMD} -e 's|/usr/bin/python|${PYTHON_CMD}|' \ - ${WRKSRC}/tools/vipsprofile - -.else -CONFIGURE_ARGS= --without-python -PLIST_SUB+= PY="@comment " -.endif +OPTIONS_DEFINE= DOCS PYTHON +OPTIONS_DEFAULT= PYTHON +OPTIONS_SUB= yes + +DOCS_CONFIGURE_ENABLE= docs +PYTHON_USE= python=yes +PYTHON_CONFIGURE_WITH= python .include Modified: head/graphics/vips/distinfo ============================================================================== --- head/graphics/vips/distinfo Sun Aug 10 09:40:09 2014 (r364523) +++ head/graphics/vips/distinfo Sun Aug 10 09:40:41 2014 (r364524) @@ -1,2 +1,2 @@ -SHA256 (vips-7.40.3.tar.gz) = e78b717fba83fd40715db7fca835698fd1f2bad4f9e31df788727660562617ca -SIZE (vips-7.40.3.tar.gz) = 3479017 +SHA256 (vips-7.40.4.tar.gz) = 19b7dca6ba37e52b33405a4627009eff0688facda12c252ed58c4e288acda41c +SIZE (vips-7.40.4.tar.gz) = 3478814 Modified: head/graphics/vips/pkg-plist ============================================================================== --- head/graphics/vips/pkg-plist Sun Aug 10 09:40:09 2014 (r364523) +++ head/graphics/vips/pkg-plist Sun Aug 10 09:40:41 2014 (r364524) @@ -1,36 +1,40 @@ +bin/batch_crop +bin/batch_image_convert +bin/batch_rubber_sheet +bin/light_correct +bin/shrink_width *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:52:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 575CC2E8 for ; Sun, 10 Aug 2014 09:52:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 2DFCF2001 for ; Sun, 10 Aug 2014 09:52:30 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 26ec by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:52:30 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 09:52:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364525 - head/net/plugdaemon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e740de.26ec.7eef175d@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:52:30 -0000 Author: antoine Date: Sun Aug 10 09:52:29 2014 New Revision: 364525 URL: http://svnweb.freebsd.org/changeset/ports/364525 QAT: https://qat.redports.org/buildarchive/r364525/ Log: Package something Modified: head/net/plugdaemon/Makefile Modified: head/net/plugdaemon/Makefile ============================================================================== --- head/net/plugdaemon/Makefile Sun Aug 10 09:40:41 2014 (r364524) +++ head/net/plugdaemon/Makefile Sun Aug 10 09:52:29 2014 (r364525) @@ -3,6 +3,7 @@ PORTNAME= plugdaemon PORTVERSION= 2.5.5 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= SF EXTRACT_SUFX= .tgz @@ -10,10 +11,10 @@ EXTRACT_SUFX= .tgz MAINTAINER= lx@FreeBSD.org COMMENT= Plug proxy daemon, forwards TCP/IP connections -do-install: +PLIST_FILES= man/man1/plug.1.gz sbin/plug +do-install: ${INSTALL_MAN} ${WRKSRC}/plug.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 ${INSTALL_PROGRAM} ${WRKSRC}/plug ${STAGEDIR}${PREFIX}/sbin - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/plug .include From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:55:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 8A32D3E7; Sun, 10 Aug 2014 09:55:16 +0000 (UTC) Date: Sun, 10 Aug 2014 09:55:16 +0000 From: Alexey Dokuchaev To: Marcus von Appen Subject: Re: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... Message-ID: <20140810095516.GA35955@FreeBSD.org> References: <53e7336d.2c4d.2257f090@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <53e7336d.2c4d.2257f090@svn.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:55:16 -0000 On Sun, Aug 10, 2014 at 08:55:08AM +0000, Marcus von Appen wrote: > New Revision: 364518 > URL: http://svnweb.freebsd.org/changeset/ports/364518 > QAT: https://qat.redports.org/buildarchive/r364518/ > > -USES= pkgconfig > +USES= pkgconfig python:2 > USE_GNOME= atk > -USE_PYTHON= 2 > -USE_PYDISTUTILS=yes > -PYDISTUTILS_AUTOPLIST= yes > +PYTHON_FEATURES=autoplist distutils Yuck, this PYTHON_FEATURES knob is ugly. Why not follow Perl's example instead (USES=perl and USE_PERL)? It both makes more sense and shorter. ./danfe From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 09:56:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A77AC564 for ; Sun, 10 Aug 2014 09:56:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 7DE4D203A for ; Sun, 10 Aug 2014 09:56:51 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 277c by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 09:56:51 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 09:56:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364526 - head/net/nstxd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e741e3.277c.4a67d810@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 09:56:51 -0000 Author: antoine Date: Sun Aug 10 09:56:51 2014 New Revision: 364526 URL: http://svnweb.freebsd.org/changeset/ports/364526 QAT: https://qat.redports.org/buildarchive/r364526/ Log: Finish stage support Modified: head/net/nstxd/pkg-plist Modified: head/net/nstxd/pkg-plist ============================================================================== --- head/net/nstxd/pkg-plist Sun Aug 10 09:52:29 2014 (r364525) +++ head/net/nstxd/pkg-plist Sun Aug 10 09:56:51 2014 (r364526) @@ -1,3 +1,4 @@ +man/man8/nstxd.8.gz sbin/nstxd %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 10:28:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 947C28A0 for ; Sun, 10 Aug 2014 10:28:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 6A25A2284 for ; Sun, 10 Aug 2014 10:28:07 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 218e by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 10:28:07 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 10:28:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364527 - head/japanese/slrn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e74937.218e.ed0d2b8@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 10:28:07 -0000 Author: antoine Date: Sun Aug 10 10:28:06 2014 New Revision: 364527 URL: http://svnweb.freebsd.org/changeset/ports/364527 QAT: https://qat.redports.org/buildarchive/r364527/ Log: Finish stage support Modified: head/japanese/slrn/Makefile head/japanese/slrn/pkg-plist Modified: head/japanese/slrn/Makefile ============================================================================== --- head/japanese/slrn/Makefile Sun Aug 10 09:56:51 2014 (r364526) +++ head/japanese/slrn/Makefile Sun Aug 10 10:28:06 2014 (r364527) @@ -27,8 +27,6 @@ ALL_TARGET= all slrnpull WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} JDOCSRC= ${WRKDIR}/${PORTNAME}-doc-j0.9.5.6-0 -MANLANG= '' ja - # Tentatively improve inner makefiles in attempt to fix parallel builds post-patch: @${REINPLACE_CMD} -e 's|-mkdir|mkdir -p| ; \ Modified: head/japanese/slrn/pkg-plist ============================================================================== --- head/japanese/slrn/pkg-plist Sun Aug 10 09:56:51 2014 (r364526) +++ head/japanese/slrn/pkg-plist Sun Aug 10 10:28:06 2014 (r364527) @@ -1,5 +1,6 @@ bin/slrn bin/slrnpull +man/man1/slrn.1.gz man/ja/man1/slrn.1.gz share/slrn/color.sl share/slrn/ispell.sl From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 11:39:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E307AD1; Sun, 10 Aug 2014 11:39:04 +0000 (UTC) Received: from mail-we0-x231.google.com (mail-we0-x231.google.com [IPv6:2a00:1450:400c:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0BD32288A; Sun, 10 Aug 2014 11:39:03 +0000 (UTC) Received: by mail-we0-f177.google.com with SMTP id w62so7265430wes.8 for ; Sun, 10 Aug 2014 04:39:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=B6NmRmEJhncZRRiqamn97zryn+lMMfaF2RLIl4fFvQQ=; b=d6u4uC8FS0USF27CYwRStZsR/FCRaOXz5rlPtGxwBf5W85r3/GKN7QQktlYt2rXvlo N8plG1uEmlI7cQjCAfZkujgc9OAhDEiOcYipF8hja0dZpyDSrblMdma/7ffxypisqIY1 UEW5S9uMjzTIP8J5KBKtbfH2kAflKrCSTjDOGvB5Rx1L5jvETwguHcoPpBz5sjmF62Uo jLzjh5bJMhnIHmFI+b88H06+0bEH3Wrj6j6Q82uHErEf9Kd28Qcj20dMqv7zH/iBbFg3 Cy8JVRv0xEoWh2ySko3d2wxGlgZMlohrjjqPx2w8wZDV7/i4ckvtpjapSsrG0yKGLX27 UCrw== X-Received: by 10.194.192.201 with SMTP id hi9mr46135822wjc.28.1407670741509; Sun, 10 Aug 2014 04:39:01 -0700 (PDT) Received: from ?IPv6:2001:980:d7ed:1:9040:62cb:8403:e844? ([2001:980:d7ed:1:9040:62cb:8403:e844]) by mx.google.com with ESMTPSA id ex2sm31474720wjd.30.2014.08.10.04.39.00 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 10 Aug 2014 04:39:00 -0700 (PDT) Sender: =?UTF-8?Q?Ren=C3=A9_Ladan?= Message-ID: <53E759D3.8060704@freebsd.org> Date: Sun, 10 Aug 2014 13:38:59 +0200 From: =?KOI8-R?Q?Rene=27_Ladan?= User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: "Sergey A. Osokin" Subject: Re: svn commit: r364460 - head/www/nginx References: <53e66a49.2ebf.35c2c6fd@svn.freebsd.org> <53E6B967.1030608@freebsd.org> <20140810030851.GA69380@FreeBSD.org> <20140810032830.GB69380@FreeBSD.org> In-Reply-To: <20140810032830.GB69380@FreeBSD.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 11:39:05 -0000 On 10-08-2014 05:28, Sergey A. Osokin wrote: > On Sun, Aug 10, 2014 at 03:08:51AM +0000, Sergey A. Osokin wrote: >> Hi Rene, >> >> On Sun, Aug 10, 2014 at 02:14:31AM +0200, René Ladan wrote: >>> On 09-08-2014 20:36, Sergey A. Osokin wrote: >>>> Author: osa >>>> Date: Sat Aug 9 18:36:56 2014 >>>> New Revision: 364460 >>>> URL: http://svnweb.freebsd.org/changeset/ports/364460 >>>> QAT: https://qat.redports.org/buildarchive/r364460/ >>>> >>>> Log: >>>> Update from 1.6.0 to 1.6.1. >>>> >>>> >>>> >>>> *) Security: pipelined commands were not discarded after STARTTLS >>>> command in SMTP proxy (CVE-2014-3556); the bug had appeared in 1.5.6. >>>> Thanks to Chris Boulton. >>> The vuxml file says < 1.6.4,2 is vulnerable, I assume that is a typo? >> Yes, the issue has been fixed. >> >>> Also, can you add CPE information to the Makefile (see >>> https://wiki.freebsd.org/Ports/CPE ) ? >> Will do. > Done. > Thanks :) From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 12:13:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29A906D2 for ; Sun, 10 Aug 2014 12:13:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 1497C2BC6 for ; Sun, 10 Aug 2014 12:13:22 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2f41 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 12:13:16 +0000 From: John Marino Date: Sun, 10 Aug 2014 12:13:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364528 - in head/multimedia/aegisub: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e761dc.2f41.172a4618@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 12:13:22 -0000 Author: marino Date: Sun Aug 10 12:13:15 2014 New Revision: 364528 URL: http://svnweb.freebsd.org/changeset/ports/364528 QAT: https://qat.redports.org/buildarchive/r364528/ Log: multimedia/aegisub: Upgrade version 3.1.3 => 3.2.0 PR: 192479 Submitted by: Ports Fury Added: head/multimedia/aegisub/files/patch-libaegisub__common__cajun__reader.cpp (contents, props changed) head/multimedia/aegisub/files/patch-libaegisub__common__calltip_provider.cpp (contents, props changed) head/multimedia/aegisub/files/patch-libaegisub__common__character_count.cpp (contents, props changed) head/multimedia/aegisub/files/patch-libaegisub__common__charset.cpp (contents, props changed) head/multimedia/aegisub/files/patch-libaegisub__common__color.cpp (contents, props changed) head/multimedia/aegisub/files/patch-libaegisub__include__libaegisub__audio__provider.h (contents, props changed) head/multimedia/aegisub/files/patch-src__command__command.h (contents, props changed) head/multimedia/aegisub/files/patch-src__dialog_video_properties.cpp (contents, props changed) head/multimedia/aegisub/files/patch-src__grid_column.cpp (contents, props changed) head/multimedia/aegisub/files/patch-src__preferences.cpp (contents, props changed) head/multimedia/aegisub/files/patch-src__spline_curve.cpp (contents, props changed) head/multimedia/aegisub/files/patch-src__subtitle_format_ass.cpp (contents, props changed) Deleted: head/multimedia/aegisub/files/patch-libaegisub__ass__uuencode.cpp head/multimedia/aegisub/files/patch-libaegisub__cajun__reader.cpp head/multimedia/aegisub/files/patch-src__base_grid.cpp head/multimedia/aegisub/files/patch-src__main.cpp head/multimedia/aegisub/files/patch-src__video_context.cpp head/multimedia/aegisub/files/patch-src__video_display.cpp head/multimedia/aegisub/files/patch-src__video_provider_yuv4mpeg.cpp Modified: head/multimedia/aegisub/Makefile head/multimedia/aegisub/distinfo head/multimedia/aegisub/files/patch-src__ass_file.cpp head/multimedia/aegisub/files/patch-src__ass_override.cpp head/multimedia/aegisub/files/patch-src__auto4_lua_dialog.cpp head/multimedia/aegisub/files/patch-src__command__edit.cpp head/multimedia/aegisub/files/patch-src__dialog_jumpto.cpp head/multimedia/aegisub/files/patch-src__dialog_kara_timing_copy.cpp head/multimedia/aegisub/files/patch-src__dialog_properties.cpp head/multimedia/aegisub/files/patch-src__dialog_shift_times.cpp head/multimedia/aegisub/files/patch-src__dialog_style_editor.cpp head/multimedia/aegisub/files/patch-src__preferences_base.cpp head/multimedia/aegisub/files/patch-src__resolution_resampler.cpp head/multimedia/aegisub/files/patch-src__subs_edit_box.cpp head/multimedia/aegisub/files/patch-src__subtitle_format_srt.cpp head/multimedia/aegisub/files/patch-src__timeedit_ctrl.cpp head/multimedia/aegisub/files/patch-src__validators.cpp head/multimedia/aegisub/pkg-plist Modified: head/multimedia/aegisub/Makefile ============================================================================== --- head/multimedia/aegisub/Makefile Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/Makefile Sun Aug 10 12:13:15 2014 (r364528) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= aegisub -PORTVERSION= 3.1.3 +PORTVERSION= 3.2.0 CATEGORIES= multimedia MASTER_SITES= http://ftp.aegisub.org/pub/archives/releases/source/:aegisub \ ftp://ftp.aegisub.org/pub/archives/releases/source/:aegisub \ @@ -17,8 +17,8 @@ LICENSE= BSD3CLAUSE LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ libicui18n.so:${PORTSDIR}/devel/icu \ - libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ - libass.so:${PORTSDIR}/multimedia/libass + libass.so:${PORTSDIR}/multimedia/libass \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig USE_GITHUB= yes GH_ACCOUNT= FFMS @@ -28,7 +28,7 @@ GH_COMMIT= 6b0e4a2 WRKSRC= ${WRKDIR}/${DISTNAME} -USES= compiler:c++11-lib desktop-file-utils gmake gettext iconv \ +USES= compiler:c++11-lib desktop-file-utils gettext gmake iconv \ pkgconfig tar:xz USE_GNOME= intltool USE_WX= 3.0 @@ -36,12 +36,14 @@ WX_UNICODE= yes WX_CONF_ARGS= absolute USE_GL= glu USE_CSTD= c99 -USE_LUA= 5.1+ GNU_CONFIGURE= yes +CONFIGURE_ENV= agi_cv_with_iconv=yes CONFIGURE_ARGS= --disable-compiler-flags \ + --disable-gcc-prec \ + --disable-sanity-checks \ --disable-update-checker \ --without-libc++ \ - --disable-gcc-prec + ${ICONV_CONFIGURE_ARG} INSTALLS_ICONS= yes PLIST_SUB= VERSION="${PORTVERSION:R}" @@ -49,8 +51,8 @@ PLIST_SUB= VERSION="${PORTVERSION:R}" CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} -OPTIONS_DEFINE= ALSA DOCS FFMPEG FFTW HUNSPELL OPENAL \ - PORTAUDIO PULSEAUDIO +OPTIONS_DEFINE= ALSA DOCS FFMPEG FFTW HUNSPELL OPENAL PORTAUDIO \ + PULSEAUDIO OPTIONS_DEFAULT= FFMPEG FFTW HUNSPELL PULSEAUDIO ALSA_LIB_DEPENDS= libasound.so:${PORTSDIR}/audio/alsa-lib @@ -58,7 +60,7 @@ ALSA_CONFIGURE_OFF= --without-alsa FFMPEG_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg FFMPEG_CONFIGURE_ENV= FFMS2_CFLAGS="${FFMS_CFLAGS}" \ FFMS2_LIBS="${FFMS_LIBS}" -FFMPEG_CONFIGURE_OFF= --without-ffms2 +FFMPEG_CONFIGURE_OFF= --without-ffms FFMPEG_CPPFLAGS= ${FFMS_CFLAGS} FFTW_LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 FFTW_CONFIGURE_OFF= --without-fftw3 @@ -90,9 +92,21 @@ FFMS_LIBS= ${FFMS_WRKSRC}/src/core/.libs .if ${COMPILER_TYPE} == "gcc" USE_CXXSTD= gnu++11 +.if empty(CFLAGS:M-march=*) +CFLAGS_i386= -march=pentium +.endif .else USE_CXXSTD= c++11 CXXFLAGS+= -Wno-c++11-narrowing +.if ${COMPILER_VERSION} < 34 +BUILD_DEPENDS+= ${LOCALBASE}/lib/c++/libstdc++.so:${PORTSDIR}/devel/libc++ \ + ${LOCALBASE}/bin/clang34:${PORTSDIR}/lang/clang34 +CPP= clang-cpp34 +CC= clang34 +CXX= clang++34 +CXXFLAGS+= -nostdinc++ -isystem ${LOCALBASE}/include/c++/v1 +LDFLAGS+= -L${LOCALBASE}lib/c++ +.endif .endif post-patch: @@ -101,8 +115,13 @@ post-patch: @${REINPLACE_CMD} -e \ 's|".*build/|"./build/|' ${WRKSRC}/build/version.sh @${REINPLACE_CMD} -e \ - '/iconv_t/s|^|//|' \ - ${WRKSRC}/libaegisub/include/libaegisub/charset_conv.h + 's|^CC=|CC?=| ; \ + /^CCOPT_/s|=.*|=| ; \ + /^CCDEBUG/s|=.*|=|' ${WRKSRC}/vendor/luajit/src/Makefile +.if ${COMPILER_TYPE} == "gcc" + @${FIND} ${WRKSRC} -name "*.h" | ${XARGS} ${REINPLACE_CMD} -e \ + '/virtual /s|= default;$$|{ }|' +.endif pre-configure: .if ${PORT_OPTIONS:MFFMPEG} Modified: head/multimedia/aegisub/distinfo ============================================================================== --- head/multimedia/aegisub/distinfo Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/distinfo Sun Aug 10 12:13:15 2014 (r364528) @@ -1,4 +1,4 @@ -SHA256 (aegisub-3.1.3.tar.xz) = efea5bc2bc5e0651ada4f65cfdd8af1b422a15f87933710d11287bf51e2b5e58 -SIZE (aegisub-3.1.3.tar.xz) = 4215196 +SHA256 (aegisub-3.2.0.tar.xz) = d9e5fd48b243e29832361a13f8be82b271ef0c606b13593ec72461156ee19159 +SIZE (aegisub-3.2.0.tar.xz) = 5181228 SHA256 (ffms2-2.19.1.tar.gz) = 8516af3f71531746e7e3e4b16eb30dade5df5edfc0782e7b69f965310ea66640 SIZE (ffms2-2.19.1.tar.gz) = 512444 Added: head/multimedia/aegisub/files/patch-libaegisub__common__cajun__reader.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-libaegisub__common__cajun__reader.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,28 @@ +--- libaegisub/common/cajun/reader.cpp.orig ++++ libaegisub/common/cajun/reader.cpp +@@ -10,6 +10,8 @@ + + #include + #include ++#include ++#include + + /* + +@@ -231,8 +233,16 @@ + } + + void Reader::MatchNumber(std::string& sNumber, InputStream& inputStream) { ++#if defined(_LIBCPP_VERSION) + const char numericChars[] = "0123456789.eE-+"; + while (!inputStream.EOS() && std::find(numericChars, std::end(numericChars), inputStream.Peek()) != std::end(numericChars)) ++#else ++ const char sNumericChars[] = "0123456789.eE-+"; ++ std::set numericChars; ++ numericChars.insert(sNumericChars, sNumericChars + sizeof(sNumericChars)); ++ ++ while (!inputStream.EOS()&& numericChars.count(inputStream.Peek())) ++#endif + sNumber.push_back(inputStream.Get()); + } + Added: head/multimedia/aegisub/files/patch-libaegisub__common__calltip_provider.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-libaegisub__common__calltip_provider.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,10 @@ +--- libaegisub/common/calltip_provider.cpp.orig 2014-08-05 20:40:25.000000000 +0900 ++++ libaegisub/common/calltip_provider.cpp 2014-08-05 20:40:42.000000000 +0900 +@@ -19,6 +19,7 @@ + #include "libaegisub/ass/dialogue_parser.h" + + #include ++#include + + namespace { + struct proto_lit { Added: head/multimedia/aegisub/files/patch-libaegisub__common__character_count.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-libaegisub__common__character_count.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,11 @@ +--- libaegisub/common/character_count.cpp.orig 2014-08-05 20:41:47.000000000 +0900 ++++ libaegisub/common/character_count.cpp 2014-08-05 20:43:19.000000000 +0900 +@@ -22,6 +22,8 @@ + #include + #include + ++#include ++#include + #include + #include + Added: head/multimedia/aegisub/files/patch-libaegisub__common__charset.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-libaegisub__common__charset.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,10 @@ +--- libaegisub/common/charset.cpp.orig 2014-08-05 20:44:44.000000000 +0900 ++++ libaegisub/common/charset.cpp 2014-08-05 20:44:59.000000000 +0900 +@@ -20,6 +20,7 @@ + + #include "libaegisub/file_mapping.h" + ++#include + #include + + #ifndef _WIN32 Added: head/multimedia/aegisub/files/patch-libaegisub__common__color.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-libaegisub__common__color.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,25 @@ +--- libaegisub/common/color.cpp.orig 2014-08-05 20:04:54.000000000 +0900 ++++ libaegisub/common/color.cpp 2014-08-05 20:06:27.000000000 +0900 +@@ -18,6 +18,13 @@ + + #include "libaegisub/format.h" + ++#ifdef _LIBCPP_VERSION ++#define TO_STRING(x) std::to_string(x) ++#else ++#include ++#define TO_STRING(x) boost::lexical_cast(x) ++#endif ++ + namespace agi { + + Color::Color(unsigned char r, unsigned char g, unsigned char b, unsigned char a) +@@ -37,7 +44,7 @@ + } + + std::string Color::GetSsaFormatted() const { +- return std::to_string((a << 24) + (b << 16) + (g << 8) + r); ++ return TO_STRING((a << 24) + (b << 16) + (g << 8) + r); + } + + std::string Color::GetHexFormatted(bool rgba) const { Added: head/multimedia/aegisub/files/patch-libaegisub__include__libaegisub__audio__provider.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-libaegisub__include__libaegisub__audio__provider.h Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,10 @@ +--- libaegisub/include/libaegisub/audio/provider.h.orig 2014-07-28 23:29:16.000000000 +0900 ++++ libaegisub/include/libaegisub/audio/provider.h 2014-08-05 19:40:17.000000000 +0900 +@@ -20,6 +20,7 @@ + #include + + #include ++#include + #include + + namespace agi { Modified: head/multimedia/aegisub/files/patch-src__ass_file.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__ass_file.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__ass_file.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,27 +1,27 @@ --- src/ass_file.cpp.orig +++ src/ass_file.cpp -@@ -49,6 +49,13 @@ - #include +@@ -29,6 +29,13 @@ #include + #include +#ifdef _LIBCPP_VERSION -+#define TO_STRING(x) std::to_string(x) ++#define TO_STRING(x) std::to_string(x) +#else +#include +#define TO_STRING(x) boost::lexical_cast(x) +#endif + - namespace std { - template<> - void swap(AssFile &lft, AssFile &rgt) { -@@ -71,8 +78,8 @@ - Line.push_back(*new AssInfo("WrapStyle", "0")); - Line.push_back(*new AssInfo("ScaledBorderAndShadow", "yes")); + AssFile::AssFile() { } + + AssFile::~AssFile() { +@@ -42,8 +49,8 @@ + Info.emplace_back("WrapStyle", "0"); + Info.emplace_back("ScaledBorderAndShadow", "yes"); if (!OPT_GET("Subtitle/Default Resolution/Auto")->GetBool()) { -- Line.push_back(*new AssInfo("PlayResX", std::to_string(OPT_GET("Subtitle/Default Resolution/Width")->GetInt()))); -- Line.push_back(*new AssInfo("PlayResY", std::to_string(OPT_GET("Subtitle/Default Resolution/Height")->GetInt()))); -+ Line.push_back(*new AssInfo("PlayResX", TO_STRING(OPT_GET("Subtitle/Default Resolution/Width")->GetInt()))); -+ Line.push_back(*new AssInfo("PlayResY", TO_STRING(OPT_GET("Subtitle/Default Resolution/Height")->GetInt()))); +- Info.emplace_back("PlayResX", std::to_string(OPT_GET("Subtitle/Default Resolution/Width")->GetInt())); +- Info.emplace_back("PlayResY", std::to_string(OPT_GET("Subtitle/Default Resolution/Height")->GetInt())); ++ Info.emplace_back("PlayResX", TO_STRING(OPT_GET("Subtitle/Default Resolution/Width")->GetInt())); ++ Info.emplace_back("PlayResY", TO_STRING(OPT_GET("Subtitle/Default Resolution/Height")->GetInt())); } - Line.push_back(*new AssInfo("YCbCr Matrix", "None")); + Info.emplace_back("YCbCr Matrix", "None"); Modified: head/multimedia/aegisub/files/patch-src__ass_override.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__ass_override.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__ass_override.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,6 +1,6 @@ --- src/ass_override.cpp.orig +++ src/ass_override.cpp -@@ -49,6 +49,13 @@ +@@ -44,6 +44,13 @@ #include #include @@ -14,17 +14,12 @@ using namespace boost::adaptors; AssOverrideParameter::AssOverrideParameter(VariableDataType type, AssParameterClass classification) -@@ -129,11 +136,11 @@ +@@ -126,7 +133,7 @@ if (classification == AssParameterClass::ALPHA) - Set(str(boost::format("&H%02X&") % mid(0, new_value, 255))); + Set(agi::format("&H%02X&", mid(0, new_value, 255))); else - Set(std::to_string(new_value)); + Set(TO_STRING(new_value)); } template<> void AssOverrideParameter::Set(double new_value) { -- Set(std::to_string(new_value)); -+ Set(TO_STRING(new_value)); - } - - template<> void AssOverrideParameter::Set(bool new_value) { Modified: head/multimedia/aegisub/files/patch-src__auto4_lua_dialog.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__auto4_lua_dialog.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__auto4_lua_dialog.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,8 +1,8 @@ --- src/auto4_lua_dialog.cpp.orig +++ src/auto4_lua_dialog.cpp -@@ -66,6 +66,13 @@ - #include - #include +@@ -60,6 +60,13 @@ + #include + #include +#ifdef _LIBCPP_VERSION +#define TO_STRING(x) std::to_string(x) @@ -11,10 +11,10 @@ +#define TO_STRING(x) boost::lexical_cast(x) +#endif + + using namespace agi::lua; namespace { inline void get_if_right_type(lua_State *L, std::string &def) { - if (lua_isstring(L, -1)) -@@ -256,7 +263,7 @@ +@@ -249,7 +256,7 @@ } bool CanSerialiseValue() const override { return true; } @@ -23,7 +23,7 @@ void UnserialiseValue(const std::string &serialised) override { value = atoi(serialised.c_str()); } wxControl *Create(wxWindow *parent) override { -@@ -317,7 +324,7 @@ +@@ -287,7 +294,7 @@ } bool CanSerialiseValue() const override { return true; } Added: head/multimedia/aegisub/files/patch-src__command__command.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-src__command__command.h Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,10 @@ +--- src/command/command.h.orig 2014-08-05 20:09:07.000000000 +0900 ++++ src/command/command.h 2014-08-05 20:09:21.000000000 +0900 +@@ -17,6 +17,7 @@ + /// @ingroup command + + #include ++#include + #include + #include + Modified: head/multimedia/aegisub/files/patch-src__command__edit.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__command__edit.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__command__edit.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,8 +1,8 @@ --- src/command/edit.cpp.orig +++ src/command/edit.cpp -@@ -68,6 +68,13 @@ - #include +@@ -69,6 +69,13 @@ #include + #include +#ifdef _LIBCPP_VERSION +#define TO_STRING(x) std::to_string(x) @@ -14,25 +14,25 @@ namespace { using namespace boost::adaptors; using cmd::Command; -@@ -450,13 +457,13 @@ - if (font.GetFaceName() != startfont.GetFaceName()) - set_tag(line, blocks, "\\fn", from_wx(font.GetFaceName()), sel_start, sel_end); - if (font.GetPointSize() != startfont.GetPointSize()) -- set_tag(line, blocks, "\\fs", std::to_string(font.GetPointSize()), sel_start, sel_end); -+ set_tag(line, blocks, "\\fs", TO_STRING(font.GetPointSize()), sel_start, sel_end); - if (font.GetWeight() != startfont.GetWeight()) -- set_tag(line, blocks, "\\b", std::to_string(font.GetWeight() == wxFONTWEIGHT_BOLD), sel_start, sel_end); -+ set_tag(line, blocks, "\\b", TO_STRING(font.GetWeight() == wxFONTWEIGHT_BOLD), sel_start, sel_end); - if (font.GetStyle() != startfont.GetStyle()) -- set_tag(line, blocks, "\\i", std::to_string(font.GetStyle() == wxFONTSTYLE_ITALIC), sel_start, sel_end); -+ set_tag(line, blocks, "\\i", TO_STRING(font.GetStyle() == wxFONTSTYLE_ITALIC), sel_start, sel_end); - if (font.GetUnderlined() != startfont.GetUnderlined()) -- set_tag(line, blocks, "\\i", std::to_string(font.GetUnderlined()), sel_start, sel_end); -+ set_tag(line, blocks, "\\i", TO_STRING(font.GetUnderlined()), sel_start, sel_end); +@@ -516,13 +523,13 @@ + if (font.GetFaceName() != startfont.GetFaceName()) + do_set_tag("\\fn", from_wx(font.GetFaceName())); + if (font.GetPointSize() != startfont.GetPointSize()) +- do_set_tag("\\fs", std::to_string(font.GetPointSize())); ++ do_set_tag("\\fs", TO_STRING(font.GetPointSize())); + if (font.GetWeight() != startfont.GetWeight()) +- do_set_tag("\\b", std::to_string(font.GetWeight() == wxFONTWEIGHT_BOLD)); ++ do_set_tag("\\b", TO_STRING(font.GetWeight() == wxFONTWEIGHT_BOLD)); + if (font.GetStyle() != startfont.GetStyle()) +- do_set_tag("\\i", std::to_string(font.GetStyle() == wxFONTSTYLE_ITALIC)); ++ do_set_tag("\\i", TO_STRING(font.GetStyle() == wxFONTSTYLE_ITALIC)); + if (font.GetUnderlined() != startfont.GetUnderlined()) +- do_set_tag("\\i", std::to_string(font.GetUnderlined())); ++ do_set_tag("\\i", TO_STRING(font.GetUnderlined())); - commit_text(c, _("set font"), sel_start, sel_end); - } -@@ -711,7 +718,7 @@ + return shift; + }); +@@ -761,7 +768,7 @@ } static void combine_karaoke(AssDialogue *first, AssDialogue *second) { Modified: head/multimedia/aegisub/files/patch-src__dialog_jumpto.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__dialog_jumpto.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__dialog_jumpto.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,6 +1,6 @@ ---- src/dialog_jumpto.cpp.orig -+++ src/dialog_jumpto.cpp -@@ -48,6 +48,13 @@ +--- src/dialog_jumpto.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/dialog_jumpto.cpp 2014-08-05 21:03:34.000000000 +0900 +@@ -43,6 +43,13 @@ #include #include @@ -11,15 +11,15 @@ +#define TO_STRING(x) boost::lexical_cast(x) +#endif + - DialogJumpTo::DialogJumpTo(agi::Context *c) - : wxDialog(c->parent, -1, _("Jump to"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxWANTS_CHARS) - , c(c) -@@ -59,7 +66,7 @@ - auto LabelTime = new wxStaticText(this, -1, _("Time: ")); + namespace { + struct DialogJumpTo { + wxDialog d; +@@ -74,7 +81,7 @@ + auto LabelTime = new wxStaticText(&d, -1, _("Time: ")); - JumpFrame = new wxTextCtrl(this,-1,"",wxDefaultPosition,wxSize(-1,-1),wxTE_PROCESS_ENTER, IntValidator((int)jumpframe)); -- JumpFrame->SetMaxLength(std::to_string(c->videoController->GetLength() - 1).size()); -+ JumpFrame->SetMaxLength(TO_STRING(c->videoController->GetLength() - 1).size()); - JumpTime = new TimeEdit(this, -1, c, AssTime(c->videoController->TimeAtFrame(jumpframe)).GetAssFormated(), wxSize(-1,-1)); + JumpFrame = new wxTextCtrl(&d,-1,"",wxDefaultPosition,wxSize(-1,-1),wxTE_PROCESS_ENTER, IntValidator((int)jumpframe)); +- JumpFrame->SetMaxLength(std::to_string(c->project->VideoProvider()->GetFrameCount() - 1).size()); ++ JumpFrame->SetMaxLength(TO_STRING(c->project->VideoProvider()->GetFrameCount() - 1).size()); + JumpTime = new TimeEdit(&d, -1, c, agi::Time(c->videoController->TimeAtFrame(jumpframe)).GetAssFormatted(), wxSize(-1,-1)); auto TimesSizer = new wxGridSizer(2, 5, 5); Modified: head/multimedia/aegisub/files/patch-src__dialog_kara_timing_copy.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__dialog_kara_timing_copy.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__dialog_kara_timing_copy.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,8 +1,8 @@ --- src/dialog_kara_timing_copy.cpp.orig +++ src/dialog_kara_timing_copy.cpp -@@ -69,6 +69,13 @@ - #define TEXT_LABEL_SOURCE _("Source: ") - #define TEXT_LABEL_DEST _("Dest: ") +@@ -53,6 +53,13 @@ + #include + #include +#ifdef _LIBCPP_VERSION +#define TO_STRING(x) std::to_string(x) @@ -11,10 +11,10 @@ +#define TO_STRING(x) boost::lexical_cast(x) +#endif + - class KaraokeLineMatchDisplay : public wxControl { - typedef AssKaraoke::Syllable MatchSyllable; - -@@ -358,7 +365,7 @@ + namespace { + #define TEXT_LABEL_SOURCE _("Source: ") + #define TEXT_LABEL_DEST _("Dest: ") +@@ -343,7 +350,7 @@ int duration = 0; for (auto const& syl : match.src) duration += syl.duration; Modified: head/multimedia/aegisub/files/patch-src__dialog_properties.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__dialog_properties.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__dialog_properties.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,6 +1,6 @@ ---- src/dialog_properties.cpp.orig -+++ src/dialog_properties.cpp -@@ -54,6 +54,15 @@ +--- src/dialog_properties.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/dialog_properties.cpp 2014-08-05 20:27:38.000000000 +0900 +@@ -47,6 +47,15 @@ #include #include @@ -13,24 +13,26 @@ +#define TO_WSTRING(x) boost::lexical_cast(x) +#endif + - DialogProperties::DialogProperties(agi::Context *c) - : wxDialog(c->parent, -1, _("Script Properties")) - , c(c) -@@ -145,7 +154,7 @@ + namespace { + class DialogProperties { + wxDialog d; +@@ -186,7 +195,7 @@ count += SetInfoIfDifferent("PlayResX", from_wx(ResX->GetValue())); count += SetInfoIfDifferent("PlayResY", from_wx(ResY->GetValue())); - count += SetInfoIfDifferent("WrapStyle", std::to_string(WrapStyle->GetSelection())); + count += SetInfoIfDifferent("WrapStyle", TO_STRING(WrapStyle->GetSelection())); count += SetInfoIfDifferent("ScaledBorderAndShadow", ScaleBorder->GetValue() ? "yes" : "no"); + count += SetInfoIfDifferent("YCbCr Matrix", from_wx(YCbCrMatrix->GetValue())); - if (count) c->ass->Commit(_("property changes"), AssFile::COMMIT_SCRIPTINFO); -@@ -162,6 +171,6 @@ +@@ -204,8 +213,8 @@ } void DialogProperties::OnSetFromVideo(wxCommandEvent &) { -- ResX->SetValue(std::to_wstring(c->videoController->GetWidth())); -- ResY->SetValue(std::to_wstring(c->videoController->GetHeight())); -+ ResX->SetValue(TO_WSTRING(c->videoController->GetWidth())); -+ ResY->SetValue(TO_WSTRING(c->videoController->GetHeight())); +- ResX->SetValue(std::to_wstring(c->project->VideoProvider()->GetWidth())); +- ResY->SetValue(std::to_wstring(c->project->VideoProvider()->GetHeight())); ++ ResX->SetValue(TO_WSTRING(c->project->VideoProvider()->GetWidth())); ++ ResY->SetValue(TO_WSTRING(c->project->VideoProvider()->GetHeight())); } + } + Modified: head/multimedia/aegisub/files/patch-src__dialog_shift_times.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__dialog_shift_times.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__dialog_shift_times.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,6 +1,6 @@ ---- src/dialog_shift_times.cpp.orig -+++ src/dialog_shift_times.cpp -@@ -56,6 +56,13 @@ +--- src/dialog_shift_times.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/dialog_shift_times.cpp 2014-08-05 20:21:09.000000000 +0900 +@@ -48,6 +48,13 @@ #include #include @@ -11,15 +11,15 @@ +#define TO_WSTRING(x) boost::lexical_cast(x) +#endif + - static wxString get_history_string(json::Object &obj) { - wxString filename = to_wx(obj["filename"]); - if (filename.empty()) -@@ -87,7 +94,7 @@ - int beg = (int64_t)(*it)["start"]; - int end = (int64_t)(*it)["end"]; + namespace { + class DialogShiftTimes final : public wxDialog { + agi::Context *context; +@@ -118,7 +125,7 @@ + int beg = (int64_t)range["start"]; + int end = (int64_t)range["end"]; if (beg == end) - lines += std::to_wstring(beg); + lines += TO_WSTRING(beg); else - lines += wxString::Format("%d-%d", beg, end); + lines += fmt_wx("%d-%d", beg, end); if (it + 1 != sel.end()) Modified: head/multimedia/aegisub/files/patch-src__dialog_style_editor.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__dialog_style_editor.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__dialog_style_editor.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,7 +1,7 @@ ---- src/dialog_style_editor.cpp.orig -+++ src/dialog_style_editor.cpp -@@ -62,6 +62,13 @@ - #include +--- src/dialog_style_editor.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/dialog_style_editor.cpp 2014-08-05 20:30:35.000000000 +0900 +@@ -61,6 +61,13 @@ + #include #include +#ifdef _LIBCPP_VERSION @@ -14,8 +14,8 @@ /// Style rename helper that walks a file searching for a style and optionally /// updating references to it class StyleRenamer { -@@ -160,7 +167,7 @@ - SetIcon(GETICON(style_toolbutton_16)); +@@ -166,7 +173,7 @@ + }; // Prepare control values - wxString EncodingValue = std::to_wstring(style->encoding); @@ -23,3 +23,12 @@ wxString alignValues[9] = { "7", "8", "9", "4", "5", "6", "1", "2", "3" }; // Encoding options +@@ -197,7 +204,7 @@ + new ColourButton(this, wxSize(55, 16), true, style->shadow, ColorValidator(&work->shadow)) + }; + for (int i = 0; i < 3; i++) +- margin[i] = new wxSpinCtrl(this, -1, std::to_wstring(style->Margin[i]), ++ margin[i] = new wxSpinCtrl(this, -1, TO_WSTRING(style->Margin[i]), + wxDefaultPosition, wxSize(60, -1), + wxSP_ARROW_KEYS, 0, 9999, style->Margin[i]); + Added: head/multimedia/aegisub/files/patch-src__dialog_video_properties.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-src__dialog_video_properties.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,38 @@ +--- src/dialog_video_properties.cpp 2014-07-28 23:29:16.000000000 +0900 ++++ /home/jungle/dialog_video_properties.cpp 2014-08-05 20:35:18.000000000 +0900 +@@ -27,6 +27,13 @@ + #include + #include + ++#ifdef _LIBCPP_VERSION ++#define TO_STRING(x) std::to_string(x) ++#else ++#include ++#define TO_STRING(x) boost::lexical_cast(x) ++#endif ++ + namespace { + enum { + MISMATCH_IGNORE, +@@ -103,8 +110,8 @@ + // If the script resolution hasn't been set at all just force it to the + // video resolution + if (sx == 0 && sy == 0) { +- file->SetScriptInfo("PlayResX", std::to_string(vx)); +- file->SetScriptInfo("PlayResY", std::to_string(vy)); ++ file->SetScriptInfo("PlayResX", TO_STRING(vx)); ++ file->SetScriptInfo("PlayResY", TO_STRING(vy)); + return true; + } + +@@ -126,8 +133,8 @@ + return commit_subs; + + case MISMATCH_SET: +- file->SetScriptInfo("PlayResX", std::to_string(vx)); +- file->SetScriptInfo("PlayResY", std::to_string(vy)); ++ file->SetScriptInfo("PlayResX", TO_STRING(vx)); ++ file->SetScriptInfo("PlayResY", TO_STRING(vy)); + return true; + + case MISMATCH_RESAMPLE: Added: head/multimedia/aegisub/files/patch-src__grid_column.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-src__grid_column.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,103 @@ +--- src/grid_column.cpp.orig 2014-08-05 23:58:58.000000000 +0900 ++++ src/grid_column.cpp 2014-08-06 00:01:32.000000000 +0900 +@@ -27,6 +27,13 @@ + + #include + ++#ifdef _LIBCPP_VERSION ++#define TO_WSTRING(x) std::to_wstring(x) ++#else ++#include ++#define TO_WSTRING(x) boost::lexical_cast(x) ++#endif ++ + int WidthHelper::operator()(boost::flyweight const& str) { + if (str.get().empty()) return 0; + auto it = widths.find(str); +@@ -84,7 +91,7 @@ + bool Centered() const override { return true; } + + wxString Value(const AssDialogue *d, const agi::Context * = nullptr) const override { +- return std::to_wstring(d->Row + 1); ++ return TO_WSTRING(d->Row + 1); + } + + int Width(const agi::Context *c, WidthHelper &helper) const override { +@@ -108,12 +115,12 @@ + bool Centered() const override { return true; } + + wxString Value(const AssDialogue *d, const agi::Context *) const override { +- return d->Layer ? wxString(std::to_wstring(d->Layer)) : wxString(); ++ return d->Layer ? wxString(TO_WSTRING(d->Layer)) : wxString(); + } + + int Width(const agi::Context *c, WidthHelper &helper) const override { + int max_layer = max_value(&AssDialogue::Layer, c->ass->Events); +- return max_layer == 0 ? 0 : helper(std::to_wstring(max_layer)); ++ return max_layer == 0 ? 0 : helper(TO_WSTRING(max_layer)); + } + }; + +@@ -130,7 +137,7 @@ + + wxString Value(const AssDialogue *d, const agi::Context *c) const override { + if (by_frame) +- return std::to_wstring(c->videoController->FrameAtTime(d->Start, agi::vfr::START)); ++ return TO_WSTRING(c->videoController->FrameAtTime(d->Start, agi::vfr::START)); + return to_wx(d->Start.GetAssFormatted()); + } + +@@ -138,7 +145,7 @@ + if (!by_frame) + return helper(wxS("0:00:00.00")); + int frame = c->videoController->FrameAtTime(max_value(&AssDialogue::Start, c->ass->Events), agi::vfr::START); +- return helper(std::to_wstring(frame)); ++ return helper(TO_WSTRING(frame)); + } + }; + +@@ -148,7 +155,7 @@ + + wxString Value(const AssDialogue *d, const agi::Context *c) const override { + if (by_frame) +- return std::to_wstring(c->videoController->FrameAtTime(d->End, agi::vfr::END)); ++ return TO_WSTRING(c->videoController->FrameAtTime(d->End, agi::vfr::END)); + return to_wx(d->End.GetAssFormatted()); + } + +@@ -156,7 +163,7 @@ + if (!by_frame) + return helper(wxS("0:00:00.00")); + int frame = c->videoController->FrameAtTime(max_value(&AssDialogue::End, c->ass->Events), agi::vfr::END); +- return helper(std::to_wstring(frame)); ++ return helper(TO_WSTRING(frame)); + } + }; + +@@ -220,7 +227,7 @@ + bool Centered() const override { return true; } + + wxString Value(const AssDialogue *d, const agi::Context *) const override { +- return d->Margin[Index] ? wxString(std::to_wstring(d->Margin[Index])) : wxString(); ++ return d->Margin[Index] ? wxString(TO_WSTRING(d->Margin[Index])) : wxString(); + } + + int Width(const agi::Context *c, WidthHelper &helper) const override { +@@ -229,7 +236,7 @@ + if (line.Margin[Index] > max) + max = line.Margin[Index]; + } +- return max == 0 ? 0 : helper(std::to_wstring(max)); ++ return max == 0 ? 0 : helper(TO_WSTRING(max)); + } + }; + +@@ -296,7 +303,7 @@ + int cps = CPS(d); + if (cps < 0 || cps > 100) return; + +- wxString str = std::to_wstring(cps); ++ wxString str = TO_WSTRING(cps); + wxSize ext = dc.GetTextExtent(str); + auto tc = dc.GetTextForeground(); + Added: head/multimedia/aegisub/files/patch-src__preferences.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-src__preferences.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,10 @@ +--- src/preferences.cpp.orig ++++ src/preferences.cpp +@@ -47,6 +47,7 @@ + + #include + #include ++#include + #include + #include + #include Modified: head/multimedia/aegisub/files/patch-src__preferences_base.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__preferences_base.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__preferences_base.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,8 +1,8 @@ ---- src/preferences_base.cpp.orig -+++ src/preferences_base.cpp -@@ -42,6 +42,13 @@ - #include - #include +--- src/preferences_base.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/preferences_base.cpp 2014-08-05 07:56:10.000000000 +0900 +@@ -40,6 +40,13 @@ + + #undef Bool +#ifdef _LIBCPP_VERSION +#define TO_WSTRING(x) std::to_wstring(x) @@ -14,21 +14,29 @@ #define OPTION_UPDATER(type, evttype, opt, body) \ class type { \ std::string name; \ -@@ -126,7 +133,7 @@ +@@ -124,14 +131,14 @@ } - case agi::OptionValue::Type_Int: { -- wxSpinCtrl *sc = new wxSpinCtrl(this, -1, std::to_wstring((int)opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, min, max, opt->GetInt()); -+ wxSpinCtrl *sc = new wxSpinCtrl(this, -1, TO_WSTRING((int)opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, min, max, opt->GetInt()); + case agi::OptionType::Int: { +- auto sc = new wxSpinCtrl(this, -1, std::to_wstring((int)opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, min, max, opt->GetInt()); ++ auto sc = new wxSpinCtrl(this, -1, TO_WSTRING((int)opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, min, max, opt->GetInt()); sc->Bind(wxEVT_SPINCTRL, IntUpdater(opt_name, parent)); Add(flex, name, sc); return sc; -@@ -240,7 +247,7 @@ + } + + case agi::OptionType::Double: { +- auto scd = new wxSpinCtrlDouble(this, -1, std::to_wstring(opt->GetDouble()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, min, max, opt->GetDouble(), inc); ++ auto scd = new wxSpinCtrlDouble(this, -1, TO_WSTRING(opt->GetDouble()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, min, max, opt->GetDouble(), inc); + scd->Bind(wxEVT_SPINCTRL, DoubleUpdater(opt_name, parent)); + Add(flex, name, scd); + return scd; +@@ -238,7 +245,7 @@ font_name->SetMinSize(wxSize(160, -1)); font_name->Bind(wxEVT_TEXT, StringUpdater(face_opt->GetName().c_str(), parent)); -- wxSpinCtrl *font_size = new wxSpinCtrl(this, -1, std::to_wstring((int)size_opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 3, 42, size_opt->GetInt()); -+ wxSpinCtrl *font_size = new wxSpinCtrl(this, -1, TO_WSTRING((int)size_opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 3, 42, size_opt->GetInt()); +- auto font_size = new wxSpinCtrl(this, -1, std::to_wstring((int)size_opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 3, 42, size_opt->GetInt()); ++ auto font_size = new wxSpinCtrl(this, -1, TO_WSTRING((int)size_opt->GetInt()), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 3, 42, size_opt->GetInt()); font_size->Bind(wxEVT_SPINCTRL, IntUpdater(size_opt->GetName().c_str(), parent)); - wxButton *pick_btn = new wxButton(this, -1, _("Choose...")); + auto pick_btn = new wxButton(this, -1, _("Choose...")); Modified: head/multimedia/aegisub/files/patch-src__resolution_resampler.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__resolution_resampler.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__resolution_resampler.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,11 +1,8 @@ ---- src/resolution_resampler.cpp.orig -+++ src/resolution_resampler.cpp -@@ -29,9 +29,15 @@ - - #include - #include --#include - #include +--- src/resolution_resampler.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/resolution_resampler.cpp 2014-08-05 07:58:45.000000000 +0900 +@@ -32,6 +32,13 @@ + #include + #include +#ifdef _LIBCPP_VERSION +#define TO_STRING(x) std::to_string(x) @@ -17,14 +14,14 @@ enum { LEFT = 0, RIGHT = 1, -@@ -175,8 +181,8 @@ - for (auto& line : ass->Line) +@@ -281,8 +288,8 @@ + for (auto& line : ass->Events) resample_line(&state, line); -- ass->SetScriptInfo("PlayResX", std::to_string(settings.script_x)); -- ass->SetScriptInfo("PlayResY", std::to_string(settings.script_y)); -+ ass->SetScriptInfo("PlayResX", TO_STRING(settings.script_x)); -+ ass->SetScriptInfo("PlayResY", TO_STRING(settings.script_y)); +- ass->SetScriptInfo("PlayResX", std::to_string(settings.dest_x)); +- ass->SetScriptInfo("PlayResY", std::to_string(settings.dest_y)); ++ ass->SetScriptInfo("PlayResX", TO_STRING(settings.dest_x)); ++ ass->SetScriptInfo("PlayResY", TO_STRING(settings.dest_y)); + ass->SetScriptInfo("YCbCr Matrix", MatrixToString(settings.dest_matrix)); ass->Commit(_("resolution resampling"), AssFile::COMMIT_SCRIPTINFO | AssFile::COMMIT_DIAG_FULL); - } Added: head/multimedia/aegisub/files/patch-src__spline_curve.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-src__spline_curve.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,10 @@ +--- src/spline_curve.cpp.orig 2014-08-06 00:07:08.000000000 +0900 ++++ src/spline_curve.cpp 2014-08-06 00:07:27.000000000 +0900 +@@ -35,6 +35,7 @@ + #include "spline_curve.h" + #include "utils.h" + ++#include + #include + + SplineCurve::SplineCurve(Vector2D p1) : p1(p1), type(POINT) { } Modified: head/multimedia/aegisub/files/patch-src__subs_edit_box.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__subs_edit_box.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__subs_edit_box.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,6 +1,6 @@ ---- src/subs_edit_box.cpp.orig -+++ src/subs_edit_box.cpp -@@ -71,6 +71,13 @@ +--- src/subs_edit_box.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/subs_edit_box.cpp 2014-08-06 00:09:49.000000000 +0900 +@@ -69,6 +69,13 @@ #include #include @@ -11,10 +11,10 @@ +#define TO_WSTRING(x) boost::lexical_cast(x) +#endif + - namespace { - - /// Work around wxGTK's fondness for generating events from ChangeValue -@@ -324,7 +331,7 @@ + namespace std { + template + struct hash> { +@@ -354,7 +361,7 @@ if (type & AssFile::COMMIT_DIAG_META) { layer->SetValue(line->Layer); for (size_t i = 0; i < margin.size(); ++i) @@ -22,4 +22,13 @@ + change_value(margin[i], TO_WSTRING(line->Margin[i])); comment_box->SetValue(line->Comment); style_box->Select(style_box->FindString(to_wx(line->Style))); - + active_style = line ? c->ass->GetStyle(line->Style) : nullptr; +@@ -623,7 +630,7 @@ + if (OPT_GET("Subtitle/Character Counter/Ignore Punctuation")->GetBool()) + ignore |= agi::IGNORE_PUNCTUATION; + size_t length = agi::MaxLineLength(text, ignore); +- char_count->SetValue(std::to_wstring(length)); ++ char_count->SetValue(TO_WSTRING(length)); + size_t limit = (size_t)OPT_GET("Subtitle/Character Limit")->GetInt(); + if (limit && length > limit) + char_count->SetBackgroundColour(to_wx(OPT_GET("Colour/Subtitle/Syntax/Background/Error")->GetColor())); Added: head/multimedia/aegisub/files/patch-src__subtitle_format_ass.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/aegisub/files/patch-src__subtitle_format_ass.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -0,0 +1,34 @@ +--- src/subtitle_format_ass.cpp.orig 2014-08-05 23:16:03.000000000 +0900 ++++ src/subtitle_format_ass.cpp 2014-08-05 23:18:02.000000000 +0900 +@@ -31,6 +31,13 @@ + #include + #include + ++#ifdef _LIBCPP_VERSION ++#define TO_STRING(x) std::to_string(x) ++#else ++#include ++#define TO_STRING(x) boost::lexical_cast(x) ++#endif ++ + DEFINE_EXCEPTION(AssParseError, SubtitleFormatParseError); + + void AssSubtitleFormat::ReadFile(AssFile *target, agi::fs::path const& filename, agi::vfr::Framerate const& fps, std::string const& encoding) const { +@@ -119,7 +126,7 @@ + template + void WriteIfNotZero(const char *key, Number n) { + if (n != Number{}) +- file.WriteLineToFile(key + std::to_string(n)); ++ file.WriteLineToFile(key + TO_STRING(n)); + } + + void WriteExtradata(AegisubExtradataMap const& extradata) { +@@ -131,7 +138,7 @@ + file.WriteLineToFile("[Aegisub Extradata]"); + for (auto const& edi : extradata) { + std::string line = "Data: "; +- line += std::to_string(edi.first); ++ line += TO_STRING(edi.first); + line += ","; + line += inline_string_encode(edi.second.first); + line += ","; Modified: head/multimedia/aegisub/files/patch-src__subtitle_format_srt.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__subtitle_format_srt.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__subtitle_format_srt.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,8 +1,8 @@ ---- src/subtitle_format_srt.cpp.orig -+++ src/subtitle_format_srt.cpp -@@ -54,6 +54,13 @@ +--- src/subtitle_format_srt.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/subtitle_format_srt.cpp 2014-08-05 08:01:33.000000000 +0900 +@@ -50,6 +50,13 @@ + #include #include - #include +#ifdef _LIBCPP_VERSION +#define TO_STRING(x) std::to_string(x) @@ -11,15 +11,15 @@ +#define TO_STRING(x) boost::lexical_cast(x) +#endif + - DEFINE_SIMPLE_EXCEPTION(SRTParseError, SubtitleFormatParseError, "subtitle_io/parse/srt") + DEFINE_EXCEPTION(SRTParseError, SubtitleFormatParseError); namespace { -@@ -481,7 +488,7 @@ +@@ -435,7 +442,7 @@ // Write lines int i=0; - for (auto current : copy.Line | agi::of_type()) { + for (auto const& current : copy.Events) { - file.WriteLineToFile(std::to_string(++i)); + file.WriteLineToFile(TO_STRING(++i)); - file.WriteLineToFile(WriteSRTTime(current->Start) + " --> " + WriteSRTTime(current->End)); - file.WriteLineToFile(ConvertTags(current)); + file.WriteLineToFile(WriteSRTTime(current.Start) + " --> " + WriteSRTTime(current.End)); + file.WriteLineToFile(ConvertTags(¤t)); file.WriteLineToFile(""); Modified: head/multimedia/aegisub/files/patch-src__timeedit_ctrl.cpp ============================================================================== --- head/multimedia/aegisub/files/patch-src__timeedit_ctrl.cpp Sun Aug 10 10:28:06 2014 (r364527) +++ head/multimedia/aegisub/files/patch-src__timeedit_ctrl.cpp Sun Aug 10 12:13:15 2014 (r364528) @@ -1,6 +1,6 @@ ---- src/timeedit_ctrl.cpp.orig -+++ src/timeedit_ctrl.cpp -@@ -52,6 +52,13 @@ +--- src/timeedit_ctrl.cpp.orig 2014-07-28 23:29:16.000000000 +0900 ++++ src/timeedit_ctrl.cpp 2014-08-05 08:03:02.000000000 +0900 +@@ -48,6 +48,13 @@ #define TimeEditWindowStyle @@ -14,12 +14,12 @@ enum { Time_Edit_Copy = 1320, Time_Edit_Paste -@@ -117,7 +124,7 @@ +@@ -113,7 +120,7 @@ void TimeEdit::UpdateText() { if (byFrame) -- ChangeValue(std::to_wstring(c->videoController->FrameAtTime(time, isEnd ? agi::vfr::END : agi::vfr::START))); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 12:20:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3289823 for ; Sun, 10 Aug 2014 12:20:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 937CE2C81 for ; Sun, 10 Aug 2014 12:20:19 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 23e6 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 12:20:19 +0000 From: John Marino Date: Sun, 10 Aug 2014 12:20:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364529 - head/net/x2goclient-cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e76383.23e6.54702c6a@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 12:20:19 -0000 Author: marino Date: Sun Aug 10 12:20:18 2014 New Revision: 364529 URL: http://svnweb.freebsd.org/changeset/ports/364529 QAT: https://qat.redports.org/buildarchive/r364529/ Log: net/x2goclient-cli: Fix perl shebang on main executable, pet portlint This port failed to build under poudriere bulk -t: Just Fix It Modified: head/net/x2goclient-cli/Makefile head/net/x2goclient-cli/pkg-descr Modified: head/net/x2goclient-cli/Makefile ============================================================================== --- head/net/x2goclient-cli/Makefile Sun Aug 10 12:13:15 2014 (r364528) +++ head/net/x2goclient-cli/Makefile Sun Aug 10 12:20:18 2014 (r364529) @@ -3,7 +3,7 @@ PORTNAME= x2goclient-cli DISTVERSION= 3.0.1-1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://x2go.obviously-nice.de/deb/pool-lenny/x2goclient-cli/ DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -11,13 +11,15 @@ DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= The x2go perl client +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + RUN_DEPENDS= p5-Proc-Simple>=0:${PORTSDIR}/devel/p5-Proc-Simple \ p5-Term-ReadPassword>=0:${PORTSDIR}/devel/p5-Term-ReadPassword \ nxproxy:${PORTSDIR}/net/nxproxy -LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/LICENSE -USES= perl5 +USES= perl5 shebangfix +SHEBANG_FILES= x2goclient-cli PLIST_FILES= bin/x2goclient-cli WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:S,-1.2,,} NO_BUILD= yes Modified: head/net/x2goclient-cli/pkg-descr ============================================================================== --- head/net/x2goclient-cli/pkg-descr Sun Aug 10 12:13:15 2014 (r364528) +++ head/net/x2goclient-cli/pkg-descr Sun Aug 10 12:20:18 2014 (r364529) @@ -1,3 +1,3 @@ CLI client for x2go -WWW: http://www.x2go.org/ +WWW: http://www.x2go.org/ From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 12:24:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66C91944 for ; Sun, 10 Aug 2014 12:24:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 3A4B12D57 for ; Sun, 10 Aug 2014 12:24:05 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2405 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 12:24:04 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 12:24:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364530 - in head/databases/monetdb: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e76465.2405.343dbbf1@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 12:24:05 -0000 Author: antoine Date: Sun Aug 10 12:24:04 2014 New Revision: 364530 URL: http://svnweb.freebsd.org/changeset/ports/364530 QAT: https://qat.redports.org/buildarchive/r364530/ Log: Allow building on freebsd 8 and 9 Modified: head/databases/monetdb/Makefile head/databases/monetdb/files/patch-configure Modified: head/databases/monetdb/Makefile ============================================================================== --- head/databases/monetdb/Makefile Sun Aug 10 12:20:18 2014 (r364529) +++ head/databases/monetdb/Makefile Sun Aug 10 12:24:04 2014 (r364530) @@ -208,7 +208,8 @@ CONFIGURE_ARGS+= -with-password-backend= # Compile chokes with version of flex on FreeBSD 8 and 9 # with "unknown flag '-'" .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 -BUILD_DEPENDS+= flex:${PORTSDIR}/textproc/flex +BUILD_DEPENDS+= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex +CONFIGURE_ENV+= LEX=${LOCALBASE}/bin/flex .endif pre-install: Modified: head/databases/monetdb/files/patch-configure ============================================================================== --- head/databases/monetdb/files/patch-configure Sun Aug 10 12:20:18 2014 (r364529) +++ head/databases/monetdb/files/patch-configure Sun Aug 10 12:24:04 2014 (r364530) @@ -1,6 +1,14 @@ ---- configure.orig 2014-02-02 18:41:42.664332968 +0100 -+++ configure 2014-02-02 18:41:59.346331204 +0100 - +--- configure.orig 2013-11-20 11:27:41.000000000 +0000 ++++ configure 2014-08-10 12:16:46.974210130 +0000 +@@ -17262,7 +17262,7 @@ + ;; + esac + case "$LEX" in +- flex*) : ;; ++ *flex*) : ;; + *) + if test "x$enable_jaql" = xyes; then + as_fn_error $? "MonetDB/JAQL requires flex" "$LINENO" 5 @@ -17802,6 +17802,7 @@ /* end confdefs.h. */ #include @@ -87,3 +95,4 @@ +if x"$have_zlib" = x"yes" ; then $as_echo "#define HAVE_LIBZ 1" >>confdefs.h + From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 12:24:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0553A33 for ; Sun, 10 Aug 2014 12:24:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B022A2D60 for ; Sun, 10 Aug 2014 12:24:56 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2422 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 12:24:56 +0000 From: John Marino Date: Sun, 10 Aug 2014 12:24:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364531 - head/net/x2goclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e76498.2422.607e8417@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 12:24:56 -0000 Author: marino Date: Sun Aug 10 12:24:56 2014 New Revision: 364531 URL: http://svnweb.freebsd.org/changeset/ports/364531 QAT: https://qat.redports.org/buildarchive/r364531/ Log: net/x2goclient: Upgrade version 4.0.2.0 => 4.0.2.1 PR: 192211 Submitted by: Ports Fury Modified: head/net/x2goclient/Makefile head/net/x2goclient/distinfo Modified: head/net/x2goclient/Makefile ============================================================================== --- head/net/x2goclient/Makefile Sun Aug 10 12:24:04 2014 (r364530) +++ head/net/x2goclient/Makefile Sun Aug 10 12:24:56 2014 (r364531) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= x2goclient -PORTVERSION= 4.0.2.0 -PORTREVISION= 1 +PORTVERSION= 4.0.2.1 CATEGORIES= net MASTER_SITES= http://code.x2go.org/releases/source/x2goclient/ Modified: head/net/x2goclient/distinfo ============================================================================== --- head/net/x2goclient/distinfo Sun Aug 10 12:24:04 2014 (r364530) +++ head/net/x2goclient/distinfo Sun Aug 10 12:24:56 2014 (r364531) @@ -1,2 +1,2 @@ -SHA256 (x2goclient-4.0.2.0.tar.gz) = 7b1d42e30041d469ef986e686a1dacb4d0fb55d04fdcfc20ad26f5a4282d30b3 -SIZE (x2goclient-4.0.2.0.tar.gz) = 1398919 +SHA256 (x2goclient-4.0.2.1.tar.gz) = 1836597aa9908573472c5ae8af4c0064ff4da33acaa0821ac27e1bfa326139dc +SIZE (x2goclient-4.0.2.1.tar.gz) = 1400640 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 12:31:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9131BCD7 for ; Sun, 10 Aug 2014 12:31:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 691A72E51 for ; Sun, 10 Aug 2014 12:31:44 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 29d2 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 12:31:44 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 12:31:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364532 - head/cad/cura-engine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e76630.29d2.2d7fe34e@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 12:31:44 -0000 Author: antoine Date: Sun Aug 10 12:31:43 2014 New Revision: 364532 URL: http://svnweb.freebsd.org/changeset/ports/364532 QAT: https://qat.redports.org/buildarchive/r364532/ Log: Allow building on old freebsd Modified: head/cad/cura-engine/Makefile Modified: head/cad/cura-engine/Makefile ============================================================================== --- head/cad/cura-engine/Makefile Sun Aug 10 12:24:56 2014 (r364531) +++ head/cad/cura-engine/Makefile Sun Aug 10 12:31:43 2014 (r364532) @@ -9,7 +9,7 @@ COMMENT= Engine of slicing solution for LICENSE= AGPLv3 -USES= gmake +USES= compiler:c++11-lang gmake USE_GITHUB= yes GH_ACCOUNT= Ultimaker From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 12:41:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB06FE79 for ; Sun, 10 Aug 2014 12:41:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 AC69C2FD5 for ; Sun, 10 Aug 2014 12:41:33 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2d3e by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 12:41:33 +0000 From: John Marino Date: Sun, 10 Aug 2014 12:41:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364533 - head/mail/roundcube-thunderbird_labels X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7687d.2d3e.196dff54@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 12:41:34 -0000 Author: marino Date: Sun Aug 10 12:41:32 2014 New Revision: 364533 URL: http://svnweb.freebsd.org/changeset/ports/364533 QAT: https://qat.redports.org/buildarchive/r364533/ Log: mail/roundcube-thunderbird_labels: Upgrade version 0.8.1 => 1.0.0 and stage Also assign maintainership to submitter who was former maintainer. The MASTER_SITES has moved to Google Drive. PR: 192508 Submitted by: Alexander Moisseev Modified: head/mail/roundcube-thunderbird_labels/Makefile head/mail/roundcube-thunderbird_labels/distinfo head/mail/roundcube-thunderbird_labels/pkg-plist Modified: head/mail/roundcube-thunderbird_labels/Makefile ============================================================================== --- head/mail/roundcube-thunderbird_labels/Makefile Sun Aug 10 12:31:43 2014 (r364532) +++ head/mail/roundcube-thunderbird_labels/Makefile Sun Aug 10 12:41:32 2014 (r364533) @@ -2,36 +2,41 @@ # $FreeBSD$ PORTNAME= thunderbird_labels -PORTVERSION= 0.8.1 +PORTVERSION= 1.0.0 CATEGORIES= mail -MASTER_SITES= http://rcmail-thunderbird-labels.googlecode.com/files/ +MASTER_SITES= https://googledrive.com/host/ PKGNAMEPREFIX= roundcube- +DISTNAME= 0B7cAkeuoAZKaMGVieHl4LTdEbWM +EXTRACT_SUFX= -MAINTAINER= ports@FreeBSD.org +MAINTAINER= moiseev@mezonplus.ru COMMENT= Thunderbird Labels plugin for RoundCube webmail LICENSE= GPLv2 RUN_DEPENDS= roundcube>=0.5:${PORTSDIR}/mail/roundcube -USES= tar:bzip2 +USES= tar:bzip2 NO_BUILD= yes WRKSRC= ${WRKDIR}/${PORTNAME} -WWWDIR?= ${PREFIX}/www/roundcube/plugins/${PORTNAME} +PLUGINDIR= ${WWWDIR:S,/${PORTNAME}$$,,}/roundcube/plugins/${PORTNAME} +PLUGINDIR_REL= ${WWWDIR_REL:S,/${PORTNAME}$$,,}/roundcube/plugins/${PORTNAME} +PLIST_SUB= PLUGINDIR_REL="${PLUGINDIR_REL}" # This target is only meant to be used by the port maintainer. x-generate-plist: build - cd ${WRKSRC}; \ - ${FIND} . ! -type d ! -name '*.orig' | ${SORT} | \ - ${SED} -e "s,^\.,%%WWWDIR%%," >${.CURDIR}/pkg-plist.tmp ; \ - ${FIND} . -type d | ${SORT} -r | ${SED} \ - -e "s,^\.$$,@dirrmtry %%WWWDIR%%," \ - -e "s,^\.,@dirrm %%WWWDIR%%," >>${.CURDIR}/pkg-plist.tmp + make makeplist | \ + ${SED} \ + -e "s,^\(%%PLUGINDIR_REL%%/config\.inc\.php\.sample$$\),@sample \1," \ + -e "/^%%PLUGINDIR_REL%%\/config\.inc\.php$$/d" \ + -e "s,^\(@dirrm\)try\( %%PLUGINDIR_REL%%/\),\1\2," \ + >${.CURDIR}/pkg-plist.tmp -NO_STAGE= yes do-install: - ${MKDIR} ${WWWDIR} - cd ${WRKSRC} && ${PAX} -r -w . ${WWWDIR} + ${MKDIR} ${STAGEDIR}${PLUGINDIR} + cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${PLUGINDIR} + cd ${STAGEDIR}${PLUGINDIR} && \ + ${CP} config.inc.php config.inc.php.sample .include Modified: head/mail/roundcube-thunderbird_labels/distinfo ============================================================================== --- head/mail/roundcube-thunderbird_labels/distinfo Sun Aug 10 12:31:43 2014 (r364532) +++ head/mail/roundcube-thunderbird_labels/distinfo Sun Aug 10 12:41:32 2014 (r364533) @@ -1,2 +1,2 @@ -SHA256 (thunderbird_labels-0.8.1.tar.bz2) = b0bbb64f8a7f08b266ceb97046816c702a20750cc3cba97ea7938bd0b1eda99a -SIZE (thunderbird_labels-0.8.1.tar.bz2) = 12620 +SHA256 (0B7cAkeuoAZKaMGVieHl4LTdEbWM) = e14e968c2adfb63e08280228f125c7b3a1feeff1ea5ca978e761702513e1d5a4 +SIZE (0B7cAkeuoAZKaMGVieHl4LTdEbWM) = 21483 Modified: head/mail/roundcube-thunderbird_labels/pkg-plist ============================================================================== --- head/mail/roundcube-thunderbird_labels/pkg-plist Sun Aug 10 12:31:43 2014 (r364532) +++ head/mail/roundcube-thunderbird_labels/pkg-plist Sun Aug 10 12:41:32 2014 (r364533) @@ -1,23 +1,35 @@ -%%WWWDIR%%/Changelog -%%WWWDIR%%/README -%%WWWDIR%%/localization/cs_CZ.inc -%%WWWDIR%%/localization/de_DE.inc -%%WWWDIR%%/localization/en_US.inc -%%WWWDIR%%/localization/fr_FR.inc -%%WWWDIR%%/localization/hu_HU.inc -%%WWWDIR%%/localization/pl_PL.inc -%%WWWDIR%%/localization/ru_RU.inc -%%WWWDIR%%/skins/classic/tb_label.css -%%WWWDIR%%/skins/classic/thunderbird_32.png -%%WWWDIR%%/skins/default/tb_label.css -%%WWWDIR%%/skins/default/thunderbird_32.png -%%WWWDIR%%/skins/larry/tb_label.css -%%WWWDIR%%/skins/larry/thunderbird_32.png -%%WWWDIR%%/tb_label.js -%%WWWDIR%%/thunderbird_labels.php -@dirrm %%WWWDIR%%/skins/larry -@dirrm %%WWWDIR%%/skins/default -@dirrm %%WWWDIR%%/skins/classic -@dirrm %%WWWDIR%%/skins -@dirrm %%WWWDIR%%/localization -@dirrmtry %%WWWDIR%% +%%PLUGINDIR_REL%%/Changelog +%%PLUGINDIR_REL%%/README +%%PLUGINDIR_REL%%/composer.json +@sample %%PLUGINDIR_REL%%/config.inc.php.sample +%%PLUGINDIR_REL%%/localization/bg_BG.inc +%%PLUGINDIR_REL%%/localization/ca_ES.inc +%%PLUGINDIR_REL%%/localization/cs_CZ.inc +%%PLUGINDIR_REL%%/localization/de_DE.inc +%%PLUGINDIR_REL%%/localization/en_US.inc +%%PLUGINDIR_REL%%/localization/es_ES.inc +%%PLUGINDIR_REL%%/localization/fr_FR.inc +%%PLUGINDIR_REL%%/localization/hu_HU.inc +%%PLUGINDIR_REL%%/localization/it_IT.inc +%%PLUGINDIR_REL%%/localization/lv_LV.inc +%%PLUGINDIR_REL%%/localization/pl_PL.inc +%%PLUGINDIR_REL%%/localization/ru_RU.inc +%%PLUGINDIR_REL%%/localization/uk_UA.inc +%%PLUGINDIR_REL%%/skins/classic/default/tb_label.css +%%PLUGINDIR_REL%%/skins/classic/default/thunderbird_32.png +%%PLUGINDIR_REL%%/skins/classic/tb_label.css +%%PLUGINDIR_REL%%/skins/classic/thunderbird_32.png +%%PLUGINDIR_REL%%/skins/default/tb_label.css +%%PLUGINDIR_REL%%/skins/default/thunderbird_32.png +%%PLUGINDIR_REL%%/skins/larry/tb_label.css +%%PLUGINDIR_REL%%/skins/larry/thunderbird_24.png +%%PLUGINDIR_REL%%/skins/larry/thunderbird_32.png +%%PLUGINDIR_REL%%/tb_label.js +%%PLUGINDIR_REL%%/thunderbird_labels.php +@dirrm %%PLUGINDIR_REL%%/localization +@dirrm %%PLUGINDIR_REL%%/skins/classic/default +@dirrm %%PLUGINDIR_REL%%/skins/classic +@dirrm %%PLUGINDIR_REL%%/skins/default +@dirrm %%PLUGINDIR_REL%%/skins/larry +@dirrm %%PLUGINDIR_REL%%/skins +@dirrmtry %%PLUGINDIR_REL%% From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 12:44:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8DC97B for ; Sun, 10 Aug 2014 12:44:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 C37EE2FF7 for ; Sun, 10 Aug 2014 12:44:57 +0000 (UTC) Received: from wen (uid 1209) (envelope-from wen@FreeBSD.org) id 2d6c by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 12:44:57 +0000 From: Wen Heping Date: Sun, 10 Aug 2014 12:44:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364534 - head/www/impresscms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e76949.2d6c.3da2b287@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 12:44:57 -0000 Author: wen Date: Sun Aug 10 12:44:56 2014 New Revision: 364534 URL: http://svnweb.freebsd.org/changeset/ports/364534 QAT: https://qat.redports.org/buildarchive/r364534/ Log: - Update to 1.3.7 - Reset maintainer to ports@ Modified: head/www/impresscms/Makefile head/www/impresscms/distinfo head/www/impresscms/pkg-plist Modified: head/www/impresscms/Makefile ============================================================================== --- head/www/impresscms/Makefile Sun Aug 10 12:41:32 2014 (r364533) +++ head/www/impresscms/Makefile Sun Aug 10 12:44:56 2014 (r364534) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= impresscms -PORTVERSION= 1.3.4 +PORTVERSION= 1.3.7 CATEGORIES= www -MASTER_SITES= SF/${PORTNAME}/ImpressCMS%20Official%20Releases/ImpressCMS%20${PORTVERSION} +MASTER_SITES= SF/${PORTNAME}/ImpressCMS%20Official%20Releases/ImpressCMS%201.3%20Branch/ImpressCMS%20${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION}_final -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Community Developed Content Management System USES= zip Modified: head/www/impresscms/distinfo ============================================================================== --- head/www/impresscms/distinfo Sun Aug 10 12:41:32 2014 (r364533) +++ head/www/impresscms/distinfo Sun Aug 10 12:44:56 2014 (r364534) @@ -1,2 +1,2 @@ -SHA256 (impresscms_1.3.4_final.zip) = f0fe30d92cfa41790f44ecc14195f3ebe7d21070826e67b72fe585710bca760e -SIZE (impresscms_1.3.4_final.zip) = 11457132 +SHA256 (impresscms_1.3.7_final.zip) = 5e6089bc9880905903f5225776c4bd24487e564af728c8f28cbd867c6b96a0c3 +SIZE (impresscms_1.3.7_final.zip) = 11797324 Modified: head/www/impresscms/pkg-plist ============================================================================== --- head/www/impresscms/pkg-plist Sun Aug 10 12:41:32 2014 (r364533) +++ head/www/impresscms/pkg-plist Sun Aug 10 12:44:56 2014 (r364534) @@ -10,13 +10,13 @@ %%WWWDIR%%/htdocs/admin.php %%WWWDIR%%/htdocs/banners.php %%WWWDIR%%/htdocs/cache/index.html -%%WWWDIR%%/htdocs/class/auth/auth.php %%WWWDIR%%/htdocs/class/auth/auth_ads.php +%%WWWDIR%%/htdocs/class/auth/authfactory.php %%WWWDIR%%/htdocs/class/auth/auth_ldap.php %%WWWDIR%%/htdocs/class/auth/auth_openid.php +%%WWWDIR%%/htdocs/class/auth/auth.php %%WWWDIR%%/htdocs/class/auth/auth_provisionning.php %%WWWDIR%%/htdocs/class/auth/auth_xoops.php -%%WWWDIR%%/htdocs/class/auth/authfactory.php %%WWWDIR%%/htdocs/class/auth/index.html %%WWWDIR%%/htdocs/class/captcha/captcha.php %%WWWDIR%%/htdocs/class/captcha/config.php @@ -29,8 +29,8 @@ %%WWWDIR%%/htdocs/class/class.zipfile.php %%WWWDIR%%/htdocs/class/commentrenderer.php %%WWWDIR%%/htdocs/class/criteria.php -%%WWWDIR%%/htdocs/class/database/database.php %%WWWDIR%%/htdocs/class/database/databasefactory.php +%%WWWDIR%%/htdocs/class/database/database.php %%WWWDIR%%/htdocs/class/database/databaseupdater.php %%WWWDIR%%/htdocs/class/database/drivers/index.html %%WWWDIR%%/htdocs/class/database/drivers/mysql/database.php @@ -48,8 +48,8 @@ %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformautocompleteelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformblockoptionselement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformcheckelement.php -%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformdate_timeelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformdateelement.php +%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformdate_timeelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformfileelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformfileuploadelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformhidden.php @@ -60,18 +60,18 @@ %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformparentcategoryelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformradioelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformrichfileelement.php -%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformsection.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformsectionclose.php -%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformselect_multielement.php +%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformsection.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformselectelement.php +%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformselect_multielement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformset_passwordelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformsourceeditor.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformtextelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformtimeelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformuploadelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformurllinkelement.php -%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformuser_sigelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformuserelement.php +%%WWWDIR%%/htdocs/class/icmsform/elements/icmsformuser_sigelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/icmsformyesnoelement.php %%WWWDIR%%/htdocs/class/icmsform/elements/index.html %%WWWDIR%%/htdocs/class/icmsform/icmsform.php @@ -93,16 +93,15 @@ %%WWWDIR%%/htdocs/class/plugins.php %%WWWDIR%%/htdocs/class/tardownloader.php %%WWWDIR%%/htdocs/class/template.php -%%WWWDIR%%/htdocs/class/theme.php %%WWWDIR%%/htdocs/class/theme_blocks.php +%%WWWDIR%%/htdocs/class/theme.php %%WWWDIR%%/htdocs/class/tree.php %%WWWDIR%%/htdocs/class/uploader.php %%WWWDIR%%/htdocs/class/xoopsblock.php -%%WWWDIR%%/htdocs/class/xoopseditor/index.html -%%WWWDIR%%/htdocs/class/xoopseditor/xoopseditor.php %%WWWDIR%%/htdocs/class/xoopseditor.inc.php +%%WWWDIR%%/htdocs/class/xoopseditor/index.html %%WWWDIR%%/htdocs/class/xoopseditor.php -%%WWWDIR%%/htdocs/class/xoopsform/form.php +%%WWWDIR%%/htdocs/class/xoopseditor/xoopseditor.php %%WWWDIR%%/htdocs/class/xoopsform/formbutton.php %%WWWDIR%%/htdocs/class/xoopsform/formcaptcha.php %%WWWDIR%%/htdocs/class/xoopsform/formcheckbox.php @@ -115,30 +114,31 @@ %%WWWDIR%%/htdocs/class/xoopsform/formfile.php %%WWWDIR%%/htdocs/class/xoopsform/formhidden.php %%WWWDIR%%/htdocs/class/xoopsform/formhiddentoken.php -%%WWWDIR%%/htdocs/class/xoopsform/formimage.php %%WWWDIR%%/htdocs/class/xoopsform/formimage_browse.php +%%WWWDIR%%/htdocs/class/xoopsform/formimage.php %%WWWDIR%%/htdocs/class/xoopsform/formlabel.php %%WWWDIR%%/htdocs/class/xoopsform/formpassword.php +%%WWWDIR%%/htdocs/class/xoopsform/form.php %%WWWDIR%%/htdocs/class/xoopsform/formradio.php %%WWWDIR%%/htdocs/class/xoopsform/formradioyn.php -%%WWWDIR%%/htdocs/class/xoopsform/formselect.php %%WWWDIR%%/htdocs/class/xoopsform/formselectcountry.php %%WWWDIR%%/htdocs/class/xoopsform/formselecteditor.php %%WWWDIR%%/htdocs/class/xoopsform/formselectgroup.php %%WWWDIR%%/htdocs/class/xoopsform/formselectlang.php %%WWWDIR%%/htdocs/class/xoopsform/formselectmatchoption.php +%%WWWDIR%%/htdocs/class/xoopsform/formselect.php %%WWWDIR%%/htdocs/class/xoopsform/formselecttheme.php %%WWWDIR%%/htdocs/class/xoopsform/formselecttimezone.php %%WWWDIR%%/htdocs/class/xoopsform/formselectuser.php -%%WWWDIR%%/htdocs/class/xoopsform/formtext.php %%WWWDIR%%/htdocs/class/xoopsform/formtextarea.php %%WWWDIR%%/htdocs/class/xoopsform/formtextdateselect.php +%%WWWDIR%%/htdocs/class/xoopsform/formtext.php %%WWWDIR%%/htdocs/class/xoopsform/grouppermform.php %%WWWDIR%%/htdocs/class/xoopsform/index.html +%%WWWDIR%%/htdocs/class/xoopsformloader.php %%WWWDIR%%/htdocs/class/xoopsform/simpleform.php %%WWWDIR%%/htdocs/class/xoopsform/tableform.php %%WWWDIR%%/htdocs/class/xoopsform/themeform.php -%%WWWDIR%%/htdocs/class/xoopsformloader.php %%WWWDIR%%/htdocs/class/xoopslists.php %%WWWDIR%%/htdocs/class/xoopsmailer.php %%WWWDIR%%/htdocs/class/xoopsmodule.php @@ -152,118 +152,6 @@ %%WWWDIR%%/htdocs/class/zipdownloader.php %%WWWDIR%%/htdocs/content.php %%WWWDIR%%/htdocs/editors/FCKeditor/_documentation.html -%%WWWDIR%%/htdocs/editors/FCKeditor/_upgrade.html -%%WWWDIR%%/htdocs/editors/FCKeditor/_whatsnew.html -%%WWWDIR%%/htdocs/editors/FCKeditor/_whatsnew_history.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckcontextmenu.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdataprocessor.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdocumentfragment_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdocumentfragment_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrange.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrange_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrange_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrangeiterator.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckeditingarea.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckelementpath.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckenterkey.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckevents.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckhtmliterator.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckicon.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckiecleanup.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckimagepreloader.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckkeystrokehandler.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckmenublock.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckmenublockpanel.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckmenuitem.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckpanel.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckplugin.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckspecialcombo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyle.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyledef.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyledef_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyledef_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstylesloader.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbar.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbreak_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbreak_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbutton.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbuttonui.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarpanelbutton.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarspecialcombo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarstylecombo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckw3crange.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckxml.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckxml_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckxml_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fck_othercommands.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckblockquotecommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckcorestylecommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckfitwindow.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckindentcommands.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckjustifycommands.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcklistcommands.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcknamedcommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckpastewordcommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckremoveformatcommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckshowblocks.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckstylecommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcktablecommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcktextcolorcommand.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckconstants.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckeditorapi.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckjscoreextensions.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckscriptloader.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck_contextmenu.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckbrowserinfo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckcodeformatter.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckcommands.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckconfig.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdebug.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdebug_empty.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdialog.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdialog_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdialog_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdocumentprocessor.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdomtools.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcklanguagemanager.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcklisthandler.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcklistslib.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckplugins.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckregexlib.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckscayt.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckselection.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckselection_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckselection_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckstyles.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktablehandler.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktablehandler_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktoolbaritems.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktoolbarset.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktools.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktools_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktools_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckundo.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckundo_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckundo_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckurlparams.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtml.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtml_gecko.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtml_ie.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtmlentities.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/css/behaviors/disablehandles.htc %%WWWDIR%%/htdocs/editors/FCKeditor/editor/css/behaviors/hiddenfield.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/css/behaviors/hiddenfield.htc @@ -299,47 +187,48 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/common/images/unlocked.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/common/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/common/moz-bindings.xml +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about/lgpl.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about/logo_fckeditor.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about/logo_fredck.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about/sponsors/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_about.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_anchor.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_button.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_checkbox.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_colorselector.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_div.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_docprops/fck_document_preview.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_docprops/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_docprops.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_docprops/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_find.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_flash/fck_flash.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_flash/fck_flash_preview.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_flash/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_flash.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_flash/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_form.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_hiddenfield.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_image/fck_image.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_image/fck_image_preview.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_image/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_image.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_image/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_link/fck_link.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_link/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_link.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_link/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_listprop.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_paste.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_radiobutton.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_replace.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_scayt/scayt_dialog.css %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_scayt.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_scayt/scayt_dialog.css %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_select/fck_select.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_select/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_select.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_select/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_smiley.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_source.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_specialchar.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js @@ -353,15 +242,14 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_spellerpages.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_table.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_tablecell.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_table.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_template.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_template/images/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_template/images/template1.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_template/images/template2.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_template/images/template3.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_template/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_template.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_textarea.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_textfield.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey/00.gif @@ -369,10 +257,10 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey/diacritic.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey/dialogue.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey/fck_universalkey.css +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey/keyboard_layout.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey/multihexa.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/fck_universalkey.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dialog/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dtd/fck_dtd_test.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/dtd/fck_xhtml10strict.js @@ -392,11 +280,11 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/frmresourcetype.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/frmupload.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/ButtonArrow.gif -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/Folder.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/Folder32.gif -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/FolderOpened.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/FolderOpened.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/FolderUp.gif +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/Folder.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/icons/32/ai.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/icons/32/avi.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif @@ -505,17 +393,17 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/js/fckeditorcode_gecko.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/js/fckeditorcode_ie.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/js/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/lang/_getfontformat.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/lang/_translationstatus.txt %%WWWDIR%%/htdocs/editors/FCKeditor/editor/lang/en.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/lang/_getfontformat.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/lang/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/lang/_translationstatus.txt %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/autogrow/fckplugin.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/autogrow/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/bbcode/fckplugin.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/bbcode/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/bbcode/_sample/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/bbcode/_sample/sample.config.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/bbcode/_sample/sample.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/bbcode/fckplugin.js -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/bbcode/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/dragresizetable/fckplugin.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/dragresizetable/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/index.html @@ -529,7 +417,7 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/simplecommands/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/tablecommands/fckplugin.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/plugins/tablecommands/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/_fckviewstrips.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor_registry.php %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/default/fck_dialog.css %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/default/fck_dialog_ie6.js %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/default/fck_editor.css @@ -546,6 +434,7 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/default/images/toolbar.expand.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/default/images/toolbar.separator.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/default/images/toolbar.start.gif +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/_fckviewstrips.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/index.html %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/office2003/fck_dialog.css %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/office2003/fck_dialog_ie6.js @@ -585,87 +474,209 @@ %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/silver/images/toolbar.separator.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/silver/images/toolbar.start.gif %%WWWDIR%%/htdocs/editors/FCKeditor/editor/skins/silver/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/ciframe.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/tmpFrameset.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/w.html -%%WWWDIR%%/htdocs/editors/FCKeditor/editor_registry.php -%%WWWDIR%%/htdocs/editors/FCKeditor/fckconfig.js -%%WWWDIR%%/htdocs/editors/FCKeditor/fckeditor.js -%%WWWDIR%%/htdocs/editors/FCKeditor/fckeditor.php -%%WWWDIR%%/htdocs/editors/FCKeditor/fckpackager.xml -%%WWWDIR%%/htdocs/editors/FCKeditor/fckstyles.xml -%%WWWDIR%%/htdocs/editors/FCKeditor/fcktemplates.xml -%%WWWDIR%%/htdocs/editors/FCKeditor/fckutils.cfm -%%WWWDIR%%/htdocs/editors/FCKeditor/formfckeditor.php -%%WWWDIR%%/htdocs/editors/FCKeditor/htaccess.txt -%%WWWDIR%%/htdocs/editors/FCKeditor/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/language/english.php -%%WWWDIR%%/htdocs/editors/FCKeditor/language/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/license.txt -%%WWWDIR%%/htdocs/editors/FCKeditor/module/fckeditor.config.js -%%WWWDIR%%/htdocs/editors/FCKeditor/module/fckeditor.connector.php -%%WWWDIR%%/htdocs/editors/FCKeditor/module/fckeditor.upload.php -%%WWWDIR%%/htdocs/editors/FCKeditor/module/index.html -%%WWWDIR%%/htdocs/editors/FCKeditor/xoops_version.php -%%WWWDIR%%/htdocs/editors/dhtmltextarea/dhtmltextarea.php -%%WWWDIR%%/htdocs/editors/dhtmltextarea/editor_registry.php -%%WWWDIR%%/htdocs/editors/dhtmltextarea/index.html -%%WWWDIR%%/htdocs/editors/dhtmltextarea/language/english.php -%%WWWDIR%%/htdocs/editors/dhtmltextarea/language/index.html -%%WWWDIR%%/htdocs/editors/index.html -%%WWWDIR%%/htdocs/editors/tinymce/changelog.txt -%%WWWDIR%%/htdocs/editors/tinymce/editor_registry.php -%%WWWDIR%%/htdocs/editors/tinymce/formtinymce.php -%%WWWDIR%%/htdocs/editors/tinymce/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/langs/en.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/langs/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/license.txt -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/css/advhr.css -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/css/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/js/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/js/rule.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/langs/en_dlg.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/langs/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/rule.htm -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/css/advimage.css -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/css/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/image.htm -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/img/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/img/sample.gif -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/js/image.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/js/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/langs/en_dlg.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/langs/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/css/advlink.css -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/css/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/js/advlink.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/js/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/langs/en_dlg.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/langs/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/link.htm -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlist/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autolink/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autoresize/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autosave/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autosave/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autosave/langs/en.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/bbcode/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/bbcode/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/compat2x/editor_plugin.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/compat2x/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/contextmenu/editor_plugin.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckcontextmenu.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdataprocessor.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdocumentfragment_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdocumentfragment_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrange_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrange_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrangeiterator.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckdomrange.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckeditingarea.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckelementpath.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckenterkey.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckevents.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckhtmliterator.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckicon.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckiecleanup.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckimagepreloader.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckkeystrokehandler.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckmenublock.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckmenublockpanel.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckmenuitem.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckpanel.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckplugin.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckspecialcombo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyledef_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyledef_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyledef.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstyle.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckstylesloader.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbreak_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbutton.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarbuttonui.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarfontscombo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbar.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarpanelbutton.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarspecialcombo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fcktoolbarstylecombo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckw3crange.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckxml_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckxml_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/fckxml.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/classes/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckblockquotecommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckcorestylecommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckfitwindow.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckindentcommands.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckjustifycommands.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcklistcommands.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcknamedcommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fck_othercommands.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckpastewordcommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckremoveformatcommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckshowblocks.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fckstylecommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcktablecommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/fcktextcolorcommand.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/commandclasses/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckconstants.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckeditorapi.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckjscoreextensions.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/fckscriptloader.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckbrowserinfo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckcodeformatter.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckcommands.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckconfig.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck_contextmenu.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdebug_empty.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdebug.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdialog_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdialog_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdialog.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdocumentprocessor.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckdomtools.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fck.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcklanguagemanager.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcklisthandler.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcklistslib.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckplugins.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckregexlib.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckscayt.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckselection_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckselection_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckselection.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckstyles.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktablehandler_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktablehandler_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktablehandler.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktoolbaritems.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktoolbarset.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktools_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktools_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fcktools.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckundo_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckundo_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckundo.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckurlparams.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtmlentities.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtml_gecko.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtml_ie.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/fckxhtml.js +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/_source/internals/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/ciframe.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/tmpFrameset.html +%%WWWDIR%%/htdocs/editors/FCKeditor/editor/wsc/w.html +%%WWWDIR%%/htdocs/editors/FCKeditor/fckconfig.js +%%WWWDIR%%/htdocs/editors/FCKeditor/fckeditor.js +%%WWWDIR%%/htdocs/editors/FCKeditor/fckeditor.php +%%WWWDIR%%/htdocs/editors/FCKeditor/fckpackager.xml +%%WWWDIR%%/htdocs/editors/FCKeditor/fckstyles.xml +%%WWWDIR%%/htdocs/editors/FCKeditor/fcktemplates.xml +%%WWWDIR%%/htdocs/editors/FCKeditor/fckutils.cfm +%%WWWDIR%%/htdocs/editors/FCKeditor/formfckeditor.php +%%WWWDIR%%/htdocs/editors/FCKeditor/htaccess.txt +%%WWWDIR%%/htdocs/editors/FCKeditor/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/language/english.php +%%WWWDIR%%/htdocs/editors/FCKeditor/language/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/license.txt +%%WWWDIR%%/htdocs/editors/FCKeditor/module/fckeditor.config.js +%%WWWDIR%%/htdocs/editors/FCKeditor/module/fckeditor.connector.php +%%WWWDIR%%/htdocs/editors/FCKeditor/module/fckeditor.upload.php +%%WWWDIR%%/htdocs/editors/FCKeditor/module/index.html +%%WWWDIR%%/htdocs/editors/FCKeditor/_upgrade.html +%%WWWDIR%%/htdocs/editors/FCKeditor/_whatsnew_history.html +%%WWWDIR%%/htdocs/editors/FCKeditor/_whatsnew.html +%%WWWDIR%%/htdocs/editors/FCKeditor/xoops_version.php +%%WWWDIR%%/htdocs/editors/dhtmltextarea/dhtmltextarea.php +%%WWWDIR%%/htdocs/editors/dhtmltextarea/editor_registry.php +%%WWWDIR%%/htdocs/editors/dhtmltextarea/index.html +%%WWWDIR%%/htdocs/editors/dhtmltextarea/language/english.php +%%WWWDIR%%/htdocs/editors/dhtmltextarea/language/index.html +%%WWWDIR%%/htdocs/editors/index.html +%%WWWDIR%%/htdocs/editors/tinymce/changelog.txt +%%WWWDIR%%/htdocs/editors/tinymce/editor_registry.php +%%WWWDIR%%/htdocs/editors/tinymce/formtinymce.php +%%WWWDIR%%/htdocs/editors/tinymce/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/langs/en.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/langs/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/license.txt +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/css/advhr.css +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/css/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/js/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/js/rule.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/langs/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advhr/rule.htm +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/css/advimage.css +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/css/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/image.htm +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/img/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/img/sample.gif +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/js/image.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/js/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advimage/langs/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/css/advlink.css +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/css/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/js/advlink.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/js/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/langs/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlink/link.htm +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlist/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/advlist/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autolink/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autolink/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autoresize/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autoresize/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autosave/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autosave/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autosave/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/autosave/langs/en.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/bbcode/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/bbcode/editor_plugin_src.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/bbcode/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/compat2x/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/compat2x/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/contextmenu/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/contextmenu/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/contextmenu/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/directionality/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/directionality/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/directionality/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/emotions.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/img/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/img/smiley-cool.gif @@ -689,19 +700,23 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/langs/en_dlg.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/emotions/langs/index.html +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example_dependency/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example_dependency/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/dialog.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/img/example.gif %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/img/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/js/dialog.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/js/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/example/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/css/fullpage.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/fullpage.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/js/fullpage.js @@ -709,6 +724,7 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/langs/en_dlg.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullpage/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullscreen/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullscreen/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullscreen/fullscreen.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/fullscreen/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/changelog.txt @@ -718,14 +734,16 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/js/icmsmlcontent.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/js/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/mlcontent.php %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/icmsmlcontent/readme.txt %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/iespell/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/iespell/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/iespell/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/inlinepopups/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/inlinepopups/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/inlinepopups/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/inlinepopups/skins/clearlooks2/img/alert.gif %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/inlinepopups/skins/clearlooks2/img/button.gif @@ -740,15 +758,20 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/inlinepopups/skins/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/inlinepopups/template.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/insertdatetime/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/insertdatetime/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/insertdatetime/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/layer/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/layer/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/layer/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/legacyoutput/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/legacyoutput/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/lists/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/lists/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/css/content.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/css/media.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/img/flash.gif %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/img/flv_player.swf %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/img/index.html @@ -766,12 +789,15 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/media.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/media/moxieplayer.swf %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/nonbreaking/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/nonbreaking/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/nonbreaking/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/noneditable/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/noneditable/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/noneditable/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/pagebreak/css/content.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/pagebreak/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/pagebreak/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/pagebreak/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/pagebreak/img/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/pagebreak/img/pagebreak.gif %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/pagebreak/img/trans.gif @@ -781,6 +807,7 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/css/pasteword.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/js/pastetext.js @@ -790,21 +817,25 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/pastetext.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/paste/pasteword.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/preview/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/preview/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/preview/example.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/preview/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/preview/jscripts/embed.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/preview/jscripts/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/preview/preview.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/print/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/print/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/print/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/safari/blank.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/safari/editor_plugin.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/safari/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/save/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/save/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/save/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/searchreplace/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/searchreplace/css/searchreplace.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/searchreplace/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/searchreplace/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/searchreplace/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/searchreplace/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/searchreplace/js/searchreplace.js @@ -814,25 +845,30 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/spellchecker/css/content.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/spellchecker/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/spellchecker/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/spellchecker/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/spellchecker/img/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/spellchecker/img/wline.gif %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/spellchecker/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/css/props.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/js/props.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/langs/en_dlg.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/props.htm +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/style/readme.txt %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/tabfocus/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/tabfocus/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/cell.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/css/cell.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/css/row.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/css/table.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/js/cell.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/table/js/index.html @@ -848,15 +884,21 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/css/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/css/template.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/js/template.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/langs/en_dlg.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/template/template.htm +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/visualblocks/css/visualblocks.css +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/visualblocks/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/visualblocks/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/visualchars/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/visualchars/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/visualchars/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/wordcount/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/wordcount/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/abbr.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/acronym.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/attributes.htm @@ -867,6 +909,7 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/css/xhtmlxtras.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/del.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/editor_plugin.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/editor_plugin_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/ins.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xhtmlxtras/js/abbr.js @@ -886,8 +929,8 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/js/xoopsemotions.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/readme.txt %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsemotions/xoopsemotions.php @@ -902,8 +945,8 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/js/xoopsimagebrowser.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/js/xoopsimagemanager.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/xoopsimagebrowser.php %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsimagemanager/xoopsimagemanager.php @@ -919,8 +962,8 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/js/xoopscode.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/js/xoopsquote.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/readme.txt %%WWWDIR%%/htdocs/editors/tinymce/jscripts/plugins/xoopsquotecode/xoopscode.htm @@ -930,6 +973,7 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/charmap.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/color_picker.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/editor_template.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/editor_template_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/image.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/img/colorpicker.jpg %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/img/flash.gif @@ -952,8 +996,8 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/js/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/js/link.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/js/source_editor.js -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/langs/en_dlg.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/langs/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/link.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/shortcuts.htm @@ -974,17 +1018,18 @@ %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/content.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/dialog.css -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/img/button_bg.png %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/img/button_bg_black.png +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/img/button_bg.png %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/img/button_bg_silver.png %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/img/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/index.html -%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/ui.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/ui_black.css +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/ui.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/skins/o2k7/ui_silver.css %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/advanced/source_editor.htm %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/index.html %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/simple/editor_template.js +%%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/simple/editor_template_src.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/simple/img/icons.gif %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/simple/langs/en.js %%WWWDIR%%/htdocs/editors/tinymce/jscripts/themes/simple/skins/default/content.css @@ -1022,13 +1067,13 @@ %%WWWDIR%%/htdocs/images/aligncenter.gif %%WWWDIR%%/htdocs/images/alignleft.gif %%WWWDIR%%/htdocs/images/alignright.gif -%%WWWDIR%%/htdocs/images/arrow.gif %%WWWDIR%%/htdocs/images/arrow1.gif +%%WWWDIR%%/htdocs/images/arrow.gif %%WWWDIR%%/htdocs/images/await.gif %%WWWDIR%%/htdocs/images/banners/banner.swf -%%WWWDIR%%/htdocs/images/banners/impresscms_banner.gif %%WWWDIR%%/htdocs/images/banners/impresscms_banner_2.gif %%WWWDIR%%/htdocs/images/banners/impresscms_banner_3.gif +%%WWWDIR%%/htdocs/images/banners/impresscms_banner.gif %%WWWDIR%%/htdocs/images/banners/index.html %%WWWDIR%%/htdocs/images/bg.gif %%WWWDIR%%/htdocs/images/blank.gif @@ -1052,6 +1097,7 @@ %%WWWDIR%%/htdocs/images/flags/index.html %%WWWDIR%%/htdocs/images/flags/italian.gif %%WWWDIR%%/htdocs/images/flags/ja_utf8.gif +%%WWWDIR%%/htdocs/images/flags/korean.gif %%WWWDIR%%/htdocs/images/flags/nederlands.gif %%WWWDIR%%/htdocs/images/flags/noflag.gif %%WWWDIR%%/htdocs/images/flags/persian.gif @@ -1069,21 +1115,20 @@ %%WWWDIR%%/htdocs/images/hide.gif %%WWWDIR%%/htdocs/images/icon_big.png %%WWWDIR%%/htdocs/images/icon_options.png -%%WWWDIR%%/htdocs/images/icon_small.png %%WWWDIR%%/htdocs/images/icons/aim.gif -%%WWWDIR%%/htdocs/images/icons/delete.gif %%WWWDIR%%/htdocs/images/icons/delete_block.gif -%%WWWDIR%%/htdocs/images/icons/edit.gif +%%WWWDIR%%/htdocs/images/icons/delete.gif %%WWWDIR%%/htdocs/images/icons/edit_block.gif -%%WWWDIR%%/htdocs/images/icons/em_small.gif +%%WWWDIR%%/htdocs/images/icons/edit.gif %%WWWDIR%%/htdocs/images/icons/email.gif +%%WWWDIR%%/htdocs/images/icons/em_small.gif %%WWWDIR%%/htdocs/images/icons/english/aim.gif -%%WWWDIR%%/htdocs/images/icons/english/delete.gif %%WWWDIR%%/htdocs/images/icons/english/delete_block.gif -%%WWWDIR%%/htdocs/images/icons/english/edit.gif +%%WWWDIR%%/htdocs/images/icons/english/delete.gif %%WWWDIR%%/htdocs/images/icons/english/edit_block.gif -%%WWWDIR%%/htdocs/images/icons/english/em_small.gif +%%WWWDIR%%/htdocs/images/icons/english/edit.gif %%WWWDIR%%/htdocs/images/icons/english/email.gif +%%WWWDIR%%/htdocs/images/icons/english/em_small.gif %%WWWDIR%%/htdocs/images/icons/english/icq_add.gif %%WWWDIR%%/htdocs/images/icons/english/index.html %%WWWDIR%%/htdocs/images/icons/english/ip.gif @@ -1091,8 +1136,8 @@ %%WWWDIR%%/htdocs/images/icons/english/no_posticon.gif %%WWWDIR%%/htdocs/images/icons/english/pm.gif %%WWWDIR%%/htdocs/images/icons/english/pm_small.gif -%%WWWDIR%%/htdocs/images/icons/english/posticon.gif %%WWWDIR%%/htdocs/images/icons/english/posticon2.gif +%%WWWDIR%%/htdocs/images/icons/english/posticon.gif %%WWWDIR%%/htdocs/images/icons/english/profile.gif %%WWWDIR%%/htdocs/images/icons/english/reply.gif %%WWWDIR%%/htdocs/images/icons/english/www.gif *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:04:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DF683AB for ; Sun, 10 Aug 2014 13:04:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 2B2CE217C for ; Sun, 10 Aug 2014 13:04:40 +0000 (UTC) Received: from wen (uid 1209) (envelope-from wen@FreeBSD.org) id 278a by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:04:35 +0000 From: Wen Heping Date: Sun, 10 Aug 2014 13:04:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364535 - in head: benchmarks/iozone benchmarks/iozone21 mail/fdm mail/libpst mail/p5-Email-Stuff mail/p5-IMAP-Admin mail/p5-MIME-Lite-HTML mail/p5-Mail-Alias mail/p5-Mail-DeliveryStatu... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e76de4.278a.407decc1@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:04:40 -0000 Author: wen Date: Sun Aug 10 13:04:34 2014 New Revision: 364535 URL: http://svnweb.freebsd.org/changeset/ports/364535 QAT: https://qat.redports.org/buildarchive/r364535/ Log: - Reset maintainer to ports@ Submitted by: chifeng@gmail.com(previous maintainer, via email) Modified: head/benchmarks/iozone/Makefile head/benchmarks/iozone21/Makefile head/mail/fdm/Makefile head/mail/libpst/Makefile head/mail/p5-Email-Stuff/Makefile head/mail/p5-IMAP-Admin/Makefile head/mail/p5-MIME-Lite-HTML/Makefile head/mail/p5-Mail-Alias/Makefile head/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile head/mail/p5-Mail-Folder/Makefile head/mail/p5-Mail-MailStats/Makefile head/mail/p5-Mail-SRS/Makefile head/mail/p5-Mail-Spool/Makefile head/mail/p5-Mail-Verify/Makefile head/mail/p5-Net-IMAP-Server/Makefile head/mail/policyd2/Makefile head/mail/popcheck/Makefile head/mail/py-apolicy/Makefile head/mail/py-ppolicy/Makefile head/mail/rss2email/Makefile head/net-mgmt/pftabled/Makefile head/sysutils/moosefs-chunkserver/Makefile head/sysutils/moosefs-client/Makefile head/sysutils/moosefs-master/Makefile Modified: head/benchmarks/iozone/Makefile ============================================================================== --- head/benchmarks/iozone/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/benchmarks/iozone/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ MASTER_SITES= http://www.iozone.org/src/ DISTNAME= ${PORTNAME}${PORTVERSION:S/./_/} EXTRACT_SUFX= .tar -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Performance Test of Sequential File I/O CONFLICTS= iozone-2.* iozone21-* Modified: head/benchmarks/iozone21/Makefile ============================================================================== --- head/benchmarks/iozone21/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/benchmarks/iozone21/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ MASTER_SITES= ftp://ftp.cs.uni-sb.de/pub EXTRACT_SUFX= .shar.gz PKGNAMESUFFIX= 21 -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Performance Test of Sequential File I/O (older version) CONFLICTS= iozone-3.* Modified: head/mail/fdm/Makefile ============================================================================== --- head/mail/fdm/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/fdm/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -6,7 +6,7 @@ PORTVERSION= 1.7 CATEGORIES= mail MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Fetches and delivers mail LICENSE= ISCL Modified: head/mail/libpst/Makefile ============================================================================== --- head/mail/libpst/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/libpst/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ CATEGORIES= mail converters MASTER_SITES= http://www.five-ten-sg.com/libpst/packages/ \ http://fossies.org/unix/privat/ -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Tool for converting Outlook .pst files to mbox and other formats LICENSE= GPLv2 Modified: head/mail/p5-Email-Stuff/Makefile ============================================================================== --- head/mail/p5-Email-Stuff/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Email-Stuff/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= More casual approach to creating and sending Email BUILD_DEPENDS= p5-prefork>=1.01:${PORTSDIR}/devel/p5-prefork \ Modified: head/mail/p5-IMAP-Admin/Makefile ============================================================================== --- head/mail/p5-IMAP-Admin/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-IMAP-Admin/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Perl module for basic IMAP server administration USES= perl5 Modified: head/mail/p5-MIME-Lite-HTML/Makefile ============================================================================== --- head/mail/p5-MIME-Lite-HTML/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-MIME-Lite-HTML/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Provide routine to transform a HTML page into a MIME mail BUILD_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ Modified: head/mail/p5-Mail-Alias/Makefile ============================================================================== --- head/mail/p5-Mail-Alias/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Mail-Alias/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Mail::Alias USES= perl5 Modified: head/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile ============================================================================== --- head/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Mail-DeliveryStatus-BounceParser/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN PKGNAMEPREFIX= p5- DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E} -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Perl extension to analyze bounce messages RUN_DEPENDS= p5-MIME-Tools>=5.418:${PORTSDIR}/mail/p5-MIME-Tools \ Modified: head/mail/p5-Mail-Folder/Makefile ============================================================================== --- head/mail/p5-Mail-Folder/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Mail-Folder/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN PKGNAMEPREFIX= p5- DISTNAME= MailFolder-${PORTVERSION} -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Perl module for a folder-independant interface to email folders BUILD_DEPENDS= p5-Mail-Tools>=0:${PORTSDIR}/mail/p5-Mail-Tools \ Modified: head/mail/p5-Mail-MailStats/Makefile ============================================================================== --- head/mail/p5-Mail-MailStats/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Mail-MailStats/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Perl module to detect newer messages in procmail-generated mailboxes BUILD_DEPENDS= p5-AppConfig>=0:${PORTSDIR}/devel/p5-AppConfig Modified: head/mail/p5-Mail-SRS/Makefile ============================================================================== --- head/mail/p5-Mail-SRS/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Mail-SRS/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Sender Rewriting Scheme BUILD_DEPENDS= p5-Digest-HMAC>=0:${PORTSDIR}/security/p5-Digest-HMAC \ Modified: head/mail/p5-Mail-Spool/Makefile ============================================================================== --- head/mail/p5-Mail-Spool/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Mail-Spool/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Pure Perl implementation of mail spooling, unspooling, and sending BUILD_DEPENDS= p5-File-NFSLock>=0:${PORTSDIR}/devel/p5-File-NFSLock \ Modified: head/mail/p5-Mail-Verify/Makefile ============================================================================== --- head/mail/p5-Mail-Verify/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Mail-Verify/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Perl module to verify email addresses BUILD_DEPENDS= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS Modified: head/mail/p5-Net-IMAP-Server/Makefile ============================================================================== --- head/mail/p5-Net-IMAP-Server/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/p5-Net-IMAP-Server/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Single-threaded multiplexing IMAP server implementation BUILD_DEPENDS= p5-Net-Server-Coro>=0.6:${PORTSDIR}/net/p5-Net-Server-Coro \ Modified: head/mail/policyd2/Makefile ============================================================================== --- head/mail/policyd2/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/policyd2/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ CATEGORIES= mail MASTER_SITES= http://devlabs.linuxassist.net/attachments/download/${DOWNLOAD_FOLDER}/ DISTNAME= cluebringer-${PORTVERSION} -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Policyd v2 is a multi-platform policy server for popular MTAs RUN_DEPENDS= p5-Net-Server>=0:${PORTSDIR}/net/p5-Net-Server \ Modified: head/mail/popcheck/Makefile ============================================================================== --- head/mail/popcheck/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/popcheck/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ MASTER_SITES= http://www.ludd.luth.se/~s http://T32.TecNik93.com/FreeBSD/others_ports/${PORTNAME}/sources/ DISTNAME= popcheck -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Preview and delete messages in POP3 mailbox ALL_TARGET= popcheck Modified: head/mail/py-apolicy/Makefile ============================================================================== --- head/mail/py-apolicy/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/py-apolicy/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -10,7 +10,7 @@ MASTER_SITES= http://download.gna.org/ap PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER?= chifeng@gmail.com +MAINTAINER?= ports@FreeBSD.org COMMENT= ACL system for Postfix, as a policy daemon RUN_DEPENDS= ${PYTHON_SITELIBDIR}/spf.py:${PORTSDIR}/mail/py-spf \ Modified: head/mail/py-ppolicy/Makefile ============================================================================== --- head/mail/py-ppolicy/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/py-ppolicy/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -8,7 +8,7 @@ CATEGORIES= mail python MASTER_SITES= http://kmlinux.fjfi.cvut.cz/~vokac/activities/ppolicy/download/%SUBDIR%/ \ http://www.chifeng.name/dist/ppolicy/%SUBDIR%/ -MAINTAINER?= chifeng@gmail.com +MAINTAINER?= ports@FreeBSD.org COMMENT= PPolicy is tool for extending Postfix checking capabilities RUN_DEPENDS= ${PYTHON_SITELIBDIR}/dns/__init__.py:${PORTSDIR}/dns/py-dnspython Modified: head/mail/rss2email/Makefile ============================================================================== --- head/mail/rss2email/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/mail/rss2email/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -6,7 +6,7 @@ PORTVERSION= 2.70 CATEGORIES= mail python MASTER_SITES= http://www.allthingsrss.com/rss2email/ -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Read newsfeeds in your email client RUN_DEPENDS= py*-feedparser>=0:${PORTSDIR}/textproc/py-feedparser \ Modified: head/net-mgmt/pftabled/Makefile ============================================================================== --- head/net-mgmt/pftabled/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/net-mgmt/pftabled/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://www.wolfermann.org/ -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= The pftabled is a tool to manage your pf tables remotely USE_RC_SUBR= pftabled Modified: head/sysutils/moosefs-chunkserver/Makefile ============================================================================== --- head/sysutils/moosefs-chunkserver/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/sysutils/moosefs-chunkserver/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.moosefs.org/tl_ PKGNAMESUFFIX= -chunkserver DISTNAME= mfs-${DISTVERSION} -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Storing file data and synchronizing it among themselves LICENSE= GPLv3 Modified: head/sysutils/moosefs-client/Makefile ============================================================================== --- head/sysutils/moosefs-client/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/sysutils/moosefs-client/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.moosefs.org/tl_ PKGNAMESUFFIX= -client DISTNAME= mfs-${DISTVERSION} -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Moosefs client tools LICENSE= GPLv3 Modified: head/sysutils/moosefs-master/Makefile ============================================================================== --- head/sysutils/moosefs-master/Makefile Sun Aug 10 12:44:56 2014 (r364534) +++ head/sysutils/moosefs-master/Makefile Sun Aug 10 13:04:34 2014 (r364535) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.moosefs.org/tl PKGNAMESUFFIX= -master DISTNAME= mfs-${DISTVERSION} -MAINTAINER= chifeng@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Managing the whole filesystem and storing metadata LICENSE= GPLv3 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:09:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3C52590 for ; Sun, 10 Aug 2014 13:09:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 C402021B0 for ; Sun, 10 Aug 2014 13:09:33 +0000 (UTC) Received: from bland (uid 985) (envelope-from bland@FreeBSD.org) id 2817 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:09:33 +0000 From: Alexander Nedotsukov Date: Sun, 10 Aug 2014 13:09:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364536 - in head/x11/nvidia-settings: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e76f0d.2817.1a31a75e@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:09:34 -0000 Author: bland Date: Sun Aug 10 13:09:32 2014 New Revision: 364536 URL: http://svnweb.freebsd.org/changeset/ports/364536 QAT: https://qat.redports.org/buildarchive/r364536/ Log: Update to 340.24 PR: 192543 Added: head/x11/nvidia-settings/files/patch-utils.mk (contents, props changed) Deleted: head/x11/nvidia-settings/files/patch-src__Makefile head/x11/nvidia-settings/files/patch-src__gtk+-2.x__ctkdisplayconfig-utils.c Modified: head/x11/nvidia-settings/Makefile head/x11/nvidia-settings/distinfo head/x11/nvidia-settings/files/patch-doc__Makefile Modified: head/x11/nvidia-settings/Makefile ============================================================================== --- head/x11/nvidia-settings/Makefile Sun Aug 10 13:04:34 2014 (r364535) +++ head/x11/nvidia-settings/Makefile Sun Aug 10 13:09:32 2014 (r364536) @@ -2,16 +2,19 @@ # $FreeBSD$ PORTNAME= nvidia-settings -PORTVERSION= 310.14 +PORTVERSION= 340.24 CATEGORIES= x11 -MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-settings/ \ - ftp://download1.nvidia.com/XFree86/nvidia-settings/ +MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-settings \ + ftp://download1.nvidia.com/XFree86/nvidia-settings MAINTAINER= bland@FreeBSD.org COMMENT= Display Control Panel for X NVidia driver LICENSE= GPLv2 +LIB_DEPENDS= libjansson.so:${PORTSDIR}/devel/jansson \ + libvdpau.so:${PORTSDIR}/multimedia/libvdpau + USE_GNOME= gtk20 USES= gmake pkgconfig tar:bzip2 USE_GL= gl @@ -20,7 +23,8 @@ USE_XORG= xv xext PLIST_FILES= bin/nvidia-settings \ man/man1/nvidia-settings.1.gz -MAKE_ENV= NV_VERBOSE= \ +MAKE_ENV= NV_USE_BUNDLED_LIBJANSSON=0 \ + NV_VERBOSE= \ STRIP_CMD=${TRUE} \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ INSTALL_MAN="${INSTALL_MAN}" \ Modified: head/x11/nvidia-settings/distinfo ============================================================================== --- head/x11/nvidia-settings/distinfo Sun Aug 10 13:04:34 2014 (r364535) +++ head/x11/nvidia-settings/distinfo Sun Aug 10 13:09:32 2014 (r364536) @@ -1,2 +1,2 @@ -SHA256 (nvidia-settings-310.14.tar.bz2) = 3859513192e4ae921bdb71818ca329e6b9d5e11f1b72aa7f48e4fc7fd16d7626 -SIZE (nvidia-settings-310.14.tar.bz2) = 1477588 +SHA256 (nvidia-settings-340.24.tar.bz2) = 255697cb8558c7ceba0838ecaf1168747ea4718144039c534ff4a45afcf42b88 +SIZE (nvidia-settings-340.24.tar.bz2) = 1549714 Modified: head/x11/nvidia-settings/files/patch-doc__Makefile ============================================================================== --- head/x11/nvidia-settings/files/patch-doc__Makefile Sun Aug 10 13:04:34 2014 (r364535) +++ head/x11/nvidia-settings/files/patch-doc__Makefile Sun Aug 10 13:09:32 2014 (r364536) @@ -1,10 +1,10 @@ ---- doc/Makefile.orig 2012-10-13 19:37:40.000000000 +0900 -+++ doc/Makefile 2012-10-13 19:38:21.000000000 +0900 +--- doc/Makefile.orig 2014-08-10 20:37:40.000000000 -0700 ++++ doc/Makefile 2014-08-10 20:38:21.000000000 -0700 @@ -74,7 +74,7 @@ MANPAGE_install: $(MANPAGE) $(MKDIR) $(MANDIR) -- $(INSTALL) $(INSTALL_BIN_ARGS) $< $(MANDIR)/$(notdir $<) +- $(INSTALL) $(INSTALL_DOC_ARGS) $< $(MANDIR)/$(notdir $<) + $(INSTALL_MAN) $< $(MANDIR)/$(notdir $<) clean clobber: Added: head/x11/nvidia-settings/files/patch-utils.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/nvidia-settings/files/patch-utils.mk Sun Aug 10 13:09:32 2014 (r364536) @@ -0,0 +1,10 @@ +--- utils.mk.orig 2014-08-09 21:23:23.872132403 -0700 ++++ utils.mk 2014-08-09 21:25:03.537126421 -0700 +@@ -34,6 +34,7 @@ + CFLAGS += -fno-strict-aliasing -fno-omit-frame-pointer -Wformat=2 + CC_ONLY_CFLAGS ?= + LDFLAGS ?= ++LDFLAGS += -Wl,--as-needed + BIN_LDFLAGS ?= + + HOST_CC ?= $(CC) From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:25:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84D617E7 for ; Sun, 10 Aug 2014 13:25:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 5C2A72410 for ; Sun, 10 Aug 2014 13:25:20 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2ed1 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:25:19 +0000 From: John Marino Date: Sun, 10 Aug 2014 13:25:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364537 - in head/www/ephemera: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e772c0.2ed1.4b69f16a@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:25:20 -0000 Author: marino Date: Sun Aug 10 13:25:19 2014 New Revision: 364537 URL: http://svnweb.freebsd.org/changeset/ports/364537 QAT: https://qat.redports.org/buildarchive/r364537/ Log: www/ephemera: Upgrade version 2.9 => 4.0 Also fix incorrect use of @sample keyword PR: 192532 Submitted by: maintainer (James Bailie) Deleted: head/www/ephemera/files/ Modified: head/www/ephemera/Makefile head/www/ephemera/distinfo head/www/ephemera/pkg-descr head/www/ephemera/pkg-plist Modified: head/www/ephemera/Makefile ============================================================================== --- head/www/ephemera/Makefile Sun Aug 10 13:09:32 2014 (r364536) +++ head/www/ephemera/Makefile Sun Aug 10 13:25:19 2014 (r364537) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ephemera -PORTVERSION= 2.9 -PORTREVISION= 1 +PORTVERSION= 4.0 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ @@ -12,4 +11,6 @@ COMMENT= Blog server RUN_DEPENDS= munger:${PORTSDIR}/lang/munger +USE_SQLITE= 3 + .include Modified: head/www/ephemera/distinfo ============================================================================== --- head/www/ephemera/distinfo Sun Aug 10 13:09:32 2014 (r364536) +++ head/www/ephemera/distinfo Sun Aug 10 13:25:19 2014 (r364537) @@ -1,2 +1,2 @@ -SHA256 (ephemera-2.9.tar.gz) = 6fc71c9628f66dcd34a3c46f4d96246d1862b62c5f73289a0139d6b1c81b6223 -SIZE (ephemera-2.9.tar.gz) = 27160 +SHA256 (ephemera-4.0.tar.gz) = 628ccdb8e49f813670d91d1150a858a0c355c4d694ba907d2325614b3ae4f319 +SIZE (ephemera-4.0.tar.gz) = 20298 Modified: head/www/ephemera/pkg-descr ============================================================================== --- head/www/ephemera/pkg-descr Sun Aug 10 13:09:32 2014 (r364536) +++ head/www/ephemera/pkg-descr Sun Aug 10 13:25:19 2014 (r364537) @@ -1,5 +1,5 @@ Ephemera is an SCGI application server dedicated to serving-up a single -blog, implemented in 1000 lines of Munger(1). Ephemera creates the -simplest blog that is still useful, in its author's estimation. +blog. Ephemera creates the simplest blog that is still useful in its +author's estimation. WWW: http://www.mammothcheese.ca/ Modified: head/www/ephemera/pkg-plist ============================================================================== --- head/www/ephemera/pkg-plist Sun Aug 10 13:09:32 2014 (r364536) +++ head/www/ephemera/pkg-plist Sun Aug 10 13:25:19 2014 (r364537) @@ -1,10 +1,10 @@ bin/ephemera -bin/ephemera-add -bin/ephemera-delete -bin/ephemera-extract -bin/ephemera-replace -bin/ephemera-generate -etc/ephemera.css.sample +bin/add.munger +bin/delete.munger +bin/extract.munger +bin/replace.munger +etc/ephemera.css +etc/ephemera.config etc/rc.d/ephemera -@sample etc/ephemera.config.sample man/man8/ephemera.8.gz +@unexec if cmp -s %D/etc/ephemera.config %D/etc/ephemera.config.dist; then rm -f %D/etc/ephemera.config; fi From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:41:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E94ABB7B for ; Sun, 10 Aug 2014 13:41:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 C16292589 for ; Sun, 10 Aug 2014 13:41:19 +0000 (UTC) Received: from tijl (uid 1230) (envelope-from tijl@FreeBSD.org) id 2897 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:41:19 +0000 From: Tijl Coosemans Date: Sun, 10 Aug 2014 13:41:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364538 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7767f.2897.6c7d73d3@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:41:20 -0000 Author: tijl Date: Sun Aug 10 13:41:19 2014 New Revision: 364538 URL: http://svnweb.freebsd.org/changeset/ports/364538 QAT: https://qat.redports.org/buildarchive/r364538/ Log: Add support for USES=libtool:build. It adds a build dependency on devel/libtool and can be used when a port does not generate its own libtool script but relies on the system to provide one. Approved by: portmgr (antoine) Modified: head/Mk/Uses/libtool.mk Modified: head/Mk/Uses/libtool.mk ============================================================================== --- head/Mk/Uses/libtool.mk Sun Aug 10 13:25:19 2014 (r364537) +++ head/Mk/Uses/libtool.mk Sun Aug 10 13:41:19 2014 (r364538) @@ -10,13 +10,20 @@ # refer to .la libraries in this port. As soon as all # those dependent ports have some form of USES=libtool # keepla can be removed. +# build Add a build dependency on devel/libtool. This can +# be used when a port does not generate its own libtool +# script and relies on the system to provide one. # # MAINTAINER: autotools@FreeBSD.org .if !defined(_INCLUDE_USES_LIBTOOL_MK) _INCLUDE_USES_LIBTOOL_MK= yes _USES_POST+= libtool -libtool_ARGS?= +libtool_ARGS:= ${libtool_ARGS:C/,/ /} + +.if ${libtool_ARGS:Mbuild} +BUILD_DEPENDS+= libtool:${PORTSDIR}/devel/libtool +.endif .endif .if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_LIBTOOL_POST_MK) @@ -63,7 +70,7 @@ patch-libtool: .endif patch-lafiles: -.if ${libtool_ARGS} == keepla || ${libtool_ARGS} == oldver +.if ${libtool_ARGS:Mkeepla} || ${libtool_ARGS:Moldver} @${FIND} ${STAGEDIR} -type f -name '*.la' | \ ${XARGS} ${SED} -i '' -e "/dependency_libs=/s/=.*/=''/" .else From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:47:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D887FCCF for ; Sun, 10 Aug 2014 13:47:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 AF4F725B6 for ; Sun, 10 Aug 2014 13:47:01 +0000 (UTC) Received: from tijl (uid 1230) (envelope-from tijl@FreeBSD.org) id 28b1 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:47:01 +0000 From: Tijl Coosemans Date: Sun, 10 Aug 2014 13:47:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364539 - head/lang/oo2c X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e777d5.28b1.3b11232d@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:47:01 -0000 Author: tijl Date: Sun Aug 10 13:47:00 2014 New Revision: 364539 URL: http://svnweb.freebsd.org/changeset/ports/364539 QAT: https://qat.redports.org/buildarchive/r364539/ Log: Switch to USES=libtool:build. Also add a run dependency on libtool because the compiler can use libtool internally. Reported by: antoine Modified: head/lang/oo2c/Makefile head/lang/oo2c/pkg-plist Modified: head/lang/oo2c/Makefile ============================================================================== --- head/lang/oo2c/Makefile Sun Aug 10 13:41:19 2014 (r364538) +++ head/lang/oo2c/Makefile Sun Aug 10 13:47:00 2014 (r364539) @@ -3,7 +3,7 @@ PORTNAME= oo2c PORTVERSION= 2.1.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= SF/ooc/ooc2/${PORTVERSION} DISTNAME= ${PORTNAME}_${BITS}-${PORTVERSION} @@ -12,10 +12,11 @@ MAINTAINER= johans@FreeBSD.org COMMENT= Optimizing Oberon-2 compiler of University of Kaiserslautern, Germany BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt +RUN_DEPENDS= libtool:${PORTSDIR}/devel/libtool LIB_DEPENDS= libgc.so:${PORTSDIR}/devel/boehm-gc DOCSDIR= lib/${PORTNAME} -USES= gmake libtool tar:bzip2 +USES= gmake libtool:build tar:bzip2 GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_CSTD= gnu89 Modified: head/lang/oo2c/pkg-plist ============================================================================== --- head/lang/oo2c/pkg-plist Sun Aug 10 13:41:19 2014 (r364538) +++ head/lang/oo2c/pkg-plist Sun Aug 10 13:47:00 2014 (r364539) @@ -8,7 +8,6 @@ man/man1/oob.1.gz man/man1/ooef.1.gz man/man1/oowhereis.1.gz lib/liboo2c.a -lib/liboo2c.la lib/liboo2c.so lib/liboo2c.so.3 lib/oo2c/emacs/o2-default.el From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:47:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DAE51DDD for ; Sun, 10 Aug 2014 13:47:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B2E9625BF for ; Sun, 10 Aug 2014 13:47:37 +0000 (UTC) Received: from bland (uid 985) (envelope-from bland@FreeBSD.org) id 28cd by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:47:37 +0000 From: Alexander Nedotsukov Date: Sun, 10 Aug 2014 13:47:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364540 - head/x11/nvidia-settings X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e777f9.28cd.621911f7@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:47:37 -0000 Author: bland Date: Sun Aug 10 13:47:37 2014 New Revision: 364540 URL: http://svnweb.freebsd.org/changeset/ports/364540 QAT: https://qat.redports.org/buildarchive/r364540/ Log: Fixup distfile fetch broken by previous commit. Modified: head/x11/nvidia-settings/Makefile Modified: head/x11/nvidia-settings/Makefile ============================================================================== --- head/x11/nvidia-settings/Makefile Sun Aug 10 13:47:00 2014 (r364539) +++ head/x11/nvidia-settings/Makefile Sun Aug 10 13:47:37 2014 (r364540) @@ -4,8 +4,8 @@ PORTNAME= nvidia-settings PORTVERSION= 340.24 CATEGORIES= x11 -MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-settings \ - ftp://download1.nvidia.com/XFree86/nvidia-settings +MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-settings/ \ + ftp://download1.nvidia.com/XFree86/nvidia-settings/ MAINTAINER= bland@FreeBSD.org COMMENT= Display Control Panel for X NVidia driver From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:52:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40BE4F16 for ; Sun, 10 Aug 2014 13:52:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 2C6F6265C for ; Sun, 10 Aug 2014 13:52:53 +0000 (UTC) Received: from wg (uid 1317) (envelope-from wg@FreeBSD.org) id 2c2c by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:52:52 +0000 From: William Grzybowski Date: Sun, 10 Aug 2014 13:52:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364541 - head/math/dynare X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e77935.2c2c.35f3ddc6@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:52:53 -0000 Author: wg Date: Sun Aug 10 13:52:52 2014 New Revision: 364541 URL: http://svnweb.freebsd.org/changeset/ports/364541 QAT: https://qat.redports.org/buildarchive/r364541/ Log: math/dynare: update to 4.4.3 PR: 192407 Submitted by: maintainer Modified: head/math/dynare/Makefile head/math/dynare/distinfo head/math/dynare/pkg-plist Modified: head/math/dynare/Makefile ============================================================================== --- head/math/dynare/Makefile Sun Aug 10 13:47:37 2014 (r364540) +++ head/math/dynare/Makefile Sun Aug 10 13:52:52 2014 (r364541) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dynare -PORTVERSION= 4.4.2 -PORTREVISION= 2 +PORTVERSION= 4.4.3 CATEGORIES= math MASTER_SITES= http://www.dynare.org/release/source/ Modified: head/math/dynare/distinfo ============================================================================== --- head/math/dynare/distinfo Sun Aug 10 13:47:37 2014 (r364540) +++ head/math/dynare/distinfo Sun Aug 10 13:52:52 2014 (r364541) @@ -1,2 +1,2 @@ -SHA256 (dynare-4.4.2.tar.xz) = 843fa58433da1b998b8e81d51cc927906cc70a318176b1323e71a0b9c42c4bf2 -SIZE (dynare-4.4.2.tar.xz) = 14931568 +SHA256 (dynare-4.4.3.tar.xz) = d00f97f72bcad7486ec1d18640d44b607d91ff9f585c9b4e01d08b6a3deeae21 +SIZE (dynare-4.4.3.tar.xz) = 14982128 Modified: head/math/dynare/pkg-plist ============================================================================== --- head/math/dynare/pkg-plist Sun Aug 10 13:47:37 2014 (r364540) +++ head/math/dynare/pkg-plist Sun Aug 10 13:52:52 2014 (r364541) @@ -1,3 +1,1159 @@ bin/dynare++ -lib/matlab/dynare_m -@dirrm lib/matlab +info/dir +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0asfun.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0asgrad.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0freefun.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0freegrad.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0impsmp.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0lhfun.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0lhgh.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0lhgrad.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0onlysim.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/betapar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/bfgsi.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/binread.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/binwrite.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/calyrqm.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/cfore.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/chol2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/clgls.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/clmonq.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/csminit.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/csminitworksuntiil0205.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/csminwel.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/datactcon.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/dataext.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/datana.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/dataxy.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/demarcate.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/demarw.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/dlrpostr.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/eigsort.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/ellipse.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/empdfsort.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/errors.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fcstidcnd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fcstidcnd2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fidcnderr.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fidcndexa.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fidencond.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/find_betapar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/find_gampar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/find_invgampar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/find_normpar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0cfreefun_tv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0cfreegrad_tv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0freefun.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0freegrad.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0sfreefun.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0sfreefun2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0sfreegrad.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_a0sfreegrad2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_calyrqm.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_construct_cov.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_corr.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_dataext.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_dataext2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_datana.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_datana2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_dataxy.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_dataxy7982.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_dataxyoldver.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_demarw.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_dirichprior.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_dlrpostr.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_empdfsort.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_ergodp.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_fcstcnd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_fcstidcnd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_fcstidcnd2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_forecast.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_forecastfixe.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_forecastsim.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_foregraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_forerrgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_fprintmatrix.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_fprintvector.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gfmean.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gibbsglb.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gibbsrvar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gibbsrvar_setup.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gibbsrvaroldworks.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gradcd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gradcd2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_gyrfore.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_hesscd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_histpdfcnt.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_histwpdfg.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_histwpdfg2d.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_histwpdfg_bound.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_imc2errgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_imcerrgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_imcerrgraph_scl.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_imcgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_imcgraph_scl.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_impulse.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_irf_var1.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_kalfil_tv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_kalfil_tv2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_logsum.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_mimfgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_mseriesgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_msv_sw.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_mtpdf.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraph1.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraph1_ver2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraph1_ver2_all_labels.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraph2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraph2_ver2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraph2_ver2_all_labels.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraph2_ver2_all_labels_dates.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraphn_3g_shadedbands.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_multigraphn_ver2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_nmlzvar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_numstruct2numcell_nummatrix.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_ols.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_plotrecessionshades57_01.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_posteriorvariancedecomposition.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_printmatrix4tex.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_printmatrix4tex_ver2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_readrecessiondates57_01.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_reset_ini_seed.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rlrpostr.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rlrprior.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior_covres.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior_covres_dobs.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior_covres_dobs_tv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior_covres_dobs_tv2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior_covres_tv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_rnrprior_tv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_seriesgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_simul.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_tran_a2b.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_tran_b2a.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_tran_f2g.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_tran_g2f.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_uncondfcst_var1.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_varoots.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_vds.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fn_vds_abs.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fore_cal.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fore_gh.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fore_mqy.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/forecast.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/forecasterr.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/forefixe.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fshock.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/fsim.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gactual.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gaf.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gaferr1.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gampar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gensys.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gensys_z2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gensys_z2new.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gensysct.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gensysoldversion.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gfmean.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gfore.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gforerr1.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/ghistd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gibbsglb.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gibbsvar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gradcd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gshock.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gstate.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/gyrfore.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/hesscd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/history2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/histpdfcnt.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/histpdfg.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/histpdfg2d.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/histwpdfg.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/histwpdfg2d.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/imc2errgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/imcerrgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/imcgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/imfsim.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/imfvdscksim.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/impgraphs.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/impulseo.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/imrgraph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/invgamcdf.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/invgampar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/lcnmean.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/mformd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/mformd1.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/mnpdf.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/mtpdf.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/nmlzvar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/normpar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/nqzdiv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/numgrad.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/numgradcd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/numgradorig.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pdfforg.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/perr1graph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/perr2graph.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/phg233.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/phg234.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/phg235.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddf233.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddf234.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddf235.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddf236.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddg233.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddg234.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddg235.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddg236.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pmddwf23.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/probvalsec.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pwf233.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pwf234.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/pwf235.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/qplot2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/qzdiv.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/qzdivct.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/qzswitch.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/reset_ini_seed.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/rlrpostr.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/rlrprior.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/rnrprior.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/sbcontest.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/simtanzphi.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/smtplis.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/smtplis2.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/smtplis2seq.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/srestrictrwzalg.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/startd.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/startup.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/subtitle.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/suptitle.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/sye.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/syed.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/szasbvar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/szbvar.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/tran_a2b.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/tran_b2a.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/xydata.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/zimpulse.m +lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/zroot.m +lib/dynare/examples/NK_baseline.mod +lib/dynare/examples/NK_baseline_steadystate.m +lib/dynare/examples/agtrend.mod +lib/dynare/examples/bkk.mod +lib/dynare/examples/example1.mod +lib/dynare/examples/example2.mod +lib/dynare/examples/example3.mod +lib/dynare/examples/example3_steady_state_helper.m +lib/dynare/examples/fs2000.mod +lib/dynare/examples/fs2000_nonstationary.mod +lib/dynare/examples/fsdat_simul.m +lib/dynare/examples/ramst.mod +lib/dynare/matlab/.dir-locals.el +lib/dynare/matlab/@dates/append.m +lib/dynare/matlab/@dates/colon.m +lib/dynare/matlab/@dates/dates.m +lib/dynare/matlab/@dates/disp.m +lib/dynare/matlab/@dates/display.m +lib/dynare/matlab/@dates/double.m +lib/dynare/matlab/@dates/end.m +lib/dynare/matlab/@dates/eq.m +lib/dynare/matlab/@dates/ge.m +lib/dynare/matlab/@dates/gt.m +lib/dynare/matlab/@dates/horzcat.m +lib/dynare/matlab/@dates/intersect.m +lib/dynare/matlab/@dates/isempty.m +lib/dynare/matlab/@dates/isequal.m +lib/dynare/matlab/@dates/le.m +lib/dynare/matlab/@dates/length.m +lib/dynare/matlab/@dates/lt.m +lib/dynare/matlab/@dates/max.m +lib/dynare/matlab/@dates/min.m +lib/dynare/matlab/@dates/minus.m +lib/dynare/matlab/@dates/mtimes.m +lib/dynare/matlab/@dates/ne.m +lib/dynare/matlab/@dates/plus.m +lib/dynare/matlab/@dates/pop.m +lib/dynare/matlab/@dates/setdiff.m +lib/dynare/matlab/@dates/size.m +lib/dynare/matlab/@dates/sort.m +lib/dynare/matlab/@dates/strings.m +lib/dynare/matlab/@dates/subsasgn.m +lib/dynare/matlab/@dates/subsref.m +lib/dynare/matlab/@dates/uminus.m +lib/dynare/matlab/@dates/union.m +lib/dynare/matlab/@dates/unique.m +lib/dynare/matlab/@dates/uplus.m +lib/dynare/matlab/@dates/vertcat.m +lib/dynare/matlab/@dseries/align.m +lib/dynare/matlab/@dseries/baxter_king_filter.m +lib/dynare/matlab/@dseries/check.m +lib/dynare/matlab/@dseries/cumsum.m +lib/dynare/matlab/@dseries/disp.m +lib/dynare/matlab/@dseries/display.m +lib/dynare/matlab/@dseries/dseries.m +lib/dynare/matlab/@dseries/eq.m +lib/dynare/matlab/@dseries/exp.m +lib/dynare/matlab/@dseries/extract.m +lib/dynare/matlab/@dseries/horzcat.m +lib/dynare/matlab/@dseries/hpcycle.m +lib/dynare/matlab/@dseries/hptrend.m +lib/dynare/matlab/@dseries/insert.m +lib/dynare/matlab/@dseries/isempty.m +lib/dynare/matlab/@dseries/isequal.m +lib/dynare/matlab/@dseries/lag.m +lib/dynare/matlab/@dseries/lead.m +lib/dynare/matlab/@dseries/log.m +lib/dynare/matlab/@dseries/merge.m +lib/dynare/matlab/@dseries/minus.m +lib/dynare/matlab/@dseries/mpower.m +lib/dynare/matlab/@dseries/mrdivide.m +lib/dynare/matlab/@dseries/mtimes.m +lib/dynare/matlab/@dseries/ne.m +lib/dynare/matlab/@dseries/numel.m +lib/dynare/matlab/@dseries/plot.m +lib/dynare/matlab/@dseries/plus.m +lib/dynare/matlab/@dseries/pop.m +lib/dynare/matlab/@dseries/private/default_name.m +lib/dynare/matlab/@dseries/qdiff.m +lib/dynare/matlab/@dseries/qgrowth.m +lib/dynare/matlab/@dseries/rename.m +lib/dynare/matlab/@dseries/save.m +lib/dynare/matlab/@dseries/set_names.m +lib/dynare/matlab/@dseries/size.m +lib/dynare/matlab/@dseries/subsasgn.m +lib/dynare/matlab/@dseries/subsref.m +lib/dynare/matlab/@dseries/tex_rename.m +lib/dynare/matlab/@dseries/uminus.m +lib/dynare/matlab/@dseries/vertcat.m +lib/dynare/matlab/@dseries/ydiff.m +lib/dynare/matlab/@dseries/ygrowth.m +lib/dynare/matlab/@dynTimeIndex/display.m +lib/dynare/matlab/@dynTimeIndex/dynTimeIndex.m +lib/dynare/matlab/@dynTimeIndex/minus.m +lib/dynare/matlab/@dynTimeIndex/mpower.m +lib/dynare/matlab/@dynTimeIndex/plus.m +lib/dynare/matlab/@dynTimeIndex/subsasgn.m +lib/dynare/matlab/@dynTimeIndex/subsref.m +lib/dynare/matlab/AHessian.m +lib/dynare/matlab/AIM/README.txt +lib/dynare/matlab/AIM/SPAimerr.m +lib/dynare/matlab/AIM/SPAmalg.m +lib/dynare/matlab/AIM/SPBuild_a.m +lib/dynare/matlab/AIM/SPCopy_w.m +lib/dynare/matlab/AIM/SPEigensystem.m +lib/dynare/matlab/AIM/SPExact_shift.m +lib/dynare/matlab/AIM/SPNumeric_shift.m +lib/dynare/matlab/AIM/SPObstruct.m +lib/dynare/matlab/AIM/SPReduced_form.m +lib/dynare/matlab/AIM/SPShiftright.m +lib/dynare/matlab/AIM/dynAIMsolver1.m +lib/dynare/matlab/AIM_first_order_solver.m +lib/dynare/matlab/CheckPath.m +lib/dynare/matlab/Contents.m +lib/dynare/matlab/CutSample.m +lib/dynare/matlab/DsgeSmoother.m +lib/dynare/matlab/GetAllPosteriorDraws.m +lib/dynare/matlab/GetOneDraw.m +lib/dynare/matlab/GetPosteriorMeanVariance.m +lib/dynare/matlab/GetPosteriorParametersStatistics.m +lib/dynare/matlab/MakeAllFigures.m +lib/dynare/matlab/McMCDiagnostics.m +lib/dynare/matlab/McMCDiagnostics_core.m +lib/dynare/matlab/PlotPosteriorDistributions.m +lib/dynare/matlab/PosteriorFilterSmootherAndForecast.m +lib/dynare/matlab/PosteriorIRF.m +lib/dynare/matlab/PosteriorIRF_core1.m +lib/dynare/matlab/PosteriorIRF_core2.m +lib/dynare/matlab/ReshapeMatFiles.m +lib/dynare/matlab/Tracing.m +lib/dynare/matlab/UnivariateSpectralDensity.m +lib/dynare/matlab/adaptive_metropolis_hastings.m +lib/dynare/matlab/add_auxiliary_variables_to_steadystate.m +lib/dynare/matlab/autoregressive_process_specification.m +lib/dynare/matlab/basic_plan.m +lib/dynare/matlab/bfgsi1.m +lib/dynare/matlab/bicgstab_.m +lib/dynare/matlab/bksup0.m +lib/dynare/matlab/bksup1.m +lib/dynare/matlab/bksupk.m +lib/dynare/matlab/block_bytecode_mfs_steadystate.m +lib/dynare/matlab/block_mfs_steadystate.m +lib/dynare/matlab/bseastr.m +lib/dynare/matlab/bvar_density.m +lib/dynare/matlab/bvar_forecast.m +lib/dynare/matlab/bvar_irf.m +lib/dynare/matlab/bvar_toolbox.m +lib/dynare/matlab/bytecode_steadystate.m +lib/dynare/matlab/cartesian_product_of_sets.m +lib/dynare/matlab/check.m +lib/dynare/matlab/check_consistency_covariances.m +lib/dynare/matlab/check_dsge_var_model.m +lib/dynare/matlab/check_file_extension.m +lib/dynare/matlab/check_for_calibrated_covariances.m +lib/dynare/matlab/check_list_of_variables.m +lib/dynare/matlab/check_model.m +lib/dynare/matlab/check_name.m +lib/dynare/matlab/check_posterior_analysis_data.m +lib/dynare/matlab/check_prior_analysis_data.m +lib/dynare/matlab/check_prior_bounds.m +lib/dynare/matlab/cmaes.m +lib/dynare/matlab/common_strings_in_cell_arrays.m +lib/dynare/matlab/compute_mh_covariance_matrix.m +lib/dynare/matlab/compute_model_moments.m +lib/dynare/matlab/compute_moments_varendo.m +lib/dynare/matlab/compute_overall_acceptance_ratio.m +lib/dynare/matlab/conditional_variance_decomposition.m +lib/dynare/matlab/conditional_variance_decomposition_mc_analysis.m +lib/dynare/matlab/convertAimCodeToInfo.m +lib/dynare/matlab/correlation_mc_analysis.m +lib/dynare/matlab/cosn.m +lib/dynare/matlab/covariance_mc_analysis.m +lib/dynare/matlab/csminit1.m +lib/dynare/matlab/csminwel1.m +lib/dynare/matlab/csolve.m +lib/dynare/matlab/cubature_with_gaussian_weight.m +lib/dynare/matlab/cycle_reduction.m +lib/dynare/matlab/datatomfile.m +lib/dynare/matlab/dcompare.m +lib/dynare/matlab/delete_mh_history_files.m +lib/dynare/matlab/det_cond_forecast.m +lib/dynare/matlab/det_forecast.m +lib/dynare/matlab/discretionary_policy.m +lib/dynare/matlab/discretionary_policy_1.m +lib/dynare/matlab/discretionary_policy_engine.m +lib/dynare/matlab/disp_dr.m +lib/dynare/matlab/disp_identification.m +lib/dynare/matlab/disp_model_summary.m +lib/dynare/matlab/disp_moments.m +lib/dynare/matlab/disp_steady_state.m +lib/dynare/matlab/disp_th_moments.m +lib/dynare/matlab/display_conditional_variance_decomposition.m +lib/dynare/matlab/display_estimation_results_table.m +lib/dynare/matlab/distributions/compute_prior_mode.m +lib/dynare/matlab/distributions/ig1fun.m +lib/dynare/matlab/distributions/inverse_gamma_specification.m +lib/dynare/matlab/distributions/mode_and_variance_to_mean.m +lib/dynare/matlab/distributions/multivariate_normal_pdf.m +lib/dynare/matlab/distributions/multivariate_student_pdf.m +lib/dynare/matlab/distributions/rand_inverse_wishart.m +lib/dynare/matlab/distributions/rand_matrix_normal.m +lib/dynare/matlab/distributions/rand_multivariate_normal.m +lib/dynare/matlab/distributions/rand_multivariate_student.m +lib/dynare/matlab/do_parameter_initialization.m +lib/dynare/matlab/dr_block.m +lib/dynare/matlab/draw_prior_density.m +lib/dynare/matlab/dsample.m +lib/dynare/matlab/dsge_likelihood.m +lib/dynare/matlab/dsge_simulated_theoretical_conditional_variance_decomposition.m +lib/dynare/matlab/dsge_simulated_theoretical_correlation.m +lib/dynare/matlab/dsge_simulated_theoretical_covariance.m +lib/dynare/matlab/dsge_simulated_theoretical_variance_decomposition.m +lib/dynare/matlab/dsge_var_likelihood.m +lib/dynare/matlab/dsgevar_posterior_density.m +lib/dynare/matlab/dy_date.m +lib/dynare/matlab/dyn2vec.m +lib/dynare/matlab/dyn_diag_vech.m +lib/dynare/matlab/dyn_figure.m +lib/dynare/matlab/dyn_first_order_solver.m +lib/dynare/matlab/dyn_forecast.m +lib/dynare/matlab/dyn_ramsey_static.m +lib/dynare/matlab/dyn_risky_steadystate_solver.m +lib/dynare/matlab/dyn_saveas.m +lib/dynare/matlab/dyn_second_order_solver.m +lib/dynare/matlab/dyn_unvech.m +lib/dynare/matlab/dyn_vech.m +lib/dynare/matlab/dyn_waitbar.m +lib/dynare/matlab/dyn_waitbar_close.m +lib/dynare/matlab/dynare.m +lib/dynare/matlab/dynare_config.m +lib/dynare/matlab/dynare_estimation.m +lib/dynare/matlab/dynare_estimation_1.m +lib/dynare/matlab/dynare_estimation_init.m +lib/dynare/matlab/dynare_gradient.m +lib/dynare/matlab/dynare_graph.m +lib/dynare/matlab/dynare_graph_close.m +lib/dynare/matlab/dynare_graph_init.m +lib/dynare/matlab/dynare_identification.m +lib/dynare/matlab/dynare_m +lib/dynare/matlab/dynare_resolve.m +lib/dynare/matlab/dynare_sensitivity.m +lib/dynare/matlab/dynare_solve.m +lib/dynare/matlab/dynare_solve_block_or_bytecode.m +lib/dynare/matlab/dynare_squeeze.m +lib/dynare/matlab/dynare_version.m +lib/dynare/matlab/dynare_version.m.in +lib/dynare/matlab/dynasave.m +lib/dynare/matlab/dynatype.m +lib/dynare/matlab/dynsec2hms.m +lib/dynare/matlab/dyntable.m +lib/dynare/matlab/endogenous_prior.m +lib/dynare/matlab/endogenous_prior_restrictions.m +lib/dynare/matlab/ep/extended_path.m +lib/dynare/matlab/ep/homotopic_steps.m +lib/dynare/matlab/ep/solve_stochastic_perfect_foresight_model.m +lib/dynare/matlab/ep/solve_stochastic_perfect_foresight_model_1.m +lib/dynare/matlab/ep_residuals.m +lib/dynare/matlab/erase_compiled_function.m +lib/dynare/matlab/evaluate_likelihood.m +lib/dynare/matlab/evaluate_planner_objective.m +lib/dynare/matlab/evaluate_posterior_kernel.m +lib/dynare/matlab/evaluate_prior.m +lib/dynare/matlab/evaluate_smoother.m +lib/dynare/matlab/evaluate_static_model.m +lib/dynare/matlab/evaluate_steady_state.m +lib/dynare/matlab/evaluate_steady_state_file.m +lib/dynare/matlab/f_var.m +lib/dynare/matlab/fastgensylv.m +lib/dynare/matlab/ff1_.m +lib/dynare/matlab/ffill.m +lib/dynare/matlab/fjaco.m +lib/dynare/matlab/flip_plan.m +lib/dynare/matlab/forcst.m +lib/dynare/matlab/forcst2.m +lib/dynare/matlab/forcst2a.m +lib/dynare/matlab/forcst_unc.m +lib/dynare/matlab/forecast_graphs.m +lib/dynare/matlab/formdata.m +lib/dynare/matlab/ftest.m +lib/dynare/matlab/gauss_hermite_weights_and_nodes.m +lib/dynare/matlab/gauss_legendre_weights_and_nodes.m +lib/dynare/matlab/gcompare.m +lib/dynare/matlab/gensylv/gensylv.m +lib/dynare/matlab/gensylv/sylvester3.m +lib/dynare/matlab/gensylv/sylvester3a.m +lib/dynare/matlab/gensylv_fp.m +lib/dynare/matlab/getH.m +lib/dynare/matlab/getIrfShocksIndx.m +lib/dynare/matlab/getJJ.m +lib/dynare/matlab/getPowerDeriv.m +lib/dynare/matlab/get_Hessian.m +lib/dynare/matlab/get_all_parameters.m +lib/dynare/matlab/get_cells_id.m +lib/dynare/matlab/get_date_of_a_file.m +lib/dynare/matlab/get_dynare_random_generator_state.m +lib/dynare/matlab/get_existing_subsamples_indx.m +lib/dynare/matlab/get_moments_size.m +lib/dynare/matlab/get_name_of_the_last_mh_file.m +lib/dynare/matlab/get_new_or_existing_ei_index.m +lib/dynare/matlab/get_optimal_policy_discount_factor.m +lib/dynare/matlab/get_param_by_name.m +lib/dynare/matlab/get_posterior_parameters.m +lib/dynare/matlab/get_prior_info.m +lib/dynare/matlab/get_random_string.m +lib/dynare/matlab/get_subsamples_range_indx.m +lib/dynare/matlab/get_the_name.m +lib/dynare/matlab/get_variables_list.m +lib/dynare/matlab/get_variance_of_endogenous_variables.m +lib/dynare/matlab/geweke_chi2_test.m +lib/dynare/matlab/geweke_moments.m +lib/dynare/matlab/global_initialization.m +lib/dynare/matlab/gmhmaxlik.m +lib/dynare/matlab/graph_decomp.m +lib/dynare/matlab/gsa/Morris_Measure_Groups.m +lib/dynare/matlab/gsa/Sampling_Function_2.m +lib/dynare/matlab/gsa/cumplot.m +lib/dynare/matlab/gsa/filt_mc_.m +lib/dynare/matlab/gsa/ghx2transition.m +lib/dynare/matlab/gsa/gsa_plotmatrix.m +lib/dynare/matlab/gsa/gsa_skewness.m +lib/dynare/matlab/gsa/gsa_speed.m +lib/dynare/matlab/gsa/log_trans_.m +lib/dynare/matlab/gsa/map_ident_.m +lib/dynare/matlab/gsa/mc_moments.m +lib/dynare/matlab/gsa/myboxplot.m +lib/dynare/matlab/gsa/myprctilecol.m +lib/dynare/matlab/gsa/prior_draw_gsa.m +lib/dynare/matlab/gsa/priorcdf.m +lib/dynare/matlab/gsa/read_data.m +lib/dynare/matlab/gsa/redform_map.m +lib/dynare/matlab/gsa/redform_screen.m +lib/dynare/matlab/gsa/set_shocks_param.m +lib/dynare/matlab/gsa/smirnov.m +lib/dynare/matlab/gsa/stab_map_.m +lib/dynare/matlab/gsa/stab_map_1.m +lib/dynare/matlab/gsa/stab_map_2.m +lib/dynare/matlab/gsa/stand_.m +lib/dynare/matlab/gsa/tcrit.m +lib/dynare/matlab/gsa/teff.m +lib/dynare/matlab/gsa/th_moments.m +lib/dynare/matlab/gsa/trank.m +lib/dynare/matlab/hess_element.m +lib/dynare/matlab/hessian.m +lib/dynare/matlab/hessian_sparse.m +lib/dynare/matlab/homotopy1.m +lib/dynare/matlab/homotopy2.m +lib/dynare/matlab/homotopy3.m +lib/dynare/matlab/ident_bruteforce.m +lib/dynare/matlab/identification_analysis.m +lib/dynare/matlab/identification_checks.m +lib/dynare/matlab/imcforecast.m +lib/dynare/matlab/independent_metropolis_hastings.m +lib/dynare/matlab/independent_metropolis_hastings_core.m +lib/dynare/matlab/indnv.m +lib/dynare/matlab/init_plan.m +lib/dynare/matlab/initial_estimation_checks.m +lib/dynare/matlab/initialize_from_mode.m +lib/dynare/matlab/initvalf.m +lib/dynare/matlab/insert_column_vector_in_a_matrix.m +lib/dynare/matlab/insert_object_in_a_one_dimensional_cell_array.m +lib/dynare/matlab/internals.m +lib/dynare/matlab/irf.m +lib/dynare/matlab/jacob_element.m +lib/dynare/matlab/k_order_pert.m +lib/dynare/matlab/k_order_perturbation.m +lib/dynare/matlab/kalman/build_selection_matrix.m +lib/dynare/matlab/kalman/likelihood/computeDLIK.m +lib/dynare/matlab/kalman/likelihood/kalman_filter.m +lib/dynare/matlab/kalman/likelihood/kalman_filter_d.m +lib/dynare/matlab/kalman/likelihood/kalman_filter_fast.m +lib/dynare/matlab/kalman/likelihood/kalman_filter_ss.m +lib/dynare/matlab/kalman/likelihood/missing_observations_kalman_filter.m +lib/dynare/matlab/kalman/likelihood/missing_observations_kalman_filter_d.m +lib/dynare/matlab/kalman/likelihood/univariate_computeDLIK.m +lib/dynare/matlab/kalman/likelihood/univariate_computeDstate.m +lib/dynare/matlab/kalman/likelihood/univariate_kalman_filter.m +lib/dynare/matlab/kalman/likelihood/univariate_kalman_filter_d.m +lib/dynare/matlab/kalman/likelihood/univariate_kalman_filter_ss.m +lib/dynare/matlab/kalman/steady_state_kalman_gain.m +lib/dynare/matlab/kalman_transition_matrix.m +lib/dynare/matlab/kernel_density_estimate.m +lib/dynare/matlab/kronecker/A_times_B_kronecker_C.m +lib/dynare/matlab/kronecker/sparse_hessian_times_B_kronecker_C.m +lib/dynare/matlab/list_of_parameters_calibrated_as_NaN.m +lib/dynare/matlab/lnsrch1.m +lib/dynare/matlab/lnsrch1_wrapper_one_boundary.m +lib/dynare/matlab/lnsrch1_wrapper_two_boundaries.m +lib/dynare/matlab/load_csv_file_data.m +lib/dynare/matlab/load_first_mh_history_file.m +lib/dynare/matlab/load_last_mh_history_file.m +lib/dynare/matlab/load_m_file_data.m +lib/dynare/matlab/load_mat_file_data.m +lib/dynare/matlab/load_xls_file_data.m +lib/dynare/matlab/logarithmic_reduction.m +lib/dynare/matlab/long_run_variance.m +lib/dynare/matlab/lpdfgam.m +lib/dynare/matlab/lpdfgbeta.m +lib/dynare/matlab/lpdfig1.m +lib/dynare/matlab/lpdfig2.m +lib/dynare/matlab/lpdfnorm.m +lib/dynare/matlab/lyapunov_symm.m +lib/dynare/matlab/make_ex_.m +lib/dynare/matlab/make_y_.m +lib/dynare/matlab/marginal_density.m +lib/dynare/matlab/matlab_ver_less_than.m +lib/dynare/matlab/maximize_prior_density.m +lib/dynare/matlab/mcforecast3.m +lib/dynare/matlab/mcompare.m +lib/dynare/matlab/metropolis_draw.m +lib/dynare/matlab/metropolis_hastings_initialization.m +lib/dynare/matlab/metropolis_run_analysis.m +lib/dynare/matlab/mexErrCheck.m +lib/dynare/matlab/mh_autocorrelation_function.m +lib/dynare/matlab/mh_optimal_bandwidth.m +lib/dynare/matlab/minus_logged_prior_density.m +lib/dynare/matlab/missing/bsxfun/bsxfun.m +lib/dynare/matlab/missing/ilu/ilu.m +lib/dynare/matlab/missing/issquare/issquare.m +lib/dynare/matlab/missing/nanmean/nanmean.m +lib/dynare/matlab/missing/ordeig/ordeig.m +lib/dynare/matlab/missing/rows_columns/columns.m +lib/dynare/matlab/missing/rows_columns/rows.m +lib/dynare/matlab/missing/stats/betacdf.m +lib/dynare/matlab/missing/stats/betainv.m +lib/dynare/matlab/missing/stats/betapdf.m +lib/dynare/matlab/missing/stats/betarnd.m +lib/dynare/matlab/missing/stats/chi2cdf.m +lib/dynare/matlab/missing/stats/chi2inv.m +lib/dynare/matlab/missing/stats/common_size.m +lib/dynare/matlab/missing/stats/exprnd.m +lib/dynare/matlab/missing/stats/gamcdf.m +lib/dynare/matlab/missing/stats/gaminv.m +lib/dynare/matlab/missing/stats/gampdf.m +lib/dynare/matlab/missing/stats/gamrnd.m +lib/dynare/matlab/missing/stats/normcdf.m +lib/dynare/matlab/missing/stats/norminv.m +lib/dynare/matlab/missing/stats/normpdf.m +lib/dynare/matlab/missing/stats/stdnormal_cdf.m +lib/dynare/matlab/missing/stats/stdnormal_inv.m +lib/dynare/matlab/missing/stats/stdnormal_pdf.m +lib/dynare/matlab/missing/strjoin/strjoin.m +lib/dynare/matlab/missing/vec/vec.m +lib/dynare/matlab/missing_DiffuseKalmanSmootherH1_Z.m +lib/dynare/matlab/missing_DiffuseKalmanSmootherH3_Z.m +lib/dynare/matlab/mode_check.m +lib/dynare/matlab/model_comparison.m +lib/dynare/matlab/model_diagnostics.m +lib/dynare/matlab/model_info.m +lib/dynare/matlab/moment_function.m +lib/dynare/matlab/moments.m +lib/dynare/matlab/mr_gstep.m +lib/dynare/matlab/mr_hessian.m +lib/dynare/matlab/ms-sbvar/check_datafile_years_assigned.m +lib/dynare/matlab/ms-sbvar/clean_files_for_second_type_of_mex.m +lib/dynare/matlab/ms-sbvar/clean_ms_estimation_files.m +lib/dynare/matlab/ms-sbvar/clean_ms_forecast_files.m +lib/dynare/matlab/ms-sbvar/clean_ms_init_files.m +lib/dynare/matlab/ms-sbvar/clean_ms_irf_files.m +lib/dynare/matlab/ms-sbvar/clean_ms_mdd_files.m +lib/dynare/matlab/ms-sbvar/clean_ms_probabilities_files.m +lib/dynare/matlab/ms-sbvar/clean_ms_simulation_files.m +lib/dynare/matlab/ms-sbvar/clean_ms_variance_decomposition_files.m +lib/dynare/matlab/ms-sbvar/clean_sbvar_files.m +lib/dynare/matlab/ms-sbvar/create_dir.m +lib/dynare/matlab/ms-sbvar/delete_dir_if_exists.m +lib/dynare/matlab/ms-sbvar/delete_if_exists.m +lib/dynare/matlab/ms-sbvar/dyn_save_graph.m +lib/dynare/matlab/ms-sbvar/identification/exclusions.m +lib/dynare/matlab/ms-sbvar/identification/lower_cholesky.m +lib/dynare/matlab/ms-sbvar/identification/upper_cholesky.m +lib/dynare/matlab/ms-sbvar/initialize_ms_sbvar_options.m +lib/dynare/matlab/ms-sbvar/load_flat_file.m +lib/dynare/matlab/ms-sbvar/ms_compute_mdd.m +lib/dynare/matlab/ms-sbvar/ms_compute_probabilities.m +lib/dynare/matlab/ms-sbvar/ms_estimation.m +lib/dynare/matlab/ms-sbvar/ms_forecast.m +lib/dynare/matlab/ms-sbvar/ms_irf.m +lib/dynare/matlab/ms-sbvar/ms_mardd.m +lib/dynare/matlab/ms-sbvar/ms_sbvar_setup.m +lib/dynare/matlab/ms-sbvar/ms_simulation.m +lib/dynare/matlab/ms-sbvar/ms_variance_decomposition.m +lib/dynare/matlab/ms-sbvar/ms_write_markov_file.m +lib/dynare/matlab/ms-sbvar/ms_write_mhm_input.m +lib/dynare/matlab/ms-sbvar/msstart2.m +lib/dynare/matlab/ms-sbvar/msstart_setup.m +lib/dynare/matlab/ms-sbvar/plot_ms_forecast.m +lib/dynare/matlab/ms-sbvar/plot_ms_irf.m +lib/dynare/matlab/ms-sbvar/plot_ms_probabilities.m +lib/dynare/matlab/ms-sbvar/plot_ms_variance_decomposition.m +lib/dynare/matlab/ms-sbvar/plot_ms_variance_decomposition_error_bands.m +lib/dynare/matlab/ms-sbvar/reshape_ascii_forecast_data.m +lib/dynare/matlab/ms-sbvar/reshape_ascii_irf_data.m +lib/dynare/matlab/ms-sbvar/reshape_ascii_variance_decomposition_data.m +lib/dynare/matlab/ms-sbvar/sbvar.m +lib/dynare/matlab/ms-sbvar/set_file_tags.m +lib/dynare/matlab/ms-sbvar/set_ms_estimation_file.m +lib/dynare/matlab/ms-sbvar/set_ms_simulation_file.m +lib/dynare/matlab/mult_elimination.m +lib/dynare/matlab/multivariate_sample_autocovariance.m +lib/dynare/matlab/my_subplot.m +lib/dynare/matlab/myboxplot.m +lib/dynare/matlab/mydelete.m +lib/dynare/matlab/name2index.m +lib/dynare/matlab/newrat.m +lib/dynare/matlab/non_linear_dsge_likelihood.m +lib/dynare/matlab/numgrad2.m +lib/dynare/matlab/numgrad3.m +lib/dynare/matlab/numgrad3_.m +lib/dynare/matlab/numgrad5.m +lib/dynare/matlab/numgrad5_.m +lib/dynare/matlab/octave_ver_less_than.m +lib/dynare/matlab/options2cell.m +lib/dynare/matlab/osr.m +lib/dynare/matlab/osr1.m +lib/dynare/matlab/osr_obj.m +lib/dynare/matlab/parallel/AnalyseComputationalEnvironment.m +lib/dynare/matlab/parallel/CreateTimeString.m +lib/dynare/matlab/parallel/GiveCPUnumber.m +lib/dynare/matlab/parallel/InitializeComputationalEnvironment.m +lib/dynare/matlab/parallel/closeSlave.m +lib/dynare/matlab/parallel/distributeJobs.m +lib/dynare/matlab/parallel/dynareParallelDelete.m +lib/dynare/matlab/parallel/dynareParallelDeleteNewFiles.m +lib/dynare/matlab/parallel/dynareParallelDir.m +lib/dynare/matlab/parallel/dynareParallelFindNewFiles.m +lib/dynare/matlab/parallel/dynareParallelGetFiles.m +lib/dynare/matlab/parallel/dynareParallelGetNewFiles.m +lib/dynare/matlab/parallel/dynareParallelListAllFiles.m +lib/dynare/matlab/parallel/dynareParallelMkDir.m +lib/dynare/matlab/parallel/dynareParallelRmDir.m +lib/dynare/matlab/parallel/dynareParallelSendFiles.m +lib/dynare/matlab/parallel/dynareParallelSnapshot.m +lib/dynare/matlab/parallel/fMessageStatus.m +lib/dynare/matlab/parallel/fParallel.m +lib/dynare/matlab/parallel/masterParallel.m +lib/dynare/matlab/parallel/slaveParallel.m +lib/dynare/matlab/parallel/storeGlobalVars.m +lib/dynare/matlab/parallel/struct2local.m +lib/dynare/matlab/partial_information/PCL_Part_info_irf.m +lib/dynare/matlab/partial_information/PCL_Part_info_moments.m +lib/dynare/matlab/partial_information/PCL_resol.m +lib/dynare/matlab/partial_information/PI_gensys.m +lib/dynare/matlab/partial_information/PI_gensys_singularC.m +lib/dynare/matlab/partial_information/disc_riccati_fast.m +lib/dynare/matlab/partial_information/disclyap_fast.m +lib/dynare/matlab/partial_information/dr1_PI.m +lib/dynare/matlab/particle/auxiliary_initialization.m +lib/dynare/matlab/particle/auxiliary_particle_filter.m +lib/dynare/matlab/particle/conditional_filter_proposal.m +lib/dynare/matlab/particle/conditional_particle_filter.m +lib/dynare/matlab/particle/fit_gaussian_mixture.m +lib/dynare/matlab/particle/gaussian_densities.m +lib/dynare/matlab/particle/gaussian_filter.m +lib/dynare/matlab/particle/gaussian_filter_bank.m +lib/dynare/matlab/particle/gaussian_mixture_densities.m +lib/dynare/matlab/particle/gaussian_mixture_filter.m +lib/dynare/matlab/particle/gaussian_mixture_filter_bank.m +lib/dynare/matlab/particle/importance_sampling.m +lib/dynare/matlab/particle/index_resample.m +lib/dynare/matlab/particle/local_state_space_iteration/local_state_space_iteration_2.m +lib/dynare/matlab/particle/measurement_equations.m +lib/dynare/matlab/particle/multivariate_smooth_resampling.m +lib/dynare/matlab/particle/mykmeans.m +lib/dynare/matlab/particle/neff.m +lib/dynare/matlab/particle/online_auxiliary_filter.m +lib/dynare/matlab/particle/probability.m +lib/dynare/matlab/particle/probability2.m +lib/dynare/matlab/particle/resample.m +lib/dynare/matlab/particle/residual_resampling.m +lib/dynare/matlab/particle/sequential_importance_particle_filter.m +lib/dynare/matlab/particle/solve_model_for_online_filter.m +lib/dynare/matlab/particle/spherical_radial_sigma_points.m +lib/dynare/matlab/particle/traditional_resampling.m +lib/dynare/matlab/particle/univariate_smooth_resampling.m +lib/dynare/matlab/particle/unscented_sigma_points.m +lib/dynare/matlab/perfect_foresight_simulation.m +lib/dynare/matlab/plot_icforecast.m +lib/dynare/matlab/plot_identification.m +lib/dynare/matlab/plot_priors.m +lib/dynare/matlab/pltorg.m +lib/dynare/matlab/pm3.m +lib/dynare/matlab/pm3_core.m +lib/dynare/matlab/posterior_analysis.m +lib/dynare/matlab/posterior_moments.m +lib/dynare/matlab/print_bytecode_dynamic_model.m +lib/dynare/matlab/print_bytecode_static_model.m +lib/dynare/matlab/print_info.m +lib/dynare/matlab/prior_analysis.m +lib/dynare/matlab/prior_bounds.m +lib/dynare/matlab/prior_draw.m +lib/dynare/matlab/prior_posterior_statistics.m +lib/dynare/matlab/prior_posterior_statistics_core.m +lib/dynare/matlab/prior_sampler.m +lib/dynare/matlab/priordens.m +lib/dynare/matlab/qmc_sequence.m +lib/dynare/matlab/qr2.m +lib/dynare/matlab/quadratic_matrix_equation_solver.m +lib/dynare/matlab/qz/mjdgges.m +lib/dynare/matlab/qzdiv.m +lib/dynare/matlab/qzswitch.m +lib/dynare/matlab/ramsey_policy.m +lib/dynare/matlab/random_walk_metropolis_hastings.m +lib/dynare/matlab/random_walk_metropolis_hastings_core.m +lib/dynare/matlab/read_data_.m +lib/dynare/matlab/read_key_value_string.m +lib/dynare/matlab/read_variables.m +lib/dynare/matlab/recursive_moments.m +lib/dynare/matlab/reduced_rank_cholesky.m +lib/dynare/matlab/replace_object_in_a_one_dimensional_cell_array.m +lib/dynare/matlab/reports/@elements/addGraph.m +lib/dynare/matlab/reports/@elements/addTable.m +lib/dynare/matlab/reports/@elements/addVspace.m +lib/dynare/matlab/reports/@elements/display.m +lib/dynare/matlab/reports/@elements/elements.m +lib/dynare/matlab/reports/@elements/end.m +lib/dynare/matlab/reports/@elements/getElements.m +lib/dynare/matlab/reports/@elements/numElements.m +lib/dynare/matlab/reports/@elements/numVspace.m +lib/dynare/matlab/reports/@elements/subsasgn.m +lib/dynare/matlab/reports/@elements/subsref.m +lib/dynare/matlab/reports/@graph/addSeries.m +lib/dynare/matlab/reports/@graph/createGraph.m +lib/dynare/matlab/reports/@graph/display.m +lib/dynare/matlab/reports/@graph/end.m +lib/dynare/matlab/reports/@graph/graph.m +lib/dynare/matlab/reports/@graph/subsasgn.m +lib/dynare/matlab/reports/@graph/subsref.m +lib/dynare/matlab/reports/@graph/write.m +lib/dynare/matlab/reports/@objArray/addObj.m +lib/dynare/matlab/reports/@objArray/display.m +lib/dynare/matlab/reports/@objArray/getObjs.m +lib/dynare/matlab/reports/@objArray/numObjArray.m +lib/dynare/matlab/reports/@objArray/objArray.m +lib/dynare/matlab/reports/@objArray/subsasgn.m +lib/dynare/matlab/reports/@objArray/subsref.m +lib/dynare/matlab/reports/@page/addSection.m +lib/dynare/matlab/reports/@page/display.m +lib/dynare/matlab/reports/@page/end.m +lib/dynare/matlab/reports/@page/numSections.m +lib/dynare/matlab/reports/@page/page.m +lib/dynare/matlab/reports/@page/subsasgn.m +lib/dynare/matlab/reports/@page/subsref.m +lib/dynare/matlab/reports/@page/write.m +lib/dynare/matlab/reports/@pages/addPage.m +lib/dynare/matlab/reports/@pages/display.m +lib/dynare/matlab/reports/@pages/end.m +lib/dynare/matlab/reports/@pages/getPages.m +lib/dynare/matlab/reports/@pages/numPages.m +lib/dynare/matlab/reports/@pages/pages.m +lib/dynare/matlab/reports/@pages/subsasgn.m +lib/dynare/matlab/reports/@pages/subsref.m +lib/dynare/matlab/reports/@pages/write.m +lib/dynare/matlab/reports/@report/addGraph.m +lib/dynare/matlab/reports/@report/addPage.m +lib/dynare/matlab/reports/@report/addSection.m +lib/dynare/matlab/reports/@report/addSeries.m +lib/dynare/matlab/reports/@report/addTable.m +lib/dynare/matlab/reports/@report/addVspace.m +lib/dynare/matlab/reports/@report/compile.m +lib/dynare/matlab/reports/@report/display.m +lib/dynare/matlab/reports/@report/numPages.m +lib/dynare/matlab/reports/@report/report.m +lib/dynare/matlab/reports/@report/subsasgn.m +lib/dynare/matlab/reports/@report/subsref.m +lib/dynare/matlab/reports/@report/write.m +lib/dynare/matlab/reports/@report_series/display.m +lib/dynare/matlab/reports/@report_series/getData.m +lib/dynare/matlab/reports/@report_series/getLine.m +lib/dynare/matlab/reports/@report_series/getName.m +lib/dynare/matlab/reports/@report_series/getRange.m +lib/dynare/matlab/reports/@report_series/getTexName.m +lib/dynare/matlab/reports/@report_series/printSeries.m +lib/dynare/matlab/reports/@report_series/report_series.m +lib/dynare/matlab/reports/@report_series/subsasgn.m +lib/dynare/matlab/reports/@report_series/subsref.m +lib/dynare/matlab/reports/@report_series/write.m +lib/dynare/matlab/reports/@report_table/addSeries.m +lib/dynare/matlab/reports/@report_table/display.m +lib/dynare/matlab/reports/@report_table/report_table.m +lib/dynare/matlab/reports/@report_table/subsasgn.m +lib/dynare/matlab/reports/@report_table/subsref.m +lib/dynare/matlab/reports/@report_table/write.m +lib/dynare/matlab/reports/@section/addGraph.m +lib/dynare/matlab/reports/@section/addTable.m +lib/dynare/matlab/reports/@section/addVspace.m +lib/dynare/matlab/reports/@section/display.m +lib/dynare/matlab/reports/@section/element.m +lib/dynare/matlab/reports/@section/end.m +lib/dynare/matlab/reports/@section/numElements.m +lib/dynare/matlab/reports/@section/numVspace.m +lib/dynare/matlab/reports/@section/section.m +lib/dynare/matlab/reports/@section/subsasgn.m +lib/dynare/matlab/reports/@section/subsref.m +lib/dynare/matlab/reports/@section/write.m +lib/dynare/matlab/reports/@sections/addSection.m +lib/dynare/matlab/reports/@sections/display.m +lib/dynare/matlab/reports/@sections/end.m +lib/dynare/matlab/reports/@sections/getSections.m +lib/dynare/matlab/reports/@sections/numSections.m +lib/dynare/matlab/reports/@sections/sections.m +lib/dynare/matlab/reports/@sections/subsasgn.m +lib/dynare/matlab/reports/@sections/subsref.m +lib/dynare/matlab/reports/@sections/write.m +lib/dynare/matlab/reports/@seriesElements/addSeries.m +lib/dynare/matlab/reports/@seriesElements/display.m +lib/dynare/matlab/reports/@seriesElements/getMaxRange.m +lib/dynare/matlab/reports/@seriesElements/getNames.m +lib/dynare/matlab/reports/@seriesElements/getSeriesElements.m +lib/dynare/matlab/reports/@seriesElements/getTexNames.m +lib/dynare/matlab/reports/@seriesElements/numSeriesElements.m +lib/dynare/matlab/reports/@seriesElements/seriesElements.m +lib/dynare/matlab/reports/@seriesElements/subsasgn.m +lib/dynare/matlab/reports/@seriesElements/subsref.m +lib/dynare/matlab/reports/@vspace/display.m +lib/dynare/matlab/reports/@vspace/subsasgn.m +lib/dynare/matlab/reports/@vspace/subsref.m +lib/dynare/matlab/reports/@vspace/vspace.m +lib/dynare/matlab/reports/@vspace/write.m +lib/dynare/matlab/reports/allCellsAreDates.m +lib/dynare/matlab/reports/allCellsAreDatesRange.m +lib/dynare/matlab/reports/areParensNext.m +lib/dynare/matlab/reports/reporting_object_display.m +lib/dynare/matlab/resid.m +lib/dynare/matlab/resol.m +lib/dynare/matlab/restricted_steadystate.m +lib/dynare/matlab/reversed_extended_path.m +lib/dynare/matlab/rndprior.m +lib/dynare/matlab/row_header_width.m +lib/dynare/matlab/rplot.m +lib/dynare/matlab/sample_autocovariance.m +lib/dynare/matlab/sample_hp_filter.m +lib/dynare/matlab/save_params_and_steady_state.m +lib/dynare/matlab/save_results.m +lib/dynare/matlab/schur_statespace_transformation.m *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:53:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A9FAFFC for ; Sun, 10 Aug 2014 13:53:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 1AF7E2662 for ; Sun, 10 Aug 2014 13:53:23 +0000 (UTC) Received: from wg (uid 1317) (envelope-from wg@FreeBSD.org) id 2c53 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:53:22 +0000 From: William Grzybowski Date: Sun, 10 Aug 2014 13:53:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364542 - in head/net-im/chattahoochie: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e77953.2c53.465e824f@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:53:23 -0000 Author: wg Date: Sun Aug 10 13:53:22 2014 New Revision: 364542 URL: http://svnweb.freebsd.org/changeset/ports/364542 QAT: https://qat.redports.org/buildarchive/r364542/ Log: net-im/chattahoochie: update to 1.9 PR: 192407 Submitted by: maintainer Deleted: head/net-im/chattahoochie/files/ Modified: head/net-im/chattahoochie/Makefile head/net-im/chattahoochie/distinfo head/net-im/chattahoochie/pkg-descr Modified: head/net-im/chattahoochie/Makefile ============================================================================== --- head/net-im/chattahoochie/Makefile Sun Aug 10 13:52:52 2014 (r364541) +++ head/net-im/chattahoochie/Makefile Sun Aug 10 13:53:22 2014 (r364542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chattahoochie -PORTVERSION= 1.8 +PORTVERSION= 1.9 CATEGORIES= net-im MASTER_SITES= http://www.mammothcheese.ca/ Modified: head/net-im/chattahoochie/distinfo ============================================================================== --- head/net-im/chattahoochie/distinfo Sun Aug 10 13:52:52 2014 (r364541) +++ head/net-im/chattahoochie/distinfo Sun Aug 10 13:53:22 2014 (r364542) @@ -1,2 +1,2 @@ -SHA256 (chattahoochie-1.8.tar.gz) = 89a61f3cfad3f2e0a5cb0775da105e58ea46ab14a0d4bd892481e7ea9f58f265 -SIZE (chattahoochie-1.8.tar.gz) = 10404 +SHA256 (chattahoochie-1.9.tar.gz) = 3b42da38b6707994b8ec3be78c583a131319c1ce9722d6d5cb1e469402a52d28 +SIZE (chattahoochie-1.9.tar.gz) = 10401 Modified: head/net-im/chattahoochie/pkg-descr ============================================================================== --- head/net-im/chattahoochie/pkg-descr Sun Aug 10 13:52:52 2014 (r364541) +++ head/net-im/chattahoochie/pkg-descr Sun Aug 10 13:53:22 2014 (r364542) @@ -1,5 +1,3 @@ -Pickwick is a plain text small group chat server. It uses a simple -obfuscation scheme to keep traffic to and from the server unintelligible to -casual perusal. A client program, named weller(1) is also provided. +Chattahoochie is a plain text small group chat server. WWW: http://www.mammothcheese.ca/ From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:54:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 759FB177; Sun, 10 Aug 2014 13:54:09 +0000 (UTC) Date: Sun, 10 Aug 2014 13:54:09 +0000 From: Alexey Dokuchaev To: Alexander Nedotsukov Subject: Re: svn commit: r364540 - head/x11/nvidia-settings Message-ID: <20140810135409.GA22681@FreeBSD.org> References: <53e777f9.28cd.621911f7@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <53e777f9.28cd.621911f7@svn.freebsd.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:54:09 -0000 On Sun, Aug 10, 2014 at 01:47:37PM +0000, Alexander Nedotsukov wrote: > New Revision: 364540 > URL: http://svnweb.freebsd.org/changeset/ports/364540 > QAT: https://qat.redports.org/buildarchive/r364540/ > > Log: > Fixup distfile fetch broken by previous commit. > > [...] > -MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-settings \ > - ftp://download1.nvidia.com/XFree86/nvidia-settings > +MASTER_SITES= ftp://download.nvidia.com/XFree86/nvidia-settings/ \ > + ftp://download1.nvidia.com/XFree86/nvidia-settings/ Any reason not use MASTER_SITE_NVIDIA here? ./danfe From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 13:55:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4CB1266 for ; Sun, 10 Aug 2014 13:55:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 76326267C for ; Sun, 10 Aug 2014 13:55:47 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2c73 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 13:55:47 +0000 From: John Marino Date: Sun, 10 Aug 2014 13:55:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364543 - head/www/dwoo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e779e3.2c73.8876539@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 13:55:47 -0000 Author: marino Date: Sun Aug 10 13:55:47 2014 New Revision: 364543 URL: http://svnweb.freebsd.org/changeset/ports/364543 QAT: https://qat.redports.org/buildarchive/r364543/ Log: Reset maintainership on www/dwoo This port was not staged, but it was spared a reset because somebody (not the maintainer) submitted a PR to stage it. Unfortunately the PR has numerous problems which have not been addressed in the last couple of weeks. Reset the maintainer now, and let the port be pruned at the end of the month if no one steps up to save it. PR: 190041 Submitted by: Joe (thralling.com) Approved by: maintainer (Joe Horn) Rejected by: marino (technical reasons) Approved by: portmgr (implicit, NOT_STAGED) Modified: head/www/dwoo/Makefile Modified: head/www/dwoo/Makefile ============================================================================== --- head/www/dwoo/Makefile Sun Aug 10 13:53:22 2014 (r364542) +++ head/www/dwoo/Makefile Sun Aug 10 13:55:47 2014 (r364543) @@ -10,7 +10,7 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}.ta DISTFILES+= ${PORTNAME}-${PORTVERSION}-docs.tar.gz .endif -MAINTAINER= joehorn@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Dwoo is a PHP5 template engine WRKSRC= ${WRKDIR}/${PORTNAME} From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 14:28:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2411D5B8; Sun, 10 Aug 2014 14:28:11 +0000 (UTC) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F229628A4; Sun, 10 Aug 2014 14:28:10 +0000 (UTC) Received: from [192.168.192.25] (dhcp-108-170-169-12.cable.user.start.ca [108.170.169.12]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by apnoea.adamw.org (Postfix) with ESMTPSA id E28CD15EE16; Sun, 10 Aug 2014 10:28:02 -0400 (EDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: svn commit: r364470 - in head/net-im/ejabberd: . files From: Adam Weinberger In-Reply-To: <53e67c3f.21e4.796cd315@svn.freebsd.org> Date: Sun, 10 Aug 2014 10:28:01 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: References: <53e67c3f.21e4.796cd315@svn.freebsd.org> To: Ashish SHUKLA X-Mailer: Apple Mail (2.1878.6) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 14:28:11 -0000 On 9 Aug, 2014, at 15:53, Ashish SHUKLA wrote: > Author: ashish > Date: Sat Aug 9 19:53:35 2014 > New Revision: 364470 > URL: http://svnweb.freebsd.org/changeset/ports/364470 > QAT: https://qat.redports.org/buildarchive/r364470/ >=20 > Log: > - Fix issue when building with HTTP option[1] > - Add missing file to the pkg-plist when LAGER option is not defined >=20 > PR: 193293[1] >=20 > Added: > head/net-im/ejabberd/files/patch-unicode-fixup (contents, props = changed) >=20 > Added: head/net-im/ejabberd/files/patch-unicode-fixup > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=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-im/ejabberd/files/patch-unicode-fixup Sat Aug 9 = 19:53:35 2014 (r364470) > @@ -0,0 +1,55 @@ > + > +$FreeBSD$ Adding $FreeBSD$ to patches isn=92t really done anymore. Plus, = fbsd:nokeywords prop is set, so it=92s just a string. # Adam --=20 Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 14:29:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69DCA6A1 for ; Sun, 10 Aug 2014 14:29:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 4058A28AD for ; Sun, 10 Aug 2014 14:29:33 +0000 (UTC) Received: from wg (uid 1317) (envelope-from wg@FreeBSD.org) id 2973 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 14:29:33 +0000 From: William Grzybowski Date: Sun, 10 Aug 2014 14:29:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364544 - head/astro/xearth/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e781cd.2973.6894de38@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 14:29:33 -0000 Author: wg Date: Sun Aug 10 14:29:32 2014 New Revision: 364544 URL: http://svnweb.freebsd.org/changeset/ports/364544 QAT: https://qat.redports.org/buildarchive/r364544/ Log: astro/xearth: add myself to freebsd.committers.markers Modified: head/astro/xearth/files/freebsd.committers.markers Modified: head/astro/xearth/files/freebsd.committers.markers ============================================================================== --- head/astro/xearth/files/freebsd.committers.markers Sun Aug 10 13:55:47 2014 (r364543) +++ head/astro/xearth/files/freebsd.committers.markers Sun Aug 10 14:29:32 2014 (r364544) @@ -224,6 +224,7 @@ -15.8, -47.9, "lioux" # Brasilia, DF, Brazil -20.950, -47.917, "garga" # Limeira, SP, Brazil -15.789297, -47.931097, "dcs" # Brasilia, DF, Brazil +-25.477905, -49.212143, "wg" # Curitiba, PR, Brazil -27.583, -48.765, "araujo" # Florianopolis, SC, Brazil -30.043826, -51.13801, "mnag" # Porto Alegre, RS, Brazil -34.600, -58.450, "alepulver" # Buenos Aires, Argentina From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 14:34:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 415997A5 for ; Sun, 10 Aug 2014 14:34:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 2CB152977 for ; Sun, 10 Aug 2014 14:34:05 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2cd0 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 14:34:04 +0000 From: John Marino Date: Sun, 10 Aug 2014 14:34:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364545 - head/graphics/qgis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e782dd.2cd0.4ecb7b7e@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 14:34:05 -0000 Author: marino Date: Sun Aug 10 14:34:04 2014 New Revision: 364545 URL: http://svnweb.freebsd.org/changeset/ports/364545 QAT: https://qat.redports.org/buildarchive/r364545/ Log: graphics/qgis: Upgrade version 2.2.0 => 2.4.0 PR: 191837 Submitted by: maintainer (Rainer Hurling) Modified: head/graphics/qgis/Makefile head/graphics/qgis/distinfo head/graphics/qgis/pkg-plist Modified: head/graphics/qgis/Makefile ============================================================================== --- head/graphics/qgis/Makefile Sun Aug 10 14:29:32 2014 (r364544) +++ head/graphics/qgis/Makefile Sun Aug 10 14:34:04 2014 (r364545) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= qgis -PORTVERSION= 2.2.0 -PORTREVISION= 7 +PORTVERSION= 2.4.0 CATEGORIES= graphics geography MAINTAINER= rhurlin@gwdg.de @@ -11,6 +10,7 @@ COMMENT= Geographical Information System LICENSE= GPLv2 +BUILD_DEPENDS= txt2tags:${PORTSDIR}/textproc/txt2tags LIB_DEPENDS= libgeos.so:${PORTSDIR}/graphics/geos \ libproj.so:${PORTSDIR}/graphics/proj \ libgsl.so:${PORTSDIR}/math/gsl \ @@ -20,18 +20,14 @@ LIB_DEPENDS= libgeos.so:${PORTSDIR}/grap libspatialindex.so:${PORTSDIR}/devel/spatialindex \ libexecinfo.so:${PORTSDIR}/devel/libexecinfo -BUILD_DEPENDS= txt2tags:${PORTSDIR}/textproc/txt2tags - WRKSRC= ${WRKDIR}/${PORTNAME}-QGIS-${GH_COMMIT} USE_GITHUB= GH_ACCOUNT= qgis -GH_COMMIT= 1c3699e +GH_COMMIT= 00ab94f GH_TAGNAME= ${GH_COMMIT} -USES= compiler:features bison cmake gmake -### GCC can not build src/crssync/CMakeFiles/synccrsdb -#USE_GCC= 4.8+ +USES= bison cmake gmake USE_PYTHON= yes USE_SQLITE= yes USE_QT4= gui svg xml network sql designer testlib linguist_build \ @@ -44,11 +40,16 @@ OPTIONS_DEFAULT= POSTGIS PYTHON .include +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 +USES+= compiler:features +.else +USES+= compiler:gcc-c++11-lib +.endif + .if ${PORT_OPTIONS:MGRASS} CMAKE_ARGS+= -DWITH_GRASS:BOOL=TRUE -DGRASS_PREFIX=${LOCALBASE}/grass-6.4.3 RUN_DEPENDS+= ${LOCALBASE}/lib/gdalplugins/gdal_GRASS.so:${PORTSDIR}/graphics/gdal-grass FORCE_MAKE_JOBS= NO -INFO= qgis/grass/modules/qgis.g PLIST_SUB+= GRASS="" .else CMAKE_ARGS+= -DWITH_GRASS:BOOL=FALSE Modified: head/graphics/qgis/distinfo ============================================================================== --- head/graphics/qgis/distinfo Sun Aug 10 14:29:32 2014 (r364544) +++ head/graphics/qgis/distinfo Sun Aug 10 14:34:04 2014 (r364545) @@ -1,2 +1,2 @@ -SHA256 (qgis-2.2.0.tar.gz) = 920a56a61c365ee79cc576a4453b0bd23d859b49de0b2da1180266d28b9b1242 -SIZE (qgis-2.2.0.tar.gz) = 72233255 +SHA256 (qgis-2.4.0.tar.gz) = f0f3822958330c16c549d9408e52795c32be70293605a37c2a5de8b490729beb +SIZE (qgis-2.4.0.tar.gz) = 96810451 Modified: head/graphics/qgis/pkg-plist ============================================================================== --- head/graphics/qgis/pkg-plist Sun Aug 10 14:29:32 2014 (r364544) +++ head/graphics/qgis/pkg-plist Sun Aug 10 14:34:04 2014 (r364545) @@ -1,6 +1,9 @@ -bin/qbrowser -bin/qgis -bin/qgis_bench +%%QGIS_FCGI%%%%QT_BINDIR%%/admin.sld +%%QT_BINDIR%%/qbrowser +%%QT_BINDIR%%/qgis +%%QT_BINDIR%%/qgis_bench +%%QGIS_FCGI%%%%QT_BINDIR%%/qgis_mapserv.fcgi +%%QGIS_FCGI%%%%QT_BINDIR%%/wms_metadata.xml include/qgis/Bezier3D.h include/qgis/CloughTocherInterpolator.h include/qgis/DualEdgeTriangulation.h @@ -33,10 +36,14 @@ include/qgis/qgsattributeaction.h include/qgis/qgsattributedialog.h include/qgis/qgsattributeeditor.h include/qgis/qgsattributeeditorcontext.h +include/qgis/qgsattributeform.h +include/qgis/qgsattributeforminterface.h +include/qgis/qgsattributeformlegacyinterface.h include/qgis/qgsattributetabledelegate.h include/qgis/qgsattributetablefiltermodel.h include/qgis/qgsattributetablemodel.h include/qgis/qgsattributetableview.h +include/qgis/qgsattributetypeloaddialog.h include/qgis/qgsbilinearrasterresampler.h include/qgis/qgsblendmodecombobox.h include/qgis/qgsbrightnesscontrastfilter.h @@ -49,6 +56,11 @@ include/qgis/qgscacheindexfeatureid.h include/qgis/qgscategorizedsymbolrendererv2.h include/qgis/qgscategorizedsymbolrendererv2widget.h include/qgis/qgscharacterselectdialog.h +include/qgis/qgscheckboxconfigdlg.h +include/qgis/qgscheckboxwidget.h +include/qgis/qgscheckboxwidgetfactory.h +include/qgis/qgsclassificationwidget.h +include/qgis/qgsclassificationwidgetwrapperfactory.h include/qgis/qgsclipper.h include/qgis/qgscliptominmaxenhancement.h include/qgis/qgscollapsiblegroupbox.h @@ -57,8 +69,11 @@ include/qgis/qgscolorbutton.h include/qgis/qgscolordialog.h include/qgis/qgscolorrampcombobox.h include/qgis/qgscolorrampshader.h +include/qgis/qgscolorwidget.h +include/qgis/qgscolorwidgetfactory.h include/qgis/qgscomposerarrow.h include/qgis/qgscomposerattributetable.h +include/qgis/qgscomposerattributetablemodel.h include/qgis/qgscomposereffect.h include/qgis/qgscomposerframe.h include/qgis/qgscomposerhtml.h @@ -78,6 +93,7 @@ include/qgis/qgscomposerruler.h include/qgis/qgscomposerscalebar.h include/qgis/qgscomposershape.h include/qgis/qgscomposertable.h +include/qgis/qgscomposertablecolumn.h include/qgis/qgscomposertexttable.h include/qgis/qgscomposerview.h include/qgis/qgscomposition.h @@ -95,6 +111,7 @@ include/qgis/qgscrscache.h include/qgis/qgscsexception.h include/qgis/qgscubicrasterresampler.h include/qgis/qgscursors.h +include/qgis/qgscustomlayerorderwidget.h include/qgis/qgsdashspacedialog.h include/qgis/qgsdatadefined.h include/qgis/qgsdatadefinedbutton.h @@ -102,7 +119,11 @@ include/qgis/qgsdatadefinedsymboldialog. include/qgis/qgsdataitem.h include/qgis/qgsdataprovider.h include/qgis/qgsdatasourceuri.h +include/qgis/qgsdatetimeeditconfig.h +include/qgis/qgsdatetimeeditfactory.h +include/qgis/qgsdatetimeeditwrapper.h include/qgis/qgsdatumtransformdialog.h +include/qgis/qgsdatumtransformstore.h include/qgis/qgsdbfilterproxymodel.h include/qgis/qgsderivativefilter.h include/qgis/qgsdetaileditemdata.h @@ -110,11 +131,13 @@ include/qgis/qgsdetaileditemdelegate.h include/qgis/qgsdetaileditemwidget.h include/qgis/qgsdiagram.h include/qgis/qgsdiagramrendererv2.h +include/qgis/qgsdial.h include/qgis/qgsdialog.h include/qgis/qgsdistancearcproperter.h include/qgis/qgsdistancearea.h include/qgis/qgsdoubleboxscalebarstyle.h include/qgis/qgsdualview.h +include/qgis/qgsdummyconfigdlg.h include/qgis/qgseditorconfigwidget.h include/qgis/qgseditorwidgetconfig.h include/qgis/qgseditorwidgetfactory.h @@ -123,6 +146,8 @@ include/qgis/qgseditorwidgetwrapper.h include/qgis/qgsellipsesymbollayerv2.h include/qgis/qgsellipsesymbollayerv2widget.h include/qgis/qgsencodingfiledialog.h +include/qgis/qgsenumerationwidget.h +include/qgis/qgsenumerationwidgetfactory.h include/qgis/qgserror.h include/qgis/qgserrordialog.h include/qgis/qgsexception.h @@ -131,6 +156,7 @@ include/qgis/qgsexpressionbuilderdialog. include/qgis/qgsexpressionbuilderwidget.h include/qgis/qgsexpressionhighlighter.h include/qgis/qgsexpressionselectiondialog.h +include/qgis/qgsextentgroupbox.h include/qgis/qgsfeature.h include/qgis/qgsfeatureiterator.h include/qgis/qgsfeaturelistmodel.h @@ -142,8 +168,14 @@ include/qgis/qgsfeatureselectiondlg.h include/qgis/qgsfeatureselectionmodel.h include/qgis/qgsfeaturestore.h include/qgis/qgsfield.h +include/qgis/qgsfieldcombobox.h +include/qgis/qgsfieldexpressionwidget.h +include/qgis/qgsfieldmodel.h +include/qgis/qgsfieldproxymodel.h include/qgis/qgsfieldvalidator.h include/qgis/qgsfiledropedit.h +include/qgis/qgsfilenamewidget.h +include/qgis/qgsfilenamewidgetfactory.h include/qgis/qgsfillsymbollayerv2.h include/qgis/qgsfilterlineedit.h include/qgis/qgsfontutils.h @@ -167,6 +199,8 @@ include/qgis/qgsgraphbuilder.h include/qgis/qgsgraphbuilderintr.h include/qgis/qgsgraphdirector.h include/qgis/qgsgridfilewriter.h +include/qgis/qgshiddenwidget.h +include/qgis/qgshiddenwidgetfactory.h include/qgis/qgshighlight.h include/qgis/qgshillshadefilter.h include/qgis/qgshistogramdiagram.h @@ -176,10 +210,23 @@ include/qgis/qgshuesaturationfilter.h include/qgis/qgsidwinterpolator.h include/qgis/qgsifeatureselectionmanager.h include/qgis/qgsinterpolator.h +include/qgis/qgsinvertedpolygonrenderer.h +include/qgis/qgsinvertedpolygonrendererwidget.h include/qgis/qgslabel.h include/qgis/qgslabelattributes.h include/qgis/qgslabelsearchtree.h include/qgis/qgslayerpropertieswidget.h +include/qgis/qgslayertree.h +include/qgis/qgslayertreegroup.h +include/qgis/qgslayertreelayer.h +include/qgis/qgslayertreemapcanvasbridge.h +include/qgis/qgslayertreemodel.h +include/qgis/qgslayertreenode.h +include/qgis/qgslayertreeregistrybridge.h +include/qgis/qgslayertreeutils.h +include/qgis/qgslayertreeview.h +include/qgis/qgslayertreeviewdefaultactions.h +include/qgis/qgslegacyhelpers.h include/qgis/qgslegendinterface.h include/qgis/qgslegendmodel.h include/qgis/qgslinearminmaxenhancement.h @@ -196,9 +243,18 @@ include/qgis/qgsmapcanvasmap.h include/qgis/qgsmapcanvassnapper.h include/qgis/qgsmaplayer.h include/qgis/qgsmaplayeractionregistry.h +include/qgis/qgsmaplayercombobox.h +include/qgis/qgsmaplayermodel.h +include/qgis/qgsmaplayerproxymodel.h include/qgis/qgsmaplayerregistry.h include/qgis/qgsmapoverviewcanvas.h include/qgis/qgsmaprenderer.h +include/qgis/qgsmaprenderercache.h +include/qgis/qgsmaprenderercustompainterjob.h +include/qgis/qgsmaprendererjob.h +include/qgis/qgsmaprendererparalleljob.h +include/qgis/qgsmaprenderersequentialjob.h +include/qgis/qgsmapsettings.h include/qgis/qgsmaptip.h include/qgis/qgsmaptool.h include/qgis/qgsmaptoolemitpoint.h @@ -206,6 +262,7 @@ include/qgis/qgsmaptoolidentify.h include/qgis/qgsmaptoolpan.h include/qgis/qgsmaptoolzoom.h include/qgis/qgsmaptopixel.h +include/qgis/qgsmapunitscale.h include/qgis/qgsmarkersymbollayerv2.h include/qgis/qgsmessagebar.h include/qgis/qgsmessagebaritem.h @@ -224,6 +281,7 @@ include/qgis/qgsninecellfilter.h include/qgis/qgsnmeaconnection.h include/qgis/qgsnumericscalebarstyle.h include/qgis/qgsnumericsortlistviewitem.h +include/qgis/qgsobjectcustomproperties.h include/qgis/qgsofflineediting.h include/qgis/qgsogcutils.h include/qgis/qgsoptionsdialogbase.h @@ -240,6 +298,9 @@ include/qgis/qgspalettedrendererwidget.h include/qgis/qgspallabeling.h include/qgis/qgspaperitem.h include/qgis/qgspenstylecombobox.h +include/qgis/qgsphotoconfigdlg.h +include/qgis/qgsphotowidget.h +include/qgis/qgsphotowidgetfactory.h include/qgis/qgspiediagram.h include/qgis/qgspluginlayer.h include/qgis/qgspluginlayerregistry.h @@ -247,6 +308,7 @@ include/qgis/qgspluginmanagerinterface.h include/qgis/qgspoint.h include/qgis/qgspointdisplacementrenderer.h include/qgis/qgspointdisplacementrendererwidget.h +include/qgis/qgsprevieweffect.h include/qgis/qgsproject.h include/qgis/qgsprojectbadlayerguihandler.h include/qgis/qgsprojectfiletransform.h @@ -260,6 +322,9 @@ include/qgis/qgsproviderregistry.h include/qgis/qgspseudocolorshader.h include/qgis/qgspythonrunner.h include/qgis/qgsquerybuilder.h +include/qgis/qgsrangeconfigdlg.h +include/qgis/qgsrangewidget.h +include/qgis/qgsrangewidgetfactory.h include/qgis/qgsraster.h include/qgis/qgsrasterbandstats.h include/qgis/qgsrasterblock.h @@ -301,6 +366,7 @@ include/qgis/qgsrelationmanager.h include/qgis/qgsrelationmanagerdialog.h include/qgis/qgsrelationreferencefactory.h include/qgis/qgsrelationreferencewidget.h +include/qgis/qgsrelationwidgetwrapper.h include/qgis/qgsrelief.h include/qgis/qgsrelreferenceconfigdlg.h include/qgis/qgsrenderchecker.h @@ -317,7 +383,9 @@ include/qgis/qgsrunprocess.h include/qgis/qgsscalebarstyle.h include/qgis/qgsscalecalculator.h include/qgis/qgsscalecombobox.h +include/qgis/qgsscalerangewidget.h include/qgis/qgsscaleutils.h +include/qgis/qgsscalevisibilitydialog.h include/qgis/qgssearchquerybuilder.h include/qgis/qgssimplifymethod.h include/qgis/qgssinglebandcolordatarenderer.h @@ -328,6 +396,7 @@ include/qgis/qgssinglebandpseudocolorren include/qgis/qgssingleboxscalebarstyle.h include/qgis/qgssinglesymbolrendererv2.h include/qgis/qgssinglesymbolrendererv2widget.h +include/qgis/qgsslider.h include/qgis/qgsslopefilter.h include/qgis/qgssmartgroupeditordialog.h include/qgis/qgssnapper.h @@ -350,10 +419,25 @@ include/qgis/qgssymbolv2.h include/qgis/qgssymbolv2selectordialog.h include/qgis/qgstextannotationitem.h include/qgis/qgstextdiagram.h +include/qgis/qgstexteditconfigdlg.h +include/qgis/qgstexteditwidget.h +include/qgis/qgstexteditwidgetfactory.h include/qgis/qgsticksscalebarstyle.h include/qgis/qgstininterpolator.h include/qgis/qgstolerance.h include/qgis/qgstotalcurvaturefilter.h +include/qgis/qgsuniquevaluesconfigdlg.h +include/qgis/qgsuniquevaluewidget.h +include/qgis/qgsuniquevaluewidgetfactory.h +include/qgis/qgsunitselectionwidget.h +include/qgis/qgsuuidwidget.h +include/qgis/qgsuuidwidgetfactory.h +include/qgis/qgsvaluemapconfigdlg.h +include/qgis/qgsvaluemapwidget.h +include/qgis/qgsvaluemapwidgetfactory.h +include/qgis/qgsvaluerelationconfigdlg.h +include/qgis/qgsvaluerelationwidget.h +include/qgis/qgsvaluerelationwidgetfactory.h include/qgis/qgsvectorcolorbrewercolorrampv2dialog.h include/qgis/qgsvectorcolorrampv2.h include/qgis/qgsvectordataprovider.h @@ -374,6 +458,10 @@ include/qgis/qgsvectorlayerundocommand.h include/qgis/qgsvectorrandomcolorrampv2dialog.h include/qgis/qgsvectorsimplifymethod.h include/qgis/qgsvertexmarker.h +include/qgis/qgswebviewconfigdlg.h +include/qgis/qgswebviewwidget.h +include/qgis/qgswebviewwidgetfactory.h +include/qgis/qgswidgetwrapper.h include/qgis/qgszonalstatistics.h include/qgis/ui_qgscredentialdialog.h include/qgis/ui_qgsdetaileditemwidgetbase.h @@ -388,22 +476,23 @@ include/qgis/ui_qgsprojectionselectorbas include/qgis/ui_qgsquerybuilderbase.h include/qgis/ui_qgssublayersdialogbase.h lib/libqgis_analysis.so -lib/libqgis_analysis.so.2.2.0 +lib/libqgis_analysis.so.2.4.0 lib/libqgis_core.so -lib/libqgis_core.so.2.2.0 +lib/libqgis_core.so.2.4.0 lib/libqgis_gui.so -lib/libqgis_gui.so.2.2.0 +lib/libqgis_gui.so.2.4.0 lib/libqgis_networkanalysis.so -lib/libqgis_networkanalysis.so.2.2.0 +lib/libqgis_networkanalysis.so.2.4.0 %%GRASS%%lib/libqgisgrass.so -%%GRASS%%lib/libqgisgrass.so.2.2.0 +%%GRASS%%lib/libqgisgrass.so.2.4.0 %%QGIS_PYTHON%%lib/libqgispython.so -%%QGIS_PYTHON%%lib/libqgispython.so.2.2.0 +%%QGIS_PYTHON%%lib/libqgispython.so.2.4.0 lib/libqgissqlanyconnection.so -lib/libqgissqlanyconnection.so.2.2.0 +lib/libqgissqlanyconnection.so.2.4.0 lib/qgis/crssync %%GRASS%%lib/qgis/grass/bin/qgis.g.browser %%GRASS%%lib/qgis/grass/modules/qgis.d.rast +%%GRASS%%lib/qgis/grass/modules/qgis.g.info lib/qgis/plugins/libcoordinatecaptureplugin.so lib/qgis/plugins/libdelimitedtextprovider.so lib/qgis/plugins/libdxf2shpconverterplugin.so @@ -412,8 +501,6 @@ lib/qgis/plugins/libgdalprovider.so lib/qgis/plugins/libgeorefplugin.so lib/qgis/plugins/libgpsimporterplugin.so lib/qgis/plugins/libgpxprovider.so -%%GRASS%%lib/qgis/plugins/libgrass_gis.6.4.2.so -%%GRASS%%lib/qgis/plugins/libgrass_gis.6.4.2.so.2.2.0 %%GRASS%%lib/qgis/plugins/libgrassplugin.so %%GRASS%%lib/qgis/plugins/libgrassprovider.so %%GRASS%%lib/qgis/plugins/libgrassrasterprovider.so @@ -453,7 +540,7 @@ man/man1/qgis.1.gz %%DATADIR%%/doc/SPONSORS %%DATADIR%%/doc/TRANSLATORS %%DATADIR%%/doc/favicon.ico -%%DATADIR%%/doc/images/qgis_new_80pct.png +%%DATADIR%%/doc/images/qgis-icon-60x60.png %%DATADIR%%/doc/index.html %%DATADIR%%/doc/news %%DATADIR%%/doc/news.html @@ -1401,6 +1488,7 @@ man/man1/qgis.1.gz %%DATADIR%%/i18n/qgis_ta.qm %%DATADIR%%/i18n/qgis_te.qm %%DATADIR%%/i18n/qgis_th.qm +%%DATADIR%%/i18n/qgis_tl.qm %%DATADIR%%/i18n/qgis_tr.qm %%DATADIR%%/i18n/qgis_uk.qm %%DATADIR%%/i18n/qgis_vi.qm @@ -1422,6 +1510,110 @@ man/man1/qgis.1.gz %%QGIS_PYTHON%%%%DATADIR%%/python/console/ui_console_compile_apis.py %%QGIS_PYTHON%%%%DATADIR%%/python/console/ui_console_history_dlg.py %%QGIS_PYTHON%%%%DATADIR%%/python/console/ui_console_settings.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/easter.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/parser.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/relativedelta.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/rrule.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/tz.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/tzwin.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/zoneinfo/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/dateutil/zoneinfo/zoneinfo--latest.tar.gz +%%QGIS_PYTHON%%%%DATADIR%%/python/httplib2/CMakeLists.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/httplib2/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/httplib2/iri2uri.py +%%QGIS_PYTHON%%%%DATADIR%%/python/httplib2/socks.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/_compat.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/_stringdefs.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/bccache.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/compiler.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/constants.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/debug.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/defaults.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/environment.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/exceptions.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/ext.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/filters.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/lexer.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/loaders.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/meta.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/nodes.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/optimizer.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/parser.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/runtime.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/sandbox.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/tests.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/api.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/bytecode_cache.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/core_tags.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/debug.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/doctests.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/ext.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/filters.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/imports.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/inheritance.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/lexnparse.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/loader.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/regression.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/res/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/res/templates/broken.html +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/res/templates/foo/test.html +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/res/templates/syntaxerror.html +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/res/templates/test.html +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/security.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/tests.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/testsuite/utils.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/utils.py +%%QGIS_PYTHON%%%%DATADIR%%/python/jinja2/visitor.py +%%QGIS_PYTHON%%%%DATADIR%%/python/markupsafe/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/markupsafe/_compat.py +%%QGIS_PYTHON%%%%DATADIR%%/python/markupsafe/_constants.py +%%QGIS_PYTHON%%%%DATADIR%%/python/markupsafe/_native.py +%%QGIS_PYTHON%%%%DATADIR%%/python/markupsafe/_speedups.c +%%QGIS_PYTHON%%%%DATADIR%%/python/markupsafe/_speedups.so +%%QGIS_PYTHON%%%%DATADIR%%/python/markupsafe/tests.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/coverage/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/coverage/wcs100.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/coverage/wcs110.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/coverage/wcsBase.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/coverage/wcsdecoder.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/crs.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/csw.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/dif.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/etree.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/feature/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/feature/wfs100.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/feature/wfs110.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/feature/wfs200.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/fes.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/fgdc.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/interfaces.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/iso.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/namespaces.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/ows.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/sos.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/swe/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/swe/common.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/swe/observation/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/swe/observation/sos100.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/swe/observation/sos200.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/swe/sensor/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/swe/sensor/sml.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/tms.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/util.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/waterml/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/waterml/wml.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/waterml/wml10.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/waterml/wml11.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/wcs.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/wfs.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/wmc.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/wms.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/wmts.py +%%QGIS_PYTHON%%%%DATADIR%%/python/owslib/wps.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/GdalTools/GdalTools.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/GdalTools/__init__.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/GdalTools/icons/24-to-8-bits.png @@ -1510,6 +1702,34 @@ man/man1/qgis.1.gz %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/GdalTools/tools/ui_widgetWarp.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/GdalTools/tools/widgetBatchBase.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/GdalTools/tools/widgetPluginBase.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/dialogs/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/dialogs/maindialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/dialogs/manageconnectionsdialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/dialogs/newconnectiondialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/dialogs/recorddialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/dialogs/xmldialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/images/MetaSearch.png +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/images/help.png +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/metadata.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/plugin.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/resources/connections-default.xml +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/resources/templates/record_metadata_dc.html +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/resources/templates/service_metadata.html +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/resources/templates/xml_highlight.html +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/maindialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/maindialog.ui +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/manageconnectionsdialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/manageconnectionsdialog.ui +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/newconnectiondialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/newconnectiondialog.ui +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/recorddialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/recorddialog.ui +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/xmldialog.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/ui/xmldialog.ui +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/MetaSearch/util.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/LICENSE %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/README %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/TODO %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/__init__.py @@ -1533,8 +1753,8 @@ man/man1/qgis.1.gz %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/edge.qml %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/edge_label.qml %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/face.qml -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/face_mbr.qml %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/face_left.qml +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/face_mbr.qml %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/face_right.qml %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/face_seed.qml %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/db_manager/db_plugins/postgis/plugins/qgis_topoview/templates/next_left.qml @@ -1709,110 +1929,1350 @@ man/man1/qgis.1.gz %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/fTools/tools/voronoi.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/ProcessingPlugin.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/AdminToolsAlgorithmProvider.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/CreateMosaicDatastore.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/CreateStyleGeoServer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/CreateWorkspace.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/DeleteDatastore.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/DeleteWorkspace.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/GeoServerToolsAlgorithm.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/ImportIntoPostGIS.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/ImportRasterIntoGeoServer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/ImportVectorIntoGeoServer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/PostGISExecuteSQL.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/catalog.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/layer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/layergroup.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/namespace.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/resource.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/store.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/style.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/support.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/util.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/geoserver/workspace.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/httplib2/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/httplib2/iri2uri.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/httplib2/socks.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/admintools/postgis_utils.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/AddTableField.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/AutoincrementalField.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/BarPlot.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/CreateConstantRaster.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/EquivalentNumField.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/Explode.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/FieldPyculator.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/FieldsCalculator.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/JoinAttributes.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/MeanAndStdDevPlot.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/PointsDisplacement.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/PointsFromLines.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/PointsFromPolygons.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/PointsLayerFromTable.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/PolarPlot.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/Polygonize.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/QGISAlgorithmProvider.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/RasterLayerHistogram.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/RasterLayerStatistics.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/SaveSelectedFeatures.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/StatisticsByCategories.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/VectorLayerHistogram.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/VectorLayerScatterplot.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ZonalStatistics.py %%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/BasicStatisticsNumbers.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/BasicStatisticsStrings.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Buffer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Centroids.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Clip.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/ConvexHull.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Delaunay.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/DensifyGeometries.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/DensifyGeometriesInterval.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Difference.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Dissolve.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Eliminate.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/ExportGeometryInfo.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/ExtentFromLayer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/ExtractByLocation.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/ExtractNodes.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/FixedDistanceBuffer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Intersection.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/LinesIntersection.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/LinesToPolygons.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/MeanCoords.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/MultipartToSingleparts.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/NearestNeighbourAnalysis.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/PointDistance.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/PointsInPolygon.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/PointsInPolygonUnique.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/PointsInPolygonWeighted.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/PolygonsToLines.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/RandomExtract.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/RandomExtractWithinSubsets.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/RandomSelection.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/RandomSelectionWithinSubsets.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/ReprojectLayer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/SelectByLocation.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/SimplifyGeometries.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/SinglePartsToMultiparts.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/SumLines.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/Union.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/UniqueValues.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/VariableDistanceBuffer.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/VoronoiPolygons.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/copyright.txt -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ftools/voronoi.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/mmqgisx/MMQGISXAlgorithms.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/mmqgisx/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/mmqgisx/copyright.txt -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ui/FieldsCalculatorDialog.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ui/__init__.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/ui/ui_DlgFieldsCalculator.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/commander/CommanderWindow.py -%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/commander/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/exampleprovider/CMakeLists.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/exampleprovider/ExampleAlgorithm.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/exampleprovider/ExampleAlgorithmProvider.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/exampleprovider/ProcessingExampleProviderPlugin.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/exampleprovider/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/exampleprovider/metadata.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/ClipByExtent.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/ClipByMask.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/ColorRelief.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/GdalAlgorithm.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/GdalOgrAlgorithmProvider.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/GdalUtils.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/GridAverage.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/GridDataMetrics.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/GridInvDist.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/GridNearest.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/OgrAlgorithm.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/aspect.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/contour.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/extractprojection.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/fillnodata.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/gdal2xyz.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/gdaladdo.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/hillshade.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/information.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/merge.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/nearblack.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/ogr2ogr.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/ogrinfo.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/ogrsql.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/pct2rgb.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/polygonize.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/proximity.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/pyogr/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/pyogr/ogr2ogr.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/pyogr/ogrds.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/pyogr/ogrvrt.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/rasterize.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/rgb2pct.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/roughness.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/sieve.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/slope.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/tpi.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/translate.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/tri.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/gdal/warp.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/GrassAlgorithm.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/GrassAlgorithmProvider.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/GrassUtils.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/i.atcorr.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/i.fft.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/i.his.rgb.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/i.ifft.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/i.rgb.his.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/i.zc.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/m.cogo.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/nviz.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.aspect.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.average.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.basins.fill.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.bilinear.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.bitpattern.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.buffer.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.carve.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.circle.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.clump.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.coin.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.composite.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.contour.level.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.contour.step.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.cost.full.raster.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.cost.full.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.cost.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.covar.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.cross.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.describe.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.drain.coordinate.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.drain.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.fill.dir.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.fillnulls.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.flow.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.grow.distance.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.grow.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.gwflow.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.his.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.horizon.height.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.horizon.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.info.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.kappa.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.lake.coords.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.lake.layer.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.los.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.mapcalculator.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.median.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.mfilter.fp.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.mfilter.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.mode.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.neighbors.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.out.gridatb.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.out.ppm.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.out.vrml.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.out.xyz.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.param.scale.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.patch.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.plane.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.profile.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.quant.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.quantile.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.random.cells.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.random.raster.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.random.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.reclass.area.greater.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.reclass.area.lesser.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.reclass.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.recode.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.regression.line.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.report.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.resamp.interp.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.resamp.rst.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.resamp.stats.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.resample.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.rescale.eq.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.rescale.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.ros.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.series.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.shaded.relief.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.sim.sediment.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.sim.water.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.slope.aspect.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.slope.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.spread.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.spreadpath.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.statistics.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stats.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.angle.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.basins.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.del.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.distance.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.extract.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.order.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.pos.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.stream.stats.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.sum.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.sun.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.sunmask.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.surf.area.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.surf.contour.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.surf.gauss.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.surf.idw.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.surf.idw2.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.surf.random.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.terraflow.short.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.terraflow.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.thin.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.to.vect.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.topidx.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.volume.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.walk.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.water.outlet.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/r.watershed.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.buffer.column.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.buffer.distance.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.class.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.clean.advanced.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.clean.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.db.select.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.delaunay.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.dissolve.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.distance.toattr.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.distance.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.drape.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.extract.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.generalize.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.hull.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.in.dxf.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.in.wfs.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.info.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.kcv.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.kernel.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.lidar.correction.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.lidar.edgedetection.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.lidar.growing.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.mkgrid.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.neighbors.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.normal.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.out.dxf.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.out.pov.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.outlier.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.overlay.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.parallel.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.patch.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.perturb.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.qcount.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.random.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.reclass.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.report.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.sample.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.segment.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.select.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.split.length.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.split.vert.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.bspline.lambda.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.bspline.sparse.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.bspline.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.idw.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.rst.cvdev.line.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.rst.cvdev.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.rst.line.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.surf.rst.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.to.points.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.to.rast.attribute.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.to.rast.value.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.transform.pointsfile.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.transform.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.univar.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/description/v.voronoi.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/HtmlReportPostProcessor.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/r_coin.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/r_covar.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/r_describe.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/r_info.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/r_regression_line.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/r_report.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/r_stats.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/v_class.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/v_info.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/v_normal.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/v_report.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/ext/v_univar.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/grass.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass/nviz.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/Grass7Algorithm.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/Grass7AlgorithmProvider.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/Grass7Utils.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/__init__.py +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/TODO.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/i.atcorr.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/i.fft.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/i.his.rgb.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/i.ifft.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/i.rgb.his.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/i.zc.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/m.cogo.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/nviz.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.aspect.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.average.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.basins.fill.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.bilinear.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.bitpattern.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.buffer.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.carve.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.circle.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.clump.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.coin.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.composite.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.contour.level.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.contour.step.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.cost.full.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.cost.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.covar.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.cross.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.describe.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.drain.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.fill.dir.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.fillnulls.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.flow.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.grow.distance.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.grow.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.gwflow.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.his.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.horizon.height.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.horizon.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.info.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.kappa.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.lake.coords.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.lake.layer.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.mapcalculator.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.median.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.mfilter.fp.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.mfilter.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.mode.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.neighbors.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.out.gridatb.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.out.ppm.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.out.vrml.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.param.scale.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.patch.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.plane.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.profile.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.quant.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.quantile.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.random.cells.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.random.raster.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.random.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.reclass.area.greater.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.reclass.area.lesser.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.reclass.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.recode.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.regression.line.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.report.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.resamp.interp.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.resamp.rst.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.resamp.stats.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.resample.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.rescale.eq.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.rescale.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.series.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.shaded.relief.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sim.sediment.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sim.water.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.slope.aspect.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.spreadpath.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.statistics.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stats.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.angle.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.basins.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.del.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.distance.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.extract.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.order.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.pos.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.stream.stats.txt +%%QGIS_PYTHON%%%%DATADIR%%/python/plugins/processing/algs/grass7/description/r.sum.txt *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 14:37:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A2B28AF for ; Sun, 10 Aug 2014 14:37:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 4A791298F for ; Sun, 10 Aug 2014 14:37:47 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2cf3 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 14:37:47 +0000 From: John Marino Date: Sun, 10 Aug 2014 14:37:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364546 - head/archivers/pbzip2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e783bb.2cf3.66383aa3@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 14:37:47 -0000 Author: marino Date: Sun Aug 10 14:37:46 2014 New Revision: 364546 URL: http://svnweb.freebsd.org/changeset/ports/364546 QAT: https://qat.redports.org/buildarchive/r364546/ Log: archivers/pbzip2: Upgrade version 1.1.6 => 1.1.8 PR: 191851 Submitted by: Daniel Austin Approved by: maintainer timeout (miwi, 3 weeks) Modified: head/archivers/pbzip2/Makefile head/archivers/pbzip2/distinfo Modified: head/archivers/pbzip2/Makefile ============================================================================== --- head/archivers/pbzip2/Makefile Sun Aug 10 14:34:04 2014 (r364545) +++ head/archivers/pbzip2/Makefile Sun Aug 10 14:37:46 2014 (r364546) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pbzip2 -PORTVERSION= 1.1.6 +PORTVERSION= 1.1.8 CATEGORIES= archivers MASTER_SITES= http://compression.ca/pbzip2/ DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} Modified: head/archivers/pbzip2/distinfo ============================================================================== --- head/archivers/pbzip2/distinfo Sun Aug 10 14:34:04 2014 (r364545) +++ head/archivers/pbzip2/distinfo Sun Aug 10 14:37:46 2014 (r364546) @@ -1,2 +1,2 @@ -SHA256 (pbzip2-1.1.6/pbzip2-1.1.6.tar.gz) = 86bd6d58e5a6c13cf8c709620ebfe186fca423c2724225bb30431fa7a453aee2 -SIZE (pbzip2-1.1.6/pbzip2-1.1.6.tar.gz) = 54982 +SHA256 (pbzip2-1.1.8/pbzip2-1.1.8.tar.gz) = d2da7e65d2a2ba5426d6d9bcd15d86cc5f90038efabd5dbc1ef9bded21371f53 +SIZE (pbzip2-1.1.8/pbzip2-1.1.8.tar.gz) = 54429 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 14:47:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7AF1A73 for ; Sun, 10 Aug 2014 14:47:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 D7B462A64 for ; Sun, 10 Aug 2014 14:47:13 +0000 (UTC) Received: from adamw (uid 959) (envelope-from adamw@FreeBSD.org) id 2088 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 14:47:13 +0000 From: Adam Weinberger Date: Sun, 10 Aug 2014 14:47:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364547 - in head/mail: dovecot2 spamassassin squirrelmail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e785f1.2088.25d97ad2@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 14:47:14 -0000 Author: adamw Date: Sun Aug 10 14:47:12 2014 New Revision: 364547 URL: http://svnweb.freebsd.org/changeset/ports/364547 QAT: https://qat.redports.org/buildarchive/r364547/ Log: Add CPE data to my ports. Modified: head/mail/dovecot2/Makefile head/mail/spamassassin/Makefile head/mail/squirrelmail/Makefile Modified: head/mail/dovecot2/Makefile ============================================================================== --- head/mail/dovecot2/Makefile Sun Aug 10 14:37:46 2014 (r364546) +++ head/mail/dovecot2/Makefile Sun Aug 10 14:47:12 2014 (r364547) @@ -27,7 +27,7 @@ CONFLICTS= dovecot-1.[0-9]* # port before updating this one. # ###################################################################### -USES= iconv libtool +USES= iconv libtool cpe USE_RC_SUBR= dovecot GNU_CONFIGURE= yes Modified: head/mail/spamassassin/Makefile ============================================================================== --- head/mail/spamassassin/Makefile Sun Aug 10 14:37:46 2014 (r364546) +++ head/mail/spamassassin/Makefile Sun Aug 10 14:47:12 2014 (r364547) @@ -27,7 +27,9 @@ RUN_DEPENDS= ${ALL_DEPENDS} \ CONFLICTS?= ja-spamassassin-[0-9]* -USES= perl5 +CPE_VENDOR= apache + +USES= perl5 cpe USE_PERL5= configure USE_LDCONFIG= yes Modified: head/mail/squirrelmail/Makefile ============================================================================== --- head/mail/squirrelmail/Makefile Sun Aug 10 14:37:46 2014 (r364546) +++ head/mail/squirrelmail/Makefile Sun Aug 10 14:47:12 2014 (r364547) @@ -21,7 +21,7 @@ LICENSE= GPLv2 USE_PHP= session mhash gettext mbstring pcre openssl xml WANT_PHP_WEB= yes -USES= gettext tar:bzip2 +USES= gettext tar:bzip2 cpe WRKSRC= ${WRKDIR}/${PORTNAME}.stable/${PORTNAME} From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 15:02:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52ED7DB4 for ; Sun, 10 Aug 2014 15:02:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 3374C2C63 for ; Sun, 10 Aug 2014 15:02:21 +0000 (UTC) Received: from wen (uid 1209) (envelope-from wen@FreeBSD.org) id 2a4f by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 15:02:20 +0000 From: Wen Heping Date: Sun, 10 Aug 2014 15:02:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364548 - in head/games/xpacman: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7897c.2a4f.4cf79054@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 15:02:21 -0000 Author: wen Date: Sun Aug 10 15:02:19 2014 New Revision: 364548 URL: http://svnweb.freebsd.org/changeset/ports/364548 QAT: https://qat.redports.org/buildarchive/r364548/ Log: - Update to 1.002 - Stage support - Fix build with clang PR: 192546 Submitted by: Vladimir Kondratiev Added: head/games/xpacman/files/patch-pac.cc (contents, props changed) head/games/xpacman/files/patch-sizes.h (contents, props changed) Deleted: head/games/xpacman/files/patch-a Modified: head/games/xpacman/Makefile head/games/xpacman/distinfo head/games/xpacman/files/patch-board.cc head/games/xpacman/files/patch-f Modified: head/games/xpacman/Makefile ============================================================================== --- head/games/xpacman/Makefile Sun Aug 10 14:47:12 2014 (r364547) +++ head/games/xpacman/Makefile Sun Aug 10 15:02:19 2014 (r364548) @@ -2,20 +2,23 @@ # $FreeBSD$ PORTNAME= xpacman -PORTVERSION= 1.0 -PORTREVISION= 3 +PORTVERSION= 1.002 CATEGORIES= games MASTER_SITES= ftp://ftp.nvg.unit.no/pub/pacman/ -DISTNAME= pacman10 +DISTNAME= pacman-1_002 MAINTAINER= ports@FreeBSD.org COMMENT= Old action game -NO_WRKSUBDIR= Does not unpack into subdir. -USES= imake zip +LICENSE= GPLv2 + +RUN_DEPENDS+= ${LOCALBASE}/lib/X11/fonts/misc/9x18.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--enable-doublesize +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib USE_XORG= x11 xext -MAN1= pacman.1 PLIST_FILES= bin/pacman -NO_STAGE= yes .include Modified: head/games/xpacman/distinfo ============================================================================== --- head/games/xpacman/distinfo Sun Aug 10 14:47:12 2014 (r364547) +++ head/games/xpacman/distinfo Sun Aug 10 15:02:19 2014 (r364548) @@ -1,2 +1,2 @@ -SHA256 (pacman10.zip) = 6614635a5fbc3455772e62f4719ea3de5daad56ae2cbcb1564d57246d58c4cfd -SIZE (pacman10.zip) = 64523 +SHA256 (pacman-1_002.tar.gz) = c033268ab520937c867a8ff6f989a4dbe5d4bd38c23191db29ec39d8e807d622 +SIZE (pacman-1_002.tar.gz) = 86822 Modified: head/games/xpacman/files/patch-board.cc ============================================================================== --- head/games/xpacman/files/patch-board.cc Sun Aug 10 14:47:12 2014 (r364547) +++ head/games/xpacman/files/patch-board.cc Sun Aug 10 15:02:19 2014 (r364548) @@ -1,15 +1,6 @@ --- board.cc.orig Tue Jul 18 11:03:22 1995 +++ board.cc Mon Mar 10 20:52:04 2008 -@@ -119,7 +119,7 @@ - oldtemp=oldlist; - while (oldtemp) { //delete elements in the now previous sprite list - oldnext=oldtemp->next; -- delete oldnext; -+ delete oldtemp; - oldtemp=oldnext; - } - if (zero && oldlist) { //personal thingie used for debug, not useful -@@ -157,6 +157,7 @@ +@@ -527,6 +527,7 @@ void Board::sprite(DynamicElement *g) { //let dynamicelement be a sprite liststruct *temp=0,*last=0; //resets to null liststruct *ny=new liststruct; //get a new liststruct Modified: head/games/xpacman/files/patch-f ============================================================================== --- head/games/xpacman/files/patch-f Sun Aug 10 14:47:12 2014 (r364547) +++ head/games/xpacman/files/patch-f Sun Aug 10 15:02:19 2014 (r364548) @@ -2,9 +2,10 @@ +++ point.cc Sun Jan 9 01:51:34 2000 @@ -1,7 +1,7 @@ #include"point.h" - Point::Point(int xx=0,int yy=0) { x=xx; y=yy; }; +-Point::Point(int xx=0,int yy=0) { x=xx; y=yy; }; -Point::val_x() { return x; }; -Point::val_y() { return y; }; ++Point::Point(int xx,int yy) { x=xx; y=yy; }; +int Point::val_x() { return x; }; +int Point::val_y() { return y; }; void Point::set_x(int xx) { x=xx; }; Added: head/games/xpacman/files/patch-pac.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/xpacman/files/patch-pac.cc Sun Aug 10 15:02:19 2014 (r364548) @@ -0,0 +1,11 @@ +--- pac.cc.orig 1995-07-20 16:59:35.000000000 +0400 ++++ pac.cc 2014-08-09 11:48:00.762643451 +0400 +@@ -82,7 +82,7 @@ + UserInterface::setlpCmdLine(lpCmdLine); + UserInterface::setnCmdShow(nCmdShow); + #else +-main(int argc,char **argv) { ++int main(int argc,char **argv) { + Argument(argc, argv); // storing the command line arguments + #endif + Added: head/games/xpacman/files/patch-sizes.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/xpacman/files/patch-sizes.h Sun Aug 10 15:02:19 2014 (r364548) @@ -0,0 +1,17 @@ +--- sizes.h.orig 1995-07-13 16:14:05.000000000 +0400 ++++ sizes.h 2014-08-09 11:16:01.638794330 +0400 +@@ -21,12 +21,12 @@ + #ifndef DOUBLE + #define TEXTWIDTH 8 + #define TEXTHEIGHT 8 +-#define FONT1 "5x8" ++#define FONT1 "-misc-fixed-*-r-*-*-8-*-*-*-*-*-*-*" + #define FONT2 "5x7" + #else + #define TEXTWIDTH 8 + #define TEXTHEIGHT 16 +-#define FONT1 "8x16" ++#define FONT1 "-misc-fixed-*-r-*-*-18-*-*-*-*-*-*-*" + #define FONT2 "7x14" + #endif + //#define PFONT "clR6x8.fb"/*clR8x8" "6x10"*/ From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 15:21:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F6311E6 for ; Sun, 10 Aug 2014 15:21:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 40AC72E48 for ; Sun, 10 Aug 2014 15:21:37 +0000 (UTC) Received: from osa (uid 975) (envelope-from osa@FreeBSD.org) id 21bb by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 15:21:35 +0000 From: Sergey A. Osokin Date: Sun, 10 Aug 2014 15:21:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364549 - 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 Message-Id: <53e78dff.21bb.3dc1b79e@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 15:21:37 -0000 Author: osa Date: Sun Aug 10 15:21:35 2014 New Revision: 364549 URL: http://svnweb.freebsd.org/changeset/ports/364549 QAT: https://qat.redports.org/buildarchive/r364549/ Log: Update from 4.0.45 to 4.0.48: o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. Add CPE information. Release 4.0.48 -------------- * Fixed a race condition while determining what user an application should be executed as. This bug could lead to applications being run as the wrong user. Closes GH-1241. * [Standalone] Improved autodetection of Rails asset pipeline files. This prevents Standalone from incorrectly setting caching headers on non-asset pipeline files. Closes GH-1225. * Fixed compilation problems on CentOS 5. Thanks to J. Smith. Closes GH-1247. * Fixed compilation problems on OpenBSD. * Fixed compatibility with Ruby 1.8.5. Release 4.0.47 -------------- * [Enterprise] Fixed a bug in Flying Passenger's `--max-preloader-idle-time` option. Release 4.0.46 -------------- * Further improved Node.js and Socket.io compatibility. * Sticky session cookies have been made more reliable. * Fixed WebSocket upgrade issues on Firefox. Closes GH-1232. * The Python application loader now inserts the application root into `sys.path`. The fact that this was not done previously caused a lot of confusion amongst Python users, who wondered why their `passenger_wsgi.py` could not import any modules from the same directory. * Fixed a compatibility problem with Django, which could cause Django apps to freeze indefinitely. Closes GH-1215. * Logging of application spawning errors has been much improved. Full details about the error, such as environment variables, are saved to a private log file. In the past, these details were only viewable in the browser. This change also fixes a bug on Phusion Passenger Enterprise, where enabling Deployment Error Resistance causes error messages to get lost. Closes GH-1021 and GH-1175. * Fixed a regression in Node.js support. When a Node.js app is deployed on a HTTPS host, the `X-Forwarded-Proto` header wasn't set in 4.0.45. Closes GH-1231. * Passenger Standalone no longer, by default, loads shell startup files before loading the application. This is because Passenger Standalone is often invoked from the shell anyway. Indeed, loading shell startup files again can interfere with any environment variables already set in the invoking shell. You can still tell Passenger Standalone to load shell startup files by passing `--load-shell-envvars`. Passenger for Apache and Passenger for Nginx still load shell startup files by default. * Passenger Standalone now works properly when the HOME environment variable isn't set. Closes GH-713. * Passenger Standalone's `package-runtime` command has been removed. It has been broken for a while and has nowadays been obsolete by our automatic [binary generation system](https://github.com/phusion/passenger_autobuilder). Closes GH-1133. * The `passenger_startup_file` option now also works on Python apps. Closes GH-1233. * If you are a [Union Station](https://www.unionstationapp.com) customer, then Phusion Passenger will now also log application spawning errors to Union Station. This data isn't shown in the Union Station interface yet, but it will be implemented in the future. * Fixed compilation problems on OmniOS and OpenIndiana. Closes GH-1212. * Fixed compilation problems when Nginx is configured with OpenResty. Thanks to Yichun Zhang. Closes GH-1226. * Fixed Nginx HTTP POST failures on ARM platforms. Thanks to nocelic for the fix. Closes GH-1151. * Documentation contributions by Tim Bishop and Tugdual de Kerviler. * Minor Nginx bug fix by Feng Gu. Closes GH-1235. 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 Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/nginx-devel/Makefile Sun Aug 10 15:21:35 2014 (r364549) @@ -640,7 +640,7 @@ CONFIGURE_ARGS+=--without-http_rewrite_m .endif .if ${PORT_OPTIONS:MPASSENGER} -PASSENGER_VERSION= 4.0.45 +PASSENGER_VERSION= 4.0.48 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 Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/nginx-devel/distinfo Sun Aug 10 15:21:35 2014 (r364549) @@ -72,8 +72,8 @@ SHA256 (modsecurity-apache_2.7.5.tar.gz) SIZE (modsecurity-apache_2.7.5.tar.gz) = 1045387 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef SIZE (naxsi-core-0.50.tgz) = 49809 -SHA256 (passenger-4.0.45.tar.gz) = 5363611ebe5086b1ba699057ead3af1c06d0a70f368d1a41bdc399a45f934579 -SIZE (passenger-4.0.45.tar.gz) = 4363360 +SHA256 (passenger-4.0.48.tar.gz) = 0fe6a42c82eee59511b04aa683f65fb4eaf1acc6310de3fbbe905fa507347e24 +SIZE (passenger-4.0.48.tar.gz) = 4392898 SHA256 (ngx_postgres-0.9.tar.gz) = aac0141e73b5c440927b7e040072f120b36e49deb2ff36ad00ff96a80622fbec SIZE (ngx_postgres-0.9.tar.gz) = 41022 SHA256 (openresty-rds-csv-nginx-module-v0.05-0-g607e26b.tar.gz) = d5f14e45c6dc0d039ad52ae889775b5af1ff80a1c8edb69361c1581aca5d0b8f Modified: head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb ============================================================================== --- head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb Sun Aug 10 15:21:35 2014 (r364549) @@ -1,5 +1,5 @@ ---- ../passenger-4.0.45/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 -+++ ../passenger-4.0.45/build/nginx.rb 2014-06-02 05:55:12.000000000 +0400 +--- ../passenger-4.0.48/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 ++++ ../passenger-4.0.48/build/nginx.rb 2014-06-02 05:55:12.000000000 +0400 @@ -32,6 +32,7 @@ desc "Build Nginx support files" task :nginx => [ Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/nginx/Makefile Sun Aug 10 15:21:35 2014 (r364549) @@ -652,7 +652,7 @@ CONFIGURE_ARGS+=--without-http_rewrite_m .endif .if ${PORT_OPTIONS:MPASSENGER} -PASSENGER_VERSION= 4.0.45 +PASSENGER_VERSION= 4.0.48 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 Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/nginx/distinfo Sun Aug 10 15:21:35 2014 (r364549) @@ -74,8 +74,8 @@ SHA256 (modsecurity-apache_2.7.5.tar.gz) SIZE (modsecurity-apache_2.7.5.tar.gz) = 1045387 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef SIZE (naxsi-core-0.50.tgz) = 49809 -SHA256 (passenger-4.0.45.tar.gz) = 5363611ebe5086b1ba699057ead3af1c06d0a70f368d1a41bdc399a45f934579 -SIZE (passenger-4.0.45.tar.gz) = 4363360 +SHA256 (passenger-4.0.48.tar.gz) = 0fe6a42c82eee59511b04aa683f65fb4eaf1acc6310de3fbbe905fa507347e24 +SIZE (passenger-4.0.48.tar.gz) = 4392898 SHA256 (ngx_postgres-0.9.tar.gz) = aac0141e73b5c440927b7e040072f120b36e49deb2ff36ad00ff96a80622fbec SIZE (ngx_postgres-0.9.tar.gz) = 41022 SHA256 (openresty-rds-csv-nginx-module-v0.05-0-g607e26b.tar.gz) = d5f14e45c6dc0d039ad52ae889775b5af1ff80a1c8edb69361c1581aca5d0b8f Modified: head/www/nginx/files/extra-patch-passenger-build-nginx.rb ============================================================================== --- head/www/nginx/files/extra-patch-passenger-build-nginx.rb Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/nginx/files/extra-patch-passenger-build-nginx.rb Sun Aug 10 15:21:35 2014 (r364549) @@ -1,5 +1,5 @@ ---- ../passenger-4.0.45/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 -+++ ../passenger-4.0.45/build/nginx.rb 2014-06-02 05:55:12.000000000 +0400 +--- ../passenger-4.0.48/build/nginx.rb.orig 2013-10-27 02:00:00.000000000 +0400 ++++ ../passenger-4.0.48/build/nginx.rb 2014-06-02 05:55:12.000000000 +0400 @@ -32,6 +32,7 @@ desc "Build Nginx support files" task :nginx => [ Modified: head/www/rubygem-passenger/Makefile ============================================================================== --- head/www/rubygem-passenger/Makefile Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/rubygem-passenger/Makefile Sun Aug 10 15:21:35 2014 (r364549) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= passenger -PORTVERSION= 4.0.45 +PORTVERSION= 4.0.48 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- @@ -10,6 +10,11 @@ PKGNAMEPREFIX= rubygem- MAINTAINER= osa@FreeBSD.org COMMENT= Modules for running Ruby on Rails and Rack applications +USES+= cpe + +CPE_VENDOR= phusion +CPE_PRODUCT= passenger + OPTIONS_DEFINE= DEBUG SYMLINK OPTIONS_SINGLE= SERVER OPTIONS_SINGLE_SERVER= APACHE22 NGINX Modified: head/www/rubygem-passenger/distinfo ============================================================================== --- head/www/rubygem-passenger/distinfo Sun Aug 10 15:02:19 2014 (r364548) +++ head/www/rubygem-passenger/distinfo Sun Aug 10 15:21:35 2014 (r364549) @@ -1,2 +1,2 @@ -SHA256 (rubygem/passenger-4.0.45.gem) = 54b81460d1df74dc481044564908a04bbc648cdfdc014303e61051547b227fb3 -SIZE (rubygem/passenger-4.0.45.gem) = 4378112 +SHA256 (rubygem/passenger-4.0.48.gem) = 1a552905655051aa62be6ce482ba49e7efed68150d0f338c58dd55b972b33ae8 +SIZE (rubygem/passenger-4.0.48.gem) = 4405760 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 15:40:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 33CFC5F3; Sun, 10 Aug 2014 15:40:23 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.issp.ac.ru", Issuer "relay.issp.ac.ru" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A928C200E; Sun, 10 Aug 2014 15:40:22 +0000 (UTC) Received: from host-62-63-83-42.rev.as20985.net [62.63.83.42:53704] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id s7AFeZHw095121 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Sun, 10 Aug 2014 19:40:35 +0400 (MSK) X-Authentication-Warning: mail.issp.ac.ru: Host host-62-63-83-42.rev.as20985.net [62.63.83.42] claimed to be mercury.ph.man.ac.uk From: Max Brazhnikov To: Alexey Dokuchaev Subject: Re: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... Date: Sun, 10 Aug 2014 15:40:11 +0000 Message-ID: <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> User-Agent: KMail/4.12.5 (FreeBSD/9.3-PRERELEASE; KDE/4.12.5; amd64; ; ) In-Reply-To: <20140810095516.GA35955@FreeBSD.org> References: <53e7336d.2c4d.2257f090@svn.freebsd.org> <20140810095516.GA35955@FreeBSD.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Marcus von Appen , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 15:40:23 -0000 On Sun, 10 Aug 2014 09:55:16 +0000 Alexey Dokuchaev wrote: > On Sun, Aug 10, 2014 at 08:55:08AM +0000, Marcus von Appen wrote: > > New Revision: 364518 > > URL: http://svnweb.freebsd.org/changeset/ports/364518 > > QAT: https://qat.redports.org/buildarchive/r364518/ > > > > -USES= pkgconfig > > +USES= pkgconfig python:2 > > USE_GNOME= atk > > -USE_PYTHON= 2 > > -USE_PYDISTUTILS=yes > > -PYDISTUTILS_AUTOPLIST= yes > > +PYTHON_FEATURES=autoplist distutils > > Yuck, this PYTHON_FEATURES knob is ugly. Why not follow Perl's example > instead (USES=perl and USE_PERL)? It both makes more sense and shorter. ugly or not, it's a matter of taste. But PYTHON_FEATURES usage is inconsistent with COMPILER_FEATURES (read only var). Could we rename it while it's not too late? Max From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 15:56:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DFD60815; Sun, 10 Aug 2014 15:56:57 +0000 (UTC) Received: from smtprelay02.ispgateway.de (smtprelay02.ispgateway.de [80.67.31.29]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 987C6214D; Sun, 10 Aug 2014 15:56:57 +0000 (UTC) Received: from [89.182.178.183] (helo=localhost) by smtprelay02.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1XGVUG-00042z-7Z; Sun, 10 Aug 2014 17:56:48 +0200 Date: Sun, 10 Aug 2014 17:56:49 +0200 From: Marcus von Appen To: Max Brazhnikov Subject: Re: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... Message-ID: <20140810155649.GA1040@medusa.sysfault.org> Reply-To: Marcus von Appen Mail-Followup-To: Max Brazhnikov , Alexey Dokuchaev , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <53e7336d.2c4d.2257f090@svn.freebsd.org> <20140810095516.GA35955@FreeBSD.org> <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="gKMricLos+KVdGMg" Content-Disposition: inline In-Reply-To: <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> User-Agent: Mutt/1.5.23 (2014-03-12) X-Df-Sender: MTEyNTc0Mg== Cc: svn-ports-head@freebsd.org, Alexey Dokuchaev , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 15:56:58 -0000 --gKMricLos+KVdGMg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On, Sun Aug 10, 2014, Max Brazhnikov wrote: > On Sun, 10 Aug 2014 09:55:16 +0000 Alexey Dokuchaev wrote: > > On Sun, Aug 10, 2014 at 08:55:08AM +0000, Marcus von Appen wrote: > > > New Revision: 364518 > > > URL: http://svnweb.freebsd.org/changeset/ports/364518 > > > QAT: https://qat.redports.org/buildarchive/r364518/ > > > > > > -USES= pkgconfig > > > +USES= pkgconfig python:2 > > > USE_GNOME= atk > > > -USE_PYTHON= 2 > > > -USE_PYDISTUTILS=yes > > > -PYDISTUTILS_AUTOPLIST= yes > > > +PYTHON_FEATURES=autoplist distutils > > > > Yuck, this PYTHON_FEATURES knob is ugly. Why not follow Perl's example > > instead (USES=perl and USE_PERL)? It both makes more sense and shorter. > > ugly or not, it's a matter of taste. But PYTHON_FEATURES usage is inconsistent > with COMPILER_FEATURES (read only var). Could we rename it while it's not too late? Using USE_PYTHON is a problem, since this would be inconsistent with many other parts of the infrastructure. Aside from that, it would need a lot of glue code for the transition phase. Regardless of that, if portmgr's common suggestion is that XXX_FEATURES is about testing for a certain feature (read-only), I'm fine with it and open for suggestions, which describe that infrastructure bit X wants to enable a certain infrastructure feature. PYTHON_FEATURES is in my opinion the best by far. If the consensus is to use USE_PYTHON, similar to USE_PERL5, this will require us to migrate all python ports from USE_PYTHON to USES=python first and will take some time. Cheers Marcus --gKMricLos+KVdGMg Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlPnlkEACgkQi68/ErJnpkfCbACfV/FjAVk7LkV/8sy0M46ZvNyv eHkAnAk1pnAUGexgvB8cSsLVPYf7vqtW =I9PS -----END PGP SIGNATURE----- --gKMricLos+KVdGMg-- From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 16:32:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36910C61 for ; Sun, 10 Aug 2014 16:32:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 EC5EF2522 for ; Sun, 10 Aug 2014 16:32:45 +0000 (UTC) Received: from riggs (uid 1334) (envelope-from riggs@FreeBSD.org) id 2ece by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 16:32:45 +0000 From: Thomas Zander Date: Sun, 10 Aug 2014 16:32:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364550 - in head/www/boa: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e79ead.2ece.3363587b@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 16:32:46 -0000 Author: riggs Date: Sun Aug 10 16:32:45 2014 New Revision: 364550 URL: http://svnweb.freebsd.org/changeset/ports/364550 QAT: https://qat.redports.org/buildarchive/r364550/ Log: - Stagify - Add LICENSE - Makefile cleanup - Move pkg-plist into Makefile PLIST var - Add pkg-message.in regarding startup script - Pet portlint PR: 191839 Submitted by: freebsd@jonathanprice.org Approved by: mentors (implicit) Added: head/www/boa/files/pkg-message.in (contents, props changed) Deleted: head/www/boa/pkg-plist Modified: head/www/boa/Makefile Modified: head/www/boa/Makefile ============================================================================== --- head/www/boa/Makefile Sun Aug 10 15:21:35 2014 (r364549) +++ head/www/boa/Makefile Sun Aug 10 16:32:45 2014 (r364550) @@ -11,42 +11,48 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r MAINTAINER= ports@FreeBSD.org COMMENT= High performance single-tasking web server +LICENSE= GPLv2 # or later + USES= gmake makeinfo tar:bzip2 GNU_CONFIGURE= yes INFO= boa -MAN8= boa.8 PORTDOCS= boa.texi boa.html boa.txt boa_banner.png +PORTEXAMPLES= boa.conf cgi-test.cgi nph-test.cgi resolver.pl + +OPTIONS_DEFINE= DOCS EXAMPLES + +SUB_FILES= pkg-message + +PLIST_FILES= etc/rc.d/boa.sh.sample \ + man/man8/boa.8.gz \ + sbin/boa \ + sbin/boa_indexer \ + +.include -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" \ ${WRKSRC}/examples/boa.conf ${WRKSRC}/src/defines.h do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/src/boa ${PREFIX}/sbin - @${INSTALL_PROGRAM} ${WRKSRC}/src/boa_indexer ${PREFIX}/sbin - @${INSTALL_MAN} ${WRKSRC}/docs/boa.8 ${PREFIX}/man/man8 - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/examples/boa.conf ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/examples/cgi-test.cgi ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/examples/nph-test.cgi ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/examples/resolver.pl ${EXAMPLESDIR} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${INSTALL_PROGRAM} ${WRKSRC}/src/boa ${STAGEDIR}${PREFIX}/sbin + @${INSTALL_PROGRAM} ${WRKSRC}/src/boa_indexer ${STAGEDIR}${PREFIX}/sbin + @${INSTALL_MAN} ${WRKSRC}/docs/boa.8 ${STAGEDIR}${PREFIX}/man/man8 + @${INSTALL_DATA} ${WRKSRC}/docs/boa.info ${STAGEDIR}${PREFIX}/${INFO_PATH} + @${INSTALL_SCRIPT} ${FILESDIR}/boa.sh.sample ${STAGEDIR}${PREFIX}/etc/rc.d +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/docs/${f} ${STAGEDIR}${DOCSDIR} +.endfor +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} +.for f in ${PORTEXAMPLES} + @${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .endif - @${INSTALL_DATA} ${WRKSRC}/docs/boa.info ${PREFIX}/info - -post-install: - @if [ ! -f ${PREFIX}/etc/rc.d/boa.sh ]; then \ - ${ECHO} "Installing ${PREFIX}/etc/rc.d/boa.sh.sample \ - startup file."; \ - ${INSTALL_SCRIPT} ${FILESDIR}/boa.sh.sample \ - ${PREFIX}/etc/rc.d; \ - fi .include Added: head/www/boa/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/boa/files/pkg-message.in Sun Aug 10 16:32:45 2014 (r364550) @@ -0,0 +1,7 @@ + +You may wish to copy and edit the sample startup script + +%%PREFIX%%/etc/rc.d/boa.sh.sample + +according to your requirements. + From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 16:40:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3385BEE6; Sun, 10 Aug 2014 16:40:15 +0000 (UTC) Received: from apnoea.adamw.org (apnoea.adamw.org [204.109.59.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 082A72558; Sun, 10 Aug 2014 16:40:14 +0000 (UTC) Received: from [192.168.192.25] (dhcp-108-170-169-12.cable.user.start.ca [108.170.169.12]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by apnoea.adamw.org (Postfix) with ESMTPSA id 1500D15EF04; Sun, 10 Aug 2014 12:40:11 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... From: Adam Weinberger In-Reply-To: <20140810155649.GA1040@medusa.sysfault.org> Date: Sun, 10 Aug 2014 12:40:10 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: References: <53e7336d.2c4d.2257f090@svn.freebsd.org> <20140810095516.GA35955@FreeBSD.org> <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> <20140810155649.GA1040@medusa.sysfault.org> To: Marcus von Appen X-Mailer: Apple Mail (2.1878.6) Cc: svn-ports-head@freebsd.org, Max Brazhnikov , Alexey Dokuchaev , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 16:40:15 -0000 On 10 Aug, 2014, at 11:56, Marcus von Appen wrote: > On, Sun Aug 10, 2014, Max Brazhnikov wrote: >=20 >> On Sun, 10 Aug 2014 09:55:16 +0000 Alexey Dokuchaev wrote: >>> On Sun, Aug 10, 2014 at 08:55:08AM +0000, Marcus von Appen wrote: >>>> New Revision: 364518 >>>> URL: http://svnweb.freebsd.org/changeset/ports/364518 >>>> QAT: https://qat.redports.org/buildarchive/r364518/ >>>>=20 >>>> -USES=3D pkgconfig >>>> +USES=3D pkgconfig python:2 >>>> USE_GNOME=3D atk >>>> -USE_PYTHON=3D 2 >>>> -USE_PYDISTUTILS=3Dyes >>>> -PYDISTUTILS_AUTOPLIST=3D yes >>>> +PYTHON_FEATURES=3Dautoplist distutils >>>=20 >>> Yuck, this PYTHON_FEATURES knob is ugly. Why not follow Perl's = example >>> instead (USES=3Dperl and USE_PERL)? It both makes more sense and = shorter. >>=20 >> ugly or not, it's a matter of taste. But PYTHON_FEATURES usage is = inconsistent >> with COMPILER_FEATURES (read only var). Could we rename it while it's = not too late? >=20 > Using USE_PYTHON is a problem, since this would be inconsistent with = many > other parts of the infrastructure. Aside from that, it would need a = lot of > glue code for the transition phase. >=20 > Regardless of that, if portmgr's common suggestion is that = XXX_FEATURES is > about testing for a certain feature (read-only), I'm fine with it and = open for > suggestions, which describe that infrastructure bit X wants to enable = a > certain infrastructure feature. >=20 > PYTHON_FEATURES is in my opinion the best by far. If the consensus is = to use > USE_PYTHON, similar to USE_PERL5, this will require us to migrate all = python > ports from USE_PYTHON to USES=3Dpython first and will take some time. Can it just treat USE_PTYHON as PYTHON_FEATURES if USES=3Dpython is = defined? # Adam --=20 Adam Weinberger adamw@adamw.org http://www.adamw.org From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 16:44:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 4AE95FDB; Sun, 10 Aug 2014 16:44:16 +0000 (UTC) Date: Sun, 10 Aug 2014 16:44:16 +0000 From: Alexey Dokuchaev To: Max Brazhnikov Subject: Re: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... Message-ID: <20140810164416.GA43983@FreeBSD.org> References: <53e7336d.2c4d.2257f090@svn.freebsd.org> <20140810095516.GA35955@FreeBSD.org> <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Marcus von Appen , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 16:44:16 -0000 On Sun, Aug 10, 2014 at 03:40:11PM +0000, Max Brazhnikov wrote: > On Sun, 10 Aug 2014 09:55:16 +0000 Alexey Dokuchaev wrote: > > On Sun, Aug 10, 2014 at 08:55:08AM +0000, Marcus von Appen wrote: > > > New Revision: 364518 > > > URL: http://svnweb.freebsd.org/changeset/ports/364518 > > > QAT: https://qat.redports.org/buildarchive/r364518/ > > > > > > -USES= pkgconfig > > > +USES= pkgconfig python:2 > > > USE_GNOME= atk > > > -USE_PYTHON= 2 > > > -USE_PYDISTUTILS=yes > > > -PYDISTUTILS_AUTOPLIST= yes > > > +PYTHON_FEATURES=autoplist distutils > > > > Yuck, this PYTHON_FEATURES knob is ugly. Why not follow Perl's example > > instead (USES=perl and USE_PERL)? It both makes more sense and shorter. > > ugly or not, it's a matter of taste. [...] Not really. It is also 1) inconsistent with USE_PERL, and 2) is overly long knob name (breaks indentation). ./danfe P.S. I'm wondering about these "a matter of taste" reasons. Are you guys really don't see the ugliness when it's there? Why defending it when it can/should be just fixed? From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 16:45:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id B4A7315D; Sun, 10 Aug 2014 16:45:24 +0000 (UTC) Date: Sun, 10 Aug 2014 16:45:24 +0000 From: Alexey Dokuchaev To: Max Brazhnikov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... Message-ID: <20140810164524.GB43983@FreeBSD.org> References: <53e7336d.2c4d.2257f090@svn.freebsd.org> <20140810095516.GA35955@FreeBSD.org> <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> <20140810155649.GA1040@medusa.sysfault.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140810155649.GA1040@medusa.sysfault.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 16:45:24 -0000 On Sun, Aug 10, 2014 at 05:56:49PM +0200, Marcus von Appen wrote: > PYTHON_FEATURES is in my opinion the best by far. If the consensus is to use > USE_PYTHON, similar to USE_PERL5, this will require us to migrate all python > ports from USE_PYTHON to USES=python first and will take some time. Perl guys managed to convert their ports. Why python@ gang cannot do the same? ./danfe From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 17:00:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC92C59E; Sun, 10 Aug 2014 17:00:08 +0000 (UTC) Received: from h.highsecure.ru (mail6.highsecure.ru [IPv6:2a01:4f8:191:22a6::99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8AD88278F; Sun, 10 Aug 2014 17:00:08 +0000 (UTC) Received: from medway.cl.cam.ac.uk (medway.cl.cam.ac.uk [IPv6:2001:630:212:238:21c:c0ff:fe4b:2b85]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: vsevolod@highsecure.ru) by h.highsecure.ru (Postfix) with ESMTPSA id 70002300198; Sun, 10 Aug 2014 18:59:55 +0200 (CEST) Message-ID: <53E7A512.8050008@FreeBSD.org> Date: Sun, 10 Aug 2014 18:00:02 +0100 From: Vsevolod Stakhov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Bryan Drewery , Matthias Andree , Tijl Coosemans Subject: Re: svn commit: r364287 - head/ports-mgmt/pkg-devel References: <53e39939.55bc.4ca5432c@svn.freebsd.org> <20140807172841.58633e63@kalimero.tijl.coosemans.org> <53E3A468.5050603@FreeBSD.org> <53E3AC0C.5020904@gmx.de> <53E3AD09.2050000@FreeBSD.org> <53E3B3B5.9000104@gmx.de> <53E3B6D8.9080101@FreeBSD.org> <53E590AC.4020105@FreeBSD.org> In-Reply-To: <53E590AC.4020105@FreeBSD.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 17:00:08 -0000 Bryan, On 09/08/14 04:08, Bryan Drewery wrote: > On 8/7/2014 12:26 PM, Vsevolod Stakhov wrote: >> On 07/08/14 18:13, Matthias Andree wrote: >>> Am 07.08.2014 um 18:44 schrieb Vsevolod Stakhov: >>> >>>> On 07/08/14 17:40, Matthias Andree wrote: >>>>> Am 07.08.2014 um 18:08 schrieb Vsevolod Stakhov: >>>>> >>> [skipped] > > I'm not convinced about this change. We have fixed the wine-devel-i386 > which was unrelated to soname version. > > Will stripping .so.* break automatic reinstalling when shlibs change? > That is a critical feature. > I think, I've described in details the current issue with that at #pkgng@freenode. Briefly, this change does not break "automatic reinstalling when shlibs change" as it doesn't work now. -- Vsevolod Stakhov From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 17:05:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79206866; Sun, 10 Aug 2014 17:05:56 +0000 (UTC) Received: from smtprelay05.ispgateway.de (smtprelay05.ispgateway.de [80.67.31.100]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30C1B27D4; Sun, 10 Aug 2014 17:05:55 +0000 (UTC) Received: from [89.182.178.183] (helo=localhost) by smtprelay05.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1XGWZ0-00012P-JY; Sun, 10 Aug 2014 19:05:46 +0200 Date: Sun, 10 Aug 2014 19:05:47 +0200 From: Marcus von Appen To: Alexey Dokuchaev Subject: Re: svn commit: r364518 - in head: accessibility/py-papi audio/py-al devel/py-astroid devel/py-dynrules devel/py-game devel/py-logilab-common devel/py-ocempgui devel/py-ply devel/py-sdl2 devel/pychecke... Message-ID: <20140810170547.GB1040@medusa.sysfault.org> Reply-To: Marcus von Appen Mail-Followup-To: Alexey Dokuchaev , Max Brazhnikov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <53e7336d.2c4d.2257f090@svn.freebsd.org> <20140810095516.GA35955@FreeBSD.org> <2556564.WKGpsAPjlp@mercury.ph.man.ac.uk> <20140810155649.GA1040@medusa.sysfault.org> <20140810164524.GB43983@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1LKvkjL3sHcu1TtY" Content-Disposition: inline In-Reply-To: <20140810164524.GB43983@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-Df-Sender: MTEyNTc0Mg== Cc: svn-ports-head@freebsd.org, Max Brazhnikov , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 17:05:56 -0000 --1LKvkjL3sHcu1TtY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On, Sun Aug 10, 2014, Alexey Dokuchaev wrote: > On Sun, Aug 10, 2014 at 05:56:49PM +0200, Marcus von Appen wrote: > > PYTHON_FEATURES is in my opinion the best by far. If the consensus is to use > > USE_PYTHON, similar to USE_PERL5, this will require us to migrate all python > > ports from USE_PYTHON to USES=python first and will take some time. > > Perl guys managed to convert their ports. Why python@ gang cannot do the > same? Given a consensus, we can, but it will take time. Cheers Marcus --1LKvkjL3sHcu1TtY Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlPnpmsACgkQi68/ErJnpkdJtgCfYNs3C6zo7XXBZ2phtpJRGf90 GfsAoNYy2dshNAdx9FolS6IhtIQEOmBW =yNYp -----END PGP SIGNATURE----- --1LKvkjL3sHcu1TtY-- From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 17:47:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48E21133 for ; Sun, 10 Aug 2014 17:47:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 377E52B67 for ; Sun, 10 Aug 2014 17:47:06 +0000 (UTC) Received: from osa (uid 975) (envelope-from osa@FreeBSD.org) id 2c91 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 17:47:05 +0000 From: Sergey A. Osokin Date: Sun, 10 Aug 2014 17:47:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364551 - 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 Message-Id: <53e7b019.2c91.25b2850a@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 17:47:06 -0000 Author: osa Date: Sun Aug 10 17:47:04 2014 New Revision: 364551 URL: http://svnweb.freebsd.org/changeset/ports/364551 QAT: https://qat.redports.org/buildarchive/r364551/ Log: Update third-party modsecurity module from 2.7.5 to latest version 2.8.0. Added: head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure (contents, props changed) head/www/nginx/files/extra-patch-nginx-modsecurity-configure (contents, props changed) Deleted: head/www/nginx-devel/files/extra-patch-nginx-modsecurity-config head/www/nginx/files/extra-patch-nginx-modsecurity-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 Sun Aug 10 16:32:45 2014 (r364550) +++ head/www/nginx-devel/Makefile Sun Aug 10 17:47:04 2014 (r364551) @@ -612,15 +612,16 @@ CONFIGURE_ARGS+=--add-module=${WRKDIR}/o .endif .if ${PORT_OPTIONS:MMODSECURITY} -NGINX_MODSECURITY_VERSION= 2.7.5 +NGINX_MODSECURITY_VERSION= 2.8.0 LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre \ - libapr-1.so:${PORTSDIR}/devel/apr1 + libapr-1.so:${PORTSDIR}/devel/apr1 \ + libyajl.so:${PORTSDIR}/devel/yajl USE_APACHE= 22+ USE_GNOME= libxml2 MASTER_SITES+= http://www.modsecurity.org/tarball/${NGINX_MODSECURITY_VERSION}/:modsecurity -DISTFILES+= modsecurity-apache_${NGINX_MODSECURITY_VERSION}.tar.gz:modsecurity -CONFIGURE_ARGS+=--add-module=${WRKDIR}/modsecurity-apache_${NGINX_MODSECURITY_VERSION}/nginx/modsecurity -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-nginx-modsecurity-config +DISTFILES+= modsecurity-${NGINX_MODSECURITY_VERSION}.tar.gz:modsecurity +CONFIGURE_ARGS+=--add-module=${WRKDIR}/modsecurity-${NGINX_MODSECURITY_VERSION}/nginx/modsecurity +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-nginx-modsecurity-configure .endif .if ${PORT_OPTIONS:MNAXSI} @@ -951,12 +952,12 @@ post-patch: .if ${PORT_OPTIONS:MMODSECURITY} @${REINPLACE_CMD} \ 's!%%PREFIX%%!${LOCALBASE}!g' \ - ${WRKDIR}/modsecurity-apache_${NGINX_MODSECURITY_VERSION}/nginx/modsecurity/config + ${WRKDIR}/modsecurity-${NGINX_MODSECURITY_VERSION}/configure .endif pre-configure: .if ${PORT_OPTIONS:MMODSECURITY} - ( cd ${WRKDIR}/modsecurity-apache_${NGINX_MODSECURITY_VERSION} && \ + ( cd ${WRKDIR}/modsecurity-${NGINX_MODSECURITY_VERSION} && \ CC="${CC}" ./${CONFIGURE_SCRIPT} --enable-standalone-module && \ ${MAKE} ) .endif Modified: head/www/nginx-devel/distinfo ============================================================================== --- head/www/nginx-devel/distinfo Sun Aug 10 16:32:45 2014 (r364550) +++ head/www/nginx-devel/distinfo Sun Aug 10 17:47:04 2014 (r364551) @@ -68,8 +68,8 @@ SHA256 (openresty-lua-nginx-module-v0.9. SIZE (openresty-lua-nginx-module-v0.9.4-0-g6169a19.tar.gz) = 470182 SHA256 (openresty-memc-nginx-module-v0.14-0-gde4cf86.tar.gz) = b60fed5921a0c19c6ffe71e5c764193283dbe635bb3bad6febd6655f94a633e9 SIZE (openresty-memc-nginx-module-v0.14-0-gde4cf86.tar.gz) = 37756 -SHA256 (modsecurity-apache_2.7.5.tar.gz) = 9e907536278d8da80d3dbb29aeffe9c4ec37ce9b641035b2da64e993135647a2 -SIZE (modsecurity-apache_2.7.5.tar.gz) = 1045387 +SHA256 (modsecurity-2.8.0.tar.gz) = 5cbbc7fc993d39106b653213753d25c4ec21771eee17b01b69122ccf3f73460e +SIZE (modsecurity-2.8.0.tar.gz) = 3940357 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef SIZE (naxsi-core-0.50.tgz) = 49809 SHA256 (passenger-4.0.48.tar.gz) = 0fe6a42c82eee59511b04aa683f65fb4eaf1acc6310de3fbbe905fa507347e24 Added: head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nginx-devel/files/extra-patch-nginx-modsecurity-configure Sun Aug 10 17:47:04 2014 (r364551) @@ -0,0 +1,24 @@ +--- ../modsecurity-2.8.0/configure.orig 2014-04-15 16:44:15.000000000 +0400 ++++ ../modsecurity-2.8.0/configure 2014-08-10 21:24:00.000000000 +0400 +@@ -14664,7 +14664,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="${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/'`" + 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`" ++ LUA_LDFLAGS="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-L --libs-only-other | sed 's/\/lua51//'`" + if test "$verbose_output" -eq 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: lua LDFLAGS: $LUA_LDFLAGS" >&5 + $as_echo "$as_me: lua LDFLAGS: $LUA_LDFLAGS" >&6;}; fi + else Modified: head/www/nginx/Makefile ============================================================================== --- head/www/nginx/Makefile Sun Aug 10 16:32:45 2014 (r364550) +++ head/www/nginx/Makefile Sun Aug 10 17:47:04 2014 (r364551) @@ -624,15 +624,16 @@ CONFIGURE_ARGS+=--add-module=${WRKDIR}/o .endif .if ${PORT_OPTIONS:MMODSECURITY} -NGINX_MODSECURITY_VERSION= 2.7.5 +NGINX_MODSECURITY_VERSION= 2.8.0 LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre \ - libapr-1.so:${PORTSDIR}/devel/apr1 + libapr-1.so:${PORTSDIR}/devel/apr1 \ + libyajl.so:${PORTSDIR}/devel/yajl USE_APACHE= 22+ USE_GNOME= libxml2 MASTER_SITES+= http://www.modsecurity.org/tarball/${NGINX_MODSECURITY_VERSION}/:modsecurity -DISTFILES+= modsecurity-apache_${NGINX_MODSECURITY_VERSION}.tar.gz:modsecurity -CONFIGURE_ARGS+=--add-module=${WRKDIR}/modsecurity-apache_${NGINX_MODSECURITY_VERSION}/nginx/modsecurity -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-nginx-modsecurity-config +DISTFILES+= modsecurity-${NGINX_MODSECURITY_VERSION}.tar.gz:modsecurity +CONFIGURE_ARGS+=--add-module=${WRKDIR}/modsecurity-${NGINX_MODSECURITY_VERSION}/nginx/modsecurity +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-nginx-modsecurity-configure .endif .if ${PORT_OPTIONS:MNAXSI} @@ -969,12 +970,12 @@ post-patch: .if ${PORT_OPTIONS:MMODSECURITY} @${REINPLACE_CMD} \ 's!%%PREFIX%%!${LOCALBASE}!g' \ - ${WRKDIR}/modsecurity-apache_${NGINX_MODSECURITY_VERSION}/nginx/modsecurity/config + ${WRKDIR}/modsecurity-${NGINX_MODSECURITY_VERSION}/configure .endif pre-configure: .if ${PORT_OPTIONS:MMODSECURITY} - ( cd ${WRKDIR}/modsecurity-apache_${NGINX_MODSECURITY_VERSION} && \ + ( cd ${WRKDIR}/modsecurity-${NGINX_MODSECURITY_VERSION} && \ CC="${CC}" ./${CONFIGURE_SCRIPT} --enable-standalone-module && \ ${MAKE} ) .endif Modified: head/www/nginx/distinfo ============================================================================== --- head/www/nginx/distinfo Sun Aug 10 16:32:45 2014 (r364550) +++ head/www/nginx/distinfo Sun Aug 10 17:47:04 2014 (r364551) @@ -70,8 +70,8 @@ SHA256 (openresty-lua-nginx-module-v0.9. SIZE (openresty-lua-nginx-module-v0.9.4-0-g6169a19.tar.gz) = 470182 SHA256 (openresty-memc-nginx-module-v0.14-0-gde4cf86.tar.gz) = b60fed5921a0c19c6ffe71e5c764193283dbe635bb3bad6febd6655f94a633e9 SIZE (openresty-memc-nginx-module-v0.14-0-gde4cf86.tar.gz) = 37756 -SHA256 (modsecurity-apache_2.7.5.tar.gz) = 9e907536278d8da80d3dbb29aeffe9c4ec37ce9b641035b2da64e993135647a2 -SIZE (modsecurity-apache_2.7.5.tar.gz) = 1045387 +SHA256 (modsecurity-2.8.0.tar.gz) = 5cbbc7fc993d39106b653213753d25c4ec21771eee17b01b69122ccf3f73460e +SIZE (modsecurity-2.8.0.tar.gz) = 3940357 SHA256 (naxsi-core-0.50.tgz) = 7cece5f9d9c5df9e09af1e1023bc8e04bbbbe953e67461b893b8240e82ca52ef SIZE (naxsi-core-0.50.tgz) = 49809 SHA256 (passenger-4.0.48.tar.gz) = 0fe6a42c82eee59511b04aa683f65fb4eaf1acc6310de3fbbe905fa507347e24 Added: head/www/nginx/files/extra-patch-nginx-modsecurity-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nginx/files/extra-patch-nginx-modsecurity-configure Sun Aug 10 17:47:04 2014 (r364551) @@ -0,0 +1,24 @@ +--- ../modsecurity-2.8.0/configure.orig 2014-04-15 16:44:15.000000000 +0400 ++++ ../modsecurity-2.8.0/configure 2014-08-10 21:24:00.000000000 +0400 +@@ -14664,7 +14664,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="${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/'`" + 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`" ++ LUA_LDFLAGS="`${LUA_CONFIG} ${LUA_PKGNAME} --libs-only-L --libs-only-other | sed 's/\/lua51//'`" + if test "$verbose_output" -eq 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: lua LDFLAGS: $LUA_LDFLAGS" >&5 + $as_echo "$as_me: lua LDFLAGS: $LUA_LDFLAGS" >&6;}; fi + else From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 17:54:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6BAD335D for ; Sun, 10 Aug 2014 17:54:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 4DD272C9A for ; Sun, 10 Aug 2014 17:54:39 +0000 (UTC) Received: from sunpoet (uid 1240) (envelope-from sunpoet@FreeBSD.org) id 2041 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 17:54:38 +0000 From: Sunpoet Po-Chuan Hsieh Date: Sun, 10 Aug 2014 17:54:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364552 - head/graphics/webp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7b1df.2041.4e0d1617@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 17:54:39 -0000 Author: sunpoet Date: Sun Aug 10 17:54:38 2014 New Revision: 364552 URL: http://svnweb.freebsd.org/changeset/ports/364552 QAT: https://qat.redports.org/buildarchive/r364552/ Log: - Update to 0.4.1 - Update pkg-descr - Update WWW Changes: https://chromium.googlesource.com/webm/libwebp/+/master/NEWS Modified: head/graphics/webp/Makefile head/graphics/webp/distinfo head/graphics/webp/pkg-descr head/graphics/webp/pkg-plist Modified: head/graphics/webp/Makefile ============================================================================== --- head/graphics/webp/Makefile Sun Aug 10 17:47:04 2014 (r364551) +++ head/graphics/webp/Makefile Sun Aug 10 17:54:38 2014 (r364552) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= webp -PORTVERSION= 0.4.0 +PORTVERSION= 0.4.1 CATEGORIES= graphics -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= http://downloads.webmproject.org/releases/webp/ DISTNAME= lib${PORTNAME}-${PORTVERSION} MAINTAINER= sunpoet@FreeBSD.org Modified: head/graphics/webp/distinfo ============================================================================== --- head/graphics/webp/distinfo Sun Aug 10 17:47:04 2014 (r364551) +++ head/graphics/webp/distinfo Sun Aug 10 17:54:38 2014 (r364552) @@ -1,2 +1,2 @@ -SHA256 (libwebp-0.4.0.tar.gz) = 31913577e96386556855b41d210736449445fe96cfbe9289014e9b8afa944d69 -SIZE (libwebp-0.4.0.tar.gz) = 887880 +SHA256 (libwebp-0.4.1.tar.gz) = 00b646e6f66550a8faa998711fe70aabee9ed3bc562a8437c89042901674d027 +SIZE (libwebp-0.4.1.tar.gz) = 966358 Modified: head/graphics/webp/pkg-descr ============================================================================== --- head/graphics/webp/pkg-descr Sun Aug 10 17:47:04 2014 (r364551) +++ head/graphics/webp/pkg-descr Sun Aug 10 17:54:38 2014 (r364552) @@ -1,8 +1,12 @@ -WebP is a method of lossy compression that can be used on photographic -images. The degree of compression is adjustable so a user can choose the -trade-off between file size and image quality. +WebP is a new image format that provides lossless and lossy compression for +images on the web. WebP lossless images are 26% smaller in size compared to +PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG images at +equivalent SSIM index. WebP supports lossless transparency (also known as alpha +channel) with just 22% additional bytes. Transparency is also supported with +lossy compression and typically provides 3x smaller file sizes compared to PNG +when lossy compression is acceptable for the red/green/blue color channels. -webpconv is a command line tool for converting images to and from -the WebP format. +Webmasters and web developers can use the WebP image format to create smaller +and richer images that can help make the web faster. -WWW: http://code.google.com/speed/webp/ +WWW: https://developers.google.com/speed/webp/ Modified: head/graphics/webp/pkg-plist ============================================================================== --- head/graphics/webp/pkg-plist Sun Aug 10 17:47:04 2014 (r364551) +++ head/graphics/webp/pkg-plist Sun Aug 10 17:54:38 2014 (r364552) @@ -12,19 +12,19 @@ include/webp/types.h lib/libwebp.a lib/libwebp.so lib/libwebp.so.5 -lib/libwebp.so.5.0.0 +lib/libwebp.so.5.0.1 lib/libwebpdecoder.a lib/libwebpdecoder.so lib/libwebpdecoder.so.1 -lib/libwebpdecoder.so.1.0.0 +lib/libwebpdecoder.so.1.0.1 lib/libwebpdemux.a lib/libwebpdemux.so lib/libwebpdemux.so.1 -lib/libwebpdemux.so.1.0.0 +lib/libwebpdemux.so.1.0.1 lib/libwebpmux.a lib/libwebpmux.so lib/libwebpmux.so.1 -lib/libwebpmux.so.1.0.0 +lib/libwebpmux.so.1.0.1 libdata/pkgconfig/libwebp.pc libdata/pkgconfig/libwebpdecoder.pc libdata/pkgconfig/libwebpdemux.pc From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 17:54:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C60943F for ; Sun, 10 Aug 2014 17:54:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 0E4F32CA0 for ; Sun, 10 Aug 2014 17:54:44 +0000 (UTC) Received: from sunpoet (uid 1240) (envelope-from sunpoet@FreeBSD.org) id 2066 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 17:54:43 +0000 From: Sunpoet Po-Chuan Hsieh Date: Sun, 10 Aug 2014 17:54:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364553 - head/archivers/p5-Archive-Any-Lite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7b1e4.2066.38227386@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 17:54:44 -0000 Author: sunpoet Date: Sun Aug 10 17:54:43 2014 New Revision: 364553 URL: http://svnweb.freebsd.org/changeset/ports/364553 QAT: https://qat.redports.org/buildarchive/r364553/ Log: - Update to 0.10 Changes: http://search.cpan.org/dist/Archive-Any-Lite/Changes Modified: head/archivers/p5-Archive-Any-Lite/Makefile head/archivers/p5-Archive-Any-Lite/distinfo Modified: head/archivers/p5-Archive-Any-Lite/Makefile ============================================================================== --- head/archivers/p5-Archive-Any-Lite/Makefile Sun Aug 10 17:54:38 2014 (r364552) +++ head/archivers/p5-Archive-Any-Lite/Makefile Sun Aug 10 17:54:43 2014 (r364553) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Archive-Any-Lite -PORTVERSION= 0.09 +PORTVERSION= 0.10 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/archivers/p5-Archive-Any-Lite/distinfo ============================================================================== --- head/archivers/p5-Archive-Any-Lite/distinfo Sun Aug 10 17:54:38 2014 (r364552) +++ head/archivers/p5-Archive-Any-Lite/distinfo Sun Aug 10 17:54:43 2014 (r364553) @@ -1,2 +1,2 @@ -SHA256 (Archive-Any-Lite-0.09.tar.gz) = 8c500ba33f7b1df1448eca4fc4c5e98efd8e24599a7028f9933b96f3ac1a78c7 -SIZE (Archive-Any-Lite-0.09.tar.gz) = 22176 +SHA256 (Archive-Any-Lite-0.10.tar.gz) = b97fd4b61c8ff4a0d1dd2be50799fa1430add0bb55c1d35598874cd6974d68c5 +SIZE (Archive-Any-Lite-0.10.tar.gz) = 28966 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 17:54:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E030051E for ; Sun, 10 Aug 2014 17:54:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B54D82CA2 for ; Sun, 10 Aug 2014 17:54:49 +0000 (UTC) Received: from sunpoet (uid 1240) (envelope-from sunpoet@FreeBSD.org) id 2083 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 17:54:49 +0000 From: Sunpoet Po-Chuan Hsieh Date: Sun, 10 Aug 2014 17:54:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364554 - head/sysutils/debhelper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7b1e9.2083.40871138@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 17:54:50 -0000 Author: sunpoet Date: Sun Aug 10 17:54:49 2014 New Revision: 364554 URL: http://svnweb.freebsd.org/changeset/ports/364554 QAT: https://qat.redports.org/buildarchive/r364554/ Log: - Update to 9.20140809 - Add LICENSE Changes: http://source.joeyh.branchable.com/?p=source.git Modified: head/sysutils/debhelper/Makefile head/sysutils/debhelper/distinfo Modified: head/sysutils/debhelper/Makefile ============================================================================== --- head/sysutils/debhelper/Makefile Sun Aug 10 17:54:43 2014 (r364553) +++ head/sysutils/debhelper/Makefile Sun Aug 10 17:54:49 2014 (r364554) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= debhelper -PORTVERSION= 9.20140613 +PORTVERSION= 9.20140809 CATEGORIES= sysutils MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -10,6 +10,8 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Helper programs for debian/rules +LICENSE= GPLv2 + MAKE_ARGS= PREFIX=${PREFIX} SITE_PERL=${SITE_PERL} NO_BUILD= yes USES= gmake perl5 shebangfix Modified: head/sysutils/debhelper/distinfo ============================================================================== --- head/sysutils/debhelper/distinfo Sun Aug 10 17:54:43 2014 (r364553) +++ head/sysutils/debhelper/distinfo Sun Aug 10 17:54:49 2014 (r364554) @@ -1,2 +1,2 @@ -SHA256 (debhelper_9.20140613.tar.gz) = 11d02f7e45affeddf327efc923a582b3fa7ba7246a9858a2a15d5262078bcedd -SIZE (debhelper_9.20140613.tar.gz) = 476444 +SHA256 (debhelper_9.20140809.tar.gz) = 655b6a3d7fafb5bdb4032ba76c9a265f165ca0abbc94ee5e23cd6a6e58cf44b7 +SIZE (debhelper_9.20140809.tar.gz) = 475081 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 18:19:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E8DADD3 for ; Sun, 10 Aug 2014 18:19:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 749E02FDC for ; Sun, 10 Aug 2014 18:19:37 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2a3b by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 18:19:37 +0000 From: John Marino Date: Sun, 10 Aug 2014 18:19:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364555 - head/net/wackford-squeers X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7b7b9.2a3b.618a7385@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 18:19:37 -0000 Author: marino Date: Sun Aug 10 18:19:36 2014 New Revision: 364555 URL: http://svnweb.freebsd.org/changeset/ports/364555 QAT: https://qat.redports.org/buildarchive/r364555/ Log: net/wackford-squeers: Update version 1.17 => 1.19 and stage PR: 192531 Submitted by: James Bailie Modified: head/net/wackford-squeers/Makefile head/net/wackford-squeers/distinfo head/net/wackford-squeers/pkg-plist Modified: head/net/wackford-squeers/Makefile ============================================================================== --- head/net/wackford-squeers/Makefile Sun Aug 10 17:54:49 2014 (r364554) +++ head/net/wackford-squeers/Makefile Sun Aug 10 18:19:36 2014 (r364555) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wackford-squeers -PORTVERSION= 1.17 +PORTVERSION= 1.19 CATEGORIES= net MASTER_SITES= http://www.mammothcheese.ca/ @@ -11,11 +11,4 @@ COMMENT= Plain text network hypertext se RUN_DEPENDS= ${LOCALBASE}/bin/munger:${PORTSDIR}/lang/munger -MAN1= wackford.1 -MAN5= shyte.5 -MAN8= squeers.8 - -MANCOMPRESSED= yes - -NO_STAGE= yes .include Modified: head/net/wackford-squeers/distinfo ============================================================================== --- head/net/wackford-squeers/distinfo Sun Aug 10 17:54:49 2014 (r364554) +++ head/net/wackford-squeers/distinfo Sun Aug 10 18:19:36 2014 (r364555) @@ -1,2 +1,2 @@ -SHA256 (wackford-squeers-1.17.tar.gz) = 00b46c88834173a8974d021cb8255fe63a0453b37bd983c8269288a75316a092 -SIZE (wackford-squeers-1.17.tar.gz) = 23379 +SHA256 (wackford-squeers-1.19.tar.gz) = 9b9c4beb8c0c5510e1b2ac186970a5bc01ffd5220cdfa85ee5adcdb2997241b5 +SIZE (wackford-squeers-1.19.tar.gz) = 23377 Modified: head/net/wackford-squeers/pkg-plist ============================================================================== --- head/net/wackford-squeers/pkg-plist Sun Aug 10 17:54:49 2014 (r364554) +++ head/net/wackford-squeers/pkg-plist Sun Aug 10 18:19:36 2014 (r364555) @@ -1,3 +1,6 @@ +man/man1/wackford.1.gz +man/man5/shyte.5.gz +man/man8/squeers.8.gz bin/wackford bin/squeers etc/rc.d/squeers From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 18:25:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56B2AEEE for ; Sun, 10 Aug 2014 18:25:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 2C3072078 for ; Sun, 10 Aug 2014 18:25:14 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2d99 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 18:25:14 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 18:25:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364556 - head/net-mgmt/disco X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7b90a.2d99.af7fc71@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 18:25:14 -0000 Author: antoine Date: Sun Aug 10 18:25:13 2014 New Revision: 364556 URL: http://svnweb.freebsd.org/changeset/ports/364556 QAT: https://qat.redports.org/buildarchive/r364556/ Log: Fix plist Modified: head/net-mgmt/disco/Makefile Modified: head/net-mgmt/disco/Makefile ============================================================================== --- head/net-mgmt/disco/Makefile Sun Aug 10 18:19:36 2014 (r364555) +++ head/net-mgmt/disco/Makefile Sun Aug 10 18:25:13 2014 (r364556) @@ -3,7 +3,7 @@ PORTNAME= disco PORTVERSION= 1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}ipd/DISCO/${PORTNAME}-${PORTVERSION}.tar.gz @@ -17,6 +17,7 @@ LIBS+= -L${LOCALBASE}/lib WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= bin/disco bin/disco.fp +PORTDOCS= README OPTIONS_DEFINE= DOCS From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 18:36:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B65FE219 for ; Sun, 10 Aug 2014 18:36:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 8CC9F214E for ; Sun, 10 Aug 2014 18:36:28 +0000 (UTC) Received: from mva (uid 1189) (envelope-from mva@FreeBSD.org) id 212c by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 18:36:27 +0000 From: Marcus von Appen Date: Sun, 10 Aug 2014 18:36:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364557 - in head/lang: python27 python32 python33 python34 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7bbac.212c.1cab2a8b@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 18:36:28 -0000 Author: mva Date: Sun Aug 10 18:36:27 2014 New Revision: 364557 URL: http://svnweb.freebsd.org/changeset/ports/364557 QAT: https://qat.redports.org/buildarchive/r364557/ Log: - Add USE_OPENSSL, since all lang/python ports build the _ssl module, which requires a working OpenSSL implementation Phabric: D569 Reviewed by: wg@ With hat: python@ Modified: head/lang/python27/Makefile head/lang/python32/Makefile head/lang/python33/Makefile head/lang/python34/Makefile Modified: head/lang/python27/Makefile ============================================================================== --- head/lang/python27/Makefile Sun Aug 10 18:25:13 2014 (r364556) +++ head/lang/python27/Makefile Sun Aug 10 18:36:27 2014 (r364557) @@ -2,7 +2,7 @@ PORTNAME= python27 PORTVERSION= 2.7.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} @@ -16,6 +16,7 @@ LICENSE= PSFL USES= cpe ncurses pkgconfig readline tar:xz USE_LDCONFIG= yes +USE_OPENSSL= yes GNU_CONFIGURE= yes CPE_VENDOR= python Modified: head/lang/python32/Makefile ============================================================================== --- head/lang/python32/Makefile Sun Aug 10 18:25:13 2014 (r364556) +++ head/lang/python32/Makefile Sun Aug 10 18:36:27 2014 (r364557) @@ -2,7 +2,7 @@ PORTNAME= python32 PORTVERSION= 3.2.5 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} @@ -15,6 +15,7 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL USES= cpe ncurses pkgconfig readline tar:xz +USE_OPENSSL= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes Modified: head/lang/python33/Makefile ============================================================================== --- head/lang/python33/Makefile Sun Aug 10 18:25:13 2014 (r364556) +++ head/lang/python33/Makefile Sun Aug 10 18:36:27 2014 (r364557) @@ -2,7 +2,7 @@ PORTNAME= python33 PORTVERSION= 3.3.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} @@ -15,6 +15,7 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL USES= cpe ncurses pkgconfig readline tar:xz +USE_OPENSSL= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes Modified: head/lang/python34/Makefile ============================================================================== --- head/lang/python34/Makefile Sun Aug 10 18:25:13 2014 (r364556) +++ head/lang/python34/Makefile Sun Aug 10 18:36:27 2014 (r364557) @@ -3,7 +3,7 @@ PORTNAME= python34 PORTVERSION= 3.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} @@ -16,6 +16,7 @@ COMMENT= Interpreted object-oriented pro LICENSE= PSFL USES= cpe ncurses pkgconfig readline tar:xz +USE_OPENSSL= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 18:59:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2636C659 for ; Sun, 10 Aug 2014 18:59:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 06378240D for ; Sun, 10 Aug 2014 18:59:55 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2acc by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 18:59:54 +0000 From: John Marino Date: Sun, 10 Aug 2014 18:59:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364558 - in head/net-mgmt/nfdump: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7c12a.2acc.4e17cb2d@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 18:59:55 -0000 Author: marino Date: Sun Aug 10 18:59:54 2014 New Revision: 364558 URL: http://svnweb.freebsd.org/changeset/ports/364558 QAT: https://qat.redports.org/buildarchive/r364558/ Log: net-mgmt/nfdump: Upgrade version to 1.6.9 => 1.6.12 and stage Also assign maintainership to submitter PR: 192554 Submitted by: Carlos JPM Modified: head/net-mgmt/nfdump/Makefile head/net-mgmt/nfdump/distinfo head/net-mgmt/nfdump/files/patch-configure Modified: head/net-mgmt/nfdump/Makefile ============================================================================== --- head/net-mgmt/nfdump/Makefile Sun Aug 10 18:36:27 2014 (r364557) +++ head/net-mgmt/nfdump/Makefile Sun Aug 10 18:59:54 2014 (r364558) @@ -2,22 +2,25 @@ # $FreeBSD$ PORTNAME= nfdump -PORTVERSION= 1.6.9 +PORTVERSION= 1.6.12 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= cpm@fbsd.es COMMENT= Command-line tools to collect and process NetFlow data -LICENSE= BSD +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/BSD-license.txt GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE= yes +USES= libtool +USE_AUTOTOOLS= autoconf:env autoheader:env USE_CSTD= gnu89 +USE_LDCONFIG= yes +MAKE_JOBS_UNSAFE= yes #flow-tools support -OPTIONS_DEFINE= FT2NFDUMP NFPROFILE FIXTIMEBUG READPCAP NFTRACK \ +OPTIONS_DEFINE= DOCS FT2NFDUMP NFPROFILE FIXTIMEBUG READPCAP NFTRACK \ SFLOW NFDUMP15 OPTIONS_DEFAULT= NFPROFILE @@ -27,9 +30,8 @@ FIXTIMEBUG_DESC= With fixing swap time b READPCAP_DESC= With pcap support NFTRACK_DESC= With PortTracker support SFLOW_DESC= Build sflow collector daemon also -NFDUMP15_DESC= Enable compatbility with version 1.5 +NFDUMP15_DESC= Enable compatibility with version 1.5 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} 's|-ggdb||' ${WRKSRC}/bin/Makefile.in @@ -43,10 +45,10 @@ CONFIGURE_ARGS+= --enable-compat15 CONFIGURE_ARGS+= --disable-compat15 .endif -PLIST_FILES= bin/nfanon bin/nfcapd bin/nfdump bin/nfexpire bin/nfreplay -MAN1= nfanon.1 nfcapd.1 nfdump.1 nfexpire.1 nfreplay.1 -MAN1+= ft2nfdump.1 nfprofile.1 sfcapd.1 -PORTDOCS= AUTHORS ChangeLog INSTALL README +PLIST_FILES= bin/nfanon bin/nfcapd bin/nfdump bin/nfexpire bin/nfreplay \ + man/man1/nfanon.1.gz man/man1/nfcapd.1.gz man/man1/nfdump.1.gz \ + man/man1/nfexpire.1.gz man/man1/nfreplay.1.gz +PORTDOCS= AUTHORS ChangeLog INSTALL NEWS README ToDo .if ${PORT_OPTIONS:MFIXTIMEBUG} CONFIGURE_ARGS+= --enable-fixtimebug @@ -56,7 +58,7 @@ CONFIGURE_ARGS+= --disable-fixtimebug .if ${PORT_OPTIONS:MNFPROFILE} CONFIGURE_ARGS+= --enable-nfprofile -PLIST_FILES+= bin/nfprofile +PLIST_FILES+= bin/nfprofile man/man1/nfprofile.1.gz .else CONFIGURE_ARGS+= --disable-nfprofile .endif @@ -78,7 +80,7 @@ RUN_DEPENDS+= rrdtool:${PORTSDIR}/databa .if ${PORT_OPTIONS:MFT2NFDUMP} BUILD_DEPENDS+= flow-cat:${PORTSDIR}/net-mgmt/flow-tools CONFIGURE_ARGS+= --enable-ftconv --with-ftpath=${LOCALBASE} -PLIST_FILES+= bin/ft2nfdump +PLIST_FILES+= bin/ft2nfdump man/man1/ft2nfdump.1.gz .endif .if ${PORT_OPTIONS:MREADPCAP} @@ -90,16 +92,48 @@ CONFIGURE_ARGS+= --disable-readpcap #sflow capture support .if ${PORT_OPTIONS:MSFLOW} CONFIGURE_ARGS+= --enable-sflow -PLIST_FILES+= bin/sfcapd -#MAN1+= sfcapd.1 +PLIST_FILES+= bin/sfcapd man/man1/sfcapd.1.gz .else CONFIGURE_ARGS+= --disable-sflow .endif -.if ${PORT_OPTIONS:MDOCS} +do-install: +.for binary in nfanon nfcapd nfdump nfexpire nfreplay + ${INSTALL_DATA} ${WRKSRC}/bin/${binary} ${STAGEDIR}${PREFIX}/bin + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${binary} +.endfor + +.if ${PORT_OPTIONS:MNFPROFILE} + ${INSTALL_DATA} ${WRKSRC}/bin/nfprofile ${STAGEDIR}${PREFIX}/bin + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/nfprofile + ${INSTALL_MAN} ${WRKSRC}/man/nfprofile.1 ${STAGEDIR}${PREFIX}/man/man1 +.endif + +.if ${PORT_OPTIONS:MNFTRACK} + ${INSTALL_DATA} ${WRKSRC}/bin/nftrack ${STAGEDIR}${PREFIX}/bin + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/nftrack +.endif + +.if ${PORT_OPTIONS:MFT2NFDUMP} + ${INSTALL_DATA} ${WRKSRC}/bin/ft2nfdump ${STAGEDIR}${PREFIX}/bin + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ft2nfdump + ${INSTALL_MAN} ${WRKSRC}/man/ft2nfdump.1 ${STAGEDIR}${PREFIX}/man/man1 +.endif + +.if ${PORT_OPTIONS:MSFLOW} + ${INSTALL_DATA} ${WRKSRC}/bin/sfcapd ${STAGEDIR}${PREFIX}/bin + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sfcapd + ${INSTALL_MAN} ${WRKSRC}/man/sfcapd.1 ${STAGEDIR}${PREFIX}/man/man1 +.endif + +.for filename in nfanon nfdump nfcapd nfexpire nfreplay + ${INSTALL_MAN} ${WRKSRC}/man/${filename}.1 ${STAGEDIR}${PREFIX}/man/man1 +.endfor + post-install: - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif .include Modified: head/net-mgmt/nfdump/distinfo ============================================================================== --- head/net-mgmt/nfdump/distinfo Sun Aug 10 18:36:27 2014 (r364557) +++ head/net-mgmt/nfdump/distinfo Sun Aug 10 18:59:54 2014 (r364558) @@ -1,2 +1,2 @@ -SHA256 (nfdump-1.6.9.tar.gz) = 734943ab872d3642575add5db64ef5755f85a0a9600b120d5ee09bea4ef98dbc -SIZE (nfdump-1.6.9.tar.gz) = 686587 +SHA256 (nfdump-1.6.12.tar.gz) = 4b597c3c948b2ac1a4b0b11ffbdc5c8bab8835f14718ad0f7896daeaf7b89204 +SIZE (nfdump-1.6.12.tar.gz) = 733604 Modified: head/net-mgmt/nfdump/files/patch-configure ============================================================================== --- head/net-mgmt/nfdump/files/patch-configure Sun Aug 10 18:36:27 2014 (r364557) +++ head/net-mgmt/nfdump/files/patch-configure Sun Aug 10 18:59:54 2014 (r364558) @@ -1,6 +1,6 @@ ---- ./configure.orig 2013-03-02 18:24:29.000000000 +0100 -+++ ./configure 2013-03-27 20:43:21.000000000 +0100 -@@ -4945,7 +4945,7 @@ +--- configure.orig 2014-08-10 13:37:42.000000000 +0200 ++++ configure 2014-08-10 13:39:21.000000000 +0200 +@@ -4975,7 +4975,7 @@ # Check whether --enable-nfprofile was given. @@ -9,7 +9,7 @@ enableval=$enable_nfprofile; { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rrd_update in -lrrd" >&5 $as_echo_n "checking for rrd_update in -lrrd... " >&6; } -@@ -5069,7 +5069,7 @@ +@@ -5099,7 +5099,7 @@ # Check whether --enable-nftrack was given. From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 19:03:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FF47778 for ; Sun, 10 Aug 2014 19:03:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 35D0424A5 for ; Sun, 10 Aug 2014 19:03:51 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2e34 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 19:03:51 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 19:03:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364559 - head/databases/py-sqlalchemy-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7c217.2e34.4abc10b3@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 19:03:51 -0000 Author: antoine Date: Sun Aug 10 19:03:50 2014 New Revision: 364559 URL: http://svnweb.freebsd.org/changeset/ports/364559 QAT: https://qat.redports.org/buildarchive/r364559/ Log: Fix a stage violation Modified: head/databases/py-sqlalchemy-devel/Makefile Modified: head/databases/py-sqlalchemy-devel/Makefile ============================================================================== --- head/databases/py-sqlalchemy-devel/Makefile Sun Aug 10 18:59:54 2014 (r364558) +++ head/databases/py-sqlalchemy-devel/Makefile Sun Aug 10 19:03:50 2014 (r364559) @@ -85,7 +85,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${STAGEDIR}${DOCSDIR} .endfor .for i in ${AL_PORTDOCS_SUBDIR} - @${MKDIR} ${DOCSDIR}/${i} + @${MKDIR} ${STAGEDIR}${DOCSDIR}/${i} (cd ${WRKSRC}/doc/${i} && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/${i}) .endfor From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 19:18:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04551A9A for ; Sun, 10 Aug 2014 19:18:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 CF4DA257A for ; Sun, 10 Aug 2014 19:18:14 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 21d0 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 19:18:14 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 19:18:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364560 - head/java/cacao X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7c576.21d0.3799eba5@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 19:18:15 -0000 Author: antoine Date: Sun Aug 10 19:18:14 2014 New Revision: 364560 URL: http://svnweb.freebsd.org/changeset/ports/364560 QAT: https://qat.redports.org/buildarchive/r364560/ Log: Finish stage conversion Modified: head/java/cacao/Makefile head/java/cacao/pkg-plist Modified: head/java/cacao/Makefile ============================================================================== --- head/java/cacao/Makefile Sun Aug 10 19:03:50 2014 (r364559) +++ head/java/cacao/Makefile Sun Aug 10 19:18:14 2014 (r364560) @@ -17,8 +17,6 @@ RUN_DEPENDS= ${LOCALBASE}/share/classpat USES= gmake tar:xz GNU_CONFIGURE= yes -MAN1= cacao.1 - CONFIGURE_ARGS= --disable-test-dependency-checks \ --with-java-runtime-library=gnuclasspath \ --with-java-runtime-library-prefix=${PREFIX} \ Modified: head/java/cacao/pkg-plist ============================================================================== --- head/java/cacao/pkg-plist Sun Aug 10 19:03:50 2014 (r364559) +++ head/java/cacao/pkg-plist Sun Aug 10 19:18:14 2014 (r364560) @@ -1,4 +1,5 @@ bin/cacao lib/libjvm.so +man/man1/cacao.1.gz %%DATADIR%%/vm.zip @dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 19:26:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66F6ABCD for ; Sun, 10 Aug 2014 19:26:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 468DF2625 for ; Sun, 10 Aug 2014 19:26:40 +0000 (UTC) Received: from tijl (uid 1230) (envelope-from tijl@FreeBSD.org) id 2827 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 19:26:38 +0000 From: Tijl Coosemans Date: Sun, 10 Aug 2014 19:26:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364561 - in head: graphics/gexiv2 math/libtommath multimedia/handbrake multimedia/xbmc security/libtomcrypt sysutils/heartbeat textproc/exmpp x11-toolkits/xmhtml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7c76f.2827.4580a701@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 19:26:40 -0000 Author: tijl Date: Sun Aug 10 19:26:38 2014 New Revision: 364561 URL: http://svnweb.freebsd.org/changeset/ports/364561 QAT: https://qat.redports.org/buildarchive/r364561/ Log: Replace some dependencies on libtool with USES=libtool:build or a dependency on libtoolize Modified: head/graphics/gexiv2/Makefile head/math/libtommath/Makefile head/multimedia/handbrake/Makefile head/multimedia/xbmc/Makefile head/security/libtomcrypt/Makefile head/sysutils/heartbeat/Makefile head/textproc/exmpp/Makefile head/x11-toolkits/xmhtml/Makefile Modified: head/graphics/gexiv2/Makefile ============================================================================== --- head/graphics/gexiv2/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/graphics/gexiv2/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -14,11 +14,10 @@ COMMENT= GObject-based wrapper around Ex LICENSE= GPLv2 -BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool \ - gm4:${PORTSDIR}/devel/m4 +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 LIB_DEPENDS= libexiv2.so:${PORTSDIR}/graphics/exiv2 -USES= gmake pkgconfig tar:xz +USES= gmake libtool:build pkgconfig tar:xz USE_GNOME= glib20 USE_LDCONFIG= yes MAKE_ARGS= REQUIRED_CFLAGS="" Modified: head/math/libtommath/Makefile ============================================================================== --- head/math/libtommath/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/math/libtommath/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -2,6 +2,7 @@ PORTNAME= libtommath PORTVERSION= 0.42.0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://libtom.org/files/ DISTNAME= ltm-${PORTVERSION} @@ -28,10 +29,9 @@ post-patch: ${REINPLACE_CMD} -e 's|DESTDIR=|DESTDIR?=|' ${WRKSRC}/${MAKEFILE} .if ${PORT_OPTIONS:MSHARED} -BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool -USES+= libtool:keepla +USES+= libtool:build USE_LDCONFIG= yes -PLIST_FILES+= lib/libtommath.la lib/libtommath.so.0 lib/libtommath.so +PLIST_FILES+= lib/libtommath.so.0 lib/libtommath.so MAKEFILE= makefile.shared .else MAKEFILE= makefile Modified: head/multimedia/handbrake/Makefile ============================================================================== --- head/multimedia/handbrake/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/multimedia/handbrake/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -28,8 +28,7 @@ COMMENT= Versatile DVD ripper and video LICENSE= GPLv2 -BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool \ - yasm:${PORTSDIR}/devel/yasm +BUILD_DEPENDS= yasm:${PORTSDIR}/devel/yasm LIB_DEPENDS= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ libfreetype.so:${PORTSDIR}/print/freetype2 \ libfribidi.so:${PORTSDIR}/converters/fribidi \ @@ -47,7 +46,7 @@ LIB_DEPENDS+= libdvdcss.so.2:${PORTSDIR} .endif GNU_CONFIGURE= yes -USES= gmake iconv libtool pkgconfig +USES= gmake iconv libtool:build pkgconfig USE_AUTOTOOLS= autoconf:env automake:env USE_PYTHON_BUILD= yes Modified: head/multimedia/xbmc/Makefile ============================================================================== --- head/multimedia/xbmc/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/multimedia/xbmc/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -19,7 +19,6 @@ BUILD_DEPENDS= enca:${PORTSDIR}/converte unzip:${PORTSDIR}/archivers/unzip \ nasm:${PORTSDIR}/devel/nasm \ gtk-update-icon-cache:${PORTSDIR}/x11-toolkits/gtk20 \ - libtool:${PORTSDIR}/devel/libtool \ swig2.0:${PORTSDIR}/devel/swig20 LIB_DEPENDS= libass.so:${PORTSDIR}/multimedia/libass \ libboost_thread.so:${PORTSDIR}/devel/boost-libs \ @@ -53,8 +52,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqli ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \ xdpyinfo:${PORTSDIR}/x11/xdpyinfo -USES= gmake iconv:wchar_t libtool pkgconfig -USE_AUTOTOOLS= autoconf automake libltdl +USES= gmake iconv:wchar_t libtool:build pkgconfig +USE_AUTOTOOLS= autoconf:env automake:env libltdl GNU_CONFIGURE= yes USE_XORG= xt xmu xtst USE_GL= glu Modified: head/security/libtomcrypt/Makefile ============================================================================== --- head/security/libtomcrypt/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/security/libtomcrypt/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -11,8 +11,6 @@ DISTNAME= crypt-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Comprehensive, modular, and portable cryptographic toolkit -BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool - CFLAGS+= -I${LOCALBASE}/include EXTRALIBS= -L${LOCALBASE}/lib MAKEFILE= makefile.shared @@ -20,7 +18,7 @@ ALL_TARGET= library MAKE_ARGS= IGNORE_SPEED=yes INCPATH="${PREFIX}/include" \ LIBPATH="${PREFIX}/lib" EXTRALIBS="${EXTRALIBS}" WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= gmake libtool tar:bzip2 +USES= gmake libtool:build tar:bzip2 OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= LIBTOMMATH Modified: head/sysutils/heartbeat/Makefile ============================================================================== --- head/sysutils/heartbeat/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/sysutils/heartbeat/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -22,7 +22,7 @@ LIB_DEPENDS= libgnutls.so:${PORTSDIR}/se libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ libxml2.so:${PORTSDIR}/textproc/libxml2 BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison -PATCH_DEPENDS= libtool:${PORTSDIR}/devel/libtool +PATCH_DEPENDS= libtoolize:${PORTSDIR}/devel/libtool USE_AUTOTOOLS= autoconf autoheader automake aclocal libltdl libtoolize AUTOMAKE_ARGS+= --add-missing --include-deps --copy Modified: head/textproc/exmpp/Makefile ============================================================================== --- head/textproc/exmpp/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/textproc/exmpp/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -10,8 +10,7 @@ COMMENT= Fast and scalable library for X LICENSE= EPL -BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang \ - libtool:${PORTSDIR}/devel/libtool +BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 \ libxml2.so:${PORTSDIR}/textproc/libxml2 @@ -34,7 +33,7 @@ CONFIGURE_ARGS+=--enable-static=yes \ --enable-escaping-using-cdata GNU_CONFIGURE_PREFIX= "${PREFIX}/lib/erlang/lib" PLIST_SUB= VERSION=${PORTVERSION} -USE_AUTOTOOLS= autoconf:env automake:env aclocal:env autoheader:env +USE_AUTOTOOLS= autoconf:env automake:env libtoolize:env USES= libtool pkgconfig .include Modified: head/x11-toolkits/xmhtml/Makefile ============================================================================== --- head/x11-toolkits/xmhtml/Makefile Sun Aug 10 19:18:14 2014 (r364560) +++ head/x11-toolkits/xmhtml/Makefile Sun Aug 10 19:26:38 2014 (r364561) @@ -11,11 +11,10 @@ COMMENT= Motif widget set for displaying LICENSE= LGPL20 # (or later) -BUILD_DEPENDS= libtool:${PORTSDIR}/devel/libtool LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ libpng15.so:${PORTSDIR}/graphics/png -USES= gmake libtool motif pkgconfig tar:tgz +USES= gmake libtool:build motif pkgconfig tar:tgz USE_XORG= xft xmu xpm xt USE_LDCONFIG= yes From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 19:32:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 225A2CD0 for ; Sun, 10 Aug 2014 19:32:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 EC0F926B3 for ; Sun, 10 Aug 2014 19:32:39 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2ba1 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 19:32:39 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 19:32:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364562 - head/ports-mgmt/portscout X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7c8d7.2ba1.51935179@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 19:32:40 -0000 Author: antoine Date: Sun Aug 10 19:32:39 2014 New Revision: 364562 URL: http://svnweb.freebsd.org/changeset/ports/364562 QAT: https://qat.redports.org/buildarchive/r364562/ Log: Unbreak Modified: head/ports-mgmt/portscout/Makefile head/ports-mgmt/portscout/pkg-plist Modified: head/ports-mgmt/portscout/Makefile ============================================================================== --- head/ports-mgmt/portscout/Makefile Sun Aug 10 19:26:38 2014 (r364561) +++ head/ports-mgmt/portscout/Makefile Sun Aug 10 19:32:39 2014 (r364562) @@ -3,7 +3,7 @@ PORTNAME= portscout PORTVERSION= 0.8.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ports-mgmt MASTER_SITES= http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/ \ http://www.atarininja.org/~wxs/distfiles/ \ @@ -15,16 +15,12 @@ COMMENT= Tool to scan for new versions o OPTIONS_DEFINE= SQLITE3 DOCS SQLITE3_DESC= Use SQLite backend instead of PostgreSQL -USES= perl5 +USES= perl5 shebangfix NO_BUILD= yes +SHEBANG_FILES= ${WRKSRC}/portscout.pl PORTDOCS= UPDATING portscout-portconfig.txt xml-datasrc-example.xml -#MAN1= portscout.1 - -USES= shebangfix -SHEBANG_FILES= ${WRKSRC}/portscout.pl - RUN_DEPENDS= p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ p5-Proc-Queue>=0:${PORTSDIR}/devel/p5-Proc-Queue \ p5-Net>=0:${PORTSDIR}/net/p5-Net \ @@ -99,10 +95,6 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/portscout.conf ${STAGEDIR}${PREFIX}/etc/portscout.conf.sample -post-install: - #@if [ ! -f ${PREFIX}/etc/portscout.conf ]; then \ - # ${CP} -p ${PREFIX}/etc/portscout.conf.sample ${STAGEDIR}${PREFIX}/etc/portscout.conf; \ - #fi .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} . for f in ${PORTDOCS} Modified: head/ports-mgmt/portscout/pkg-plist ============================================================================== --- head/ports-mgmt/portscout/pkg-plist Sun Aug 10 19:26:38 2014 (r364561) +++ head/ports-mgmt/portscout/pkg-plist Sun Aug 10 19:32:39 2014 (r364562) @@ -1,7 +1,6 @@ bin/portscout -@unexec if cmp -s %D/etc/portscout.conf.sample %D/etc/portscout.conf; then rm -f %D/etc/portscout.conf; fi -@exec [ ! -f %D/etc/portscout.conf ] && cp -p %D/etc/portscout.conf.sample %D/etc/portscout.conf -etc/portscout.conf.sample +@sample etc/portscout.conf.sample +man/man1/portscout.1.gz %%DATADIR%%/templates/index.html %%DATADIR%%/templates/maintainer.html %%DATADIR%%/templates/reminder.mail From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 19:37:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38EBEEBD for ; Sun, 10 Aug 2014 19:37:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 0E38126D4 for ; Sun, 10 Aug 2014 19:37:51 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2bbd by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 19:37:51 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 19:37:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364563 - head/ports-mgmt/portscout X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7ca0f.2bbd.3c6b4544@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 19:37:51 -0000 Author: antoine Date: Sun Aug 10 19:37:50 2014 New Revision: 364563 URL: http://svnweb.freebsd.org/changeset/ports/364563 QAT: https://qat.redports.org/buildarchive/r364563/ Log: Remove things no longer necessary now it is fixed Modified: head/ports-mgmt/portscout/Makefile Modified: head/ports-mgmt/portscout/Makefile ============================================================================== --- head/ports-mgmt/portscout/Makefile Sun Aug 10 19:32:39 2014 (r364562) +++ head/ports-mgmt/portscout/Makefile Sun Aug 10 19:37:50 2014 (r364563) @@ -29,15 +29,6 @@ RUN_DEPENDS= p5-DBI>=0:${PORTSDIR}/datab p5-MIME-Lite>=0:${PORTSDIR}/mail/p5-MIME-Lite \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww -SITE_PERL_REL?=lib/perl5/site_perl/${PERL_VER} -SITE_PERL?=${LOCALBASE}/${SITE_PERL_REL} -PLIST_SUB+= PERL_VERSION=${PERL_VERSION} \ - PERL_VER=${PERL_VER} \ - PERL_ARCH=${PERL_ARCH} \ - PERL5_MAN3=lib/perl5/${PERL_VER}/man/man3 \ - SITE_PERL=${SITE_PERL_REL} - - .include .if ${PORT_OPTIONS:MSQLITE3} From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 19:40:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0530DFE1 for ; Sun, 10 Aug 2014 19:40:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 C55F126E6 for ; Sun, 10 Aug 2014 19:40:09 +0000 (UTC) Received: from bdrewery (uid 1298) (envelope-from bdrewery@freebsd.org) id 2fd by freefall.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 19:40:09 +0000 Received: (qmail 44195 invoked from network); 10 Aug 2014 14:40:07 -0500 Received: from unknown (HELO roundcube.xk42.net) (10.10.5.5) by sweb.xzibition.com with SMTP; 10 Aug 2014 14:40:07 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sun, 10 Aug 2014 14:40:06 -0500 From: Bryan Drewery To: Vsevolod Stakhov Subject: Re: svn commit: r364287 - head/ports-mgmt/pkg-devel Organization: FreeBSD In-Reply-To: <53E7A512.8050008@FreeBSD.org> References: <53e39939.55bc.4ca5432c@svn.freebsd.org> <20140807172841.58633e63@kalimero.tijl.coosemans.org> <53E3A468.5050603@FreeBSD.org> <53E3AC0C.5020904@gmx.de> <53E3AD09.2050000@FreeBSD.org> <53E3B3B5.9000104@gmx.de> <53E3B6D8.9080101@FreeBSD.org> <53E590AC.4020105@FreeBSD.org> <53E7A512.8050008@FreeBSD.org> Message-ID: X-Sender: bdrewery@FreeBSD.org User-Agent: Roundcube Webmail/1.0.1 Cc: svn-ports-head@freebsd.org, Tijl Coosemans , Matthias Andree , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 19:40:10 -0000 On 2014-08-10 12:00, Vsevolod Stakhov wrote: > Bryan, > > On 09/08/14 04:08, Bryan Drewery wrote: >> On 8/7/2014 12:26 PM, Vsevolod Stakhov wrote: >>> On 07/08/14 18:13, Matthias Andree wrote: >>>> Am 07.08.2014 um 18:44 schrieb Vsevolod Stakhov: >>>> >>>>> On 07/08/14 17:40, Matthias Andree wrote: >>>>>> Am 07.08.2014 um 18:08 schrieb Vsevolod Stakhov: >>>>>> >>>> [skipped] >> >> I'm not convinced about this change. We have fixed the wine-devel-i386 >> which was unrelated to soname version. >> >> Will stripping .so.* break automatic reinstalling when shlibs change? >> That is a critical feature. >> > > I think, I've described in details the current issue with that at > #pkgng@freenode. Briefly, this change does not break "automatic > reinstalling when shlibs change" as it doesn't work now. If it "does't work now" it needs to be fixed. This is a regression over 1.2. Not automatically reinstalling packages when dependent shlibs change breaks a lot of packages. Port revision bumps do not always occur. Auto reinstalling for changed SHLIBS and OPTIONS is very important. Poudriere will automatically rebuild packages if their dependencies are updated regardless of a revision bump. If no bump occurs, yet a shlib is bumped, the package is updated. Pkg 1.2 would detect this and reinstall the packages depending on that shlib. If we are now ignoring the version, and it doesn't work otherwise, then we are leaving people with broken systems where the only way to handle it is 'pkg upgrade -f' every time. I understand the problem you describe of .so.X vs .so.X.Y, but this functionality was present during most of the RC and 1.3 releases right? It was changed due to wine? The wine issue is unrelated and is now fixed. I would think the more safe route would be to strip .X.* and keep .X rather than strip the entire version. -- Regards, Bryan Drewery From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 19:50:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B340E344 for ; Sun, 10 Aug 2014 19:50:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 9652627B0 for ; Sun, 10 Aug 2014 19:50:29 +0000 (UTC) Received: from tijl (uid 1230) (envelope-from tijl@FreeBSD.org) id 2f7d by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 19:50:24 +0000 From: Tijl Coosemans Date: Sun, 10 Aug 2014 19:50:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364564 - in head: astro/gpsdrive audio/adplay audio/cueplayer audio/dumb audio/esound audio/gmpc audio/goobox audio/gqradio audio/hydrogen audio/hydrogen/files audio/mixxx/files audio/... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7cd00.2f7d.3533ece8@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 19:50:29 -0000 Author: tijl Date: Sun Aug 10 19:50:23 2014 New Revision: 364564 URL: http://svnweb.freebsd.org/changeset/ports/364564 QAT: https://qat.redports.org/buildarchive/r364564/ Log: Fix problems with missing libs when the linker enforces explicit linking (a* to d* categories) PR: 192062 Added: head/cad/openvsp/files/patch-vsp-CMakeLists.txt (contents, props changed) head/comms/usrp/files/patch-host_examples_CMakeLists.txt (contents, props changed) Deleted: head/comms/libimobiledevice/files/patch-configure Modified: head/astro/gpsdrive/Makefile head/audio/adplay/Makefile head/audio/cueplayer/Makefile head/audio/dumb/Makefile head/audio/esound/Makefile head/audio/gmpc/Makefile head/audio/goobox/Makefile head/audio/gqradio/Makefile head/audio/hydrogen/Makefile head/audio/hydrogen/files/patch-Sconstruct head/audio/mixxx/files/patch-build__depends.py head/audio/osd-lyrics/Makefile head/audio/raop_play/Makefile head/audio/ripperx/Makefile head/audio/shairport/Makefile head/cad/klayout/files/patch-config-Makefile.conf head/comms/libimobiledevice/Makefile head/databases/mydumper/Makefile head/deskutils/drivel/Makefile head/deskutils/notecase/Makefile head/deskutils/notecase/files/patch-Makefile head/devel/firmware-utils/files/Makefile head/devel/hadoop/Makefile Modified: head/astro/gpsdrive/Makefile ============================================================================== --- head/astro/gpsdrive/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/astro/gpsdrive/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -22,7 +22,7 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-garmin CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -lgmodule-2.0 +LIBS+= -L${LOCALBASE}/lib -lgmodule-2.0 -lm MAKE_JOBS_UNSAFE= yes OPTIONS_DEFINE= NLS Modified: head/audio/adplay/Makefile ============================================================================== --- head/audio/adplay/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/adplay/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -3,7 +3,7 @@ PORTNAME= adplay PORTVERSION= 1.7 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio MASTER_SITES= SF/adplug/AdPlay_UNIX/${PORTVERSION}:main \ SF/adplug/Database/2006-07-06:db @@ -19,13 +19,14 @@ LIB_DEPENDS= libadplug.so:${PORTSDIR}/au libbinio.so:${PORTSDIR}/devel/libbinio GNU_CONFIGURE= yes +USES= libtool WANT_SDL= yes DBFILE= adplug.db DBVERSION= 2006-07-07 CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libbinio -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lbinio CONFIGURE_ARGS+= --sharedstatedir=${DATADIR} @@ -43,6 +44,7 @@ CONFIGURE_ARGS+= --disable-output-sdl .endif post-patch: + @${REINPLACE_CMD} -e 's/-lstdc++//g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|^\(adplug_data_dir.*\)/.*|\1|' \ ${WRKSRC}/src/Makefile.in @${RM} ${WRKSRC}/src/getopt.h Modified: head/audio/cueplayer/Makefile ============================================================================== --- head/audio/cueplayer/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/cueplayer/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -15,6 +15,7 @@ LIB_DEPENDS= libnotify.so:${PORTSDIR}/de USES= pkgconfig qmake USE_QT4= gui xml uic_build moc_build rcc_build network USE_GSTREAMER= flac good dvd lame ugly ffmpeg taglib ogg vorbis soup libmms wavpack +USE_XORG= x11 LICENSE= GPLv3 @@ -23,10 +24,11 @@ DESKTOP_ENTRIES="Cueplayer" "Lightweight "AudioVideo;Audio;Video;" true post-patch: - cd ${WRKSRC} && ${REINPLACE_CMD} -e 's,/usr/share/cueplayer/,${DATADIR}/,g' \ - main.cpp ${PORTNAME}.pro - ${REINPLACE_CMD} -e 's,/usr/share,${PREFIX},g' \ + @${REINPLACE_CMD} -e 's,/usr/share/cueplayer/,${DATADIR}/,g' \ + ${WRKSRC}/main.cpp ${WRKSRC}/${PORTNAME}.pro + @${REINPLACE_CMD} -e 's,/usr/share,${PREFIX},g' \ ${WRKSRC}/${PORTNAME}.pro + @${ECHO_CMD} 'PKGCONFIG += x11' >> ${WRKSRC}/${PORTNAME}.pro post-install: ${INSTALL_DATA} ${WRKSRC}/images/${PORTNAME}.png ${STAGEDIR}${DATADIR} Modified: head/audio/dumb/Makefile ============================================================================== --- head/audio/dumb/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/dumb/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -21,7 +21,7 @@ ALLEGRO_DESC= Enable allegro support LIB_DEPENDS+= liballeg.so:${PORTSDIR}/devel/allegro PLIST_SUB+= ALLEGRO="" MAKE_ARGS= _PORT_ALLEGRO_CFLAGS="`allegro-config --cflags`" -MAKE_ARGS+= LINK_ALLEGRO="`allegro-config --libs`" +MAKE_ARGS+= LINK_ALLEGRO="`allegro-config --libs` -lm" PKGNAMESUFFIX= -allegro CONFLICTS= dumb-[0-9]* .else Modified: head/audio/esound/Makefile ============================================================================== --- head/audio/esound/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/esound/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -24,6 +24,7 @@ CONFLICTS= py*-ro-[0-9]* post-patch: @${REINPLACE_CMD} -e 's|esdconf_DATA = esd.conf|esdconf_DATA = |g' \ + -e '/^esd_LDADD =/s/$$/ -lm/' \ ${WRKSRC}/Makefile.in post-install: Modified: head/audio/gmpc/Makefile ============================================================================== --- head/audio/gmpc/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/gmpc/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -26,7 +26,7 @@ USE_GNOME= glib20 gtk20 libglade2 INSTALLS_ICONS= yes CONFIGURE_ARGS= --enable-system-libsexy CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lm OPTIONS_DEFINE= MMKEYS XSPF OPTIONS_DEFAULT= MMKEYS Modified: head/audio/goobox/Makefile ============================================================================== --- head/audio/goobox/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/goobox/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -27,7 +27,7 @@ GNU_CONFIGURE= yes INSTALLS_OMF= yes INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lm INSTALL_TARGET= install-strip GCONF_SCHEMAS= goobox.schemas Modified: head/audio/gqradio/Makefile ============================================================================== --- head/audio/gqradio/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/gqradio/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -17,7 +17,7 @@ USE_GNOME= gtk20 GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lm OPTIONS_DEFINE= DOCS V4L Modified: head/audio/hydrogen/Makefile ============================================================================== --- head/audio/hydrogen/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/hydrogen/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -28,7 +28,7 @@ OPTIONS_DEFAULT= JACK LIBARCHIVE_DESC= LibArchive support post-patch: - ${REINPLACE_CMD} -e "s|includes = \[\]|includes = \['-I${QT_INCDIR}/QtCore', '-I${QT_INCDIR}/QtXml', '-I${QT_INCDIR}/QtGui', '-I${QT_INCDIR}', '-I${QT_INCDIR}/Qt', '-I${LOCALBASE}/include', '-I${LOCALBASE}/include/raptor2'\]|g; s|ldflags = \[\]|ldflags = \['-L${QT_LIBDIR}','-L${LOCALBASE}/lib'\,'-lQtCore', '-lQtGui', '-lQtXml', '-lQtNetwork', '${PTHREAD_LIBS}']|g" ${WRKSRC}/Sconstruct + ${REINPLACE_CMD} -e "s|includes = \[\]|includes = \['-I${QT_INCDIR}/QtCore', '-I${QT_INCDIR}/QtXml', '-I${QT_INCDIR}/QtGui', '-I${QT_INCDIR}', '-I${QT_INCDIR}/Qt', '-I${LOCALBASE}/include', '-I${LOCALBASE}/include/raptor2'\]|g; s|ldflags = \[\]|ldflags = \['-L${QT_LIBDIR}','-L${LOCALBASE}/lib'\,'-lQtCore', '-lQtGui', '-lQtXml', '-lQtNetwork']|g" ${WRKSRC}/Sconstruct .include @@ -36,8 +36,6 @@ MAKE_ARGS+= oss=1 .if ${PORT_OPTIONS:MJACK} LIB_DEPENDS+= libjack.so:${PORTSDIR}/audio/jack -CPPFLAGS+= ${PTHREAD_CFLAGS} -LDFLAGS+= ${PTHREAD_LIBS} MAKE_ARGS+= jack=1 .else MAKE_ARGS+= jack=0 Modified: head/audio/hydrogen/files/patch-Sconstruct ============================================================================== --- head/audio/hydrogen/files/patch-Sconstruct Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/hydrogen/files/patch-Sconstruct Sun Aug 10 19:50:23 2014 (r364564) @@ -18,12 +18,21 @@ ldflags.append('-lpthread') ldflags.append('-lasound') # ldflags.append('-lrubberband') - + + elif sys.platform > 'freebsd' : + print "Alsa disabled; nothing to do" elif sys.platform == "win32": includes.append( '3rdparty\libsndfile-1_0_17' ) includes.append( 'build\pthreads\include' ) +@@ -279,7 +281,7 @@ + if str(env['lash']) == "1": + env.ParseConfig('pkg-config --cflags --libs lash-1.0') + +- if sys.platform == "darwin" or sys.platform == "linux2" or sys.platform == "linux3": ++ if sys.platform == "darwin" or sys.platform == "linux2" or sys.platform == "linux3" or sys.platform > "freebsd": + env.Append( LIBS = ["z"] ) + env.Append( LIBS = ["pthread"] ) + @@ -299,7 +301,7 @@ for N in glob.glob('./data/i18n/hydrogen.*'): @@ -46,4 +55,3 @@ print "" - Modified: head/audio/mixxx/files/patch-build__depends.py ============================================================================== --- head/audio/mixxx/files/patch-build__depends.py Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/mixxx/files/patch-build__depends.py Sun Aug 10 19:50:23 2014 (r364564) @@ -67,7 +67,7 @@ elif build.toolchain_is_msvs: # Validate the specified winlib directory exists mixxx_lib_path = SCons.ARGUMENTS.get('winlib', '..\\..\\..\\mixxx-win32lib-msvc100-release') -@@ -851,16 +847,19 @@ +@@ -851,16 +847,20 @@ elif build.platform_is_bsd: build.env.Append(CPPDEFINES='__BSD__') @@ -77,7 +77,7 @@ - build.env.Append(LIBPATH=['/usr/lib/', - '/usr/local/lib', - '/usr/X11R6/lib']) -- build.env.Append(LIBS='pthread') + build.env.Append(LIBS='pthread') + build.env.Append(CPPPATH=['%%LOCALBASE%%/include/portaudio2', + '%%LOCALBASE%%/include/qt4', + '%%LOCALBASE%%/include']) Modified: head/audio/osd-lyrics/Makefile ============================================================================== --- head/audio/osd-lyrics/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/osd-lyrics/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -47,8 +47,8 @@ AMAROK_CONFIGURE_ENABLE= amarok1 post-patch: .for i in src/Makefile.in src/tests/Makefile.in - @${REINPLACE_CMD} -e \ - '/-lstdc++/d' ${WRKSRC}/${i} + @${REINPLACE_CMD} -e '/-lstdc++/d' -e '/^CCLD =/s/=.*/= $$(CXX)/' \ + ${WRKSRC}/${i} .endfor .for i in lib/chardetect/Makefile.in @${REINPLACE_CMD} -e \ Modified: head/audio/raop_play/Makefile ============================================================================== --- head/audio/raop_play/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/raop_play/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -23,6 +23,10 @@ LDFLAGS+= `fltk-config --ldflags` USES= gmake USE_GNOME= glib20 +post-patch: + @${REINPLACE_CMD} 's/-lssl/-lcrypto/' \ + ${WRKSRC}/configure ${WRKSRC}/raop_play/Makefile.in + pre-build: ${CP} ${FILESDIR}/getline.c ${FILESDIR}/getline.h ${WRKSRC}/rendezvous/ Modified: head/audio/ripperx/Makefile ============================================================================== --- head/audio/ripperx/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/ripperx/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -15,8 +15,20 @@ LIB_DEPENDS= libid3.so:${PORTSDIR}/audio RUN_DEPENDS= cdparanoia:${PORTSDIR}/audio/cdparanoia GNU_CONFIGURE= yes -CFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS= ac_cv_lib_id3_ID3Tag_Link=yes +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib USES= gmake pathfix pkgconfig USE_GNOME= gtk20 +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls + +post-patch: + @${REINPLACE_CMD} 's/-lstdc++/-lm/' ${WRKSRC}/configure + @${REINPLACE_CMD} '/^CCLD =/s/=.*/= $$(CXX)/' \ + ${WRKSRC}/plugins/Makefile.in ${WRKSRC}/src/Makefile.in + .include Modified: head/audio/shairport/Makefile ============================================================================== --- head/audio/shairport/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/audio/shairport/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -41,6 +41,7 @@ post-patch: -e 's|$$FindBin.*|"${PREFIX}/bin/hairtunes";|' \ -e '/use FindBin;/d;s|/usr/bin/env perl|${PERL}|' \ ${WRKSRC}/shairport.c ${WRKSRC}/shairport.pl + @${REINPLACE_CMD} 's/-lssl/-lcrypto/' ${WRKSRC}/Makefile do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${STAGEDIR}${PREFIX}/bin Modified: head/cad/klayout/files/patch-config-Makefile.conf ============================================================================== --- head/cad/klayout/files/patch-config-Makefile.conf Sun Aug 10 19:37:50 2014 (r364563) +++ head/cad/klayout/files/patch-config-Makefile.conf Sun Aug 10 19:50:23 2014 (r364564) @@ -2,7 +2,7 @@ +++ config/Makefile.conf.freebsd-32-gcc-release 2013-04-27 17:37:10.000000000 +0900 @@ -0,0 +1,49 @@ + -+# Configuration file for ++# Configuration file for +# gcc, FreeBSD +# release build + @@ -11,12 +11,12 @@ +AR=ar -r + +# Compiler general -+INC=-I$(TOP_SOURCE) -I$(SOURCE) -I. -I$(QTINCLUDE) ++INC=-I$(TOP_SOURCE) -I$(SOURCE) -I. -I$(QTINCLUDE) +DEFS=-DQT_THREAD_SUPPORT -DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII + +# C++ +CXX?=gcc -+CXXOPT_DEP=-MM -MG ++CXXOPT_DEP=-MM -MG +CXXWARN=-Wall -Wno-deprecated -Woverloaded-virtual \ + -Wsign-promo -Wsynth -Wno-long-long -Wno-strict-aliasing +CXXOPT=${CXXFLAGS} -c -o @@ -24,17 +24,17 @@ + +# C +CC?=gcc -+CCOPT_DEP=-MM -MG ++CCOPT_DEP=-MM -MG +CCWARN= +CCOPT=${CFLAGS} -c -o +CCOPT_SO=-fPIC $(CCOPT) + +# Linker -+LINK?=${CC} ++LINK?=${CXX} +LOPT=${LDFLAGS} -g -Wl,-E -o -+LOPT_SO=${LDFLAGS} -g -shared -fPIC -o ++LOPT_SO=${LDFLAGS} -g -shared -o + -+LIBS=${PTHREAD_LIBS} -L$(QTLIB) -lQtGui -lQtCore -lQtXml -lQtNetwork -lQtSql -lQtDesigner -lrt -lstdc++ -lcrypt -lz ++LIBS=${PTHREAD_LIBS} -L$(QTLIB) -lQtGui -lQtCore -lQtXml -lQtNetwork -lQtSql -lQtDesigner -lrt -lm -lcrypt -lz + +.PHONY: install +install: Added: head/cad/openvsp/files/patch-vsp-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/openvsp/files/patch-vsp-CMakeLists.txt Sun Aug 10 19:50:23 2014 (r364564) @@ -0,0 +1,10 @@ +--- src/vsp/CMakeLists.txt.orig 2014-08-08 15:23:12.000000000 +0200 ++++ src/vsp/CMakeLists.txt 2014-08-08 15:23:59.000000000 +0200 +@@ -216,6 +216,7 @@ + ${FLTK_LIBRARIES} + ${OPENGL_LIBRARIES} + ${OPENNURBS_LIBRARIES} ++ -pthread + ) + + INSTALL( TARGETS vsp RUNTIME DESTINATION . ) Modified: head/comms/libimobiledevice/Makefile ============================================================================== --- head/comms/libimobiledevice/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/comms/libimobiledevice/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -13,11 +13,13 @@ LICENSE?= LGPL21 SLAVE_PORT?= no -USES= pkgconfig tar:bzip2 +USES= pathfix pkgconfig tar:bzip2 +USE_OPENSSL= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= openssl_LIBS=-lssl -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS= openssl_CFLAGS="-I${OPENSSLINC}" \ + openssl_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib .if ${SLAVE_PORT} == "no" @@ -36,8 +38,6 @@ OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's, *@ssl_requires@,,' \ ${WRKSRC}/${PORTNAME}*.pc.in - @${REINPLACE_CMD} -e 's,$$(libdir)/pkgconfig,${PREFIX}/libdata/pkgconfig,g' \ - ${WRKSRC}/Makefile.in post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} Added: head/comms/usrp/files/patch-host_examples_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/usrp/files/patch-host_examples_CMakeLists.txt Sun Aug 10 19:50:23 2014 (r364564) @@ -0,0 +1,10 @@ +--- host/examples/CMakeLists.txt.orig ++++ host/examples/CMakeLists.txt +@@ -41,6 +41,7 @@ + TARGET_LINK_LIBRARIES(${example_name} uhd) + INSTALL(TARGETS ${example_name} RUNTIME DESTINATION ${PKG_LIB_DIR}/examples COMPONENT examples) + ENDFOREACH(example_source) ++TARGET_LINK_LIBRARIES(network_relay -pthread) + + ######################################################################## + # ASCII Art DFT - requires curses, so this part is optional Modified: head/databases/mydumper/Makefile ============================================================================== --- head/databases/mydumper/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/databases/mydumper/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -20,7 +20,9 @@ USES= cmake pkgconfig PLIST_FILES= sbin/mydumper sbin/myloader post-patch: - @${REINPLACE_CMD} -e 's|-Werror||' ${WRKSRC}/CMakeLists.txt + @${REINPLACE_CMD} \ + -e '/link_libraries(mydumper/s/)$$/ -lm)/' \ + -e 's|-Werror||' ${WRKSRC}/CMakeLists.txt do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mydumper ${WRKSRC}/myloader ${STAGEDIR}${PREFIX}/sbin/ Modified: head/deskutils/drivel/Makefile ============================================================================== --- head/deskutils/drivel/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/deskutils/drivel/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -27,7 +27,7 @@ INSTALLS_OMF= yes GCONF_SCHEMAS= drivel.schemas CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +LIBS+= -L${LOCALBASE}/lib -lm GTKSPELL_LIB_DEPENDS= libgtkspell.so:${PORTSDIR}/textproc/gtkspell GTKSPELL_CONFIGURE_OFF= --without-gtkspell Modified: head/deskutils/notecase/Makefile ============================================================================== --- head/deskutils/notecase/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/deskutils/notecase/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -18,16 +18,10 @@ USES= dos2unix gmake desktop-file-utils DOS2UNIX_REGEX= .*\.(c|h|cpp) +MAKE_ARGS= prefix=${PREFIX} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PORTDOCS= help.ncd -INSTALL_TARGET= install docinstall - -post-patch: - @${REINPLACE_CMD} -e 's|^prefix=.*|prefix=${PREFIX}|' \ - ${WRKSRC}/Makefile - @${REINPLACE_CMD} -e 's|^docsdir=.*|docsdir=${DOCSDIR}|' \ - ${WRKSRC}/Makefile post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notecase Modified: head/deskutils/notecase/files/patch-Makefile ============================================================================== --- head/deskutils/notecase/files/patch-Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/deskutils/notecase/files/patch-Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -1,18 +1,6 @@ --- Makefile.orig 2008-12-09 11:07:06.000000000 +0100 +++ Makefile 2013-11-05 17:07:34.000000000 +0100 -@@ -10,9 +10,10 @@ - VERSION=1.9.8 - - # define install target dirs --prefix=/usr -+prefix=/usr/local - bindir=$(prefix)/bin - datadir=$(prefix)/share -+docsdir=/usr/local/share/doc/notecase - - # define top of RPM build area - topdir=/usr/src/redhat -@@ -268,7 +269,6 @@ +@@ -268,7 +268,6 @@ $(OBJ)/IOLayerRedirect.o $(OBJ)/FileExportDlg.o $(OBJ)/FormatIOTxt.o $(OBJ)/FindReplaceDlg.o \ $(OBJ)/FindReplaceInfo.o $(OBJ)/LinkInfo.o $(OBJ)/LinkPropertiesDlg.o $(OBJ)/ExecuteFile.o \ $(OBJ)/FileSaveAsDlg.o $(OBJ)/CircularBuffer.o $(OBJ)/FormatIOMMLX.o \ @@ -20,44 +8,16 @@ $(OBJ)/ProgressDlg.o $(OBJ)/DocActionPix.o $(OBJ)/DocActionFinish.o $(OBJ)/DocActionFmt.o $(OBJ)/FmtInfo.o \ $(OBJ)/FileAttachmentDlg.o $(OBJ)/DocActionAtt.o $(OBJ)/PixPropertiesDlg.o $(OBJ)/DocActionFinishDel.o \ $(OBJ)/ShortcutsList.o $(OBJ)/ShortcutsListDlg.o $(OBJ)/DateTimeDlg.o $(OBJ)/AboutDlg.o $(OBJ)/EditDlg.o \ -@@ -601,18 +601,20 @@ - pouninstall: - @rm -vf $(DESTDIR)$(datadir)/locale/*/LC_MESSAGES/notecase.mo - @echo done uninstalling translations -- -+ -+docinstall: -+ install -d -m 755 "$(DESTDIR)$(docsdir)" -+ $(INSTALL) -m 644 -c docs/help.ncd "$(DESTDIR)$(docsdir)/help.ncd" -+ - # - # install application +@@ -316,7 +315,7 @@ + $(LD) $(OBJS) -o $(BIN)/notecase$(EXE) $(FLAGS) $(LDFLAGS) $(GTKLIBS) + else + $(BIN)/notecase$(EXE): updatesrc $(OBJS) +- $(LD) $(OBJS) -o $(BIN)/notecase$(EXE) $(FLAGS) $(LDFLAGS) $(GTKLIBS) > /dev/null ++ $(LD) $(OBJS) -o $(BIN)/notecase$(EXE) $(FLAGS) $(LDFLAGS) $(GTKLIBS) -lz > /dev/null + endif + # - install: $(BIN)/notecase$(EXE) poinstall - install -d -m 755 $(DESTDIR)$(bindir) -- install -d -m 755 $(DESTDIR)$(datadir)/doc/notecase/ - install -d -m 755 $(DESTDIR)$(datadir)/applications/ - install -d -m 755 $(DESTDIR)$(datadir)/mime/packages/ - install -d -m 755 $(DESTDIR)$(datadir)/pixmaps/ - $(INSTALL) -m 755 $(BIN)/notecase$(EXE) "$(DESTDIR)$(bindir)/notecase$(EXE)" -- $(INSTALL) -m 644 docs/help.ncd "$(DESTDIR)$(docdir)/notecase/help.ncd" - $(INSTALL) -m 644 docs/notecase.xml "$(DESTDIR)$(datadir)/mime/packages/notecase.xml" - $(Q)if [ -n "$(NOKIA_MAEMO_BUILD)" ]; then \ - $(INSTALL) -m 644 docs/notecase.desktop "$(DESTDIR)$(datadir)/applications/hildon/notecase.desktop"; \ -@@ -694,12 +696,6 @@ - echo 'pkg-config error detected $(shell pkg-config --cflags $(LIBS))';\ - exit 1;\ - fi; -- $(Q)if [ "$(HAVE_GTKSOURCEVIEW)" = "1" ]; then \ -- if [[ "$(TEST_SRCVIEW_VER)" < "2.4.1" ]]; then \ -- echo 'ERROR: gtksourceview package is too old ($(shell pkg-config --modversion gtksourceview-2.0))!';\ -- exit 1;\ -- fi;\ -- fi; - $(Q)echo 'Configuration: GNOME_VFS=$(HAVE_GNOME_VFS);GTKSOURCEVIEW=$(HAVE_GTKSOURCEVIEW);DEBUG=$(DEBUG);PROFILE=$(PROFILE);BYTE_ORDER=$(BYTE_ORDER);PLATFORM=$(PLATFORM)' - $(Q)$(SED) 's/^Version:.*/Version: $(VERSION)/' ./docs/notecase.spec - $(Q)$(SED) 's/^Source:.*/Source: $(archive)_src.tar.gz/' ./docs/notecase.spec -@@ -820,7 +816,7 @@ +@@ -820,7 +819,7 @@ # # Note: first "make" command forces generating correct help file path in "config.h" # Modified: head/devel/firmware-utils/files/Makefile ============================================================================== --- head/devel/firmware-utils/files/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/devel/firmware-utils/files/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -20,7 +20,7 @@ OBJS+= mkplanexfw.o sha1.o OBJS+= mkzcfw.o OBJS+= wrt400n.o cyg_crc32.o -LDFLAGS+= -lmd -lssl -lz +LDFLAGS+= -lmd -lcrypto -lz INSTALL_PROGRAM?= echo /usr/bin/install -C -o root -g bin -m 0644 PREFIX?= /usr/local Modified: head/devel/hadoop/Makefile ============================================================================== --- head/devel/hadoop/Makefile Sun Aug 10 19:37:50 2014 (r364563) +++ head/devel/hadoop/Makefile Sun Aug 10 19:50:23 2014 (r364564) @@ -87,6 +87,9 @@ PLIST_SUB+= HADOOP_ARCH=${_HADOOP_ARCH} post-patch: @${REINPLACE_CMD} -e 's/ -DCPU=\\\\\\".*\\\\\\"//' \ ${WRKSRC}/src/c++/libhdfs/configure + @${REINPLACE_CMD} 's/-lssl/-lcrypto/' \ + ${WRKSRC}/src/c++/pipes/configure \ + ${WRKSRC}/src/examples/pipes/configure .for f in ${FIX_GCC} @${REINPLACE_CMD} -e 's/`gcc/`$$LTCC/' ${WRKSRC}/${f} .endfor From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 20:10:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C5297BC; Sun, 10 Aug 2014 20:10:09 +0000 (UTC) Received: from h.highsecure.ru (h.highsecure.ru [144.76.31.167]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01A26296B; Sun, 10 Aug 2014 20:10:08 +0000 (UTC) Received: from [172.24.172.195] (global-2-11.nat.csx.cam.ac.uk [131.111.185.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: vsevolod@highsecure.ru) by h.highsecure.ru (Postfix) with ESMTPSA id EA0BF300198; Sun, 10 Aug 2014 22:09:49 +0200 (CEST) Message-ID: <53E7D193.3090305@FreeBSD.org> Date: Sun, 10 Aug 2014 21:09:55 +0100 From: Vsevolod Stakhov User-Agent: Mutt/1.5.22 (2013-10-16) MIME-Version: 1.0 To: Bryan Drewery Subject: Re: svn commit: r364287 - head/ports-mgmt/pkg-devel References: <53e39939.55bc.4ca5432c@svn.freebsd.org> <20140807172841.58633e63@kalimero.tijl.coosemans.org> <53E3A468.5050603@FreeBSD.org> <53E3AC0C.5020904@gmx.de> <53E3AD09.2050000@FreeBSD.org> <53E3B3B5.9000104@gmx.de> <53E3B6D8.9080101@FreeBSD.org> <53E590AC.4020105@FreeBSD.org> <53E7A512.8050008@FreeBSD.org> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, Tijl Coosemans , Matthias Andree , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 20:10:09 -0000 On 10.08.2014 20:40, Bryan Drewery wrote: > On 2014-08-10 12:00, Vsevolod Stakhov wrote: >> Bryan, >> >> On 09/08/14 04:08, Bryan Drewery wrote: >>> On 8/7/2014 12:26 PM, Vsevolod Stakhov wrote: >>>> On 07/08/14 18:13, Matthias Andree wrote: >>>>> Am 07.08.2014 um 18:44 schrieb Vsevolod Stakhov: >>>>> >>>>>> On 07/08/14 17:40, Matthias Andree wrote: >>>>>>> Am 07.08.2014 um 18:08 schrieb Vsevolod Stakhov: >>>>>>> >>>>> [skipped] >>> >>> I'm not convinced about this change. We have fixed the wine-devel-i386 >>> which was unrelated to soname version. >>> >>> Will stripping .so.* break automatic reinstalling when shlibs change? >>> That is a critical feature. >>> >> >> I think, I've described in details the current issue with that at >> #pkgng@freenode. Briefly, this change does not break "automatic >> reinstalling when shlibs change" as it doesn't work now. > > If it "does't work now" it needs to be fixed. This is a regression over > 1.2. Not automatically reinstalling packages when dependent shlibs > change breaks a lot of packages. Port revision bumps do not always > occur. Auto reinstalling for changed SHLIBS and OPTIONS is very important. See below. > Poudriere will automatically rebuild packages if their dependencies are > updated regardless of a revision bump. If no bump occurs, yet a shlib is > bumped, the package is updated. Pkg 1.2 would detect this and reinstall > the packages depending on that shlib. If we are now ignoring the > version, and it doesn't work otherwise, then we are leaving people with > broken systems where the only way to handle it is 'pkg upgrade -f' every > time. > > I understand the problem you describe of .so.X vs .so.X.Y, but this > functionality was present during most of the RC and 1.3 releases right? > It was changed due to wine? The wine issue is unrelated and is now > fixed. I would think the more safe route would be to strip .X.* and keep > .X rather than strip the entire version. The problem with .so was *not* related to wine. It was related to inconsistency between provides and requires. And as far as I see it is *not* fixed yet. Regarding auto install... I would like to repeat here what I have written prior to 1.3 release: > Let me explain the situation with pkg. Pkg needs to find so called > ``upgrade chains'' that are used to upgrade packages. To find out > packages that are suitable for upgrade we use origins in pkg 1.2 and > name~origin in pkg 1.3. > > However, each package is identified by a special field called > `manifestdigest'. In pkg 1.2, this field is just sha256(manifest). > Unfortunately, this means that if *any* field of a package is changed a > version bump is required. By fields I mean files and directories as well > which leads thus to a policy where we need to bump a revision even if we > have meaningless changes in the files a package provides (that happens > after this particular change). > > With pkg 1.3 this behaviour has been changed to recognize the following > fields only: > > * name > * origin > * version > * arch > * maintainer > * www > * message > * comment > * options > > Hence, I think that with the release 1.3 of pkg we should define > revision bump policy to reflect this change. So I asked *many* times (in irc, mailing lists, private conversations) what fields are considered to be significant, but got only few good suggestion. And now, after 1.3 is released, changing that requires more testing: https://github.com/freebsd/pkg/pull/911 This patch, for example, does this. But I haven't tested it yet and I don't know what side effects could it cause. Nonetheless, doesn't our ports policy defines to bump PORTREVISION in all cases that modifies a resulting package? Shlib provides/requires changing is definitely such a change. So you blame now pkg that it follows the current policy, don't you? -- Vsevolod Stakhov From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 20:12:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 313A78B6 for ; Sun, 10 Aug 2014 20:12:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 06FD82A02 for ; Sun, 10 Aug 2014 20:12:04 +0000 (UTC) Received: from mm (uid 1130) (envelope-from mm@FreeBSD.org) id 2cf9 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 20:12:03 +0000 From: Martin Matuska Date: Sun, 10 Aug 2014 20:12:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364565 - head/net/relayd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7d213.2cf9.4461903f@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 20:12:04 -0000 Author: mm Date: Sun Aug 10 20:12:03 2014 New Revision: 364565 URL: http://svnweb.freebsd.org/changeset/ports/364565 QAT: https://qat.redports.org/buildarchive/r364565/ Log: Update relayd to 2014-08-10 Modified: head/net/relayd/Makefile head/net/relayd/distinfo Modified: head/net/relayd/Makefile ============================================================================== --- head/net/relayd/Makefile Sun Aug 10 19:50:23 2014 (r364564) +++ head/net/relayd/Makefile Sun Aug 10 20:12:03 2014 (r364565) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= relayd -PORTVERSION= 5.5.20140730 +PORTVERSION= 5.5.20140810 CATEGORIES= net MASTER_SITES= GH @@ -11,7 +11,7 @@ COMMENT= OpenBSD relay daemon LICENSE= ISCL GH_ACCOUNT= mmatuska -GH_COMMIT= 502fffe +GH_COMMIT= 49d1afd WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT}/src/usr.sbin USES= uidfix Modified: head/net/relayd/distinfo ============================================================================== --- head/net/relayd/distinfo Sun Aug 10 19:50:23 2014 (r364564) +++ head/net/relayd/distinfo Sun Aug 10 20:12:03 2014 (r364565) @@ -1,2 +1,2 @@ -SHA256 (relayd-5.5.20140730.tar.gz) = 7400d5bb1f4f6b946d94c2640199fa5b0acde1358b4efa96209f57f542c4d4ca -SIZE (relayd-5.5.20140730.tar.gz) = 179419 +SHA256 (relayd-5.5.20140810.tar.gz) = 1bdae004e06a3104ec4e9acfb7b9cb009f3974b936e211224b82a79c2b611570 +SIZE (relayd-5.5.20140810.tar.gz) = 179458 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 20:23:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2543CAA5 for ; Sun, 10 Aug 2014 20:23:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 F08052ADF for ; Sun, 10 Aug 2014 20:23:02 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2086 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 20:23:02 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 20:23:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364566 - head/deskutils/tine20 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7d4a6.2086.7bd655c5@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 20:23:03 -0000 Author: antoine Date: Sun Aug 10 20:23:02 2014 New Revision: 364566 URL: http://svnweb.freebsd.org/changeset/ports/364566 QAT: https://qat.redports.org/buildarchive/r364566/ Log: Workaround NO_WRKSUBDIR + ${COPYTREE} . side effects Modified: head/deskutils/tine20/Makefile Modified: head/deskutils/tine20/Makefile ============================================================================== --- head/deskutils/tine20/Makefile Sun Aug 10 20:12:03 2014 (r364565) +++ head/deskutils/tine20/Makefile Sun Aug 10 20:23:02 2014 (r364566) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= tar:bzip2 NO_BUILD= yes -WRKSRC= ${WRKDIR} +EXTRACT_AFTER_ARGS= --no-same-owner --no-same-permissions -C ${WRKSRC} SUB_FILES= pkg-message SUB_LIST= DISTNAME=${DISTNAME} @@ -33,6 +33,9 @@ APC_USE= php=apc LDAP_USE= php=ldap MEMCACHE_USE= php=memcache +pre-extract: + ${MKDIR} ${WRKSRC} + do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 20:28:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B9D2CD3C for ; Sun, 10 Aug 2014 20:28:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 8F1242B10 for ; Sun, 10 Aug 2014 20:28:14 +0000 (UTC) Received: from pawel (uid 1252) (envelope-from pawel@FreeBSD.org) id 20a1 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 20:28:14 +0000 From: Pawel Pekala Date: Sun, 10 Aug 2014 20:28:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364567 - head/finance/homebank X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7d5de.20a1.252bf65d@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 20:28:14 -0000 Author: pawel Date: Sun Aug 10 20:28:13 2014 New Revision: 364567 URL: http://svnweb.freebsd.org/changeset/ports/364567 QAT: https://qat.redports.org/buildarchive/r364567/ Log: Update to version 4.6.3 Modified: head/finance/homebank/Makefile head/finance/homebank/distinfo Modified: head/finance/homebank/Makefile ============================================================================== --- head/finance/homebank/Makefile Sun Aug 10 20:23:02 2014 (r364566) +++ head/finance/homebank/Makefile Sun Aug 10 20:28:13 2014 (r364567) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= homebank -PORTVERSION= 4.6.2 +PORTVERSION= 4.6.3 CATEGORIES= finance MASTER_SITES= http://homebank.free.fr/public/ Modified: head/finance/homebank/distinfo ============================================================================== --- head/finance/homebank/distinfo Sun Aug 10 20:23:02 2014 (r364566) +++ head/finance/homebank/distinfo Sun Aug 10 20:28:13 2014 (r364567) @@ -1,2 +1,2 @@ -SHA256 (homebank-4.6.2.tar.gz) = abdbe921811d6801c23b2930002c45aeabe342af74455e75a19b24f55383dedb -SIZE (homebank-4.6.2.tar.gz) = 1899429 +SHA256 (homebank-4.6.3.tar.gz) = f6e31bb789d626b507c2af9d176a0bac0cbaec770ede73048ba7a6df113a6948 +SIZE (homebank-4.6.3.tar.gz) = 1899045 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 20:40:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB968F4E for ; Sun, 10 Aug 2014 20:40:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 B19512BD5 for ; Sun, 10 Aug 2014 20:40:36 +0000 (UTC) Received: from gerald (uid 937) (envelope-from gerald@FreeBSD.org) id 2a3e by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 20:40:36 +0000 From: Gerald Pfeifer Date: Sun, 10 Aug 2014 20:40:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364568 - head/lang/gcc48 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7d8c4.2a3e.74a1ada0@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 20:40:36 -0000 Author: gerald Date: Sun Aug 10 20:40:36 2014 New Revision: 364568 URL: http://svnweb.freebsd.org/changeset/ports/364568 QAT: https://qat.redports.org/buildarchive/r364568/ Log: Update to the 20140807 snapshot of GCC 4.8.4. Modified: head/lang/gcc48/Makefile head/lang/gcc48/distinfo Modified: head/lang/gcc48/Makefile ============================================================================== --- head/lang/gcc48/Makefile Sun Aug 10 20:28:13 2014 (r364567) +++ head/lang/gcc48/Makefile Sun Aug 10 20:40:36 2014 (r364568) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc48 -PORTVERSION= 4.8.4.s20140724 +PORTVERSION= 4.8.4.s20140807 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc48/distinfo ============================================================================== --- head/lang/gcc48/distinfo Sun Aug 10 20:28:13 2014 (r364567) +++ head/lang/gcc48/distinfo Sun Aug 10 20:40:36 2014 (r364568) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.8-20140724.tar.bz2) = f7a769bda5ebaf0014ef45d7eee983faf18aa232e04c6de229389bd96e44f15c -SIZE (gcc-4.8-20140724.tar.bz2) = 81900794 +SHA256 (gcc-4.8-20140807.tar.bz2) = 9551984dc437a91a9207342adf25b6185974bd4c76e3cf0e4a658a4331e29f1e +SIZE (gcc-4.8-20140807.tar.bz2) = 81934357 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 20:44:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D872AD3 for ; Sun, 10 Aug 2014 20:44:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 AE8732D26 for ; Sun, 10 Aug 2014 20:44:39 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2a57 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 20:44:39 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 20:44:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364569 - head/devel/performance X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7d9b7.2a57.71e047f0@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 20:44:39 -0000 Author: antoine Date: Sun Aug 10 20:44:39 2014 New Revision: 364569 URL: http://svnweb.freebsd.org/changeset/ports/364569 QAT: https://qat.redports.org/buildarchive/r364569/ Log: Remove duplicate line from plist Reported by: pkg developer mode Modified: head/devel/performance/pkg-plist Modified: head/devel/performance/pkg-plist ============================================================================== --- head/devel/performance/pkg-plist Sun Aug 10 20:40:36 2014 (r364568) +++ head/devel/performance/pkg-plist Sun Aug 10 20:44:39 2014 (r364569) @@ -28,6 +28,5 @@ GNUstep/Local/Library/Headers/Performanc GNUstep/Local/Library/Libraries/libPerformance.so GNUstep/Local/Library/Libraries/libPerformance.so.0.4 GNUstep/Local/Library/Libraries/libPerformance.so.0.4.0 -libdata/ldconfig/performance @dirrmtry GNUstep/Local/Library/Headers/Performance @dirrmtry GNUstep/Local/Library/Documentation/Performance From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 21:06:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A81F43E for ; Sun, 10 Aug 2014 21:06:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 59AE12FD5 for ; Sun, 10 Aug 2014 21:06:34 +0000 (UTC) Received: from cs (uid 1263) (envelope-from cs@FreeBSD.org) id 212d by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 21:06:33 +0000 From: Carlo Strub Date: Sun, 10 Aug 2014 21:06:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364570 - head/devel/p4d X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7deda.212d.57dd8d37@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 21:06:34 -0000 Author: cs Date: Sun Aug 10 21:06:32 2014 New Revision: 364570 URL: http://svnweb.freebsd.org/changeset/ports/364570 QAT: https://qat.redports.org/buildarchive/r364570/ Log: Update to 2014.1.899321 PR: 192358 Submitted by: gordon@ (maintainer) Modified: head/devel/p4d/Makefile head/devel/p4d/distinfo.freebsd100x86 head/devel/p4d/distinfo.freebsd100x86_64 head/devel/p4d/distinfo.freebsd70x86 head/devel/p4d/distinfo.freebsd70x86_64 Modified: head/devel/p4d/Makefile ============================================================================== --- head/devel/p4d/Makefile Sun Aug 10 20:44:39 2014 (r364569) +++ head/devel/p4d/Makefile Sun Aug 10 21:06:32 2014 (r364570) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= p4d -PORTVERSION= 2014.1.895936 +PORTVERSION= 2014.1.899321 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ \ http://filehost.perforce.com/perforce/${P4VERSION}/bin.${PLATFORM}/ Modified: head/devel/p4d/distinfo.freebsd100x86 ============================================================================== --- head/devel/p4d/distinfo.freebsd100x86 Sun Aug 10 20:44:39 2014 (r364569) +++ head/devel/p4d/distinfo.freebsd100x86 Sun Aug 10 21:06:32 2014 (r364570) @@ -1,2 +1,2 @@ -SHA256 (perforce/2014.1.895936/bin.freebsd100x86/p4d) = cd03ce4073fc5e51fbf68fa0313d682b12d1b9dc61d9b80b8e27d0dacf75945d -SIZE (perforce/2014.1.895936/bin.freebsd100x86/p4d) = 4512900 +SHA256 (perforce/2014.1.899321/bin.freebsd100x86/p4d) = 98dfeda86b8fb6005f8e0b89010d6911b8bd766372a4aa289f5c64691c1d6aa6 +SIZE (perforce/2014.1.899321/bin.freebsd100x86/p4d) = 4512932 Modified: head/devel/p4d/distinfo.freebsd100x86_64 ============================================================================== --- head/devel/p4d/distinfo.freebsd100x86_64 Sun Aug 10 20:44:39 2014 (r364569) +++ head/devel/p4d/distinfo.freebsd100x86_64 Sun Aug 10 21:06:32 2014 (r364570) @@ -1,2 +1,2 @@ -SHA256 (perforce/2014.1.895936/bin.freebsd100x86_64/p4d) = 6e7d93a5391ab61f6ef5e6f12a8397638ab43c18860134cb14c15527a061ba6d -SIZE (perforce/2014.1.895936/bin.freebsd100x86_64/p4d) = 4683200 +SHA256 (perforce/2014.1.899321/bin.freebsd100x86_64/p4d) = c86588c929ddba3a658f0818c4f0914d8c1c34bbc0d0339fdc8f7a28e3a3edb9 +SIZE (perforce/2014.1.899321/bin.freebsd100x86_64/p4d) = 4683408 Modified: head/devel/p4d/distinfo.freebsd70x86 ============================================================================== --- head/devel/p4d/distinfo.freebsd70x86 Sun Aug 10 20:44:39 2014 (r364569) +++ head/devel/p4d/distinfo.freebsd70x86 Sun Aug 10 21:06:32 2014 (r364570) @@ -1,2 +1,2 @@ -SHA256 (perforce/2014.1.895936/bin.freebsd70x86/p4d) = e2c4a06030d91ce3d2704e6cf5781465a2f89737c88aeea94fb92d2484831fea -SIZE (perforce/2014.1.895936/bin.freebsd70x86/p4d) = 4860944 +SHA256 (perforce/2014.1.899321/bin.freebsd70x86/p4d) = 24e73ab670303b25bdf9fe9b675d081bf4de225494c4e46cb91d21cb8eaadb3d +SIZE (perforce/2014.1.899321/bin.freebsd70x86/p4d) = 4861072 Modified: head/devel/p4d/distinfo.freebsd70x86_64 ============================================================================== --- head/devel/p4d/distinfo.freebsd70x86_64 Sun Aug 10 20:44:39 2014 (r364569) +++ head/devel/p4d/distinfo.freebsd70x86_64 Sun Aug 10 21:06:32 2014 (r364570) @@ -1,2 +1,2 @@ -SHA256 (perforce/2014.1.895936/bin.freebsd70x86_64/p4d) = 20d1ebd61660cd93f94348f085c24c317f7af0ebf3afe37f0e43b56c24783c0d -SIZE (perforce/2014.1.895936/bin.freebsd70x86_64/p4d) = 5026192 +SHA256 (perforce/2014.1.899321/bin.freebsd70x86_64/p4d) = a872e7441dc5ae92f70a44e1cce39ba07d22acf37fea7375a078f511996011d0 +SIZE (perforce/2014.1.899321/bin.freebsd70x86_64/p4d) = 5026480 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 21:09:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A9EE62B for ; Sun, 10 Aug 2014 21:09:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 4A7522FF7 for ; Sun, 10 Aug 2014 21:09:27 +0000 (UTC) Received: from antoine (uid 1152) (envelope-from antoine@FreeBSD.org) id 2162 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 21:09:26 +0000 From: Antoine Brodin Date: Sun, 10 Aug 2014 21:09:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364571 - in head: deskutils/gdesklets devel/p5-Algorithm-Accounting textproc/p5-RDF-Trine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7df87.2162.22afb3e3@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 21:09:27 -0000 Author: antoine Date: Sun Aug 10 21:09:26 2014 New Revision: 364571 URL: http://svnweb.freebsd.org/changeset/ports/364571 QAT: https://qat.redports.org/buildarchive/r364571/ Log: Remove duplicate things from plists Reported by: pkg developer mode Modified: head/deskutils/gdesklets/Makefile head/deskutils/gdesklets/pkg-plist head/devel/p5-Algorithm-Accounting/pkg-plist head/textproc/p5-RDF-Trine/pkg-plist Modified: head/deskutils/gdesklets/Makefile ============================================================================== --- head/deskutils/gdesklets/Makefile Sun Aug 10 21:06:32 2014 (r364570) +++ head/deskutils/gdesklets/Makefile Sun Aug 10 21:09:26 2014 (r364571) @@ -18,8 +18,7 @@ OPTIONS_DEFINE= GDBM WRKSRC= ${WRKDIR}/gDesklets-${PORTVERSION} USE_GNOME= gnomeprefix intlhack librsvg2 pygnomeextras -USE_PYTHON= yes -USES= gettext gmake pkgconfig tar:bzip2 pathfix \ +USES= gettext gmake pkgconfig python tar:bzip2 pathfix \ desktop-file-utils shared-mime-info libtool GNU_CONFIGURE= yes @@ -45,7 +44,5 @@ post-install: @${TOUCH} ${STAGEDIR}${DATADIR}/Displays/.keep_me @${MKDIR} ${STAGEDIR}${DATADIR}/Sensors @${TOUCH} ${STAGEDIR}${DATADIR}/Sensors/.keep_me - @-update-mime-database ${STAGEDIR}${PREFIX}/share/mime - @${CAT} ${PKGMESSAGE} .include Modified: head/deskutils/gdesklets/pkg-plist ============================================================================== --- head/deskutils/gdesklets/pkg-plist Sun Aug 10 21:06:32 2014 (r364570) +++ head/deskutils/gdesklets/pkg-plist Sun Aug 10 21:09:26 2014 (r364571) @@ -733,10 +733,8 @@ share/locale/vi/LC_MESSAGES/gdesklets.mo share/locale/zh_CN/LC_MESSAGES/gdesklets.mo share/locale/zh_HK/LC_MESSAGES/gdesklets.mo share/locale/zh_TW/LC_MESSAGES/gdesklets.mo -share/mime/application/x-gdesklets-display.xml share/mime/packages/gdesklets.xml share/pixmaps/gdesklets.png -@dirrmtry share/mime/application @dirrmtry share/locale/zh_HK/LC_MESSAGES @dirrmtry share/locale/zh_HK @dirrmtry share/locale/rw/LC_MESSAGES @@ -807,6 +805,3 @@ share/pixmaps/gdesklets.png @dirrm lib/gdesklets/Additions/bg @dirrm lib/gdesklets/Additions @dirrm lib/gdesklets -@exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime -@dirrmtry share/icons/gnome/48x48/mimetypes Modified: head/devel/p5-Algorithm-Accounting/pkg-plist ============================================================================== --- head/devel/p5-Algorithm-Accounting/pkg-plist Sun Aug 10 21:06:32 2014 (r364570) +++ head/devel/p5-Algorithm-Accounting/pkg-plist Sun Aug 10 21:09:26 2014 (r364571) @@ -9,7 +9,6 @@ %%PERL5_MAN3%%/Algorithm::Accounting::Report::Imager.3.gz %%PERL5_MAN3%%/Algorithm::Accounting::Report::GDGraph.3.gz %%PERL5_MAN3%%/Algorithm::Accounting::Report::Text.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/Accounting @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/Accounting @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm @dirrm %%SITE_PERL%%/Algorithm/Accounting/Report Modified: head/textproc/p5-RDF-Trine/pkg-plist ============================================================================== --- head/textproc/p5-RDF-Trine/pkg-plist Sun Aug 10 21:06:32 2014 (r364570) +++ head/textproc/p5-RDF-Trine/pkg-plist Sun Aug 10 21:09:26 2014 (r364571) @@ -136,7 +136,6 @@ bin/srx2table @dirrm %%SITE_PERL%%/Test/RDF/Trine @dirrmtry %%SITE_PERL%%/Test/RDF @dirrmtry %%SITE_PERL%%/Test -@dirrmtry %%SITE_PERL%%/RDF @dirrm %%SITE_PERL%%/RDF/Trine/Store/DBI @dirrm %%SITE_PERL%%/RDF/Trine/Store @dirrm %%SITE_PERL%%/RDF/Trine/Statement From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 21:17:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6578A766 for ; Sun, 10 Aug 2014 21:17:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 3BF11209D for ; Sun, 10 Aug 2014 21:17:06 +0000 (UTC) Received: from gerald (uid 937) (envelope-from gerald@FreeBSD.org) id 27b6 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 21:17:05 +0000 From: Gerald Pfeifer Date: Sun, 10 Aug 2014 21:17:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364572 - head/lang/gcc49 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7e152.27b6.4d660216@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 21:17:06 -0000 Author: gerald Date: Sun Aug 10 21:17:05 2014 New Revision: 364572 URL: http://svnweb.freebsd.org/changeset/ports/364572 QAT: https://qat.redports.org/buildarchive/r364572/ Log: Update to the 20140806 snapshot of GCC 4.9.2. Modified: head/lang/gcc49/Makefile head/lang/gcc49/distinfo Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Sun Aug 10 21:09:26 2014 (r364571) +++ head/lang/gcc49/Makefile Sun Aug 10 21:17:05 2014 (r364572) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc49 -PORTVERSION= 4.9.2.s20140730 +PORTVERSION= 4.9.2.s20140806 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc49/distinfo ============================================================================== --- head/lang/gcc49/distinfo Sun Aug 10 21:09:26 2014 (r364571) +++ head/lang/gcc49/distinfo Sun Aug 10 21:17:05 2014 (r364572) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.9-20140730.tar.bz2) = 13bda9da44608364cfe05c073d5c0762d1c5f7506210e3a6aca4922599db1110 -SIZE (gcc-4.9-20140730.tar.bz2) = 85653867 +SHA256 (gcc-4.9-20140806.tar.bz2) = 856fc05a8644940b9c29aa6bb03747601dacc7beb0ba9808d1d5eebf978af6a0 +SIZE (gcc-4.9-20140806.tar.bz2) = 85648024 From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 21:29:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CEB32A85 for ; Sun, 10 Aug 2014 21:29:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 A4F032181 for ; Sun, 10 Aug 2014 21:29:18 +0000 (UTC) Received: from olgeni (uid 877) (envelope-from olgeni@FreeBSD.org) id 2b2f by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 21:29:18 +0000 From: Jimmy Olgeni Date: Sun, 10 Aug 2014 21:29:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364573 - head/ftp/wput X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7e42e.2b2f.6faee637@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 21:29:18 -0000 Author: olgeni Date: Sun Aug 10 21:29:18 2014 New Revision: 364573 URL: http://svnweb.freebsd.org/changeset/ports/364573 QAT: https://qat.redports.org/buildarchive/r364573/ Log: Fix typo in pkg-descr. Modified: head/ftp/wput/pkg-descr (contents, props changed) Modified: head/ftp/wput/pkg-descr ============================================================================== --- head/ftp/wput/pkg-descr Sun Aug 10 21:17:05 2014 (r364572) +++ head/ftp/wput/pkg-descr Sun Aug 10 21:29:18 2014 (r364573) @@ -1,5 +1,5 @@ wput is a tiny program that looks like wget and does as the name suggests -exactly the opposite: it uploads files or recursivly whole directories to +exactly the opposite: it uploads files or recursively whole directories to a ftp-server and supports resuming. WWW: http://wput.sourceforge.net/ From owner-svn-ports-head@FreeBSD.ORG Sun Aug 10 21:42:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28E6CC2C for ; Sun, 10 Aug 2014 21:42:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 F082B22C7 for ; Sun, 10 Aug 2014 21:42:50 +0000 (UTC) Received: from marino (uid 1323) (envelope-from marino@FreeBSD.org) id 2229 by svn.freebsd.org (DragonFly Mail Agent v0.9+); Sun, 10 Aug 2014 21:42:50 +0000 From: John Marino Date: Sun, 10 Aug 2014 21:42:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364574 - head/databases/pgbouncer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <53e7e75a.2229.62dfff6f@svn.freebsd.org> X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Aug 2014 21:42:51 -0000 Author: marino Date: Sun Aug 10 21:42:50 2014 New Revision: 364574 URL: http://svnweb.freebsd.org/changeset/ports/364574 QAT: https://qat.redports.org/buildarchive/r364574/ Log: databases/pgbouncer: Unconditionally install man pages This port had a couple of issues besided installing man pages as a function of the DOCS option selection. It also was using
 and 
  inclusions with , _DEPENDS were in multiple places.
  
  I regrouped the *_DEPENDS, I moved the options to just above the make
  targets (their conventional location) and I utilized